blob_id stringlengths 40 40 | directory_id stringlengths 40 40 | path stringlengths 4 201 | content_id stringlengths 40 40 | detected_licenses listlengths 0 85 | license_type stringclasses 2
values | repo_name stringlengths 7 100 | snapshot_id stringlengths 40 40 | revision_id stringlengths 40 40 | branch_name stringclasses 260
values | visit_date timestamp[us] | revision_date timestamp[us] | committer_date timestamp[us] | github_id int64 11.4k 681M ⌀ | star_events_count int64 0 209k | fork_events_count int64 0 110k | gha_license_id stringclasses 17
values | gha_event_created_at timestamp[us] | gha_created_at timestamp[us] | gha_language stringclasses 80
values | src_encoding stringclasses 28
values | language stringclasses 1
value | is_vendor bool 1
class | is_generated bool 2
classes | length_bytes int64 8 9.86M | extension stringclasses 52
values | content stringlengths 8 9.86M | authors listlengths 1 1 | author stringlengths 0 119 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
5404740fc677ff64f92fbcf6f24f9b5db9e2b323 | cd9a6efc565f8d05d21d57a7f4da39c955600d66 | /gym/index00_09/ioi2021_02/GK.cpp | 32f2368d7863969dcf609561961d7a0ec5019915 | [
"Apache-2.0"
] | permissive | Tanklong/IOI2021-training | d985ff981f35ebc26c949fe5c80eb08caf550492 | 4f21cef8eec47330e3db77a3d90cbe2309fa8294 | refs/heads/main | 2023-02-09T16:15:44.809189 | 2021-01-08T15:29:06 | 2021-01-08T15:29:06 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,151 | cpp | #include <bits/stdc++.h>
const int MAXN = 64;
typedef unsigned long long LL;
int n;
LL A[MAXN], S;
namespace huge {
void solve() {
LL iv = 1, t = A[0];
int dig = 0;
while (!(t & 1)) t >>= 1, ++dig;
for (int i = 0; i < 6; ++i)
iv = iv * (2 - iv * t);
for (int T = 0; T < (1 << dig); ++T) {
for (int i = 1; i <= (1 << 23 - dig); i += 2) {
static LL B[MAXN], T;
T = S * i * iv;
for (int j = 0; j < n; ++j)
B[j] = A[j] * i * iv;
bool can = B[0] > 0;
for (int j = 1; j < n; ++j)
can &= B[j] > B[j - 1];
if (!can) continue;
static int C[MAXN];
for (int j = n - 1; ~j; --j) {
C[j] = T / B[j];
T %= B[j];
can &= C[j] <= 1;
}
can &= T == 0;
if (!can) continue;
for (int j = 0; j < n; ++j)
std::cout << C[j];
std::cout << '\n';
exit(0);
}
iv += 1ull << (64 - dig);
}
}
}
namespace small {
LL lhs[1 << 21], rhs[1 << 21];
int rkl[1 << 21], rkr[1 << 21];
bool cmpl(int a, int b) {
return lhs[a] < lhs[b];
}
bool cmpr(int a, int b) {
return rhs[a] < rhs[b];
}
void solve() {
const int L = n / 2, R = n - L;
for (int i = 0; i != (1 << L); ++i) {
rkl[i] = i;
for (int j = 0; j != L; ++j)
if (i >> j & 1)
lhs[i] += A[j];
}
for (int i = 0; i != (1 << R); ++i) {
rkr[i] = i;
for (int j = 0; j != R; ++j)
if (i >> j & 1)
rhs[i] += A[j + L];
}
std::sort(rkl, rkl + (1 << L), cmpl);
std::sort(rkr, rkr + (1 << R), cmpr);
for (int i = 0; i != (1 << L); ++i) {
LL tar = S - lhs[rkl[i]];
int l = 0, r = (1 << R) - 1, at = -1;
while (l <= r) {
int mid = l + r >> 1;
if (rhs[rkr[mid]] >= tar) at = mid, r = mid - 1;
else l = mid + 1;
}
if (at != -1 && rhs[rkr[at]] == tar) {
for (int j = 0; j != L; ++j)
std::cout << (rkl[i] >> j & 1);
for (int j = 0; j != R; ++j)
std::cout << (rkr[at] >> j & 1);
std::cout << '\n';
exit(0);
}
}
}
}
int main() {
std::ios_base::sync_with_stdio(false), std::cin.tie(0);
std::cin >> n;
for (int i = 0; i < n; ++i)
std::cin >> A[i];
std::cin >> S;
if (n <= 42) small::solve();
else huge::solve();
return 0;
}
| [
"daklqw@outlook.com"
] | daklqw@outlook.com |
cc60ea52dc9beace76302d4998ce9ec5993054b4 | 30bdd8ab897e056f0fb2f9937dcf2f608c1fd06a | /Codes/AC/1930.cpp | fc08eea91e04cea25e1215a7ed689645e6a32b76 | [] | no_license | thegamer1907/Code_Analysis | 0a2bb97a9fb5faf01d983c223d9715eb419b7519 | 48079e399321b585efc8a2c6a84c25e2e7a22a61 | refs/heads/master | 2020-05-27T01:20:55.921937 | 2019-11-20T11:15:11 | 2019-11-20T11:15:11 | 188,403,594 | 2 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 867 | cpp | #include <bits/stdc++.h>
using namespace std;
int const N = 2e5 + 1;
int n, k, arr[N];
map<long long, vector<int> > mp;
int main() {
#ifndef ONLINE_JUDGE
freopen("in", "r", stdin);
#endif
cin >> n >> k;
for(int i = 0; i < n; ++i) {
cin >> arr[i];
mp[arr[i]].push_back(i);
}
long long res = 0;
for(int i = 1; i < n - 1; ++i) {
if(arr[i] % k != 0)
continue;
long long a = arr[i] / k, b = arr[i], c = 1ll * arr[i] * k;
if(mp.count(a) != 1 || mp.count(c) != 1)
continue;
int acnt = upper_bound(mp[a].begin(), mp[a].end(), i) - mp[a].begin(),
ccnt = upper_bound(mp[c].begin(), mp[c].end(), i) - mp[c].begin();
if(a == b && b == c)
--acnt;
res += 1ll * acnt * (mp[c].size() - ccnt);
}
cout << res << endl;
return 0;
}
| [
"harshitagar1907@gmail.com"
] | harshitagar1907@gmail.com |
fb52a100fbb64110ec71db76310c0a75cb45a56a | 07fc009c14f3147327f5349b7f023a60b8772a27 | /opgl1/src/snake/square.cpp | c8d888541f8c6dae8751600611169a5ae8810d0e | [] | no_license | bbugday/opgl | 8148d51504cac2ba8cf41820d85478224a477bf8 | 9d3ccbc62f928fa5522a30c140ab64a239aa087f | refs/heads/main | 2023-06-19T23:44:11.186207 | 2021-07-19T22:30:22 | 2021-07-19T22:30:22 | 381,774,329 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 449 | cpp | #ifdef SNAKE_GAME
#include "square.h"
#include <iostream>
float Square::velocity = SQUARE_LENGTH;
Square::Square(float x, float y, Direction direction) :
x(x), y(y), direction(direction)
{}
void Square::move()
{
switch (direction)
{
case Direction::LEFT:
x -= velocity;
break;
case Direction::RIGHT:
x += velocity;
break;
case Direction::UP:
y += velocity;
break;
case Direction::DOWN:
y -= velocity;
break;
}
}
#endif | [
"bugdayberke@gmail.com"
] | bugdayberke@gmail.com |
2dde2632385ef5ff2cc14437b570cdbad8ada204 | 43c9cc505fadc0101f41f7b1833bc81ec9201aef | /C++ Example Programs/Object Pointers/Object Pointers/main.cpp | ccfbd1ce2cfab534a6b28db380cd8955945f2455 | [] | no_license | jrlauer/Cpp | 804a4217763ddfb67aeac0106276dfa5e2c5c238 | e42993de49bc89c345d275a69cf954bf58a9bf67 | refs/heads/master | 2020-04-04T12:47:13.379296 | 2018-11-03T01:17:44 | 2018-11-03T01:17:44 | 155,937,642 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 516 | cpp | //Object Pointer
#include <iostream>
using namespace std;
class P_example {
int num;
public:
void set_num(int val) {num = val;}
void show_num() {cout << num << "\n";}
};
int main() {
P_example ob, *p; //declare an object and pointer to it
ob.set_num(1); //call functions directly on ob
ob.show_num();
p = &ob; //assign p the address of ob
p->set_num(20);//Call functions through a pointer to ob
p->show_num();
getchar();
getchar();
return 0;
}
| [
"noreply@github.com"
] | noreply@github.com |
565ea7d3e257adcea1b305c2b85062c116c9ca78 | 937e0495eec80ccc1985c2abee11b340e6225a19 | /FEP_2017/main_lec3.cpp | a54d069b1f70daa0902ba19f16b965d29e26c415 | [] | no_license | KaistLecture/FEProgramming2 | 1274bca44545c58abd1fe81fdf2e2ce13897717f | 60adcdbcac52d0c04f84f02dac3f462eac0cef1a | refs/heads/master | 2020-05-30T02:38:39.684834 | 2018-08-26T13:24:09 | 2018-08-26T13:24:09 | 39,418,062 | 8 | 9 | null | null | null | null | UTF-8 | C++ | false | false | 1,610 | cpp | #include <iostream>
#include <string>
#include <random>
#include <vector>
#define PI 3.141592
#define SQ(x) ((x)*(x))
#define MAX(a,b) (((a)>(b))?(a):(b))
int main() {
//vector
std::vector<int> v(5, 100);
v.push_back(10);
v.push_back(12);
v.push_back(15);
for (int i = 0; i < v.size(); ++i)
std::cout << i << " : " << v[i] << std::endl;
//MACRO functions
double sq = SQ(3+2); // ((3+2)*(3+2))
double m = MAX(3, 5);
std::cout << m << std::endl;
//string
char a[10] = "abcd";
char* b = "1234";
strcpy_s(a, b);
std::cout << a << "\t" << b << std::endl;
std::string s = "string";
std::cout << s << std::endl;
//random number generation
std::mt19937 gen;
std::normal_distribution<double> dist(0, 1);
for (int i = 0; i < 100; ++i) {
double r = dist(gen);
printf("random number = %0.6f\n", r);
}
for (int i = 0; i < 10; ++i)
std::cout << rand() << std::endl;
std::cout << RAND_MAX << std::endl;
return 0;
}
/*
#include <iostream>
#include <random>
#include <string>
int main() {
const int nrolls = 10000; // number of experiments
const int nstars = 100; // maximum number of stars to distribute
std::default_random_engine generator;
std::normal_distribution<double> distribution(5.0, 2.0);
int p[10] = {};
for (int i = 0; i<nrolls; ++i) {
double number = distribution(generator);
if ((number >= 0.0) && (number<10.0)) ++p[int(number)];
}
std::cout << "normal_distribution (5.0,2.0):" << std::endl;
for (int i = 0; i<10; ++i) {
std::cout << i << "-" << (i + 1) << ": ";
std::cout << std::string(p[i] * nstars / nrolls, '*') << std::endl;
}
return 0;
}
*/ | [
"keunho@business.kaist.ac.kr"
] | keunho@business.kaist.ac.kr |
fa56707bc733307dca372cfdc70bb63df87a355d | da998d8cddaef762aefb0ebee3c89783bd5afb06 | /8. Hashing/find_sum_subArr.cpp | f881c0521e8f33de5f9bf75b95f1f57706f83289 | [] | no_license | tanmay017/Data-Structure-and-Algorithms-Learning | 314d2c220de754e0350eece13ac0e48a9bf78153 | aa101a54860b706e7c0f8702f6f9e6ae4424967c | refs/heads/master | 2023-04-06T00:10:28.330284 | 2021-04-05T08:07:12 | 2021-04-05T08:07:12 | 353,626,082 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 647 | cpp | #include <bits/stdc++.h>
using namespace std;
class Solution
{
public:
bool isSum(int arr[], int n, int sum)
{
unordered_set<int> s;
int pre_sum = 0;
for (int i = 0; i < n; i++)
{
if (pre_sum == sum)
return true;
pre_sum += arr[i];
if (s.find(pre_sum - sum) != s.end())
return true;
s.insert(pre_sum);
}
return false;
}
};
int main()
{
Solution obj;
int arr[] = {5, 8, 6, 13, 3, -1};
int n = sizeof(arr) / 4;
if (obj.isSum(arr, n, 22))
cout << "Yes";
else
cout << "No";
} | [
"tanmaychandra017@gmail.com"
] | tanmaychandra017@gmail.com |
b2358870b163b0b99d069a25b9e51e11e9e237b7 | 40cdb94b52db41bb7b06f0b304a554247a8c9754 | /Gpu_Rvd/header/cuda/cuda_knn.h | 26994d8b1364baee42805399cd0405fcc1a60bac | [
"MIT"
] | permissive | stormHan/gpu_rvd | adb86de5e2d236ac63476c8d598d4021deb9b2d5 | 4029bfa604117c723c712445b42842b4aa499db2 | refs/heads/master | 2020-06-23T03:13:14.648566 | 2017-03-29T12:40:34 | 2017-03-29T12:40:34 | 74,668,863 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,295 | h | /*
* GPU Knn Algorithm
*
*/
#ifndef H_CUDA_KNN
#define H_CUDA_KNN
#include <basic\common.h>
#include <basic\math_op.h>
#include <cuda\cuda_common.h>
#include <mesh\mesh.h>
#include "cuda.h"
namespace Gpu_Rvd{
/*
* \brief Use k-dtree to find K nearest neighbors.
*/
class CudaKNearestNeighbor{
public:
CudaKNearestNeighbor(const Points& p, int k);
CudaKNearestNeighbor(const Points& p, const Mesh& m, int k);
~CudaKNearestNeighbor();
void search(index_t* result);
void set_reference(const Points& p);
void set_query(const Points& p);
void set_query(const Mesh& m);
void set_k(const int k){
k_ = k;
}
private:
void knn(float* ref_host, int ref_width, float* query_host, int query_width,
int height, int k, float* dist_host, int* ind_host);
void memory_allc(int max_ref_nb, int max_query_nb){
ref_ = (float*)malloc(max_ref_nb * dim_ * sizeof(float));
query_ = (float*)malloc(max_query_nb * dim_ * sizeof(float));
dist_ = (float*)malloc(max_query_nb * k_ * sizeof(float));
ind_ = (int*)malloc(max_query_nb * k_ * sizeof(int));
malloc_nb_ = max_query_nb * k_;
};
float* ref_;
float* query_;
int ref_nb_;
int query_nb_;
int dim_;
int k_;
float* dist_;
int* ind_;
int malloc_nb_;
};
}
#endif /* H_CUDA_KNN */ | [
"stormhan1205@gmail.com"
] | stormhan1205@gmail.com |
cf94336d820bf7ed18b3a470be19692d50321008 | fd57ede0ba18642a730cc862c9e9059ec463320b | /ml/nn/driver/sample/SampleDriverAll.cpp | f4f18090b33f525833209bc140714aa659018fbc | [
"Apache-2.0"
] | permissive | kailaisi/android-29-framwork | a0c706fc104d62ea5951ca113f868021c6029cd2 | b7090eebdd77595e43b61294725b41310496ff04 | refs/heads/master | 2023-04-27T14:18:52.579620 | 2021-03-08T13:05:27 | 2021-03-08T13:05:27 | 254,380,637 | 1 | 1 | null | 2023-04-15T12:22:31 | 2020-04-09T13:35:49 | C++ | UTF-8 | C++ | false | false | 991 | cpp | /*
* Copyright (C) 2017 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#define LOG_TAG "SampleDriverAll"
#include "SampleDriverFull.h"
#include <hidl/LegacySupport.h>
using android::sp;
using android::nn::sample_driver::SampleDriverFull;
int main() {
sp<SampleDriverFull> driver(
new SampleDriverFull("nnapi-sample_all", {.execTime = 1.1f, .powerUsage = 1.1f}));
return driver->run();
}
| [
"541018378@qq.com"
] | 541018378@qq.com |
800b5a6315bbbf31db8ab66507e58310323ab6ab | b9e3370720076315a862fdeda8a7ded2b69d5b50 | /Il2CppOutputProject/Source/il2cppOutput/Il2CppCompilerCalculateTypeValues_33Table.cpp | 89a953103fab2c901e084ea410adb10414bd35ec | [] | no_license | Uchemantellem/Holonasty | f03e4419608982b84019030417a59c9fbc7bc0b4 | 4a41de88374dd4a8aeb947200657e03ce7b2bc5a | refs/heads/master | 2020-03-31T11:13:00.560084 | 2018-12-10T07:01:41 | 2018-12-10T07:01:41 | 152,167,866 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 197,017 | cpp | #include "il2cpp-config.h"
#ifndef _MSC_VER
# include <alloca.h>
#else
# include <malloc.h>
#endif
#include <cstring>
#include <string.h>
#include <stdio.h>
#include <cmath>
#include <limits>
#include <assert.h>
#include <stdint.h>
#include "il2cpp-class-internals.h"
#include "codegen/il2cpp-codegen.h"
#include "il2cpp-object-internals.h"
// System.Action`1<System.Object>
struct Action_1_t3252573759;
// System.AsyncCallback
struct AsyncCallback_t3962456242;
// System.Byte[]
struct ByteU5BU5D_t4116647657;
// System.Char[]
struct CharU5BU5D_t3528271667;
// System.Collections.Generic.List`1<System.Int32>
struct List_1_t128053199;
// System.Collections.Generic.List`1<UnityEngine.Networking.PlayerConnection.PlayerEditorConnectionEvents/MessageTypeSubscribers>
struct List_1_t3157010512;
// System.Collections.Generic.Queue`1<UnityEngine.UnitySynchronizationContext/WorkRequest>
struct Queue_1_t1200778106;
// System.DelegateData
struct DelegateData_t1677132599;
// System.Delegate[]
struct DelegateU5BU5D_t1703627840;
// System.IAsyncResult
struct IAsyncResult_t767004451;
// System.IFormatProvider
struct IFormatProvider_t2518567562;
// System.Int32[]
struct Int32U5BU5D_t385246372;
// System.Object[]
struct ObjectU5BU5D_t2843939325;
// System.Reflection.MethodInfo
struct MethodInfo_t;
// System.Runtime.Remoting.ServerIdentity
struct ServerIdentity_t2342208608;
// System.Security.Cryptography.RandomNumberGenerator
struct RandomNumberGenerator_t386037858;
// System.String
struct String_t;
// System.String[]
struct StringU5BU5D_t1281789340;
// System.Threading.ManualResetEvent
struct ManualResetEvent_t451242010;
// System.Threading.SendOrPostCallback
struct SendOrPostCallback_t2750080073;
// System.Type
struct Type_t;
// System.Void
struct Void_t1185182177;
// UnityEngine.Events.InvokableCallList
struct InvokableCallList_t2498835369;
// UnityEngine.Events.PersistentCallGroup
struct PersistentCallGroup_t3050769227;
// UnityEngine.Events.UnityAction`1<UnityEngine.SceneManagement.Scene>
struct UnityAction_1_t2933211702;
// UnityEngine.Events.UnityAction`2<UnityEngine.SceneManagement.Scene,UnityEngine.SceneManagement.LoadSceneMode>
struct UnityAction_2_t2165061829;
// UnityEngine.Events.UnityAction`2<UnityEngine.SceneManagement.Scene,UnityEngine.SceneManagement.Scene>
struct UnityAction_2_t1262235195;
// UnityEngine.Experimental.Rendering.IRenderPipeline
struct IRenderPipeline_t857809005;
// UnityEngine.Experimental.Rendering.IRenderPipelineAsset
struct IRenderPipelineAsset_t3275513850;
// UnityEngine.ILogHandler
struct ILogHandler_t2464711877;
// UnityEngine.IPlayerEditorConnectionNative
struct IPlayerEditorConnectionNative_t4228359453;
// UnityEngine.Networking.PlayerConnection.PlayerEditorConnectionEvents
struct PlayerEditorConnectionEvents_t3411787513;
// UnityEngine.Networking.PlayerConnection.PlayerEditorConnectionEvents/ConnectionChangeEvent
struct ConnectionChangeEvent_t3251856151;
// UnityEngine.Networking.PlayerConnection.PlayerEditorConnectionEvents/MessageEvent
struct MessageEvent_t1491597365;
// UnityEngine.Object
struct Object_t631007953;
// UnityEngine.Playables.PlayableBinding/CreateOutputMethod
struct CreateOutputMethod_t2301811773;
// UnityEngine.Playables.PlayableBinding[]
struct PlayableBindingU5BU5D_t829358056;
// UnityEngine.Windows.Speech.DictationRecognizer/DictationCompletedDelegate
struct DictationCompletedDelegate_t174017847;
// UnityEngine.Windows.Speech.DictationRecognizer/DictationErrorHandler
struct DictationErrorHandler_t287248442;
// UnityEngine.Windows.Speech.DictationRecognizer/DictationHypothesisDelegate
struct DictationHypothesisDelegate_t263093018;
// UnityEngine.Windows.Speech.DictationRecognizer/DictationResultDelegate
struct DictationResultDelegate_t1743835588;
// UnityEngine.Windows.Speech.PhraseRecognitionSystem/ErrorDelegate
struct ErrorDelegate_t1767391626;
// UnityEngine.Windows.Speech.PhraseRecognitionSystem/StatusDelegate
struct StatusDelegate_t1884357950;
// UnityEngine.Windows.Speech.PhraseRecognizer/PhraseRecognizedDelegate
struct PhraseRecognizedDelegate_t3092874173;
// UnityEngine.Windows.Speech.SemanticMeaning[]
struct SemanticMeaningU5BU5D_t1653704947;
struct Object_t631007953_marshaled_com;
struct SemanticMeaning_t3533498486_marshaled_com;
struct SemanticMeaning_t3533498486_marshaled_pinvoke;
#ifndef RUNTIMEOBJECT_H
#define RUNTIMEOBJECT_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Object
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // RUNTIMEOBJECT_H
#ifndef ATTRIBUTE_T861562559_H
#define ATTRIBUTE_T861562559_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Attribute
struct Attribute_t861562559 : public RuntimeObject
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // ATTRIBUTE_T861562559_H
#ifndef STACK_1_T3923495619_H
#define STACK_1_T3923495619_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Collections.Generic.Stack`1<System.Object>
struct Stack_1_t3923495619 : public RuntimeObject
{
public:
// T[] System.Collections.Generic.Stack`1::_array
ObjectU5BU5D_t2843939325* ____array_0;
// System.Int32 System.Collections.Generic.Stack`1::_size
int32_t ____size_1;
// System.Int32 System.Collections.Generic.Stack`1::_version
int32_t ____version_2;
// System.Object System.Collections.Generic.Stack`1::_syncRoot
RuntimeObject * ____syncRoot_3;
public:
inline static int32_t get_offset_of__array_0() { return static_cast<int32_t>(offsetof(Stack_1_t3923495619, ____array_0)); }
inline ObjectU5BU5D_t2843939325* get__array_0() const { return ____array_0; }
inline ObjectU5BU5D_t2843939325** get_address_of__array_0() { return &____array_0; }
inline void set__array_0(ObjectU5BU5D_t2843939325* value)
{
____array_0 = value;
Il2CppCodeGenWriteBarrier((&____array_0), value);
}
inline static int32_t get_offset_of__size_1() { return static_cast<int32_t>(offsetof(Stack_1_t3923495619, ____size_1)); }
inline int32_t get__size_1() const { return ____size_1; }
inline int32_t* get_address_of__size_1() { return &____size_1; }
inline void set__size_1(int32_t value)
{
____size_1 = value;
}
inline static int32_t get_offset_of__version_2() { return static_cast<int32_t>(offsetof(Stack_1_t3923495619, ____version_2)); }
inline int32_t get__version_2() const { return ____version_2; }
inline int32_t* get_address_of__version_2() { return &____version_2; }
inline void set__version_2(int32_t value)
{
____version_2 = value;
}
inline static int32_t get_offset_of__syncRoot_3() { return static_cast<int32_t>(offsetof(Stack_1_t3923495619, ____syncRoot_3)); }
inline RuntimeObject * get__syncRoot_3() const { return ____syncRoot_3; }
inline RuntimeObject ** get_address_of__syncRoot_3() { return &____syncRoot_3; }
inline void set__syncRoot_3(RuntimeObject * value)
{
____syncRoot_3 = value;
Il2CppCodeGenWriteBarrier((&____syncRoot_3), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // STACK_1_T3923495619_H
#ifndef MARSHALBYREFOBJECT_T2760389100_H
#define MARSHALBYREFOBJECT_T2760389100_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.MarshalByRefObject
struct MarshalByRefObject_t2760389100 : public RuntimeObject
{
public:
// System.Runtime.Remoting.ServerIdentity System.MarshalByRefObject::_identity
ServerIdentity_t2342208608 * ____identity_0;
public:
inline static int32_t get_offset_of__identity_0() { return static_cast<int32_t>(offsetof(MarshalByRefObject_t2760389100, ____identity_0)); }
inline ServerIdentity_t2342208608 * get__identity_0() const { return ____identity_0; }
inline ServerIdentity_t2342208608 ** get_address_of__identity_0() { return &____identity_0; }
inline void set__identity_0(ServerIdentity_t2342208608 * value)
{
____identity_0 = value;
Il2CppCodeGenWriteBarrier((&____identity_0), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// Native definition for P/Invoke marshalling of System.MarshalByRefObject
struct MarshalByRefObject_t2760389100_marshaled_pinvoke
{
ServerIdentity_t2342208608 * ____identity_0;
};
// Native definition for COM marshalling of System.MarshalByRefObject
struct MarshalByRefObject_t2760389100_marshaled_com
{
ServerIdentity_t2342208608 * ____identity_0;
};
#endif // MARSHALBYREFOBJECT_T2760389100_H
#ifndef SYNCHRONIZATIONCONTEXT_T2326897723_H
#define SYNCHRONIZATIONCONTEXT_T2326897723_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Threading.SynchronizationContext
struct SynchronizationContext_t2326897723 : public RuntimeObject
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // SYNCHRONIZATIONCONTEXT_T2326897723_H
#ifndef VALUETYPE_T3640485471_H
#define VALUETYPE_T3640485471_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.ValueType
struct ValueType_t3640485471 : public RuntimeObject
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// Native definition for P/Invoke marshalling of System.ValueType
struct ValueType_t3640485471_marshaled_pinvoke
{
};
// Native definition for COM marshalling of System.ValueType
struct ValueType_t3640485471_marshaled_com
{
};
#endif // VALUETYPE_T3640485471_H
#ifndef UNITYEVENTBASE_T3960448221_H
#define UNITYEVENTBASE_T3960448221_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.Events.UnityEventBase
struct UnityEventBase_t3960448221 : public RuntimeObject
{
public:
// UnityEngine.Events.InvokableCallList UnityEngine.Events.UnityEventBase::m_Calls
InvokableCallList_t2498835369 * ___m_Calls_0;
// UnityEngine.Events.PersistentCallGroup UnityEngine.Events.UnityEventBase::m_PersistentCalls
PersistentCallGroup_t3050769227 * ___m_PersistentCalls_1;
// System.String UnityEngine.Events.UnityEventBase::m_TypeName
String_t* ___m_TypeName_2;
// System.Boolean UnityEngine.Events.UnityEventBase::m_CallsDirty
bool ___m_CallsDirty_3;
public:
inline static int32_t get_offset_of_m_Calls_0() { return static_cast<int32_t>(offsetof(UnityEventBase_t3960448221, ___m_Calls_0)); }
inline InvokableCallList_t2498835369 * get_m_Calls_0() const { return ___m_Calls_0; }
inline InvokableCallList_t2498835369 ** get_address_of_m_Calls_0() { return &___m_Calls_0; }
inline void set_m_Calls_0(InvokableCallList_t2498835369 * value)
{
___m_Calls_0 = value;
Il2CppCodeGenWriteBarrier((&___m_Calls_0), value);
}
inline static int32_t get_offset_of_m_PersistentCalls_1() { return static_cast<int32_t>(offsetof(UnityEventBase_t3960448221, ___m_PersistentCalls_1)); }
inline PersistentCallGroup_t3050769227 * get_m_PersistentCalls_1() const { return ___m_PersistentCalls_1; }
inline PersistentCallGroup_t3050769227 ** get_address_of_m_PersistentCalls_1() { return &___m_PersistentCalls_1; }
inline void set_m_PersistentCalls_1(PersistentCallGroup_t3050769227 * value)
{
___m_PersistentCalls_1 = value;
Il2CppCodeGenWriteBarrier((&___m_PersistentCalls_1), value);
}
inline static int32_t get_offset_of_m_TypeName_2() { return static_cast<int32_t>(offsetof(UnityEventBase_t3960448221, ___m_TypeName_2)); }
inline String_t* get_m_TypeName_2() const { return ___m_TypeName_2; }
inline String_t** get_address_of_m_TypeName_2() { return &___m_TypeName_2; }
inline void set_m_TypeName_2(String_t* value)
{
___m_TypeName_2 = value;
Il2CppCodeGenWriteBarrier((&___m_TypeName_2), value);
}
inline static int32_t get_offset_of_m_CallsDirty_3() { return static_cast<int32_t>(offsetof(UnityEventBase_t3960448221, ___m_CallsDirty_3)); }
inline bool get_m_CallsDirty_3() const { return ___m_CallsDirty_3; }
inline bool* get_address_of_m_CallsDirty_3() { return &___m_CallsDirty_3; }
inline void set_m_CallsDirty_3(bool value)
{
___m_CallsDirty_3 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // UNITYEVENTBASE_T3960448221_H
#ifndef RENDERPIPELINEMANAGER_T4036911426_H
#define RENDERPIPELINEMANAGER_T4036911426_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.Experimental.Rendering.RenderPipelineManager
struct RenderPipelineManager_t4036911426 : public RuntimeObject
{
public:
public:
};
struct RenderPipelineManager_t4036911426_StaticFields
{
public:
// UnityEngine.Experimental.Rendering.IRenderPipelineAsset UnityEngine.Experimental.Rendering.RenderPipelineManager::s_CurrentPipelineAsset
RuntimeObject* ___s_CurrentPipelineAsset_0;
// UnityEngine.Experimental.Rendering.IRenderPipeline UnityEngine.Experimental.Rendering.RenderPipelineManager::<currentPipeline>k__BackingField
RuntimeObject* ___U3CcurrentPipelineU3Ek__BackingField_1;
public:
inline static int32_t get_offset_of_s_CurrentPipelineAsset_0() { return static_cast<int32_t>(offsetof(RenderPipelineManager_t4036911426_StaticFields, ___s_CurrentPipelineAsset_0)); }
inline RuntimeObject* get_s_CurrentPipelineAsset_0() const { return ___s_CurrentPipelineAsset_0; }
inline RuntimeObject** get_address_of_s_CurrentPipelineAsset_0() { return &___s_CurrentPipelineAsset_0; }
inline void set_s_CurrentPipelineAsset_0(RuntimeObject* value)
{
___s_CurrentPipelineAsset_0 = value;
Il2CppCodeGenWriteBarrier((&___s_CurrentPipelineAsset_0), value);
}
inline static int32_t get_offset_of_U3CcurrentPipelineU3Ek__BackingField_1() { return static_cast<int32_t>(offsetof(RenderPipelineManager_t4036911426_StaticFields, ___U3CcurrentPipelineU3Ek__BackingField_1)); }
inline RuntimeObject* get_U3CcurrentPipelineU3Ek__BackingField_1() const { return ___U3CcurrentPipelineU3Ek__BackingField_1; }
inline RuntimeObject** get_address_of_U3CcurrentPipelineU3Ek__BackingField_1() { return &___U3CcurrentPipelineU3Ek__BackingField_1; }
inline void set_U3CcurrentPipelineU3Ek__BackingField_1(RuntimeObject* value)
{
___U3CcurrentPipelineU3Ek__BackingField_1 = value;
Il2CppCodeGenWriteBarrier((&___U3CcurrentPipelineU3Ek__BackingField_1), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // RENDERPIPELINEMANAGER_T4036911426_H
#ifndef MESSAGEEVENTARGS_T1170575784_H
#define MESSAGEEVENTARGS_T1170575784_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.Networking.PlayerConnection.MessageEventArgs
struct MessageEventArgs_t1170575784 : public RuntimeObject
{
public:
// System.Int32 UnityEngine.Networking.PlayerConnection.MessageEventArgs::playerId
int32_t ___playerId_0;
// System.Byte[] UnityEngine.Networking.PlayerConnection.MessageEventArgs::data
ByteU5BU5D_t4116647657* ___data_1;
public:
inline static int32_t get_offset_of_playerId_0() { return static_cast<int32_t>(offsetof(MessageEventArgs_t1170575784, ___playerId_0)); }
inline int32_t get_playerId_0() const { return ___playerId_0; }
inline int32_t* get_address_of_playerId_0() { return &___playerId_0; }
inline void set_playerId_0(int32_t value)
{
___playerId_0 = value;
}
inline static int32_t get_offset_of_data_1() { return static_cast<int32_t>(offsetof(MessageEventArgs_t1170575784, ___data_1)); }
inline ByteU5BU5D_t4116647657* get_data_1() const { return ___data_1; }
inline ByteU5BU5D_t4116647657** get_address_of_data_1() { return &___data_1; }
inline void set_data_1(ByteU5BU5D_t4116647657* value)
{
___data_1 = value;
Il2CppCodeGenWriteBarrier((&___data_1), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // MESSAGEEVENTARGS_T1170575784_H
#ifndef U3CBLOCKUNTILRECVMSGU3EC__ANONSTOREY2_T2166869842_H
#define U3CBLOCKUNTILRECVMSGU3EC__ANONSTOREY2_T2166869842_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.Networking.PlayerConnection.PlayerConnection/<BlockUntilRecvMsg>c__AnonStorey2
struct U3CBlockUntilRecvMsgU3Ec__AnonStorey2_t2166869842 : public RuntimeObject
{
public:
// System.Boolean UnityEngine.Networking.PlayerConnection.PlayerConnection/<BlockUntilRecvMsg>c__AnonStorey2::msgReceived
bool ___msgReceived_0;
public:
inline static int32_t get_offset_of_msgReceived_0() { return static_cast<int32_t>(offsetof(U3CBlockUntilRecvMsgU3Ec__AnonStorey2_t2166869842, ___msgReceived_0)); }
inline bool get_msgReceived_0() const { return ___msgReceived_0; }
inline bool* get_address_of_msgReceived_0() { return &___msgReceived_0; }
inline void set_msgReceived_0(bool value)
{
___msgReceived_0 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // U3CBLOCKUNTILRECVMSGU3EC__ANONSTOREY2_T2166869842_H
#ifndef PLAYEREDITORCONNECTIONEVENTS_T3411787513_H
#define PLAYEREDITORCONNECTIONEVENTS_T3411787513_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.Networking.PlayerConnection.PlayerEditorConnectionEvents
struct PlayerEditorConnectionEvents_t3411787513 : public RuntimeObject
{
public:
// System.Collections.Generic.List`1<UnityEngine.Networking.PlayerConnection.PlayerEditorConnectionEvents/MessageTypeSubscribers> UnityEngine.Networking.PlayerConnection.PlayerEditorConnectionEvents::messageTypeSubscribers
List_1_t3157010512 * ___messageTypeSubscribers_0;
// UnityEngine.Networking.PlayerConnection.PlayerEditorConnectionEvents/ConnectionChangeEvent UnityEngine.Networking.PlayerConnection.PlayerEditorConnectionEvents::connectionEvent
ConnectionChangeEvent_t3251856151 * ___connectionEvent_1;
// UnityEngine.Networking.PlayerConnection.PlayerEditorConnectionEvents/ConnectionChangeEvent UnityEngine.Networking.PlayerConnection.PlayerEditorConnectionEvents::disconnectionEvent
ConnectionChangeEvent_t3251856151 * ___disconnectionEvent_2;
public:
inline static int32_t get_offset_of_messageTypeSubscribers_0() { return static_cast<int32_t>(offsetof(PlayerEditorConnectionEvents_t3411787513, ___messageTypeSubscribers_0)); }
inline List_1_t3157010512 * get_messageTypeSubscribers_0() const { return ___messageTypeSubscribers_0; }
inline List_1_t3157010512 ** get_address_of_messageTypeSubscribers_0() { return &___messageTypeSubscribers_0; }
inline void set_messageTypeSubscribers_0(List_1_t3157010512 * value)
{
___messageTypeSubscribers_0 = value;
Il2CppCodeGenWriteBarrier((&___messageTypeSubscribers_0), value);
}
inline static int32_t get_offset_of_connectionEvent_1() { return static_cast<int32_t>(offsetof(PlayerEditorConnectionEvents_t3411787513, ___connectionEvent_1)); }
inline ConnectionChangeEvent_t3251856151 * get_connectionEvent_1() const { return ___connectionEvent_1; }
inline ConnectionChangeEvent_t3251856151 ** get_address_of_connectionEvent_1() { return &___connectionEvent_1; }
inline void set_connectionEvent_1(ConnectionChangeEvent_t3251856151 * value)
{
___connectionEvent_1 = value;
Il2CppCodeGenWriteBarrier((&___connectionEvent_1), value);
}
inline static int32_t get_offset_of_disconnectionEvent_2() { return static_cast<int32_t>(offsetof(PlayerEditorConnectionEvents_t3411787513, ___disconnectionEvent_2)); }
inline ConnectionChangeEvent_t3251856151 * get_disconnectionEvent_2() const { return ___disconnectionEvent_2; }
inline ConnectionChangeEvent_t3251856151 ** get_address_of_disconnectionEvent_2() { return &___disconnectionEvent_2; }
inline void set_disconnectionEvent_2(ConnectionChangeEvent_t3251856151 * value)
{
___disconnectionEvent_2 = value;
Il2CppCodeGenWriteBarrier((&___disconnectionEvent_2), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // PLAYEREDITORCONNECTIONEVENTS_T3411787513_H
#ifndef MESSAGETYPESUBSCRIBERS_T1684935770_H
#define MESSAGETYPESUBSCRIBERS_T1684935770_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.Networking.PlayerConnection.PlayerEditorConnectionEvents/MessageTypeSubscribers
struct MessageTypeSubscribers_t1684935770 : public RuntimeObject
{
public:
// System.String UnityEngine.Networking.PlayerConnection.PlayerEditorConnectionEvents/MessageTypeSubscribers::m_messageTypeId
String_t* ___m_messageTypeId_0;
// System.Int32 UnityEngine.Networking.PlayerConnection.PlayerEditorConnectionEvents/MessageTypeSubscribers::subscriberCount
int32_t ___subscriberCount_1;
// UnityEngine.Networking.PlayerConnection.PlayerEditorConnectionEvents/MessageEvent UnityEngine.Networking.PlayerConnection.PlayerEditorConnectionEvents/MessageTypeSubscribers::messageCallback
MessageEvent_t1491597365 * ___messageCallback_2;
public:
inline static int32_t get_offset_of_m_messageTypeId_0() { return static_cast<int32_t>(offsetof(MessageTypeSubscribers_t1684935770, ___m_messageTypeId_0)); }
inline String_t* get_m_messageTypeId_0() const { return ___m_messageTypeId_0; }
inline String_t** get_address_of_m_messageTypeId_0() { return &___m_messageTypeId_0; }
inline void set_m_messageTypeId_0(String_t* value)
{
___m_messageTypeId_0 = value;
Il2CppCodeGenWriteBarrier((&___m_messageTypeId_0), value);
}
inline static int32_t get_offset_of_subscriberCount_1() { return static_cast<int32_t>(offsetof(MessageTypeSubscribers_t1684935770, ___subscriberCount_1)); }
inline int32_t get_subscriberCount_1() const { return ___subscriberCount_1; }
inline int32_t* get_address_of_subscriberCount_1() { return &___subscriberCount_1; }
inline void set_subscriberCount_1(int32_t value)
{
___subscriberCount_1 = value;
}
inline static int32_t get_offset_of_messageCallback_2() { return static_cast<int32_t>(offsetof(MessageTypeSubscribers_t1684935770, ___messageCallback_2)); }
inline MessageEvent_t1491597365 * get_messageCallback_2() const { return ___messageCallback_2; }
inline MessageEvent_t1491597365 ** get_address_of_messageCallback_2() { return &___messageCallback_2; }
inline void set_messageCallback_2(MessageEvent_t1491597365 * value)
{
___messageCallback_2 = value;
Il2CppCodeGenWriteBarrier((&___messageCallback_2), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // MESSAGETYPESUBSCRIBERS_T1684935770_H
#ifndef PLAYABLEBEHAVIOUR_T4203540982_H
#define PLAYABLEBEHAVIOUR_T4203540982_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.Playables.PlayableBehaviour
struct PlayableBehaviour_t4203540982 : public RuntimeObject
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // PLAYABLEBEHAVIOUR_T4203540982_H
#ifndef SCENEMANAGER_T2787271929_H
#define SCENEMANAGER_T2787271929_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.SceneManagement.SceneManager
struct SceneManager_t2787271929 : public RuntimeObject
{
public:
public:
};
struct SceneManager_t2787271929_StaticFields
{
public:
// UnityEngine.Events.UnityAction`2<UnityEngine.SceneManagement.Scene,UnityEngine.SceneManagement.LoadSceneMode> UnityEngine.SceneManagement.SceneManager::sceneLoaded
UnityAction_2_t2165061829 * ___sceneLoaded_0;
// UnityEngine.Events.UnityAction`1<UnityEngine.SceneManagement.Scene> UnityEngine.SceneManagement.SceneManager::sceneUnloaded
UnityAction_1_t2933211702 * ___sceneUnloaded_1;
// UnityEngine.Events.UnityAction`2<UnityEngine.SceneManagement.Scene,UnityEngine.SceneManagement.Scene> UnityEngine.SceneManagement.SceneManager::activeSceneChanged
UnityAction_2_t1262235195 * ___activeSceneChanged_2;
public:
inline static int32_t get_offset_of_sceneLoaded_0() { return static_cast<int32_t>(offsetof(SceneManager_t2787271929_StaticFields, ___sceneLoaded_0)); }
inline UnityAction_2_t2165061829 * get_sceneLoaded_0() const { return ___sceneLoaded_0; }
inline UnityAction_2_t2165061829 ** get_address_of_sceneLoaded_0() { return &___sceneLoaded_0; }
inline void set_sceneLoaded_0(UnityAction_2_t2165061829 * value)
{
___sceneLoaded_0 = value;
Il2CppCodeGenWriteBarrier((&___sceneLoaded_0), value);
}
inline static int32_t get_offset_of_sceneUnloaded_1() { return static_cast<int32_t>(offsetof(SceneManager_t2787271929_StaticFields, ___sceneUnloaded_1)); }
inline UnityAction_1_t2933211702 * get_sceneUnloaded_1() const { return ___sceneUnloaded_1; }
inline UnityAction_1_t2933211702 ** get_address_of_sceneUnloaded_1() { return &___sceneUnloaded_1; }
inline void set_sceneUnloaded_1(UnityAction_1_t2933211702 * value)
{
___sceneUnloaded_1 = value;
Il2CppCodeGenWriteBarrier((&___sceneUnloaded_1), value);
}
inline static int32_t get_offset_of_activeSceneChanged_2() { return static_cast<int32_t>(offsetof(SceneManager_t2787271929_StaticFields, ___activeSceneChanged_2)); }
inline UnityAction_2_t1262235195 * get_activeSceneChanged_2() const { return ___activeSceneChanged_2; }
inline UnityAction_2_t1262235195 ** get_address_of_activeSceneChanged_2() { return &___activeSceneChanged_2; }
inline void set_activeSceneChanged_2(UnityAction_2_t1262235195 * value)
{
___activeSceneChanged_2 = value;
Il2CppCodeGenWriteBarrier((&___activeSceneChanged_2), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // SCENEMANAGER_T2787271929_H
#ifndef PHRASERECOGNITIONSYSTEM_T3404389927_H
#define PHRASERECOGNITIONSYSTEM_T3404389927_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.Windows.Speech.PhraseRecognitionSystem
struct PhraseRecognitionSystem_t3404389927 : public RuntimeObject
{
public:
public:
};
struct PhraseRecognitionSystem_t3404389927_StaticFields
{
public:
// UnityEngine.Windows.Speech.PhraseRecognitionSystem/ErrorDelegate UnityEngine.Windows.Speech.PhraseRecognitionSystem::OnError
ErrorDelegate_t1767391626 * ___OnError_0;
// UnityEngine.Windows.Speech.PhraseRecognitionSystem/StatusDelegate UnityEngine.Windows.Speech.PhraseRecognitionSystem::OnStatusChanged
StatusDelegate_t1884357950 * ___OnStatusChanged_1;
public:
inline static int32_t get_offset_of_OnError_0() { return static_cast<int32_t>(offsetof(PhraseRecognitionSystem_t3404389927_StaticFields, ___OnError_0)); }
inline ErrorDelegate_t1767391626 * get_OnError_0() const { return ___OnError_0; }
inline ErrorDelegate_t1767391626 ** get_address_of_OnError_0() { return &___OnError_0; }
inline void set_OnError_0(ErrorDelegate_t1767391626 * value)
{
___OnError_0 = value;
Il2CppCodeGenWriteBarrier((&___OnError_0), value);
}
inline static int32_t get_offset_of_OnStatusChanged_1() { return static_cast<int32_t>(offsetof(PhraseRecognitionSystem_t3404389927_StaticFields, ___OnStatusChanged_1)); }
inline StatusDelegate_t1884357950 * get_OnStatusChanged_1() const { return ___OnStatusChanged_1; }
inline StatusDelegate_t1884357950 ** get_address_of_OnStatusChanged_1() { return &___OnStatusChanged_1; }
inline void set_OnStatusChanged_1(StatusDelegate_t1884357950 * value)
{
___OnStatusChanged_1 = value;
Il2CppCodeGenWriteBarrier((&___OnStatusChanged_1), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // PHRASERECOGNITIONSYSTEM_T3404389927_H
#ifndef YIELDINSTRUCTION_T403091072_H
#define YIELDINSTRUCTION_T403091072_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.YieldInstruction
struct YieldInstruction_t403091072 : public RuntimeObject
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// Native definition for P/Invoke marshalling of UnityEngine.YieldInstruction
struct YieldInstruction_t403091072_marshaled_pinvoke
{
};
// Native definition for COM marshalling of UnityEngine.YieldInstruction
struct YieldInstruction_t403091072_marshaled_com
{
};
#endif // YIELDINSTRUCTION_T403091072_H
#ifndef NETFXCOREEXTENSIONS_T4089902045_H
#define NETFXCOREEXTENSIONS_T4089902045_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngineInternal.NetFxCoreExtensions
struct NetFxCoreExtensions_t4089902045 : public RuntimeObject
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // NETFXCOREEXTENSIONS_T4089902045_H
#ifndef BOOLEAN_T97287965_H
#define BOOLEAN_T97287965_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Boolean
struct Boolean_t97287965
{
public:
// System.Boolean System.Boolean::m_value
bool ___m_value_0;
public:
inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Boolean_t97287965, ___m_value_0)); }
inline bool get_m_value_0() const { return ___m_value_0; }
inline bool* get_address_of_m_value_0() { return &___m_value_0; }
inline void set_m_value_0(bool value)
{
___m_value_0 = value;
}
};
struct Boolean_t97287965_StaticFields
{
public:
// System.String System.Boolean::TrueString
String_t* ___TrueString_5;
// System.String System.Boolean::FalseString
String_t* ___FalseString_6;
public:
inline static int32_t get_offset_of_TrueString_5() { return static_cast<int32_t>(offsetof(Boolean_t97287965_StaticFields, ___TrueString_5)); }
inline String_t* get_TrueString_5() const { return ___TrueString_5; }
inline String_t** get_address_of_TrueString_5() { return &___TrueString_5; }
inline void set_TrueString_5(String_t* value)
{
___TrueString_5 = value;
Il2CppCodeGenWriteBarrier((&___TrueString_5), value);
}
inline static int32_t get_offset_of_FalseString_6() { return static_cast<int32_t>(offsetof(Boolean_t97287965_StaticFields, ___FalseString_6)); }
inline String_t* get_FalseString_6() const { return ___FalseString_6; }
inline String_t** get_address_of_FalseString_6() { return &___FalseString_6; }
inline void set_FalseString_6(String_t* value)
{
___FalseString_6 = value;
Il2CppCodeGenWriteBarrier((&___FalseString_6), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // BOOLEAN_T97287965_H
#ifndef DATETIME_T3738529785_H
#define DATETIME_T3738529785_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.DateTime
struct DateTime_t3738529785
{
public:
// System.UInt64 System.DateTime::dateData
uint64_t ___dateData_44;
public:
inline static int32_t get_offset_of_dateData_44() { return static_cast<int32_t>(offsetof(DateTime_t3738529785, ___dateData_44)); }
inline uint64_t get_dateData_44() const { return ___dateData_44; }
inline uint64_t* get_address_of_dateData_44() { return &___dateData_44; }
inline void set_dateData_44(uint64_t value)
{
___dateData_44 = value;
}
};
struct DateTime_t3738529785_StaticFields
{
public:
// System.Int32[] System.DateTime::DaysToMonth365
Int32U5BU5D_t385246372* ___DaysToMonth365_29;
// System.Int32[] System.DateTime::DaysToMonth366
Int32U5BU5D_t385246372* ___DaysToMonth366_30;
// System.DateTime System.DateTime::MinValue
DateTime_t3738529785 ___MinValue_31;
// System.DateTime System.DateTime::MaxValue
DateTime_t3738529785 ___MaxValue_32;
public:
inline static int32_t get_offset_of_DaysToMonth365_29() { return static_cast<int32_t>(offsetof(DateTime_t3738529785_StaticFields, ___DaysToMonth365_29)); }
inline Int32U5BU5D_t385246372* get_DaysToMonth365_29() const { return ___DaysToMonth365_29; }
inline Int32U5BU5D_t385246372** get_address_of_DaysToMonth365_29() { return &___DaysToMonth365_29; }
inline void set_DaysToMonth365_29(Int32U5BU5D_t385246372* value)
{
___DaysToMonth365_29 = value;
Il2CppCodeGenWriteBarrier((&___DaysToMonth365_29), value);
}
inline static int32_t get_offset_of_DaysToMonth366_30() { return static_cast<int32_t>(offsetof(DateTime_t3738529785_StaticFields, ___DaysToMonth366_30)); }
inline Int32U5BU5D_t385246372* get_DaysToMonth366_30() const { return ___DaysToMonth366_30; }
inline Int32U5BU5D_t385246372** get_address_of_DaysToMonth366_30() { return &___DaysToMonth366_30; }
inline void set_DaysToMonth366_30(Int32U5BU5D_t385246372* value)
{
___DaysToMonth366_30 = value;
Il2CppCodeGenWriteBarrier((&___DaysToMonth366_30), value);
}
inline static int32_t get_offset_of_MinValue_31() { return static_cast<int32_t>(offsetof(DateTime_t3738529785_StaticFields, ___MinValue_31)); }
inline DateTime_t3738529785 get_MinValue_31() const { return ___MinValue_31; }
inline DateTime_t3738529785 * get_address_of_MinValue_31() { return &___MinValue_31; }
inline void set_MinValue_31(DateTime_t3738529785 value)
{
___MinValue_31 = value;
}
inline static int32_t get_offset_of_MaxValue_32() { return static_cast<int32_t>(offsetof(DateTime_t3738529785_StaticFields, ___MaxValue_32)); }
inline DateTime_t3738529785 get_MaxValue_32() const { return ___MaxValue_32; }
inline DateTime_t3738529785 * get_address_of_MaxValue_32() { return &___MaxValue_32; }
inline void set_MaxValue_32(DateTime_t3738529785 value)
{
___MaxValue_32 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // DATETIME_T3738529785_H
#ifndef ENUM_T4135868527_H
#define ENUM_T4135868527_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Enum
struct Enum_t4135868527 : public ValueType_t3640485471
{
public:
public:
};
struct Enum_t4135868527_StaticFields
{
public:
// System.Char[] System.Enum::enumSeperatorCharArray
CharU5BU5D_t3528271667* ___enumSeperatorCharArray_0;
public:
inline static int32_t get_offset_of_enumSeperatorCharArray_0() { return static_cast<int32_t>(offsetof(Enum_t4135868527_StaticFields, ___enumSeperatorCharArray_0)); }
inline CharU5BU5D_t3528271667* get_enumSeperatorCharArray_0() const { return ___enumSeperatorCharArray_0; }
inline CharU5BU5D_t3528271667** get_address_of_enumSeperatorCharArray_0() { return &___enumSeperatorCharArray_0; }
inline void set_enumSeperatorCharArray_0(CharU5BU5D_t3528271667* value)
{
___enumSeperatorCharArray_0 = value;
Il2CppCodeGenWriteBarrier((&___enumSeperatorCharArray_0), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// Native definition for P/Invoke marshalling of System.Enum
struct Enum_t4135868527_marshaled_pinvoke
{
};
// Native definition for COM marshalling of System.Enum
struct Enum_t4135868527_marshaled_com
{
};
#endif // ENUM_T4135868527_H
#ifndef GUID_T_H
#define GUID_T_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Guid
struct Guid_t
{
public:
// System.Int32 System.Guid::_a
int32_t ____a_1;
// System.Int16 System.Guid::_b
int16_t ____b_2;
// System.Int16 System.Guid::_c
int16_t ____c_3;
// System.Byte System.Guid::_d
uint8_t ____d_4;
// System.Byte System.Guid::_e
uint8_t ____e_5;
// System.Byte System.Guid::_f
uint8_t ____f_6;
// System.Byte System.Guid::_g
uint8_t ____g_7;
// System.Byte System.Guid::_h
uint8_t ____h_8;
// System.Byte System.Guid::_i
uint8_t ____i_9;
// System.Byte System.Guid::_j
uint8_t ____j_10;
// System.Byte System.Guid::_k
uint8_t ____k_11;
public:
inline static int32_t get_offset_of__a_1() { return static_cast<int32_t>(offsetof(Guid_t, ____a_1)); }
inline int32_t get__a_1() const { return ____a_1; }
inline int32_t* get_address_of__a_1() { return &____a_1; }
inline void set__a_1(int32_t value)
{
____a_1 = value;
}
inline static int32_t get_offset_of__b_2() { return static_cast<int32_t>(offsetof(Guid_t, ____b_2)); }
inline int16_t get__b_2() const { return ____b_2; }
inline int16_t* get_address_of__b_2() { return &____b_2; }
inline void set__b_2(int16_t value)
{
____b_2 = value;
}
inline static int32_t get_offset_of__c_3() { return static_cast<int32_t>(offsetof(Guid_t, ____c_3)); }
inline int16_t get__c_3() const { return ____c_3; }
inline int16_t* get_address_of__c_3() { return &____c_3; }
inline void set__c_3(int16_t value)
{
____c_3 = value;
}
inline static int32_t get_offset_of__d_4() { return static_cast<int32_t>(offsetof(Guid_t, ____d_4)); }
inline uint8_t get__d_4() const { return ____d_4; }
inline uint8_t* get_address_of__d_4() { return &____d_4; }
inline void set__d_4(uint8_t value)
{
____d_4 = value;
}
inline static int32_t get_offset_of__e_5() { return static_cast<int32_t>(offsetof(Guid_t, ____e_5)); }
inline uint8_t get__e_5() const { return ____e_5; }
inline uint8_t* get_address_of__e_5() { return &____e_5; }
inline void set__e_5(uint8_t value)
{
____e_5 = value;
}
inline static int32_t get_offset_of__f_6() { return static_cast<int32_t>(offsetof(Guid_t, ____f_6)); }
inline uint8_t get__f_6() const { return ____f_6; }
inline uint8_t* get_address_of__f_6() { return &____f_6; }
inline void set__f_6(uint8_t value)
{
____f_6 = value;
}
inline static int32_t get_offset_of__g_7() { return static_cast<int32_t>(offsetof(Guid_t, ____g_7)); }
inline uint8_t get__g_7() const { return ____g_7; }
inline uint8_t* get_address_of__g_7() { return &____g_7; }
inline void set__g_7(uint8_t value)
{
____g_7 = value;
}
inline static int32_t get_offset_of__h_8() { return static_cast<int32_t>(offsetof(Guid_t, ____h_8)); }
inline uint8_t get__h_8() const { return ____h_8; }
inline uint8_t* get_address_of__h_8() { return &____h_8; }
inline void set__h_8(uint8_t value)
{
____h_8 = value;
}
inline static int32_t get_offset_of__i_9() { return static_cast<int32_t>(offsetof(Guid_t, ____i_9)); }
inline uint8_t get__i_9() const { return ____i_9; }
inline uint8_t* get_address_of__i_9() { return &____i_9; }
inline void set__i_9(uint8_t value)
{
____i_9 = value;
}
inline static int32_t get_offset_of__j_10() { return static_cast<int32_t>(offsetof(Guid_t, ____j_10)); }
inline uint8_t get__j_10() const { return ____j_10; }
inline uint8_t* get_address_of__j_10() { return &____j_10; }
inline void set__j_10(uint8_t value)
{
____j_10 = value;
}
inline static int32_t get_offset_of__k_11() { return static_cast<int32_t>(offsetof(Guid_t, ____k_11)); }
inline uint8_t get__k_11() const { return ____k_11; }
inline uint8_t* get_address_of__k_11() { return &____k_11; }
inline void set__k_11(uint8_t value)
{
____k_11 = value;
}
};
struct Guid_t_StaticFields
{
public:
// System.Guid System.Guid::Empty
Guid_t ___Empty_0;
// System.Object System.Guid::_rngAccess
RuntimeObject * ____rngAccess_12;
// System.Security.Cryptography.RandomNumberGenerator System.Guid::_rng
RandomNumberGenerator_t386037858 * ____rng_13;
// System.Security.Cryptography.RandomNumberGenerator System.Guid::_fastRng
RandomNumberGenerator_t386037858 * ____fastRng_14;
public:
inline static int32_t get_offset_of_Empty_0() { return static_cast<int32_t>(offsetof(Guid_t_StaticFields, ___Empty_0)); }
inline Guid_t get_Empty_0() const { return ___Empty_0; }
inline Guid_t * get_address_of_Empty_0() { return &___Empty_0; }
inline void set_Empty_0(Guid_t value)
{
___Empty_0 = value;
}
inline static int32_t get_offset_of__rngAccess_12() { return static_cast<int32_t>(offsetof(Guid_t_StaticFields, ____rngAccess_12)); }
inline RuntimeObject * get__rngAccess_12() const { return ____rngAccess_12; }
inline RuntimeObject ** get_address_of__rngAccess_12() { return &____rngAccess_12; }
inline void set__rngAccess_12(RuntimeObject * value)
{
____rngAccess_12 = value;
Il2CppCodeGenWriteBarrier((&____rngAccess_12), value);
}
inline static int32_t get_offset_of__rng_13() { return static_cast<int32_t>(offsetof(Guid_t_StaticFields, ____rng_13)); }
inline RandomNumberGenerator_t386037858 * get__rng_13() const { return ____rng_13; }
inline RandomNumberGenerator_t386037858 ** get_address_of__rng_13() { return &____rng_13; }
inline void set__rng_13(RandomNumberGenerator_t386037858 * value)
{
____rng_13 = value;
Il2CppCodeGenWriteBarrier((&____rng_13), value);
}
inline static int32_t get_offset_of__fastRng_14() { return static_cast<int32_t>(offsetof(Guid_t_StaticFields, ____fastRng_14)); }
inline RandomNumberGenerator_t386037858 * get__fastRng_14() const { return ____fastRng_14; }
inline RandomNumberGenerator_t386037858 ** get_address_of__fastRng_14() { return &____fastRng_14; }
inline void set__fastRng_14(RandomNumberGenerator_t386037858 * value)
{
____fastRng_14 = value;
Il2CppCodeGenWriteBarrier((&____fastRng_14), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // GUID_T_H
#ifndef TEXTWRITER_T3478189236_H
#define TEXTWRITER_T3478189236_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.IO.TextWriter
struct TextWriter_t3478189236 : public MarshalByRefObject_t2760389100
{
public:
// System.Char[] System.IO.TextWriter::CoreNewLine
CharU5BU5D_t3528271667* ___CoreNewLine_9;
// System.IFormatProvider System.IO.TextWriter::InternalFormatProvider
RuntimeObject* ___InternalFormatProvider_10;
public:
inline static int32_t get_offset_of_CoreNewLine_9() { return static_cast<int32_t>(offsetof(TextWriter_t3478189236, ___CoreNewLine_9)); }
inline CharU5BU5D_t3528271667* get_CoreNewLine_9() const { return ___CoreNewLine_9; }
inline CharU5BU5D_t3528271667** get_address_of_CoreNewLine_9() { return &___CoreNewLine_9; }
inline void set_CoreNewLine_9(CharU5BU5D_t3528271667* value)
{
___CoreNewLine_9 = value;
Il2CppCodeGenWriteBarrier((&___CoreNewLine_9), value);
}
inline static int32_t get_offset_of_InternalFormatProvider_10() { return static_cast<int32_t>(offsetof(TextWriter_t3478189236, ___InternalFormatProvider_10)); }
inline RuntimeObject* get_InternalFormatProvider_10() const { return ___InternalFormatProvider_10; }
inline RuntimeObject** get_address_of_InternalFormatProvider_10() { return &___InternalFormatProvider_10; }
inline void set_InternalFormatProvider_10(RuntimeObject* value)
{
___InternalFormatProvider_10 = value;
Il2CppCodeGenWriteBarrier((&___InternalFormatProvider_10), value);
}
};
struct TextWriter_t3478189236_StaticFields
{
public:
// System.IO.TextWriter System.IO.TextWriter::Null
TextWriter_t3478189236 * ___Null_1;
// System.Action`1<System.Object> System.IO.TextWriter::_WriteCharDelegate
Action_1_t3252573759 * ____WriteCharDelegate_2;
// System.Action`1<System.Object> System.IO.TextWriter::_WriteStringDelegate
Action_1_t3252573759 * ____WriteStringDelegate_3;
// System.Action`1<System.Object> System.IO.TextWriter::_WriteCharArrayRangeDelegate
Action_1_t3252573759 * ____WriteCharArrayRangeDelegate_4;
// System.Action`1<System.Object> System.IO.TextWriter::_WriteLineCharDelegate
Action_1_t3252573759 * ____WriteLineCharDelegate_5;
// System.Action`1<System.Object> System.IO.TextWriter::_WriteLineStringDelegate
Action_1_t3252573759 * ____WriteLineStringDelegate_6;
// System.Action`1<System.Object> System.IO.TextWriter::_WriteLineCharArrayRangeDelegate
Action_1_t3252573759 * ____WriteLineCharArrayRangeDelegate_7;
// System.Action`1<System.Object> System.IO.TextWriter::_FlushDelegate
Action_1_t3252573759 * ____FlushDelegate_8;
public:
inline static int32_t get_offset_of_Null_1() { return static_cast<int32_t>(offsetof(TextWriter_t3478189236_StaticFields, ___Null_1)); }
inline TextWriter_t3478189236 * get_Null_1() const { return ___Null_1; }
inline TextWriter_t3478189236 ** get_address_of_Null_1() { return &___Null_1; }
inline void set_Null_1(TextWriter_t3478189236 * value)
{
___Null_1 = value;
Il2CppCodeGenWriteBarrier((&___Null_1), value);
}
inline static int32_t get_offset_of__WriteCharDelegate_2() { return static_cast<int32_t>(offsetof(TextWriter_t3478189236_StaticFields, ____WriteCharDelegate_2)); }
inline Action_1_t3252573759 * get__WriteCharDelegate_2() const { return ____WriteCharDelegate_2; }
inline Action_1_t3252573759 ** get_address_of__WriteCharDelegate_2() { return &____WriteCharDelegate_2; }
inline void set__WriteCharDelegate_2(Action_1_t3252573759 * value)
{
____WriteCharDelegate_2 = value;
Il2CppCodeGenWriteBarrier((&____WriteCharDelegate_2), value);
}
inline static int32_t get_offset_of__WriteStringDelegate_3() { return static_cast<int32_t>(offsetof(TextWriter_t3478189236_StaticFields, ____WriteStringDelegate_3)); }
inline Action_1_t3252573759 * get__WriteStringDelegate_3() const { return ____WriteStringDelegate_3; }
inline Action_1_t3252573759 ** get_address_of__WriteStringDelegate_3() { return &____WriteStringDelegate_3; }
inline void set__WriteStringDelegate_3(Action_1_t3252573759 * value)
{
____WriteStringDelegate_3 = value;
Il2CppCodeGenWriteBarrier((&____WriteStringDelegate_3), value);
}
inline static int32_t get_offset_of__WriteCharArrayRangeDelegate_4() { return static_cast<int32_t>(offsetof(TextWriter_t3478189236_StaticFields, ____WriteCharArrayRangeDelegate_4)); }
inline Action_1_t3252573759 * get__WriteCharArrayRangeDelegate_4() const { return ____WriteCharArrayRangeDelegate_4; }
inline Action_1_t3252573759 ** get_address_of__WriteCharArrayRangeDelegate_4() { return &____WriteCharArrayRangeDelegate_4; }
inline void set__WriteCharArrayRangeDelegate_4(Action_1_t3252573759 * value)
{
____WriteCharArrayRangeDelegate_4 = value;
Il2CppCodeGenWriteBarrier((&____WriteCharArrayRangeDelegate_4), value);
}
inline static int32_t get_offset_of__WriteLineCharDelegate_5() { return static_cast<int32_t>(offsetof(TextWriter_t3478189236_StaticFields, ____WriteLineCharDelegate_5)); }
inline Action_1_t3252573759 * get__WriteLineCharDelegate_5() const { return ____WriteLineCharDelegate_5; }
inline Action_1_t3252573759 ** get_address_of__WriteLineCharDelegate_5() { return &____WriteLineCharDelegate_5; }
inline void set__WriteLineCharDelegate_5(Action_1_t3252573759 * value)
{
____WriteLineCharDelegate_5 = value;
Il2CppCodeGenWriteBarrier((&____WriteLineCharDelegate_5), value);
}
inline static int32_t get_offset_of__WriteLineStringDelegate_6() { return static_cast<int32_t>(offsetof(TextWriter_t3478189236_StaticFields, ____WriteLineStringDelegate_6)); }
inline Action_1_t3252573759 * get__WriteLineStringDelegate_6() const { return ____WriteLineStringDelegate_6; }
inline Action_1_t3252573759 ** get_address_of__WriteLineStringDelegate_6() { return &____WriteLineStringDelegate_6; }
inline void set__WriteLineStringDelegate_6(Action_1_t3252573759 * value)
{
____WriteLineStringDelegate_6 = value;
Il2CppCodeGenWriteBarrier((&____WriteLineStringDelegate_6), value);
}
inline static int32_t get_offset_of__WriteLineCharArrayRangeDelegate_7() { return static_cast<int32_t>(offsetof(TextWriter_t3478189236_StaticFields, ____WriteLineCharArrayRangeDelegate_7)); }
inline Action_1_t3252573759 * get__WriteLineCharArrayRangeDelegate_7() const { return ____WriteLineCharArrayRangeDelegate_7; }
inline Action_1_t3252573759 ** get_address_of__WriteLineCharArrayRangeDelegate_7() { return &____WriteLineCharArrayRangeDelegate_7; }
inline void set__WriteLineCharArrayRangeDelegate_7(Action_1_t3252573759 * value)
{
____WriteLineCharArrayRangeDelegate_7 = value;
Il2CppCodeGenWriteBarrier((&____WriteLineCharArrayRangeDelegate_7), value);
}
inline static int32_t get_offset_of__FlushDelegate_8() { return static_cast<int32_t>(offsetof(TextWriter_t3478189236_StaticFields, ____FlushDelegate_8)); }
inline Action_1_t3252573759 * get__FlushDelegate_8() const { return ____FlushDelegate_8; }
inline Action_1_t3252573759 ** get_address_of__FlushDelegate_8() { return &____FlushDelegate_8; }
inline void set__FlushDelegate_8(Action_1_t3252573759 * value)
{
____FlushDelegate_8 = value;
Il2CppCodeGenWriteBarrier((&____FlushDelegate_8), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // TEXTWRITER_T3478189236_H
#ifndef INT32_T2950945753_H
#define INT32_T2950945753_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Int32
struct Int32_t2950945753
{
public:
// System.Int32 System.Int32::m_value
int32_t ___m_value_0;
public:
inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Int32_t2950945753, ___m_value_0)); }
inline int32_t get_m_value_0() const { return ___m_value_0; }
inline int32_t* get_address_of_m_value_0() { return &___m_value_0; }
inline void set_m_value_0(int32_t value)
{
___m_value_0 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // INT32_T2950945753_H
#ifndef INTPTR_T_H
#define INTPTR_T_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.IntPtr
struct IntPtr_t
{
public:
// System.Void* System.IntPtr::m_value
void* ___m_value_0;
public:
inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(IntPtr_t, ___m_value_0)); }
inline void* get_m_value_0() const { return ___m_value_0; }
inline void** get_address_of_m_value_0() { return &___m_value_0; }
inline void set_m_value_0(void* value)
{
___m_value_0 = value;
}
};
struct IntPtr_t_StaticFields
{
public:
// System.IntPtr System.IntPtr::Zero
intptr_t ___Zero_1;
public:
inline static int32_t get_offset_of_Zero_1() { return static_cast<int32_t>(offsetof(IntPtr_t_StaticFields, ___Zero_1)); }
inline intptr_t get_Zero_1() const { return ___Zero_1; }
inline intptr_t* get_address_of_Zero_1() { return &___Zero_1; }
inline void set_Zero_1(intptr_t value)
{
___Zero_1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // INTPTR_T_H
#ifndef VOID_T1185182177_H
#define VOID_T1185182177_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void
struct Void_t1185182177
{
public:
union
{
struct
{
};
uint8_t Void_t1185182177__padding[1];
};
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // VOID_T1185182177_H
#ifndef DEALLOCATEONJOBCOMPLETIONATTRIBUTE_T3762612740_H
#define DEALLOCATEONJOBCOMPLETIONATTRIBUTE_T3762612740_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Unity.Collections.DeallocateOnJobCompletionAttribute
struct DeallocateOnJobCompletionAttribute_t3762612740 : public Attribute_t861562559
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // DEALLOCATEONJOBCOMPLETIONATTRIBUTE_T3762612740_H
#ifndef NATIVECONTAINERATTRIBUTE_T212308715_H
#define NATIVECONTAINERATTRIBUTE_T212308715_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Unity.Collections.LowLevel.Unsafe.NativeContainerAttribute
struct NativeContainerAttribute_t212308715 : public Attribute_t861562559
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // NATIVECONTAINERATTRIBUTE_T212308715_H
#ifndef NATIVECONTAINERISATOMICWRITEONLYATTRIBUTE_T4134969175_H
#define NATIVECONTAINERISATOMICWRITEONLYATTRIBUTE_T4134969175_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Unity.Collections.LowLevel.Unsafe.NativeContainerIsAtomicWriteOnlyAttribute
struct NativeContainerIsAtomicWriteOnlyAttribute_t4134969175 : public Attribute_t861562559
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // NATIVECONTAINERISATOMICWRITEONLYATTRIBUTE_T4134969175_H
#ifndef NATIVECONTAINERISREADONLYATTRIBUTE_T4098664174_H
#define NATIVECONTAINERISREADONLYATTRIBUTE_T4098664174_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Unity.Collections.LowLevel.Unsafe.NativeContainerIsReadOnlyAttribute
struct NativeContainerIsReadOnlyAttribute_t4098664174 : public Attribute_t861562559
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // NATIVECONTAINERISREADONLYATTRIBUTE_T4098664174_H
#ifndef NATIVECONTAINERNEEDSTHREADINDEXATTRIBUTE_T764917452_H
#define NATIVECONTAINERNEEDSTHREADINDEXATTRIBUTE_T764917452_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Unity.Collections.LowLevel.Unsafe.NativeContainerNeedsThreadIndexAttribute
struct NativeContainerNeedsThreadIndexAttribute_t764917452 : public Attribute_t861562559
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // NATIVECONTAINERNEEDSTHREADINDEXATTRIBUTE_T764917452_H
#ifndef NATIVECONTAINERSUPPORTSDEALLOCATEONJOBCOMPLETIONATTRIBUTE_T1480492758_H
#define NATIVECONTAINERSUPPORTSDEALLOCATEONJOBCOMPLETIONATTRIBUTE_T1480492758_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Unity.Collections.LowLevel.Unsafe.NativeContainerSupportsDeallocateOnJobCompletionAttribute
struct NativeContainerSupportsDeallocateOnJobCompletionAttribute_t1480492758 : public Attribute_t861562559
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // NATIVECONTAINERSUPPORTSDEALLOCATEONJOBCOMPLETIONATTRIBUTE_T1480492758_H
#ifndef NATIVECONTAINERSUPPORTSDEFERREDCONVERTLISTTOARRAY_T4167123417_H
#define NATIVECONTAINERSUPPORTSDEFERREDCONVERTLISTTOARRAY_T4167123417_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Unity.Collections.LowLevel.Unsafe.NativeContainerSupportsDeferredConvertListToArray
struct NativeContainerSupportsDeferredConvertListToArray_t4167123417 : public Attribute_t861562559
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // NATIVECONTAINERSUPPORTSDEFERREDCONVERTLISTTOARRAY_T4167123417_H
#ifndef NATIVECONTAINERSUPPORTSMINMAXWRITERESTRICTIONATTRIBUTE_T3808117416_H
#define NATIVECONTAINERSUPPORTSMINMAXWRITERESTRICTIONATTRIBUTE_T3808117416_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Unity.Collections.LowLevel.Unsafe.NativeContainerSupportsMinMaxWriteRestrictionAttribute
struct NativeContainerSupportsMinMaxWriteRestrictionAttribute_t3808117416 : public Attribute_t861562559
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // NATIVECONTAINERSUPPORTSMINMAXWRITERESTRICTIONATTRIBUTE_T3808117416_H
#ifndef NATIVEDISABLECONTAINERSAFETYRESTRICTIONATTRIBUTE_T708027756_H
#define NATIVEDISABLECONTAINERSAFETYRESTRICTIONATTRIBUTE_T708027756_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Unity.Collections.LowLevel.Unsafe.NativeDisableContainerSafetyRestrictionAttribute
struct NativeDisableContainerSafetyRestrictionAttribute_t708027756 : public Attribute_t861562559
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // NATIVEDISABLECONTAINERSAFETYRESTRICTIONATTRIBUTE_T708027756_H
#ifndef NATIVEDISABLEUNSAFEPTRRESTRICTIONATTRIBUTE_T2582701661_H
#define NATIVEDISABLEUNSAFEPTRRESTRICTIONATTRIBUTE_T2582701661_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Unity.Collections.LowLevel.Unsafe.NativeDisableUnsafePtrRestrictionAttribute
struct NativeDisableUnsafePtrRestrictionAttribute_t2582701661 : public Attribute_t861562559
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // NATIVEDISABLEUNSAFEPTRRESTRICTIONATTRIBUTE_T2582701661_H
#ifndef NATIVESETCLASSTYPETONULLONSCHEDULEATTRIBUTE_T1234016338_H
#define NATIVESETCLASSTYPETONULLONSCHEDULEATTRIBUTE_T1234016338_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Unity.Collections.LowLevel.Unsafe.NativeSetClassTypeToNullOnScheduleAttribute
struct NativeSetClassTypeToNullOnScheduleAttribute_t1234016338 : public Attribute_t861562559
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // NATIVESETCLASSTYPETONULLONSCHEDULEATTRIBUTE_T1234016338_H
#ifndef NATIVESETTHREADINDEXATTRIBUTE_T1211267337_H
#define NATIVESETTHREADINDEXATTRIBUTE_T1211267337_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Unity.Collections.LowLevel.Unsafe.NativeSetThreadIndexAttribute
struct NativeSetThreadIndexAttribute_t1211267337 : public Attribute_t861562559
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // NATIVESETTHREADINDEXATTRIBUTE_T1211267337_H
#ifndef NATIVEDISABLEPARALLELFORRESTRICTIONATTRIBUTE_T3768540096_H
#define NATIVEDISABLEPARALLELFORRESTRICTIONATTRIBUTE_T3768540096_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Unity.Collections.NativeDisableParallelForRestrictionAttribute
struct NativeDisableParallelForRestrictionAttribute_t3768540096 : public Attribute_t861562559
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // NATIVEDISABLEPARALLELFORRESTRICTIONATTRIBUTE_T3768540096_H
#ifndef NATIVEFIXEDLENGTHATTRIBUTE_T3072952540_H
#define NATIVEFIXEDLENGTHATTRIBUTE_T3072952540_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Unity.Collections.NativeFixedLengthAttribute
struct NativeFixedLengthAttribute_t3072952540 : public Attribute_t861562559
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // NATIVEFIXEDLENGTHATTRIBUTE_T3072952540_H
#ifndef NATIVEMATCHESPARALLELFORLENGTHATTRIBUTE_T1813325102_H
#define NATIVEMATCHESPARALLELFORLENGTHATTRIBUTE_T1813325102_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Unity.Collections.NativeMatchesParallelForLengthAttribute
struct NativeMatchesParallelForLengthAttribute_t1813325102 : public Attribute_t861562559
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // NATIVEMATCHESPARALLELFORLENGTHATTRIBUTE_T1813325102_H
#ifndef READONLYATTRIBUTE_T3518714744_H
#define READONLYATTRIBUTE_T3518714744_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Unity.Collections.ReadOnlyAttribute
struct ReadOnlyAttribute_t3518714744 : public Attribute_t861562559
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // READONLYATTRIBUTE_T3518714744_H
#ifndef WRITEONLYATTRIBUTE_T1738907586_H
#define WRITEONLYATTRIBUTE_T1738907586_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Unity.Collections.WriteOnlyAttribute
struct WriteOnlyAttribute_t1738907586 : public Attribute_t861562559
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // WRITEONLYATTRIBUTE_T1738907586_H
#ifndef UNITYEVENT_1_T3832605257_H
#define UNITYEVENT_1_T3832605257_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.Events.UnityEvent`1<System.Int32>
struct UnityEvent_1_t3832605257 : public UnityEventBase_t3960448221
{
public:
// System.Object[] UnityEngine.Events.UnityEvent`1::m_InvokeArray
ObjectU5BU5D_t2843939325* ___m_InvokeArray_4;
public:
inline static int32_t get_offset_of_m_InvokeArray_4() { return static_cast<int32_t>(offsetof(UnityEvent_1_t3832605257, ___m_InvokeArray_4)); }
inline ObjectU5BU5D_t2843939325* get_m_InvokeArray_4() const { return ___m_InvokeArray_4; }
inline ObjectU5BU5D_t2843939325** get_address_of_m_InvokeArray_4() { return &___m_InvokeArray_4; }
inline void set_m_InvokeArray_4(ObjectU5BU5D_t2843939325* value)
{
___m_InvokeArray_4 = value;
Il2CppCodeGenWriteBarrier((&___m_InvokeArray_4), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // UNITYEVENT_1_T3832605257_H
#ifndef UNITYEVENT_1_T2052235288_H
#define UNITYEVENT_1_T2052235288_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.Events.UnityEvent`1<UnityEngine.Networking.PlayerConnection.MessageEventArgs>
struct UnityEvent_1_t2052235288 : public UnityEventBase_t3960448221
{
public:
// System.Object[] UnityEngine.Events.UnityEvent`1::m_InvokeArray
ObjectU5BU5D_t2843939325* ___m_InvokeArray_4;
public:
inline static int32_t get_offset_of_m_InvokeArray_4() { return static_cast<int32_t>(offsetof(UnityEvent_1_t2052235288, ___m_InvokeArray_4)); }
inline ObjectU5BU5D_t2843939325* get_m_InvokeArray_4() const { return ___m_InvokeArray_4; }
inline ObjectU5BU5D_t2843939325** get_address_of_m_InvokeArray_4() { return &___m_InvokeArray_4; }
inline void set_m_InvokeArray_4(ObjectU5BU5D_t2843939325* value)
{
___m_InvokeArray_4 = value;
Il2CppCodeGenWriteBarrier((&___m_InvokeArray_4), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // UNITYEVENT_1_T2052235288_H
#ifndef DEFAULTVALUEATTRIBUTE_T2337225216_H
#define DEFAULTVALUEATTRIBUTE_T2337225216_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.Internal.DefaultValueAttribute
struct DefaultValueAttribute_t2337225216 : public Attribute_t861562559
{
public:
// System.Object UnityEngine.Internal.DefaultValueAttribute::DefaultValue
RuntimeObject * ___DefaultValue_0;
public:
inline static int32_t get_offset_of_DefaultValue_0() { return static_cast<int32_t>(offsetof(DefaultValueAttribute_t2337225216, ___DefaultValue_0)); }
inline RuntimeObject * get_DefaultValue_0() const { return ___DefaultValue_0; }
inline RuntimeObject ** get_address_of_DefaultValue_0() { return &___DefaultValue_0; }
inline void set_DefaultValue_0(RuntimeObject * value)
{
___DefaultValue_0 = value;
Il2CppCodeGenWriteBarrier((&___DefaultValue_0), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // DEFAULTVALUEATTRIBUTE_T2337225216_H
#ifndef EXCLUDEFROMDOCSATTRIBUTE_T3592494112_H
#define EXCLUDEFROMDOCSATTRIBUTE_T3592494112_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.Internal.ExcludeFromDocsAttribute
struct ExcludeFromDocsAttribute_t3592494112 : public Attribute_t861562559
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // EXCLUDEFROMDOCSATTRIBUTE_T3592494112_H
#ifndef SCENE_T2348375561_H
#define SCENE_T2348375561_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.SceneManagement.Scene
struct Scene_t2348375561
{
public:
// System.Int32 UnityEngine.SceneManagement.Scene::m_Handle
int32_t ___m_Handle_0;
public:
inline static int32_t get_offset_of_m_Handle_0() { return static_cast<int32_t>(offsetof(Scene_t2348375561, ___m_Handle_0)); }
inline int32_t get_m_Handle_0() const { return ___m_Handle_0; }
inline int32_t* get_address_of_m_Handle_0() { return &___m_Handle_0; }
inline void set_m_Handle_0(int32_t value)
{
___m_Handle_0 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // SCENE_T2348375561_H
#ifndef MOVEDFROMATTRIBUTE_T481952341_H
#define MOVEDFROMATTRIBUTE_T481952341_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.Scripting.APIUpdating.MovedFromAttribute
struct MovedFromAttribute_t481952341 : public Attribute_t861562559
{
public:
// System.String UnityEngine.Scripting.APIUpdating.MovedFromAttribute::<Namespace>k__BackingField
String_t* ___U3CNamespaceU3Ek__BackingField_0;
// System.Boolean UnityEngine.Scripting.APIUpdating.MovedFromAttribute::<IsInDifferentAssembly>k__BackingField
bool ___U3CIsInDifferentAssemblyU3Ek__BackingField_1;
public:
inline static int32_t get_offset_of_U3CNamespaceU3Ek__BackingField_0() { return static_cast<int32_t>(offsetof(MovedFromAttribute_t481952341, ___U3CNamespaceU3Ek__BackingField_0)); }
inline String_t* get_U3CNamespaceU3Ek__BackingField_0() const { return ___U3CNamespaceU3Ek__BackingField_0; }
inline String_t** get_address_of_U3CNamespaceU3Ek__BackingField_0() { return &___U3CNamespaceU3Ek__BackingField_0; }
inline void set_U3CNamespaceU3Ek__BackingField_0(String_t* value)
{
___U3CNamespaceU3Ek__BackingField_0 = value;
Il2CppCodeGenWriteBarrier((&___U3CNamespaceU3Ek__BackingField_0), value);
}
inline static int32_t get_offset_of_U3CIsInDifferentAssemblyU3Ek__BackingField_1() { return static_cast<int32_t>(offsetof(MovedFromAttribute_t481952341, ___U3CIsInDifferentAssemblyU3Ek__BackingField_1)); }
inline bool get_U3CIsInDifferentAssemblyU3Ek__BackingField_1() const { return ___U3CIsInDifferentAssemblyU3Ek__BackingField_1; }
inline bool* get_address_of_U3CIsInDifferentAssemblyU3Ek__BackingField_1() { return &___U3CIsInDifferentAssemblyU3Ek__BackingField_1; }
inline void set_U3CIsInDifferentAssemblyU3Ek__BackingField_1(bool value)
{
___U3CIsInDifferentAssemblyU3Ek__BackingField_1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // MOVEDFROMATTRIBUTE_T481952341_H
#ifndef FORMERLYSERIALIZEDASATTRIBUTE_T2859083114_H
#define FORMERLYSERIALIZEDASATTRIBUTE_T2859083114_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.Serialization.FormerlySerializedAsAttribute
struct FormerlySerializedAsAttribute_t2859083114 : public Attribute_t861562559
{
public:
// System.String UnityEngine.Serialization.FormerlySerializedAsAttribute::m_oldName
String_t* ___m_oldName_0;
public:
inline static int32_t get_offset_of_m_oldName_0() { return static_cast<int32_t>(offsetof(FormerlySerializedAsAttribute_t2859083114, ___m_oldName_0)); }
inline String_t* get_m_oldName_0() const { return ___m_oldName_0; }
inline String_t** get_address_of_m_oldName_0() { return &___m_oldName_0; }
inline void set_m_oldName_0(String_t* value)
{
___m_oldName_0 = value;
Il2CppCodeGenWriteBarrier((&___m_oldName_0), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // FORMERLYSERIALIZEDASATTRIBUTE_T2859083114_H
#ifndef UNITYSYNCHRONIZATIONCONTEXT_T1887453786_H
#define UNITYSYNCHRONIZATIONCONTEXT_T1887453786_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.UnitySynchronizationContext
struct UnitySynchronizationContext_t1887453786 : public SynchronizationContext_t2326897723
{
public:
// System.Collections.Generic.Queue`1<UnityEngine.UnitySynchronizationContext/WorkRequest> UnityEngine.UnitySynchronizationContext::m_AsyncWorkQueue
Queue_1_t1200778106 * ___m_AsyncWorkQueue_0;
// System.Int32 UnityEngine.UnitySynchronizationContext::m_MainThreadID
int32_t ___m_MainThreadID_1;
public:
inline static int32_t get_offset_of_m_AsyncWorkQueue_0() { return static_cast<int32_t>(offsetof(UnitySynchronizationContext_t1887453786, ___m_AsyncWorkQueue_0)); }
inline Queue_1_t1200778106 * get_m_AsyncWorkQueue_0() const { return ___m_AsyncWorkQueue_0; }
inline Queue_1_t1200778106 ** get_address_of_m_AsyncWorkQueue_0() { return &___m_AsyncWorkQueue_0; }
inline void set_m_AsyncWorkQueue_0(Queue_1_t1200778106 * value)
{
___m_AsyncWorkQueue_0 = value;
Il2CppCodeGenWriteBarrier((&___m_AsyncWorkQueue_0), value);
}
inline static int32_t get_offset_of_m_MainThreadID_1() { return static_cast<int32_t>(offsetof(UnitySynchronizationContext_t1887453786, ___m_MainThreadID_1)); }
inline int32_t get_m_MainThreadID_1() const { return ___m_MainThreadID_1; }
inline int32_t* get_address_of_m_MainThreadID_1() { return &___m_MainThreadID_1; }
inline void set_m_MainThreadID_1(int32_t value)
{
___m_MainThreadID_1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // UNITYSYNCHRONIZATIONCONTEXT_T1887453786_H
#ifndef WORKREQUEST_T1354518612_H
#define WORKREQUEST_T1354518612_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.UnitySynchronizationContext/WorkRequest
struct WorkRequest_t1354518612
{
public:
// System.Threading.SendOrPostCallback UnityEngine.UnitySynchronizationContext/WorkRequest::m_DelagateCallback
SendOrPostCallback_t2750080073 * ___m_DelagateCallback_0;
// System.Object UnityEngine.UnitySynchronizationContext/WorkRequest::m_DelagateState
RuntimeObject * ___m_DelagateState_1;
// System.Threading.ManualResetEvent UnityEngine.UnitySynchronizationContext/WorkRequest::m_WaitHandle
ManualResetEvent_t451242010 * ___m_WaitHandle_2;
public:
inline static int32_t get_offset_of_m_DelagateCallback_0() { return static_cast<int32_t>(offsetof(WorkRequest_t1354518612, ___m_DelagateCallback_0)); }
inline SendOrPostCallback_t2750080073 * get_m_DelagateCallback_0() const { return ___m_DelagateCallback_0; }
inline SendOrPostCallback_t2750080073 ** get_address_of_m_DelagateCallback_0() { return &___m_DelagateCallback_0; }
inline void set_m_DelagateCallback_0(SendOrPostCallback_t2750080073 * value)
{
___m_DelagateCallback_0 = value;
Il2CppCodeGenWriteBarrier((&___m_DelagateCallback_0), value);
}
inline static int32_t get_offset_of_m_DelagateState_1() { return static_cast<int32_t>(offsetof(WorkRequest_t1354518612, ___m_DelagateState_1)); }
inline RuntimeObject * get_m_DelagateState_1() const { return ___m_DelagateState_1; }
inline RuntimeObject ** get_address_of_m_DelagateState_1() { return &___m_DelagateState_1; }
inline void set_m_DelagateState_1(RuntimeObject * value)
{
___m_DelagateState_1 = value;
Il2CppCodeGenWriteBarrier((&___m_DelagateState_1), value);
}
inline static int32_t get_offset_of_m_WaitHandle_2() { return static_cast<int32_t>(offsetof(WorkRequest_t1354518612, ___m_WaitHandle_2)); }
inline ManualResetEvent_t451242010 * get_m_WaitHandle_2() const { return ___m_WaitHandle_2; }
inline ManualResetEvent_t451242010 ** get_address_of_m_WaitHandle_2() { return &___m_WaitHandle_2; }
inline void set_m_WaitHandle_2(ManualResetEvent_t451242010 * value)
{
___m_WaitHandle_2 = value;
Il2CppCodeGenWriteBarrier((&___m_WaitHandle_2), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// Native definition for P/Invoke marshalling of UnityEngine.UnitySynchronizationContext/WorkRequest
struct WorkRequest_t1354518612_marshaled_pinvoke
{
Il2CppMethodPointer ___m_DelagateCallback_0;
Il2CppIUnknown* ___m_DelagateState_1;
ManualResetEvent_t451242010 * ___m_WaitHandle_2;
};
// Native definition for COM marshalling of UnityEngine.UnitySynchronizationContext/WorkRequest
struct WorkRequest_t1354518612_marshaled_com
{
Il2CppMethodPointer ___m_DelagateCallback_0;
Il2CppIUnknown* ___m_DelagateState_1;
ManualResetEvent_t451242010 * ___m_WaitHandle_2;
};
#endif // WORKREQUEST_T1354518612_H
#ifndef VECTOR2_T2156229523_H
#define VECTOR2_T2156229523_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.Vector2
struct Vector2_t2156229523
{
public:
// System.Single UnityEngine.Vector2::x
float ___x_0;
// System.Single UnityEngine.Vector2::y
float ___y_1;
public:
inline static int32_t get_offset_of_x_0() { return static_cast<int32_t>(offsetof(Vector2_t2156229523, ___x_0)); }
inline float get_x_0() const { return ___x_0; }
inline float* get_address_of_x_0() { return &___x_0; }
inline void set_x_0(float value)
{
___x_0 = value;
}
inline static int32_t get_offset_of_y_1() { return static_cast<int32_t>(offsetof(Vector2_t2156229523, ___y_1)); }
inline float get_y_1() const { return ___y_1; }
inline float* get_address_of_y_1() { return &___y_1; }
inline void set_y_1(float value)
{
___y_1 = value;
}
};
struct Vector2_t2156229523_StaticFields
{
public:
// UnityEngine.Vector2 UnityEngine.Vector2::zeroVector
Vector2_t2156229523 ___zeroVector_2;
// UnityEngine.Vector2 UnityEngine.Vector2::oneVector
Vector2_t2156229523 ___oneVector_3;
// UnityEngine.Vector2 UnityEngine.Vector2::upVector
Vector2_t2156229523 ___upVector_4;
// UnityEngine.Vector2 UnityEngine.Vector2::downVector
Vector2_t2156229523 ___downVector_5;
// UnityEngine.Vector2 UnityEngine.Vector2::leftVector
Vector2_t2156229523 ___leftVector_6;
// UnityEngine.Vector2 UnityEngine.Vector2::rightVector
Vector2_t2156229523 ___rightVector_7;
// UnityEngine.Vector2 UnityEngine.Vector2::positiveInfinityVector
Vector2_t2156229523 ___positiveInfinityVector_8;
// UnityEngine.Vector2 UnityEngine.Vector2::negativeInfinityVector
Vector2_t2156229523 ___negativeInfinityVector_9;
public:
inline static int32_t get_offset_of_zeroVector_2() { return static_cast<int32_t>(offsetof(Vector2_t2156229523_StaticFields, ___zeroVector_2)); }
inline Vector2_t2156229523 get_zeroVector_2() const { return ___zeroVector_2; }
inline Vector2_t2156229523 * get_address_of_zeroVector_2() { return &___zeroVector_2; }
inline void set_zeroVector_2(Vector2_t2156229523 value)
{
___zeroVector_2 = value;
}
inline static int32_t get_offset_of_oneVector_3() { return static_cast<int32_t>(offsetof(Vector2_t2156229523_StaticFields, ___oneVector_3)); }
inline Vector2_t2156229523 get_oneVector_3() const { return ___oneVector_3; }
inline Vector2_t2156229523 * get_address_of_oneVector_3() { return &___oneVector_3; }
inline void set_oneVector_3(Vector2_t2156229523 value)
{
___oneVector_3 = value;
}
inline static int32_t get_offset_of_upVector_4() { return static_cast<int32_t>(offsetof(Vector2_t2156229523_StaticFields, ___upVector_4)); }
inline Vector2_t2156229523 get_upVector_4() const { return ___upVector_4; }
inline Vector2_t2156229523 * get_address_of_upVector_4() { return &___upVector_4; }
inline void set_upVector_4(Vector2_t2156229523 value)
{
___upVector_4 = value;
}
inline static int32_t get_offset_of_downVector_5() { return static_cast<int32_t>(offsetof(Vector2_t2156229523_StaticFields, ___downVector_5)); }
inline Vector2_t2156229523 get_downVector_5() const { return ___downVector_5; }
inline Vector2_t2156229523 * get_address_of_downVector_5() { return &___downVector_5; }
inline void set_downVector_5(Vector2_t2156229523 value)
{
___downVector_5 = value;
}
inline static int32_t get_offset_of_leftVector_6() { return static_cast<int32_t>(offsetof(Vector2_t2156229523_StaticFields, ___leftVector_6)); }
inline Vector2_t2156229523 get_leftVector_6() const { return ___leftVector_6; }
inline Vector2_t2156229523 * get_address_of_leftVector_6() { return &___leftVector_6; }
inline void set_leftVector_6(Vector2_t2156229523 value)
{
___leftVector_6 = value;
}
inline static int32_t get_offset_of_rightVector_7() { return static_cast<int32_t>(offsetof(Vector2_t2156229523_StaticFields, ___rightVector_7)); }
inline Vector2_t2156229523 get_rightVector_7() const { return ___rightVector_7; }
inline Vector2_t2156229523 * get_address_of_rightVector_7() { return &___rightVector_7; }
inline void set_rightVector_7(Vector2_t2156229523 value)
{
___rightVector_7 = value;
}
inline static int32_t get_offset_of_positiveInfinityVector_8() { return static_cast<int32_t>(offsetof(Vector2_t2156229523_StaticFields, ___positiveInfinityVector_8)); }
inline Vector2_t2156229523 get_positiveInfinityVector_8() const { return ___positiveInfinityVector_8; }
inline Vector2_t2156229523 * get_address_of_positiveInfinityVector_8() { return &___positiveInfinityVector_8; }
inline void set_positiveInfinityVector_8(Vector2_t2156229523 value)
{
___positiveInfinityVector_8 = value;
}
inline static int32_t get_offset_of_negativeInfinityVector_9() { return static_cast<int32_t>(offsetof(Vector2_t2156229523_StaticFields, ___negativeInfinityVector_9)); }
inline Vector2_t2156229523 get_negativeInfinityVector_9() const { return ___negativeInfinityVector_9; }
inline Vector2_t2156229523 * get_address_of_negativeInfinityVector_9() { return &___negativeInfinityVector_9; }
inline void set_negativeInfinityVector_9(Vector2_t2156229523 value)
{
___negativeInfinityVector_9 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // VECTOR2_T2156229523_H
#ifndef VECTOR3INT_T741115188_H
#define VECTOR3INT_T741115188_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.Vector3Int
struct Vector3Int_t741115188
{
public:
// System.Int32 UnityEngine.Vector3Int::m_X
int32_t ___m_X_0;
// System.Int32 UnityEngine.Vector3Int::m_Y
int32_t ___m_Y_1;
// System.Int32 UnityEngine.Vector3Int::m_Z
int32_t ___m_Z_2;
public:
inline static int32_t get_offset_of_m_X_0() { return static_cast<int32_t>(offsetof(Vector3Int_t741115188, ___m_X_0)); }
inline int32_t get_m_X_0() const { return ___m_X_0; }
inline int32_t* get_address_of_m_X_0() { return &___m_X_0; }
inline void set_m_X_0(int32_t value)
{
___m_X_0 = value;
}
inline static int32_t get_offset_of_m_Y_1() { return static_cast<int32_t>(offsetof(Vector3Int_t741115188, ___m_Y_1)); }
inline int32_t get_m_Y_1() const { return ___m_Y_1; }
inline int32_t* get_address_of_m_Y_1() { return &___m_Y_1; }
inline void set_m_Y_1(int32_t value)
{
___m_Y_1 = value;
}
inline static int32_t get_offset_of_m_Z_2() { return static_cast<int32_t>(offsetof(Vector3Int_t741115188, ___m_Z_2)); }
inline int32_t get_m_Z_2() const { return ___m_Z_2; }
inline int32_t* get_address_of_m_Z_2() { return &___m_Z_2; }
inline void set_m_Z_2(int32_t value)
{
___m_Z_2 = value;
}
};
struct Vector3Int_t741115188_StaticFields
{
public:
// UnityEngine.Vector3Int UnityEngine.Vector3Int::s_Zero
Vector3Int_t741115188 ___s_Zero_3;
// UnityEngine.Vector3Int UnityEngine.Vector3Int::s_One
Vector3Int_t741115188 ___s_One_4;
// UnityEngine.Vector3Int UnityEngine.Vector3Int::s_Up
Vector3Int_t741115188 ___s_Up_5;
// UnityEngine.Vector3Int UnityEngine.Vector3Int::s_Down
Vector3Int_t741115188 ___s_Down_6;
// UnityEngine.Vector3Int UnityEngine.Vector3Int::s_Left
Vector3Int_t741115188 ___s_Left_7;
// UnityEngine.Vector3Int UnityEngine.Vector3Int::s_Right
Vector3Int_t741115188 ___s_Right_8;
public:
inline static int32_t get_offset_of_s_Zero_3() { return static_cast<int32_t>(offsetof(Vector3Int_t741115188_StaticFields, ___s_Zero_3)); }
inline Vector3Int_t741115188 get_s_Zero_3() const { return ___s_Zero_3; }
inline Vector3Int_t741115188 * get_address_of_s_Zero_3() { return &___s_Zero_3; }
inline void set_s_Zero_3(Vector3Int_t741115188 value)
{
___s_Zero_3 = value;
}
inline static int32_t get_offset_of_s_One_4() { return static_cast<int32_t>(offsetof(Vector3Int_t741115188_StaticFields, ___s_One_4)); }
inline Vector3Int_t741115188 get_s_One_4() const { return ___s_One_4; }
inline Vector3Int_t741115188 * get_address_of_s_One_4() { return &___s_One_4; }
inline void set_s_One_4(Vector3Int_t741115188 value)
{
___s_One_4 = value;
}
inline static int32_t get_offset_of_s_Up_5() { return static_cast<int32_t>(offsetof(Vector3Int_t741115188_StaticFields, ___s_Up_5)); }
inline Vector3Int_t741115188 get_s_Up_5() const { return ___s_Up_5; }
inline Vector3Int_t741115188 * get_address_of_s_Up_5() { return &___s_Up_5; }
inline void set_s_Up_5(Vector3Int_t741115188 value)
{
___s_Up_5 = value;
}
inline static int32_t get_offset_of_s_Down_6() { return static_cast<int32_t>(offsetof(Vector3Int_t741115188_StaticFields, ___s_Down_6)); }
inline Vector3Int_t741115188 get_s_Down_6() const { return ___s_Down_6; }
inline Vector3Int_t741115188 * get_address_of_s_Down_6() { return &___s_Down_6; }
inline void set_s_Down_6(Vector3Int_t741115188 value)
{
___s_Down_6 = value;
}
inline static int32_t get_offset_of_s_Left_7() { return static_cast<int32_t>(offsetof(Vector3Int_t741115188_StaticFields, ___s_Left_7)); }
inline Vector3Int_t741115188 get_s_Left_7() const { return ___s_Left_7; }
inline Vector3Int_t741115188 * get_address_of_s_Left_7() { return &___s_Left_7; }
inline void set_s_Left_7(Vector3Int_t741115188 value)
{
___s_Left_7 = value;
}
inline static int32_t get_offset_of_s_Right_8() { return static_cast<int32_t>(offsetof(Vector3Int_t741115188_StaticFields, ___s_Right_8)); }
inline Vector3Int_t741115188 get_s_Right_8() const { return ___s_Right_8; }
inline Vector3Int_t741115188 * get_address_of_s_Right_8() { return &___s_Right_8; }
inline void set_s_Right_8(Vector3Int_t741115188 value)
{
___s_Right_8 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // VECTOR3INT_T741115188_H
#ifndef VECTOR4_T3319028937_H
#define VECTOR4_T3319028937_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.Vector4
struct Vector4_t3319028937
{
public:
// System.Single UnityEngine.Vector4::x
float ___x_0;
// System.Single UnityEngine.Vector4::y
float ___y_1;
// System.Single UnityEngine.Vector4::z
float ___z_2;
// System.Single UnityEngine.Vector4::w
float ___w_3;
public:
inline static int32_t get_offset_of_x_0() { return static_cast<int32_t>(offsetof(Vector4_t3319028937, ___x_0)); }
inline float get_x_0() const { return ___x_0; }
inline float* get_address_of_x_0() { return &___x_0; }
inline void set_x_0(float value)
{
___x_0 = value;
}
inline static int32_t get_offset_of_y_1() { return static_cast<int32_t>(offsetof(Vector4_t3319028937, ___y_1)); }
inline float get_y_1() const { return ___y_1; }
inline float* get_address_of_y_1() { return &___y_1; }
inline void set_y_1(float value)
{
___y_1 = value;
}
inline static int32_t get_offset_of_z_2() { return static_cast<int32_t>(offsetof(Vector4_t3319028937, ___z_2)); }
inline float get_z_2() const { return ___z_2; }
inline float* get_address_of_z_2() { return &___z_2; }
inline void set_z_2(float value)
{
___z_2 = value;
}
inline static int32_t get_offset_of_w_3() { return static_cast<int32_t>(offsetof(Vector4_t3319028937, ___w_3)); }
inline float get_w_3() const { return ___w_3; }
inline float* get_address_of_w_3() { return &___w_3; }
inline void set_w_3(float value)
{
___w_3 = value;
}
};
struct Vector4_t3319028937_StaticFields
{
public:
// UnityEngine.Vector4 UnityEngine.Vector4::zeroVector
Vector4_t3319028937 ___zeroVector_4;
// UnityEngine.Vector4 UnityEngine.Vector4::oneVector
Vector4_t3319028937 ___oneVector_5;
// UnityEngine.Vector4 UnityEngine.Vector4::positiveInfinityVector
Vector4_t3319028937 ___positiveInfinityVector_6;
// UnityEngine.Vector4 UnityEngine.Vector4::negativeInfinityVector
Vector4_t3319028937 ___negativeInfinityVector_7;
public:
inline static int32_t get_offset_of_zeroVector_4() { return static_cast<int32_t>(offsetof(Vector4_t3319028937_StaticFields, ___zeroVector_4)); }
inline Vector4_t3319028937 get_zeroVector_4() const { return ___zeroVector_4; }
inline Vector4_t3319028937 * get_address_of_zeroVector_4() { return &___zeroVector_4; }
inline void set_zeroVector_4(Vector4_t3319028937 value)
{
___zeroVector_4 = value;
}
inline static int32_t get_offset_of_oneVector_5() { return static_cast<int32_t>(offsetof(Vector4_t3319028937_StaticFields, ___oneVector_5)); }
inline Vector4_t3319028937 get_oneVector_5() const { return ___oneVector_5; }
inline Vector4_t3319028937 * get_address_of_oneVector_5() { return &___oneVector_5; }
inline void set_oneVector_5(Vector4_t3319028937 value)
{
___oneVector_5 = value;
}
inline static int32_t get_offset_of_positiveInfinityVector_6() { return static_cast<int32_t>(offsetof(Vector4_t3319028937_StaticFields, ___positiveInfinityVector_6)); }
inline Vector4_t3319028937 get_positiveInfinityVector_6() const { return ___positiveInfinityVector_6; }
inline Vector4_t3319028937 * get_address_of_positiveInfinityVector_6() { return &___positiveInfinityVector_6; }
inline void set_positiveInfinityVector_6(Vector4_t3319028937 value)
{
___positiveInfinityVector_6 = value;
}
inline static int32_t get_offset_of_negativeInfinityVector_7() { return static_cast<int32_t>(offsetof(Vector4_t3319028937_StaticFields, ___negativeInfinityVector_7)); }
inline Vector4_t3319028937 get_negativeInfinityVector_7() const { return ___negativeInfinityVector_7; }
inline Vector4_t3319028937 * get_address_of_negativeInfinityVector_7() { return &___negativeInfinityVector_7; }
inline void set_negativeInfinityVector_7(Vector4_t3319028937 value)
{
___negativeInfinityVector_7 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // VECTOR4_T3319028937_H
#ifndef WAITFORENDOFFRAME_T1314943911_H
#define WAITFORENDOFFRAME_T1314943911_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.WaitForEndOfFrame
struct WaitForEndOfFrame_t1314943911 : public YieldInstruction_t403091072
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // WAITFORENDOFFRAME_T1314943911_H
#ifndef WAITFORFIXEDUPDATE_T1634918743_H
#define WAITFORFIXEDUPDATE_T1634918743_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.WaitForFixedUpdate
struct WaitForFixedUpdate_t1634918743 : public YieldInstruction_t403091072
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // WAITFORFIXEDUPDATE_T1634918743_H
#ifndef WAITFORSECONDS_T1699091251_H
#define WAITFORSECONDS_T1699091251_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.WaitForSeconds
struct WaitForSeconds_t1699091251 : public YieldInstruction_t403091072
{
public:
// System.Single UnityEngine.WaitForSeconds::m_Seconds
float ___m_Seconds_0;
public:
inline static int32_t get_offset_of_m_Seconds_0() { return static_cast<int32_t>(offsetof(WaitForSeconds_t1699091251, ___m_Seconds_0)); }
inline float get_m_Seconds_0() const { return ___m_Seconds_0; }
inline float* get_address_of_m_Seconds_0() { return &___m_Seconds_0; }
inline void set_m_Seconds_0(float value)
{
___m_Seconds_0 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// Native definition for P/Invoke marshalling of UnityEngine.WaitForSeconds
struct WaitForSeconds_t1699091251_marshaled_pinvoke : public YieldInstruction_t403091072_marshaled_pinvoke
{
float ___m_Seconds_0;
};
// Native definition for COM marshalling of UnityEngine.WaitForSeconds
struct WaitForSeconds_t1699091251_marshaled_com : public YieldInstruction_t403091072_marshaled_com
{
float ___m_Seconds_0;
};
#endif // WAITFORSECONDS_T1699091251_H
#ifndef SEMANTICMEANING_T3533498486_H
#define SEMANTICMEANING_T3533498486_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.Windows.Speech.SemanticMeaning
struct SemanticMeaning_t3533498486
{
public:
// System.String UnityEngine.Windows.Speech.SemanticMeaning::key
String_t* ___key_0;
// System.String[] UnityEngine.Windows.Speech.SemanticMeaning::values
StringU5BU5D_t1281789340* ___values_1;
public:
inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(SemanticMeaning_t3533498486, ___key_0)); }
inline String_t* get_key_0() const { return ___key_0; }
inline String_t** get_address_of_key_0() { return &___key_0; }
inline void set_key_0(String_t* value)
{
___key_0 = value;
Il2CppCodeGenWriteBarrier((&___key_0), value);
}
inline static int32_t get_offset_of_values_1() { return static_cast<int32_t>(offsetof(SemanticMeaning_t3533498486, ___values_1)); }
inline StringU5BU5D_t1281789340* get_values_1() const { return ___values_1; }
inline StringU5BU5D_t1281789340** get_address_of_values_1() { return &___values_1; }
inline void set_values_1(StringU5BU5D_t1281789340* value)
{
___values_1 = value;
Il2CppCodeGenWriteBarrier((&___values_1), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// Native definition for P/Invoke marshalling of UnityEngine.Windows.Speech.SemanticMeaning
struct SemanticMeaning_t3533498486_marshaled_pinvoke
{
char* ___key_0;
char** ___values_1;
};
// Native definition for COM marshalling of UnityEngine.Windows.Speech.SemanticMeaning
struct SemanticMeaning_t3533498486_marshaled_com
{
Il2CppChar* ___key_0;
Il2CppChar** ___values_1;
};
#endif // SEMANTICMEANING_T3533498486_H
#ifndef GENERICSTACK_T1310059385_H
#define GENERICSTACK_T1310059385_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngineInternal.GenericStack
struct GenericStack_t1310059385 : public Stack_1_t3923495619
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // GENERICSTACK_T1310059385_H
#ifndef DELEGATE_T1188392813_H
#define DELEGATE_T1188392813_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Delegate
struct Delegate_t1188392813 : public RuntimeObject
{
public:
// System.IntPtr System.Delegate::method_ptr
Il2CppMethodPointer ___method_ptr_0;
// System.IntPtr System.Delegate::invoke_impl
intptr_t ___invoke_impl_1;
// System.Object System.Delegate::m_target
RuntimeObject * ___m_target_2;
// System.IntPtr System.Delegate::method
intptr_t ___method_3;
// System.IntPtr System.Delegate::delegate_trampoline
intptr_t ___delegate_trampoline_4;
// System.IntPtr System.Delegate::extra_arg
intptr_t ___extra_arg_5;
// System.IntPtr System.Delegate::method_code
intptr_t ___method_code_6;
// System.Reflection.MethodInfo System.Delegate::method_info
MethodInfo_t * ___method_info_7;
// System.Reflection.MethodInfo System.Delegate::original_method_info
MethodInfo_t * ___original_method_info_8;
// System.DelegateData System.Delegate::data
DelegateData_t1677132599 * ___data_9;
// System.Boolean System.Delegate::method_is_virtual
bool ___method_is_virtual_10;
public:
inline static int32_t get_offset_of_method_ptr_0() { return static_cast<int32_t>(offsetof(Delegate_t1188392813, ___method_ptr_0)); }
inline Il2CppMethodPointer get_method_ptr_0() const { return ___method_ptr_0; }
inline Il2CppMethodPointer* get_address_of_method_ptr_0() { return &___method_ptr_0; }
inline void set_method_ptr_0(Il2CppMethodPointer value)
{
___method_ptr_0 = value;
}
inline static int32_t get_offset_of_invoke_impl_1() { return static_cast<int32_t>(offsetof(Delegate_t1188392813, ___invoke_impl_1)); }
inline intptr_t get_invoke_impl_1() const { return ___invoke_impl_1; }
inline intptr_t* get_address_of_invoke_impl_1() { return &___invoke_impl_1; }
inline void set_invoke_impl_1(intptr_t value)
{
___invoke_impl_1 = value;
}
inline static int32_t get_offset_of_m_target_2() { return static_cast<int32_t>(offsetof(Delegate_t1188392813, ___m_target_2)); }
inline RuntimeObject * get_m_target_2() const { return ___m_target_2; }
inline RuntimeObject ** get_address_of_m_target_2() { return &___m_target_2; }
inline void set_m_target_2(RuntimeObject * value)
{
___m_target_2 = value;
Il2CppCodeGenWriteBarrier((&___m_target_2), value);
}
inline static int32_t get_offset_of_method_3() { return static_cast<int32_t>(offsetof(Delegate_t1188392813, ___method_3)); }
inline intptr_t get_method_3() const { return ___method_3; }
inline intptr_t* get_address_of_method_3() { return &___method_3; }
inline void set_method_3(intptr_t value)
{
___method_3 = value;
}
inline static int32_t get_offset_of_delegate_trampoline_4() { return static_cast<int32_t>(offsetof(Delegate_t1188392813, ___delegate_trampoline_4)); }
inline intptr_t get_delegate_trampoline_4() const { return ___delegate_trampoline_4; }
inline intptr_t* get_address_of_delegate_trampoline_4() { return &___delegate_trampoline_4; }
inline void set_delegate_trampoline_4(intptr_t value)
{
___delegate_trampoline_4 = value;
}
inline static int32_t get_offset_of_extra_arg_5() { return static_cast<int32_t>(offsetof(Delegate_t1188392813, ___extra_arg_5)); }
inline intptr_t get_extra_arg_5() const { return ___extra_arg_5; }
inline intptr_t* get_address_of_extra_arg_5() { return &___extra_arg_5; }
inline void set_extra_arg_5(intptr_t value)
{
___extra_arg_5 = value;
}
inline static int32_t get_offset_of_method_code_6() { return static_cast<int32_t>(offsetof(Delegate_t1188392813, ___method_code_6)); }
inline intptr_t get_method_code_6() const { return ___method_code_6; }
inline intptr_t* get_address_of_method_code_6() { return &___method_code_6; }
inline void set_method_code_6(intptr_t value)
{
___method_code_6 = value;
}
inline static int32_t get_offset_of_method_info_7() { return static_cast<int32_t>(offsetof(Delegate_t1188392813, ___method_info_7)); }
inline MethodInfo_t * get_method_info_7() const { return ___method_info_7; }
inline MethodInfo_t ** get_address_of_method_info_7() { return &___method_info_7; }
inline void set_method_info_7(MethodInfo_t * value)
{
___method_info_7 = value;
Il2CppCodeGenWriteBarrier((&___method_info_7), value);
}
inline static int32_t get_offset_of_original_method_info_8() { return static_cast<int32_t>(offsetof(Delegate_t1188392813, ___original_method_info_8)); }
inline MethodInfo_t * get_original_method_info_8() const { return ___original_method_info_8; }
inline MethodInfo_t ** get_address_of_original_method_info_8() { return &___original_method_info_8; }
inline void set_original_method_info_8(MethodInfo_t * value)
{
___original_method_info_8 = value;
Il2CppCodeGenWriteBarrier((&___original_method_info_8), value);
}
inline static int32_t get_offset_of_data_9() { return static_cast<int32_t>(offsetof(Delegate_t1188392813, ___data_9)); }
inline DelegateData_t1677132599 * get_data_9() const { return ___data_9; }
inline DelegateData_t1677132599 ** get_address_of_data_9() { return &___data_9; }
inline void set_data_9(DelegateData_t1677132599 * value)
{
___data_9 = value;
Il2CppCodeGenWriteBarrier((&___data_9), value);
}
inline static int32_t get_offset_of_method_is_virtual_10() { return static_cast<int32_t>(offsetof(Delegate_t1188392813, ___method_is_virtual_10)); }
inline bool get_method_is_virtual_10() const { return ___method_is_virtual_10; }
inline bool* get_address_of_method_is_virtual_10() { return &___method_is_virtual_10; }
inline void set_method_is_virtual_10(bool value)
{
___method_is_virtual_10 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// Native definition for P/Invoke marshalling of System.Delegate
struct Delegate_t1188392813_marshaled_pinvoke
{
intptr_t ___method_ptr_0;
intptr_t ___invoke_impl_1;
Il2CppIUnknown* ___m_target_2;
intptr_t ___method_3;
intptr_t ___delegate_trampoline_4;
intptr_t ___extra_arg_5;
intptr_t ___method_code_6;
MethodInfo_t * ___method_info_7;
MethodInfo_t * ___original_method_info_8;
DelegateData_t1677132599 * ___data_9;
int32_t ___method_is_virtual_10;
};
// Native definition for COM marshalling of System.Delegate
struct Delegate_t1188392813_marshaled_com
{
intptr_t ___method_ptr_0;
intptr_t ___invoke_impl_1;
Il2CppIUnknown* ___m_target_2;
intptr_t ___method_3;
intptr_t ___delegate_trampoline_4;
intptr_t ___extra_arg_5;
intptr_t ___method_code_6;
MethodInfo_t * ___method_info_7;
MethodInfo_t * ___original_method_info_8;
DelegateData_t1677132599 * ___data_9;
int32_t ___method_is_virtual_10;
};
#endif // DELEGATE_T1188392813_H
#ifndef TIMESPAN_T881159249_H
#define TIMESPAN_T881159249_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.TimeSpan
struct TimeSpan_t881159249
{
public:
// System.Int64 System.TimeSpan::_ticks
int64_t ____ticks_3;
public:
inline static int32_t get_offset_of__ticks_3() { return static_cast<int32_t>(offsetof(TimeSpan_t881159249, ____ticks_3)); }
inline int64_t get__ticks_3() const { return ____ticks_3; }
inline int64_t* get_address_of__ticks_3() { return &____ticks_3; }
inline void set__ticks_3(int64_t value)
{
____ticks_3 = value;
}
};
struct TimeSpan_t881159249_StaticFields
{
public:
// System.TimeSpan System.TimeSpan::Zero
TimeSpan_t881159249 ___Zero_0;
// System.TimeSpan System.TimeSpan::MaxValue
TimeSpan_t881159249 ___MaxValue_1;
// System.TimeSpan System.TimeSpan::MinValue
TimeSpan_t881159249 ___MinValue_2;
// System.Boolean modreq(System.Runtime.CompilerServices.IsVolatile) System.TimeSpan::_legacyConfigChecked
bool ____legacyConfigChecked_4;
// System.Boolean modreq(System.Runtime.CompilerServices.IsVolatile) System.TimeSpan::_legacyMode
bool ____legacyMode_5;
public:
inline static int32_t get_offset_of_Zero_0() { return static_cast<int32_t>(offsetof(TimeSpan_t881159249_StaticFields, ___Zero_0)); }
inline TimeSpan_t881159249 get_Zero_0() const { return ___Zero_0; }
inline TimeSpan_t881159249 * get_address_of_Zero_0() { return &___Zero_0; }
inline void set_Zero_0(TimeSpan_t881159249 value)
{
___Zero_0 = value;
}
inline static int32_t get_offset_of_MaxValue_1() { return static_cast<int32_t>(offsetof(TimeSpan_t881159249_StaticFields, ___MaxValue_1)); }
inline TimeSpan_t881159249 get_MaxValue_1() const { return ___MaxValue_1; }
inline TimeSpan_t881159249 * get_address_of_MaxValue_1() { return &___MaxValue_1; }
inline void set_MaxValue_1(TimeSpan_t881159249 value)
{
___MaxValue_1 = value;
}
inline static int32_t get_offset_of_MinValue_2() { return static_cast<int32_t>(offsetof(TimeSpan_t881159249_StaticFields, ___MinValue_2)); }
inline TimeSpan_t881159249 get_MinValue_2() const { return ___MinValue_2; }
inline TimeSpan_t881159249 * get_address_of_MinValue_2() { return &___MinValue_2; }
inline void set_MinValue_2(TimeSpan_t881159249 value)
{
___MinValue_2 = value;
}
inline static int32_t get_offset_of__legacyConfigChecked_4() { return static_cast<int32_t>(offsetof(TimeSpan_t881159249_StaticFields, ____legacyConfigChecked_4)); }
inline bool get__legacyConfigChecked_4() const { return ____legacyConfigChecked_4; }
inline bool* get_address_of__legacyConfigChecked_4() { return &____legacyConfigChecked_4; }
inline void set__legacyConfigChecked_4(bool value)
{
____legacyConfigChecked_4 = value;
}
inline static int32_t get_offset_of__legacyMode_5() { return static_cast<int32_t>(offsetof(TimeSpan_t881159249_StaticFields, ____legacyMode_5)); }
inline bool get__legacyMode_5() const { return ____legacyMode_5; }
inline bool* get_address_of__legacyMode_5() { return &____legacyMode_5; }
inline void set__legacyMode_5(bool value)
{
____legacyMode_5 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // TIMESPAN_T881159249_H
#ifndef LIGHTMAPMIXEDBAKEMODE_T4188935449_H
#define LIGHTMAPMIXEDBAKEMODE_T4188935449_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.Experimental.Rendering.SupportedRenderingFeatures/LightmapMixedBakeMode
struct LightmapMixedBakeMode_t4188935449
{
public:
// System.Int32 UnityEngine.Experimental.Rendering.SupportedRenderingFeatures/LightmapMixedBakeMode::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(LightmapMixedBakeMode_t4188935449, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // LIGHTMAPMIXEDBAKEMODE_T4188935449_H
#ifndef REFLECTIONPROBESUPPORTFLAGS_T3313277643_H
#define REFLECTIONPROBESUPPORTFLAGS_T3313277643_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.Experimental.Rendering.SupportedRenderingFeatures/ReflectionProbeSupportFlags
struct ReflectionProbeSupportFlags_t3313277643
{
public:
// System.Int32 UnityEngine.Experimental.Rendering.SupportedRenderingFeatures/ReflectionProbeSupportFlags::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(ReflectionProbeSupportFlags_t3313277643, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // REFLECTIONPROBESUPPORTFLAGS_T3313277643_H
#ifndef LIGHTMAPBAKETYPE_T1497855756_H
#define LIGHTMAPBAKETYPE_T1497855756_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.LightmapBakeType
struct LightmapBakeType_t1497855756
{
public:
// System.Int32 UnityEngine.LightmapBakeType::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(LightmapBakeType_t1497855756, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // LIGHTMAPBAKETYPE_T1497855756_H
#ifndef LIGHTMAPSMODE_T12202505_H
#define LIGHTMAPSMODE_T12202505_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.LightmapsMode
struct LightmapsMode_t12202505
{
public:
// System.Int32 UnityEngine.LightmapsMode::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(LightmapsMode_t12202505, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // LIGHTMAPSMODE_T12202505_H
#ifndef LOGTYPE_T73765434_H
#define LOGTYPE_T73765434_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.LogType
struct LogType_t73765434
{
public:
// System.Int32 UnityEngine.LogType::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(LogType_t73765434, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // LOGTYPE_T73765434_H
#ifndef U3CREGISTERU3EC__ANONSTOREY0_T2405595090_H
#define U3CREGISTERU3EC__ANONSTOREY0_T2405595090_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.Networking.PlayerConnection.PlayerConnection/<Register>c__AnonStorey0
struct U3CRegisterU3Ec__AnonStorey0_t2405595090 : public RuntimeObject
{
public:
// System.Guid UnityEngine.Networking.PlayerConnection.PlayerConnection/<Register>c__AnonStorey0::messageId
Guid_t ___messageId_0;
public:
inline static int32_t get_offset_of_messageId_0() { return static_cast<int32_t>(offsetof(U3CRegisterU3Ec__AnonStorey0_t2405595090, ___messageId_0)); }
inline Guid_t get_messageId_0() const { return ___messageId_0; }
inline Guid_t * get_address_of_messageId_0() { return &___messageId_0; }
inline void set_messageId_0(Guid_t value)
{
___messageId_0 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // U3CREGISTERU3EC__ANONSTOREY0_T2405595090_H
#ifndef U3CUNREGISTERU3EC__ANONSTOREY1_T2528476601_H
#define U3CUNREGISTERU3EC__ANONSTOREY1_T2528476601_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.Networking.PlayerConnection.PlayerConnection/<Unregister>c__AnonStorey1
struct U3CUnregisterU3Ec__AnonStorey1_t2528476601 : public RuntimeObject
{
public:
// System.Guid UnityEngine.Networking.PlayerConnection.PlayerConnection/<Unregister>c__AnonStorey1::messageId
Guid_t ___messageId_0;
public:
inline static int32_t get_offset_of_messageId_0() { return static_cast<int32_t>(offsetof(U3CUnregisterU3Ec__AnonStorey1_t2528476601, ___messageId_0)); }
inline Guid_t get_messageId_0() const { return ___messageId_0; }
inline Guid_t * get_address_of_messageId_0() { return &___messageId_0; }
inline void set_messageId_0(Guid_t value)
{
___messageId_0 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // U3CUNREGISTERU3EC__ANONSTOREY1_T2528476601_H
#ifndef U3CADDANDCREATEU3EC__ANONSTOREY1_T1136770903_H
#define U3CADDANDCREATEU3EC__ANONSTOREY1_T1136770903_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.Networking.PlayerConnection.PlayerEditorConnectionEvents/<AddAndCreate>c__AnonStorey1
struct U3CAddAndCreateU3Ec__AnonStorey1_t1136770903 : public RuntimeObject
{
public:
// System.Guid UnityEngine.Networking.PlayerConnection.PlayerEditorConnectionEvents/<AddAndCreate>c__AnonStorey1::messageId
Guid_t ___messageId_0;
public:
inline static int32_t get_offset_of_messageId_0() { return static_cast<int32_t>(offsetof(U3CAddAndCreateU3Ec__AnonStorey1_t1136770903, ___messageId_0)); }
inline Guid_t get_messageId_0() const { return ___messageId_0; }
inline Guid_t * get_address_of_messageId_0() { return &___messageId_0; }
inline void set_messageId_0(Guid_t value)
{
___messageId_0 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // U3CADDANDCREATEU3EC__ANONSTOREY1_T1136770903_H
#ifndef U3CINVOKEMESSAGEIDSUBSCRIBERSU3EC__ANONSTOREY0_T907692441_H
#define U3CINVOKEMESSAGEIDSUBSCRIBERSU3EC__ANONSTOREY0_T907692441_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.Networking.PlayerConnection.PlayerEditorConnectionEvents/<InvokeMessageIdSubscribers>c__AnonStorey0
struct U3CInvokeMessageIdSubscribersU3Ec__AnonStorey0_t907692441 : public RuntimeObject
{
public:
// System.Guid UnityEngine.Networking.PlayerConnection.PlayerEditorConnectionEvents/<InvokeMessageIdSubscribers>c__AnonStorey0::messageId
Guid_t ___messageId_0;
public:
inline static int32_t get_offset_of_messageId_0() { return static_cast<int32_t>(offsetof(U3CInvokeMessageIdSubscribersU3Ec__AnonStorey0_t907692441, ___messageId_0)); }
inline Guid_t get_messageId_0() const { return ___messageId_0; }
inline Guid_t * get_address_of_messageId_0() { return &___messageId_0; }
inline void set_messageId_0(Guid_t value)
{
___messageId_0 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // U3CINVOKEMESSAGEIDSUBSCRIBERSU3EC__ANONSTOREY0_T907692441_H
#ifndef U3CUNREGISTERMANAGEDCALLBACKU3EC__ANONSTOREY2_T1335960973_H
#define U3CUNREGISTERMANAGEDCALLBACKU3EC__ANONSTOREY2_T1335960973_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.Networking.PlayerConnection.PlayerEditorConnectionEvents/<UnregisterManagedCallback>c__AnonStorey2
struct U3CUnregisterManagedCallbackU3Ec__AnonStorey2_t1335960973 : public RuntimeObject
{
public:
// System.Guid UnityEngine.Networking.PlayerConnection.PlayerEditorConnectionEvents/<UnregisterManagedCallback>c__AnonStorey2::messageId
Guid_t ___messageId_0;
public:
inline static int32_t get_offset_of_messageId_0() { return static_cast<int32_t>(offsetof(U3CUnregisterManagedCallbackU3Ec__AnonStorey2_t1335960973, ___messageId_0)); }
inline Guid_t get_messageId_0() const { return ___messageId_0; }
inline Guid_t * get_address_of_messageId_0() { return &___messageId_0; }
inline void set_messageId_0(Guid_t value)
{
___messageId_0 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // U3CUNREGISTERMANAGEDCALLBACKU3EC__ANONSTOREY2_T1335960973_H
#ifndef CONNECTIONCHANGEEVENT_T3251856151_H
#define CONNECTIONCHANGEEVENT_T3251856151_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.Networking.PlayerConnection.PlayerEditorConnectionEvents/ConnectionChangeEvent
struct ConnectionChangeEvent_t3251856151 : public UnityEvent_1_t3832605257
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // CONNECTIONCHANGEEVENT_T3251856151_H
#ifndef MESSAGEEVENT_T1491597365_H
#define MESSAGEEVENT_T1491597365_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.Networking.PlayerConnection.PlayerEditorConnectionEvents/MessageEvent
struct MessageEvent_t1491597365 : public UnityEvent_1_t2052235288
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // MESSAGEEVENT_T1491597365_H
#ifndef OBJECT_T631007953_H
#define OBJECT_T631007953_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.Object
struct Object_t631007953 : public RuntimeObject
{
public:
// System.IntPtr UnityEngine.Object::m_CachedPtr
intptr_t ___m_CachedPtr_0;
public:
inline static int32_t get_offset_of_m_CachedPtr_0() { return static_cast<int32_t>(offsetof(Object_t631007953, ___m_CachedPtr_0)); }
inline intptr_t get_m_CachedPtr_0() const { return ___m_CachedPtr_0; }
inline intptr_t* get_address_of_m_CachedPtr_0() { return &___m_CachedPtr_0; }
inline void set_m_CachedPtr_0(intptr_t value)
{
___m_CachedPtr_0 = value;
}
};
struct Object_t631007953_StaticFields
{
public:
// System.Int32 UnityEngine.Object::OffsetOfInstanceIDInCPlusPlusObject
int32_t ___OffsetOfInstanceIDInCPlusPlusObject_1;
public:
inline static int32_t get_offset_of_OffsetOfInstanceIDInCPlusPlusObject_1() { return static_cast<int32_t>(offsetof(Object_t631007953_StaticFields, ___OffsetOfInstanceIDInCPlusPlusObject_1)); }
inline int32_t get_OffsetOfInstanceIDInCPlusPlusObject_1() const { return ___OffsetOfInstanceIDInCPlusPlusObject_1; }
inline int32_t* get_address_of_OffsetOfInstanceIDInCPlusPlusObject_1() { return &___OffsetOfInstanceIDInCPlusPlusObject_1; }
inline void set_OffsetOfInstanceIDInCPlusPlusObject_1(int32_t value)
{
___OffsetOfInstanceIDInCPlusPlusObject_1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// Native definition for P/Invoke marshalling of UnityEngine.Object
struct Object_t631007953_marshaled_pinvoke
{
intptr_t ___m_CachedPtr_0;
};
// Native definition for COM marshalling of UnityEngine.Object
struct Object_t631007953_marshaled_com
{
intptr_t ___m_CachedPtr_0;
};
#endif // OBJECT_T631007953_H
#ifndef PLAYABLEGRAPH_T3515989261_H
#define PLAYABLEGRAPH_T3515989261_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.Playables.PlayableGraph
struct PlayableGraph_t3515989261
{
public:
// System.IntPtr UnityEngine.Playables.PlayableGraph::m_Handle
intptr_t ___m_Handle_0;
// System.UInt32 UnityEngine.Playables.PlayableGraph::m_Version
uint32_t ___m_Version_1;
public:
inline static int32_t get_offset_of_m_Handle_0() { return static_cast<int32_t>(offsetof(PlayableGraph_t3515989261, ___m_Handle_0)); }
inline intptr_t get_m_Handle_0() const { return ___m_Handle_0; }
inline intptr_t* get_address_of_m_Handle_0() { return &___m_Handle_0; }
inline void set_m_Handle_0(intptr_t value)
{
___m_Handle_0 = value;
}
inline static int32_t get_offset_of_m_Version_1() { return static_cast<int32_t>(offsetof(PlayableGraph_t3515989261, ___m_Version_1)); }
inline uint32_t get_m_Version_1() const { return ___m_Version_1; }
inline uint32_t* get_address_of_m_Version_1() { return &___m_Version_1; }
inline void set_m_Version_1(uint32_t value)
{
___m_Version_1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // PLAYABLEGRAPH_T3515989261_H
#ifndef PLAYABLEHANDLE_T1095853803_H
#define PLAYABLEHANDLE_T1095853803_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.Playables.PlayableHandle
struct PlayableHandle_t1095853803
{
public:
// System.IntPtr UnityEngine.Playables.PlayableHandle::m_Handle
intptr_t ___m_Handle_0;
// System.UInt32 UnityEngine.Playables.PlayableHandle::m_Version
uint32_t ___m_Version_1;
public:
inline static int32_t get_offset_of_m_Handle_0() { return static_cast<int32_t>(offsetof(PlayableHandle_t1095853803, ___m_Handle_0)); }
inline intptr_t get_m_Handle_0() const { return ___m_Handle_0; }
inline intptr_t* get_address_of_m_Handle_0() { return &___m_Handle_0; }
inline void set_m_Handle_0(intptr_t value)
{
___m_Handle_0 = value;
}
inline static int32_t get_offset_of_m_Version_1() { return static_cast<int32_t>(offsetof(PlayableHandle_t1095853803, ___m_Version_1)); }
inline uint32_t get_m_Version_1() const { return ___m_Version_1; }
inline uint32_t* get_address_of_m_Version_1() { return &___m_Version_1; }
inline void set_m_Version_1(uint32_t value)
{
___m_Version_1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // PLAYABLEHANDLE_T1095853803_H
#ifndef PLAYABLEOUTPUTHANDLE_T4208053793_H
#define PLAYABLEOUTPUTHANDLE_T4208053793_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.Playables.PlayableOutputHandle
struct PlayableOutputHandle_t4208053793
{
public:
// System.IntPtr UnityEngine.Playables.PlayableOutputHandle::m_Handle
intptr_t ___m_Handle_0;
// System.UInt32 UnityEngine.Playables.PlayableOutputHandle::m_Version
uint32_t ___m_Version_1;
public:
inline static int32_t get_offset_of_m_Handle_0() { return static_cast<int32_t>(offsetof(PlayableOutputHandle_t4208053793, ___m_Handle_0)); }
inline intptr_t get_m_Handle_0() const { return ___m_Handle_0; }
inline intptr_t* get_address_of_m_Handle_0() { return &___m_Handle_0; }
inline void set_m_Handle_0(intptr_t value)
{
___m_Handle_0 = value;
}
inline static int32_t get_offset_of_m_Version_1() { return static_cast<int32_t>(offsetof(PlayableOutputHandle_t4208053793, ___m_Version_1)); }
inline uint32_t get_m_Version_1() const { return ___m_Version_1; }
inline uint32_t* get_address_of_m_Version_1() { return &___m_Version_1; }
inline void set_m_Version_1(uint32_t value)
{
___m_Version_1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // PLAYABLEOUTPUTHANDLE_T4208053793_H
#ifndef LOADSCENEMODE_T3251202195_H
#define LOADSCENEMODE_T3251202195_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.SceneManagement.LoadSceneMode
struct LoadSceneMode_t3251202195
{
public:
// System.Int32 UnityEngine.SceneManagement.LoadSceneMode::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(LoadSceneMode_t3251202195, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // LOADSCENEMODE_T3251202195_H
#ifndef UNITYLOGWRITER_T1374348020_H
#define UNITYLOGWRITER_T1374348020_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.UnityLogWriter
struct UnityLogWriter_t1374348020 : public TextWriter_t3478189236
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // UNITYLOGWRITER_T1374348020_H
#ifndef CONFIDENCELEVEL_T1067668299_H
#define CONFIDENCELEVEL_T1067668299_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.Windows.Speech.ConfidenceLevel
struct ConfidenceLevel_t1067668299
{
public:
// System.Int32 UnityEngine.Windows.Speech.ConfidenceLevel::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(ConfidenceLevel_t1067668299, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // CONFIDENCELEVEL_T1067668299_H
#ifndef DICTATIONCOMPLETIONCAUSE_T1460845807_H
#define DICTATIONCOMPLETIONCAUSE_T1460845807_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.Windows.Speech.DictationCompletionCause
struct DictationCompletionCause_t1460845807
{
public:
// System.Int32 UnityEngine.Windows.Speech.DictationCompletionCause::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(DictationCompletionCause_t1460845807, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // DICTATIONCOMPLETIONCAUSE_T1460845807_H
#ifndef DICTATIONRECOGNIZER_T838322161_H
#define DICTATIONRECOGNIZER_T838322161_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.Windows.Speech.DictationRecognizer
struct DictationRecognizer_t838322161 : public RuntimeObject
{
public:
// System.IntPtr UnityEngine.Windows.Speech.DictationRecognizer::m_Recognizer
intptr_t ___m_Recognizer_0;
// UnityEngine.Windows.Speech.DictationRecognizer/DictationHypothesisDelegate UnityEngine.Windows.Speech.DictationRecognizer::DictationHypothesis
DictationHypothesisDelegate_t263093018 * ___DictationHypothesis_1;
// UnityEngine.Windows.Speech.DictationRecognizer/DictationResultDelegate UnityEngine.Windows.Speech.DictationRecognizer::DictationResult
DictationResultDelegate_t1743835588 * ___DictationResult_2;
// UnityEngine.Windows.Speech.DictationRecognizer/DictationCompletedDelegate UnityEngine.Windows.Speech.DictationRecognizer::DictationComplete
DictationCompletedDelegate_t174017847 * ___DictationComplete_3;
// UnityEngine.Windows.Speech.DictationRecognizer/DictationErrorHandler UnityEngine.Windows.Speech.DictationRecognizer::DictationError
DictationErrorHandler_t287248442 * ___DictationError_4;
public:
inline static int32_t get_offset_of_m_Recognizer_0() { return static_cast<int32_t>(offsetof(DictationRecognizer_t838322161, ___m_Recognizer_0)); }
inline intptr_t get_m_Recognizer_0() const { return ___m_Recognizer_0; }
inline intptr_t* get_address_of_m_Recognizer_0() { return &___m_Recognizer_0; }
inline void set_m_Recognizer_0(intptr_t value)
{
___m_Recognizer_0 = value;
}
inline static int32_t get_offset_of_DictationHypothesis_1() { return static_cast<int32_t>(offsetof(DictationRecognizer_t838322161, ___DictationHypothesis_1)); }
inline DictationHypothesisDelegate_t263093018 * get_DictationHypothesis_1() const { return ___DictationHypothesis_1; }
inline DictationHypothesisDelegate_t263093018 ** get_address_of_DictationHypothesis_1() { return &___DictationHypothesis_1; }
inline void set_DictationHypothesis_1(DictationHypothesisDelegate_t263093018 * value)
{
___DictationHypothesis_1 = value;
Il2CppCodeGenWriteBarrier((&___DictationHypothesis_1), value);
}
inline static int32_t get_offset_of_DictationResult_2() { return static_cast<int32_t>(offsetof(DictationRecognizer_t838322161, ___DictationResult_2)); }
inline DictationResultDelegate_t1743835588 * get_DictationResult_2() const { return ___DictationResult_2; }
inline DictationResultDelegate_t1743835588 ** get_address_of_DictationResult_2() { return &___DictationResult_2; }
inline void set_DictationResult_2(DictationResultDelegate_t1743835588 * value)
{
___DictationResult_2 = value;
Il2CppCodeGenWriteBarrier((&___DictationResult_2), value);
}
inline static int32_t get_offset_of_DictationComplete_3() { return static_cast<int32_t>(offsetof(DictationRecognizer_t838322161, ___DictationComplete_3)); }
inline DictationCompletedDelegate_t174017847 * get_DictationComplete_3() const { return ___DictationComplete_3; }
inline DictationCompletedDelegate_t174017847 ** get_address_of_DictationComplete_3() { return &___DictationComplete_3; }
inline void set_DictationComplete_3(DictationCompletedDelegate_t174017847 * value)
{
___DictationComplete_3 = value;
Il2CppCodeGenWriteBarrier((&___DictationComplete_3), value);
}
inline static int32_t get_offset_of_DictationError_4() { return static_cast<int32_t>(offsetof(DictationRecognizer_t838322161, ___DictationError_4)); }
inline DictationErrorHandler_t287248442 * get_DictationError_4() const { return ___DictationError_4; }
inline DictationErrorHandler_t287248442 ** get_address_of_DictationError_4() { return &___DictationError_4; }
inline void set_DictationError_4(DictationErrorHandler_t287248442 * value)
{
___DictationError_4 = value;
Il2CppCodeGenWriteBarrier((&___DictationError_4), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // DICTATIONRECOGNIZER_T838322161_H
#ifndef PHRASERECOGNIZER_T1663548656_H
#define PHRASERECOGNIZER_T1663548656_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.Windows.Speech.PhraseRecognizer
struct PhraseRecognizer_t1663548656 : public RuntimeObject
{
public:
// System.IntPtr UnityEngine.Windows.Speech.PhraseRecognizer::m_Recognizer
intptr_t ___m_Recognizer_0;
// UnityEngine.Windows.Speech.PhraseRecognizer/PhraseRecognizedDelegate UnityEngine.Windows.Speech.PhraseRecognizer::OnPhraseRecognized
PhraseRecognizedDelegate_t3092874173 * ___OnPhraseRecognized_1;
public:
inline static int32_t get_offset_of_m_Recognizer_0() { return static_cast<int32_t>(offsetof(PhraseRecognizer_t1663548656, ___m_Recognizer_0)); }
inline intptr_t get_m_Recognizer_0() const { return ___m_Recognizer_0; }
inline intptr_t* get_address_of_m_Recognizer_0() { return &___m_Recognizer_0; }
inline void set_m_Recognizer_0(intptr_t value)
{
___m_Recognizer_0 = value;
}
inline static int32_t get_offset_of_OnPhraseRecognized_1() { return static_cast<int32_t>(offsetof(PhraseRecognizer_t1663548656, ___OnPhraseRecognized_1)); }
inline PhraseRecognizedDelegate_t3092874173 * get_OnPhraseRecognized_1() const { return ___OnPhraseRecognized_1; }
inline PhraseRecognizedDelegate_t3092874173 ** get_address_of_OnPhraseRecognized_1() { return &___OnPhraseRecognized_1; }
inline void set_OnPhraseRecognized_1(PhraseRecognizedDelegate_t3092874173 * value)
{
___OnPhraseRecognized_1 = value;
Il2CppCodeGenWriteBarrier((&___OnPhraseRecognized_1), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // PHRASERECOGNIZER_T1663548656_H
#ifndef SPEECHERROR_T2615287629_H
#define SPEECHERROR_T2615287629_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.Windows.Speech.SpeechError
struct SpeechError_t2615287629
{
public:
// System.Int32 UnityEngine.Windows.Speech.SpeechError::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(SpeechError_t2615287629, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // SPEECHERROR_T2615287629_H
#ifndef SPEECHSYSTEMSTATUS_T3318883750_H
#define SPEECHSYSTEMSTATUS_T3318883750_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.Windows.Speech.SpeechSystemStatus
struct SpeechSystemStatus_t3318883750
{
public:
// System.Int32 UnityEngine.Windows.Speech.SpeechSystemStatus::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(SpeechSystemStatus_t3318883750, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // SPEECHSYSTEMSTATUS_T3318883750_H
#ifndef MULTICASTDELEGATE_T_H
#define MULTICASTDELEGATE_T_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.MulticastDelegate
struct MulticastDelegate_t : public Delegate_t1188392813
{
public:
// System.Delegate[] System.MulticastDelegate::delegates
DelegateU5BU5D_t1703627840* ___delegates_11;
public:
inline static int32_t get_offset_of_delegates_11() { return static_cast<int32_t>(offsetof(MulticastDelegate_t, ___delegates_11)); }
inline DelegateU5BU5D_t1703627840* get_delegates_11() const { return ___delegates_11; }
inline DelegateU5BU5D_t1703627840** get_address_of_delegates_11() { return &___delegates_11; }
inline void set_delegates_11(DelegateU5BU5D_t1703627840* value)
{
___delegates_11 = value;
Il2CppCodeGenWriteBarrier((&___delegates_11), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// Native definition for P/Invoke marshalling of System.MulticastDelegate
struct MulticastDelegate_t_marshaled_pinvoke : public Delegate_t1188392813_marshaled_pinvoke
{
DelegateU5BU5D_t1703627840* ___delegates_11;
};
// Native definition for COM marshalling of System.MulticastDelegate
struct MulticastDelegate_t_marshaled_com : public Delegate_t1188392813_marshaled_com
{
DelegateU5BU5D_t1703627840* ___delegates_11;
};
#endif // MULTICASTDELEGATE_T_H
#ifndef CAMERAPLAYABLE_T3330816414_H
#define CAMERAPLAYABLE_T3330816414_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.Experimental.Playables.CameraPlayable
struct CameraPlayable_t3330816414
{
public:
// UnityEngine.Playables.PlayableHandle UnityEngine.Experimental.Playables.CameraPlayable::m_Handle
PlayableHandle_t1095853803 ___m_Handle_0;
public:
inline static int32_t get_offset_of_m_Handle_0() { return static_cast<int32_t>(offsetof(CameraPlayable_t3330816414, ___m_Handle_0)); }
inline PlayableHandle_t1095853803 get_m_Handle_0() const { return ___m_Handle_0; }
inline PlayableHandle_t1095853803 * get_address_of_m_Handle_0() { return &___m_Handle_0; }
inline void set_m_Handle_0(PlayableHandle_t1095853803 value)
{
___m_Handle_0 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // CAMERAPLAYABLE_T3330816414_H
#ifndef MATERIALEFFECTPLAYABLE_T3995207978_H
#define MATERIALEFFECTPLAYABLE_T3995207978_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.Experimental.Playables.MaterialEffectPlayable
struct MaterialEffectPlayable_t3995207978
{
public:
// UnityEngine.Playables.PlayableHandle UnityEngine.Experimental.Playables.MaterialEffectPlayable::m_Handle
PlayableHandle_t1095853803 ___m_Handle_0;
public:
inline static int32_t get_offset_of_m_Handle_0() { return static_cast<int32_t>(offsetof(MaterialEffectPlayable_t3995207978, ___m_Handle_0)); }
inline PlayableHandle_t1095853803 get_m_Handle_0() const { return ___m_Handle_0; }
inline PlayableHandle_t1095853803 * get_address_of_m_Handle_0() { return &___m_Handle_0; }
inline void set_m_Handle_0(PlayableHandle_t1095853803 value)
{
___m_Handle_0 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // MATERIALEFFECTPLAYABLE_T3995207978_H
#ifndef TEXTUREMIXERPLAYABLE_T2398603962_H
#define TEXTUREMIXERPLAYABLE_T2398603962_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.Experimental.Playables.TextureMixerPlayable
struct TextureMixerPlayable_t2398603962
{
public:
// UnityEngine.Playables.PlayableHandle UnityEngine.Experimental.Playables.TextureMixerPlayable::m_Handle
PlayableHandle_t1095853803 ___m_Handle_0;
public:
inline static int32_t get_offset_of_m_Handle_0() { return static_cast<int32_t>(offsetof(TextureMixerPlayable_t2398603962, ___m_Handle_0)); }
inline PlayableHandle_t1095853803 get_m_Handle_0() const { return ___m_Handle_0; }
inline PlayableHandle_t1095853803 * get_address_of_m_Handle_0() { return &___m_Handle_0; }
inline void set_m_Handle_0(PlayableHandle_t1095853803 value)
{
___m_Handle_0 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // TEXTUREMIXERPLAYABLE_T2398603962_H
#ifndef TEXTUREPLAYABLEOUTPUT_T648497447_H
#define TEXTUREPLAYABLEOUTPUT_T648497447_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.Experimental.Playables.TexturePlayableOutput
struct TexturePlayableOutput_t648497447
{
public:
// UnityEngine.Playables.PlayableOutputHandle UnityEngine.Experimental.Playables.TexturePlayableOutput::m_Handle
PlayableOutputHandle_t4208053793 ___m_Handle_0;
public:
inline static int32_t get_offset_of_m_Handle_0() { return static_cast<int32_t>(offsetof(TexturePlayableOutput_t648497447, ___m_Handle_0)); }
inline PlayableOutputHandle_t4208053793 get_m_Handle_0() const { return ___m_Handle_0; }
inline PlayableOutputHandle_t4208053793 * get_address_of_m_Handle_0() { return &___m_Handle_0; }
inline void set_m_Handle_0(PlayableOutputHandle_t4208053793 value)
{
___m_Handle_0 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // TEXTUREPLAYABLEOUTPUT_T648497447_H
#ifndef SUPPORTEDRENDERINGFEATURES_T353898663_H
#define SUPPORTEDRENDERINGFEATURES_T353898663_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.Experimental.Rendering.SupportedRenderingFeatures
struct SupportedRenderingFeatures_t353898663 : public RuntimeObject
{
public:
// UnityEngine.Experimental.Rendering.SupportedRenderingFeatures/ReflectionProbeSupportFlags UnityEngine.Experimental.Rendering.SupportedRenderingFeatures::<reflectionProbeSupportFlags>k__BackingField
int32_t ___U3CreflectionProbeSupportFlagsU3Ek__BackingField_1;
// UnityEngine.Experimental.Rendering.SupportedRenderingFeatures/LightmapMixedBakeMode UnityEngine.Experimental.Rendering.SupportedRenderingFeatures::<defaultMixedLightingMode>k__BackingField
int32_t ___U3CdefaultMixedLightingModeU3Ek__BackingField_2;
// UnityEngine.Experimental.Rendering.SupportedRenderingFeatures/LightmapMixedBakeMode UnityEngine.Experimental.Rendering.SupportedRenderingFeatures::<supportedMixedLightingModes>k__BackingField
int32_t ___U3CsupportedMixedLightingModesU3Ek__BackingField_3;
// UnityEngine.LightmapBakeType UnityEngine.Experimental.Rendering.SupportedRenderingFeatures::<supportedLightmapBakeTypes>k__BackingField
int32_t ___U3CsupportedLightmapBakeTypesU3Ek__BackingField_4;
// UnityEngine.LightmapsMode UnityEngine.Experimental.Rendering.SupportedRenderingFeatures::<supportedLightmapsModes>k__BackingField
int32_t ___U3CsupportedLightmapsModesU3Ek__BackingField_5;
// System.Boolean UnityEngine.Experimental.Rendering.SupportedRenderingFeatures::<rendererSupportsLightProbeProxyVolumes>k__BackingField
bool ___U3CrendererSupportsLightProbeProxyVolumesU3Ek__BackingField_6;
// System.Boolean UnityEngine.Experimental.Rendering.SupportedRenderingFeatures::<rendererSupportsMotionVectors>k__BackingField
bool ___U3CrendererSupportsMotionVectorsU3Ek__BackingField_7;
// System.Boolean UnityEngine.Experimental.Rendering.SupportedRenderingFeatures::<rendererSupportsReceiveShadows>k__BackingField
bool ___U3CrendererSupportsReceiveShadowsU3Ek__BackingField_8;
// System.Boolean UnityEngine.Experimental.Rendering.SupportedRenderingFeatures::<rendererSupportsReflectionProbes>k__BackingField
bool ___U3CrendererSupportsReflectionProbesU3Ek__BackingField_9;
public:
inline static int32_t get_offset_of_U3CreflectionProbeSupportFlagsU3Ek__BackingField_1() { return static_cast<int32_t>(offsetof(SupportedRenderingFeatures_t353898663, ___U3CreflectionProbeSupportFlagsU3Ek__BackingField_1)); }
inline int32_t get_U3CreflectionProbeSupportFlagsU3Ek__BackingField_1() const { return ___U3CreflectionProbeSupportFlagsU3Ek__BackingField_1; }
inline int32_t* get_address_of_U3CreflectionProbeSupportFlagsU3Ek__BackingField_1() { return &___U3CreflectionProbeSupportFlagsU3Ek__BackingField_1; }
inline void set_U3CreflectionProbeSupportFlagsU3Ek__BackingField_1(int32_t value)
{
___U3CreflectionProbeSupportFlagsU3Ek__BackingField_1 = value;
}
inline static int32_t get_offset_of_U3CdefaultMixedLightingModeU3Ek__BackingField_2() { return static_cast<int32_t>(offsetof(SupportedRenderingFeatures_t353898663, ___U3CdefaultMixedLightingModeU3Ek__BackingField_2)); }
inline int32_t get_U3CdefaultMixedLightingModeU3Ek__BackingField_2() const { return ___U3CdefaultMixedLightingModeU3Ek__BackingField_2; }
inline int32_t* get_address_of_U3CdefaultMixedLightingModeU3Ek__BackingField_2() { return &___U3CdefaultMixedLightingModeU3Ek__BackingField_2; }
inline void set_U3CdefaultMixedLightingModeU3Ek__BackingField_2(int32_t value)
{
___U3CdefaultMixedLightingModeU3Ek__BackingField_2 = value;
}
inline static int32_t get_offset_of_U3CsupportedMixedLightingModesU3Ek__BackingField_3() { return static_cast<int32_t>(offsetof(SupportedRenderingFeatures_t353898663, ___U3CsupportedMixedLightingModesU3Ek__BackingField_3)); }
inline int32_t get_U3CsupportedMixedLightingModesU3Ek__BackingField_3() const { return ___U3CsupportedMixedLightingModesU3Ek__BackingField_3; }
inline int32_t* get_address_of_U3CsupportedMixedLightingModesU3Ek__BackingField_3() { return &___U3CsupportedMixedLightingModesU3Ek__BackingField_3; }
inline void set_U3CsupportedMixedLightingModesU3Ek__BackingField_3(int32_t value)
{
___U3CsupportedMixedLightingModesU3Ek__BackingField_3 = value;
}
inline static int32_t get_offset_of_U3CsupportedLightmapBakeTypesU3Ek__BackingField_4() { return static_cast<int32_t>(offsetof(SupportedRenderingFeatures_t353898663, ___U3CsupportedLightmapBakeTypesU3Ek__BackingField_4)); }
inline int32_t get_U3CsupportedLightmapBakeTypesU3Ek__BackingField_4() const { return ___U3CsupportedLightmapBakeTypesU3Ek__BackingField_4; }
inline int32_t* get_address_of_U3CsupportedLightmapBakeTypesU3Ek__BackingField_4() { return &___U3CsupportedLightmapBakeTypesU3Ek__BackingField_4; }
inline void set_U3CsupportedLightmapBakeTypesU3Ek__BackingField_4(int32_t value)
{
___U3CsupportedLightmapBakeTypesU3Ek__BackingField_4 = value;
}
inline static int32_t get_offset_of_U3CsupportedLightmapsModesU3Ek__BackingField_5() { return static_cast<int32_t>(offsetof(SupportedRenderingFeatures_t353898663, ___U3CsupportedLightmapsModesU3Ek__BackingField_5)); }
inline int32_t get_U3CsupportedLightmapsModesU3Ek__BackingField_5() const { return ___U3CsupportedLightmapsModesU3Ek__BackingField_5; }
inline int32_t* get_address_of_U3CsupportedLightmapsModesU3Ek__BackingField_5() { return &___U3CsupportedLightmapsModesU3Ek__BackingField_5; }
inline void set_U3CsupportedLightmapsModesU3Ek__BackingField_5(int32_t value)
{
___U3CsupportedLightmapsModesU3Ek__BackingField_5 = value;
}
inline static int32_t get_offset_of_U3CrendererSupportsLightProbeProxyVolumesU3Ek__BackingField_6() { return static_cast<int32_t>(offsetof(SupportedRenderingFeatures_t353898663, ___U3CrendererSupportsLightProbeProxyVolumesU3Ek__BackingField_6)); }
inline bool get_U3CrendererSupportsLightProbeProxyVolumesU3Ek__BackingField_6() const { return ___U3CrendererSupportsLightProbeProxyVolumesU3Ek__BackingField_6; }
inline bool* get_address_of_U3CrendererSupportsLightProbeProxyVolumesU3Ek__BackingField_6() { return &___U3CrendererSupportsLightProbeProxyVolumesU3Ek__BackingField_6; }
inline void set_U3CrendererSupportsLightProbeProxyVolumesU3Ek__BackingField_6(bool value)
{
___U3CrendererSupportsLightProbeProxyVolumesU3Ek__BackingField_6 = value;
}
inline static int32_t get_offset_of_U3CrendererSupportsMotionVectorsU3Ek__BackingField_7() { return static_cast<int32_t>(offsetof(SupportedRenderingFeatures_t353898663, ___U3CrendererSupportsMotionVectorsU3Ek__BackingField_7)); }
inline bool get_U3CrendererSupportsMotionVectorsU3Ek__BackingField_7() const { return ___U3CrendererSupportsMotionVectorsU3Ek__BackingField_7; }
inline bool* get_address_of_U3CrendererSupportsMotionVectorsU3Ek__BackingField_7() { return &___U3CrendererSupportsMotionVectorsU3Ek__BackingField_7; }
inline void set_U3CrendererSupportsMotionVectorsU3Ek__BackingField_7(bool value)
{
___U3CrendererSupportsMotionVectorsU3Ek__BackingField_7 = value;
}
inline static int32_t get_offset_of_U3CrendererSupportsReceiveShadowsU3Ek__BackingField_8() { return static_cast<int32_t>(offsetof(SupportedRenderingFeatures_t353898663, ___U3CrendererSupportsReceiveShadowsU3Ek__BackingField_8)); }
inline bool get_U3CrendererSupportsReceiveShadowsU3Ek__BackingField_8() const { return ___U3CrendererSupportsReceiveShadowsU3Ek__BackingField_8; }
inline bool* get_address_of_U3CrendererSupportsReceiveShadowsU3Ek__BackingField_8() { return &___U3CrendererSupportsReceiveShadowsU3Ek__BackingField_8; }
inline void set_U3CrendererSupportsReceiveShadowsU3Ek__BackingField_8(bool value)
{
___U3CrendererSupportsReceiveShadowsU3Ek__BackingField_8 = value;
}
inline static int32_t get_offset_of_U3CrendererSupportsReflectionProbesU3Ek__BackingField_9() { return static_cast<int32_t>(offsetof(SupportedRenderingFeatures_t353898663, ___U3CrendererSupportsReflectionProbesU3Ek__BackingField_9)); }
inline bool get_U3CrendererSupportsReflectionProbesU3Ek__BackingField_9() const { return ___U3CrendererSupportsReflectionProbesU3Ek__BackingField_9; }
inline bool* get_address_of_U3CrendererSupportsReflectionProbesU3Ek__BackingField_9() { return &___U3CrendererSupportsReflectionProbesU3Ek__BackingField_9; }
inline void set_U3CrendererSupportsReflectionProbesU3Ek__BackingField_9(bool value)
{
___U3CrendererSupportsReflectionProbesU3Ek__BackingField_9 = value;
}
};
struct SupportedRenderingFeatures_t353898663_StaticFields
{
public:
// UnityEngine.Experimental.Rendering.SupportedRenderingFeatures UnityEngine.Experimental.Rendering.SupportedRenderingFeatures::s_Active
SupportedRenderingFeatures_t353898663 * ___s_Active_0;
public:
inline static int32_t get_offset_of_s_Active_0() { return static_cast<int32_t>(offsetof(SupportedRenderingFeatures_t353898663_StaticFields, ___s_Active_0)); }
inline SupportedRenderingFeatures_t353898663 * get_s_Active_0() const { return ___s_Active_0; }
inline SupportedRenderingFeatures_t353898663 ** get_address_of_s_Active_0() { return &___s_Active_0; }
inline void set_s_Active_0(SupportedRenderingFeatures_t353898663 * value)
{
___s_Active_0 = value;
Il2CppCodeGenWriteBarrier((&___s_Active_0), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // SUPPORTEDRENDERINGFEATURES_T353898663_H
#ifndef LOGGER_T274032455_H
#define LOGGER_T274032455_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.Logger
struct Logger_t274032455 : public RuntimeObject
{
public:
// UnityEngine.ILogHandler UnityEngine.Logger::<logHandler>k__BackingField
RuntimeObject* ___U3ClogHandlerU3Ek__BackingField_0;
// System.Boolean UnityEngine.Logger::<logEnabled>k__BackingField
bool ___U3ClogEnabledU3Ek__BackingField_1;
// UnityEngine.LogType UnityEngine.Logger::<filterLogType>k__BackingField
int32_t ___U3CfilterLogTypeU3Ek__BackingField_2;
public:
inline static int32_t get_offset_of_U3ClogHandlerU3Ek__BackingField_0() { return static_cast<int32_t>(offsetof(Logger_t274032455, ___U3ClogHandlerU3Ek__BackingField_0)); }
inline RuntimeObject* get_U3ClogHandlerU3Ek__BackingField_0() const { return ___U3ClogHandlerU3Ek__BackingField_0; }
inline RuntimeObject** get_address_of_U3ClogHandlerU3Ek__BackingField_0() { return &___U3ClogHandlerU3Ek__BackingField_0; }
inline void set_U3ClogHandlerU3Ek__BackingField_0(RuntimeObject* value)
{
___U3ClogHandlerU3Ek__BackingField_0 = value;
Il2CppCodeGenWriteBarrier((&___U3ClogHandlerU3Ek__BackingField_0), value);
}
inline static int32_t get_offset_of_U3ClogEnabledU3Ek__BackingField_1() { return static_cast<int32_t>(offsetof(Logger_t274032455, ___U3ClogEnabledU3Ek__BackingField_1)); }
inline bool get_U3ClogEnabledU3Ek__BackingField_1() const { return ___U3ClogEnabledU3Ek__BackingField_1; }
inline bool* get_address_of_U3ClogEnabledU3Ek__BackingField_1() { return &___U3ClogEnabledU3Ek__BackingField_1; }
inline void set_U3ClogEnabledU3Ek__BackingField_1(bool value)
{
___U3ClogEnabledU3Ek__BackingField_1 = value;
}
inline static int32_t get_offset_of_U3CfilterLogTypeU3Ek__BackingField_2() { return static_cast<int32_t>(offsetof(Logger_t274032455, ___U3CfilterLogTypeU3Ek__BackingField_2)); }
inline int32_t get_U3CfilterLogTypeU3Ek__BackingField_2() const { return ___U3CfilterLogTypeU3Ek__BackingField_2; }
inline int32_t* get_address_of_U3CfilterLogTypeU3Ek__BackingField_2() { return &___U3CfilterLogTypeU3Ek__BackingField_2; }
inline void set_U3CfilterLogTypeU3Ek__BackingField_2(int32_t value)
{
___U3CfilterLogTypeU3Ek__BackingField_2 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // LOGGER_T274032455_H
#ifndef PLAYABLE_T459825607_H
#define PLAYABLE_T459825607_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.Playables.Playable
struct Playable_t459825607
{
public:
// UnityEngine.Playables.PlayableHandle UnityEngine.Playables.Playable::m_Handle
PlayableHandle_t1095853803 ___m_Handle_0;
public:
inline static int32_t get_offset_of_m_Handle_0() { return static_cast<int32_t>(offsetof(Playable_t459825607, ___m_Handle_0)); }
inline PlayableHandle_t1095853803 get_m_Handle_0() const { return ___m_Handle_0; }
inline PlayableHandle_t1095853803 * get_address_of_m_Handle_0() { return &___m_Handle_0; }
inline void set_m_Handle_0(PlayableHandle_t1095853803 value)
{
___m_Handle_0 = value;
}
};
struct Playable_t459825607_StaticFields
{
public:
// UnityEngine.Playables.Playable UnityEngine.Playables.Playable::m_NullPlayable
Playable_t459825607 ___m_NullPlayable_1;
public:
inline static int32_t get_offset_of_m_NullPlayable_1() { return static_cast<int32_t>(offsetof(Playable_t459825607_StaticFields, ___m_NullPlayable_1)); }
inline Playable_t459825607 get_m_NullPlayable_1() const { return ___m_NullPlayable_1; }
inline Playable_t459825607 * get_address_of_m_NullPlayable_1() { return &___m_NullPlayable_1; }
inline void set_m_NullPlayable_1(Playable_t459825607 value)
{
___m_NullPlayable_1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // PLAYABLE_T459825607_H
#ifndef PLAYABLEBINDING_T354260709_H
#define PLAYABLEBINDING_T354260709_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.Playables.PlayableBinding
struct PlayableBinding_t354260709
{
public:
// System.String UnityEngine.Playables.PlayableBinding::m_StreamName
String_t* ___m_StreamName_0;
// UnityEngine.Object UnityEngine.Playables.PlayableBinding::m_SourceObject
Object_t631007953 * ___m_SourceObject_1;
// System.Type UnityEngine.Playables.PlayableBinding::m_SourceBindingType
Type_t * ___m_SourceBindingType_2;
// UnityEngine.Playables.PlayableBinding/CreateOutputMethod UnityEngine.Playables.PlayableBinding::m_CreateOutputMethod
CreateOutputMethod_t2301811773 * ___m_CreateOutputMethod_3;
public:
inline static int32_t get_offset_of_m_StreamName_0() { return static_cast<int32_t>(offsetof(PlayableBinding_t354260709, ___m_StreamName_0)); }
inline String_t* get_m_StreamName_0() const { return ___m_StreamName_0; }
inline String_t** get_address_of_m_StreamName_0() { return &___m_StreamName_0; }
inline void set_m_StreamName_0(String_t* value)
{
___m_StreamName_0 = value;
Il2CppCodeGenWriteBarrier((&___m_StreamName_0), value);
}
inline static int32_t get_offset_of_m_SourceObject_1() { return static_cast<int32_t>(offsetof(PlayableBinding_t354260709, ___m_SourceObject_1)); }
inline Object_t631007953 * get_m_SourceObject_1() const { return ___m_SourceObject_1; }
inline Object_t631007953 ** get_address_of_m_SourceObject_1() { return &___m_SourceObject_1; }
inline void set_m_SourceObject_1(Object_t631007953 * value)
{
___m_SourceObject_1 = value;
Il2CppCodeGenWriteBarrier((&___m_SourceObject_1), value);
}
inline static int32_t get_offset_of_m_SourceBindingType_2() { return static_cast<int32_t>(offsetof(PlayableBinding_t354260709, ___m_SourceBindingType_2)); }
inline Type_t * get_m_SourceBindingType_2() const { return ___m_SourceBindingType_2; }
inline Type_t ** get_address_of_m_SourceBindingType_2() { return &___m_SourceBindingType_2; }
inline void set_m_SourceBindingType_2(Type_t * value)
{
___m_SourceBindingType_2 = value;
Il2CppCodeGenWriteBarrier((&___m_SourceBindingType_2), value);
}
inline static int32_t get_offset_of_m_CreateOutputMethod_3() { return static_cast<int32_t>(offsetof(PlayableBinding_t354260709, ___m_CreateOutputMethod_3)); }
inline CreateOutputMethod_t2301811773 * get_m_CreateOutputMethod_3() const { return ___m_CreateOutputMethod_3; }
inline CreateOutputMethod_t2301811773 ** get_address_of_m_CreateOutputMethod_3() { return &___m_CreateOutputMethod_3; }
inline void set_m_CreateOutputMethod_3(CreateOutputMethod_t2301811773 * value)
{
___m_CreateOutputMethod_3 = value;
Il2CppCodeGenWriteBarrier((&___m_CreateOutputMethod_3), value);
}
};
struct PlayableBinding_t354260709_StaticFields
{
public:
// UnityEngine.Playables.PlayableBinding[] UnityEngine.Playables.PlayableBinding::None
PlayableBindingU5BU5D_t829358056* ___None_4;
// System.Double UnityEngine.Playables.PlayableBinding::DefaultDuration
double ___DefaultDuration_5;
public:
inline static int32_t get_offset_of_None_4() { return static_cast<int32_t>(offsetof(PlayableBinding_t354260709_StaticFields, ___None_4)); }
inline PlayableBindingU5BU5D_t829358056* get_None_4() const { return ___None_4; }
inline PlayableBindingU5BU5D_t829358056** get_address_of_None_4() { return &___None_4; }
inline void set_None_4(PlayableBindingU5BU5D_t829358056* value)
{
___None_4 = value;
Il2CppCodeGenWriteBarrier((&___None_4), value);
}
inline static int32_t get_offset_of_DefaultDuration_5() { return static_cast<int32_t>(offsetof(PlayableBinding_t354260709_StaticFields, ___DefaultDuration_5)); }
inline double get_DefaultDuration_5() const { return ___DefaultDuration_5; }
inline double* get_address_of_DefaultDuration_5() { return &___DefaultDuration_5; }
inline void set_DefaultDuration_5(double value)
{
___DefaultDuration_5 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// Native definition for P/Invoke marshalling of UnityEngine.Playables.PlayableBinding
struct PlayableBinding_t354260709_marshaled_pinvoke
{
char* ___m_StreamName_0;
Object_t631007953_marshaled_pinvoke ___m_SourceObject_1;
Type_t * ___m_SourceBindingType_2;
Il2CppMethodPointer ___m_CreateOutputMethod_3;
};
// Native definition for COM marshalling of UnityEngine.Playables.PlayableBinding
struct PlayableBinding_t354260709_marshaled_com
{
Il2CppChar* ___m_StreamName_0;
Object_t631007953_marshaled_com* ___m_SourceObject_1;
Type_t * ___m_SourceBindingType_2;
Il2CppMethodPointer ___m_CreateOutputMethod_3;
};
#endif // PLAYABLEBINDING_T354260709_H
#ifndef PLAYABLEOUTPUT_T3179894105_H
#define PLAYABLEOUTPUT_T3179894105_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.Playables.PlayableOutput
struct PlayableOutput_t3179894105
{
public:
// UnityEngine.Playables.PlayableOutputHandle UnityEngine.Playables.PlayableOutput::m_Handle
PlayableOutputHandle_t4208053793 ___m_Handle_0;
public:
inline static int32_t get_offset_of_m_Handle_0() { return static_cast<int32_t>(offsetof(PlayableOutput_t3179894105, ___m_Handle_0)); }
inline PlayableOutputHandle_t4208053793 get_m_Handle_0() const { return ___m_Handle_0; }
inline PlayableOutputHandle_t4208053793 * get_address_of_m_Handle_0() { return &___m_Handle_0; }
inline void set_m_Handle_0(PlayableOutputHandle_t4208053793 value)
{
___m_Handle_0 = value;
}
};
struct PlayableOutput_t3179894105_StaticFields
{
public:
// UnityEngine.Playables.PlayableOutput UnityEngine.Playables.PlayableOutput::m_NullPlayableOutput
PlayableOutput_t3179894105 ___m_NullPlayableOutput_1;
public:
inline static int32_t get_offset_of_m_NullPlayableOutput_1() { return static_cast<int32_t>(offsetof(PlayableOutput_t3179894105_StaticFields, ___m_NullPlayableOutput_1)); }
inline PlayableOutput_t3179894105 get_m_NullPlayableOutput_1() const { return ___m_NullPlayableOutput_1; }
inline PlayableOutput_t3179894105 * get_address_of_m_NullPlayableOutput_1() { return &___m_NullPlayableOutput_1; }
inline void set_m_NullPlayableOutput_1(PlayableOutput_t3179894105 value)
{
___m_NullPlayableOutput_1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // PLAYABLEOUTPUT_T3179894105_H
#ifndef SCRIPTPLAYABLEOUTPUT_T2715692609_H
#define SCRIPTPLAYABLEOUTPUT_T2715692609_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.Playables.ScriptPlayableOutput
struct ScriptPlayableOutput_t2715692609
{
public:
// UnityEngine.Playables.PlayableOutputHandle UnityEngine.Playables.ScriptPlayableOutput::m_Handle
PlayableOutputHandle_t4208053793 ___m_Handle_0;
public:
inline static int32_t get_offset_of_m_Handle_0() { return static_cast<int32_t>(offsetof(ScriptPlayableOutput_t2715692609, ___m_Handle_0)); }
inline PlayableOutputHandle_t4208053793 get_m_Handle_0() const { return ___m_Handle_0; }
inline PlayableOutputHandle_t4208053793 * get_address_of_m_Handle_0() { return &___m_Handle_0; }
inline void set_m_Handle_0(PlayableOutputHandle_t4208053793 value)
{
___m_Handle_0 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // SCRIPTPLAYABLEOUTPUT_T2715692609_H
#ifndef SCRIPTABLEOBJECT_T2528358522_H
#define SCRIPTABLEOBJECT_T2528358522_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.ScriptableObject
struct ScriptableObject_t2528358522 : public Object_t631007953
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// Native definition for P/Invoke marshalling of UnityEngine.ScriptableObject
struct ScriptableObject_t2528358522_marshaled_pinvoke : public Object_t631007953_marshaled_pinvoke
{
};
// Native definition for COM marshalling of UnityEngine.ScriptableObject
struct ScriptableObject_t2528358522_marshaled_com : public Object_t631007953_marshaled_com
{
};
#endif // SCRIPTABLEOBJECT_T2528358522_H
#ifndef PHRASERECOGNIZEDEVENTARGS_T3182631328_H
#define PHRASERECOGNIZEDEVENTARGS_T3182631328_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.Windows.Speech.PhraseRecognizedEventArgs
struct PhraseRecognizedEventArgs_t3182631328
{
public:
// UnityEngine.Windows.Speech.ConfidenceLevel UnityEngine.Windows.Speech.PhraseRecognizedEventArgs::confidence
int32_t ___confidence_0;
// UnityEngine.Windows.Speech.SemanticMeaning[] UnityEngine.Windows.Speech.PhraseRecognizedEventArgs::semanticMeanings
SemanticMeaningU5BU5D_t1653704947* ___semanticMeanings_1;
// System.String UnityEngine.Windows.Speech.PhraseRecognizedEventArgs::text
String_t* ___text_2;
// System.DateTime UnityEngine.Windows.Speech.PhraseRecognizedEventArgs::phraseStartTime
DateTime_t3738529785 ___phraseStartTime_3;
// System.TimeSpan UnityEngine.Windows.Speech.PhraseRecognizedEventArgs::phraseDuration
TimeSpan_t881159249 ___phraseDuration_4;
public:
inline static int32_t get_offset_of_confidence_0() { return static_cast<int32_t>(offsetof(PhraseRecognizedEventArgs_t3182631328, ___confidence_0)); }
inline int32_t get_confidence_0() const { return ___confidence_0; }
inline int32_t* get_address_of_confidence_0() { return &___confidence_0; }
inline void set_confidence_0(int32_t value)
{
___confidence_0 = value;
}
inline static int32_t get_offset_of_semanticMeanings_1() { return static_cast<int32_t>(offsetof(PhraseRecognizedEventArgs_t3182631328, ___semanticMeanings_1)); }
inline SemanticMeaningU5BU5D_t1653704947* get_semanticMeanings_1() const { return ___semanticMeanings_1; }
inline SemanticMeaningU5BU5D_t1653704947** get_address_of_semanticMeanings_1() { return &___semanticMeanings_1; }
inline void set_semanticMeanings_1(SemanticMeaningU5BU5D_t1653704947* value)
{
___semanticMeanings_1 = value;
Il2CppCodeGenWriteBarrier((&___semanticMeanings_1), value);
}
inline static int32_t get_offset_of_text_2() { return static_cast<int32_t>(offsetof(PhraseRecognizedEventArgs_t3182631328, ___text_2)); }
inline String_t* get_text_2() const { return ___text_2; }
inline String_t** get_address_of_text_2() { return &___text_2; }
inline void set_text_2(String_t* value)
{
___text_2 = value;
Il2CppCodeGenWriteBarrier((&___text_2), value);
}
inline static int32_t get_offset_of_phraseStartTime_3() { return static_cast<int32_t>(offsetof(PhraseRecognizedEventArgs_t3182631328, ___phraseStartTime_3)); }
inline DateTime_t3738529785 get_phraseStartTime_3() const { return ___phraseStartTime_3; }
inline DateTime_t3738529785 * get_address_of_phraseStartTime_3() { return &___phraseStartTime_3; }
inline void set_phraseStartTime_3(DateTime_t3738529785 value)
{
___phraseStartTime_3 = value;
}
inline static int32_t get_offset_of_phraseDuration_4() { return static_cast<int32_t>(offsetof(PhraseRecognizedEventArgs_t3182631328, ___phraseDuration_4)); }
inline TimeSpan_t881159249 get_phraseDuration_4() const { return ___phraseDuration_4; }
inline TimeSpan_t881159249 * get_address_of_phraseDuration_4() { return &___phraseDuration_4; }
inline void set_phraseDuration_4(TimeSpan_t881159249 value)
{
___phraseDuration_4 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// Native definition for P/Invoke marshalling of UnityEngine.Windows.Speech.PhraseRecognizedEventArgs
struct PhraseRecognizedEventArgs_t3182631328_marshaled_pinvoke
{
int32_t ___confidence_0;
SemanticMeaning_t3533498486_marshaled_pinvoke* ___semanticMeanings_1;
char* ___text_2;
DateTime_t3738529785 ___phraseStartTime_3;
TimeSpan_t881159249 ___phraseDuration_4;
};
// Native definition for COM marshalling of UnityEngine.Windows.Speech.PhraseRecognizedEventArgs
struct PhraseRecognizedEventArgs_t3182631328_marshaled_com
{
int32_t ___confidence_0;
SemanticMeaning_t3533498486_marshaled_com* ___semanticMeanings_1;
Il2CppChar* ___text_2;
DateTime_t3738529785 ___phraseStartTime_3;
TimeSpan_t881159249 ___phraseDuration_4;
};
#endif // PHRASERECOGNIZEDEVENTARGS_T3182631328_H
#ifndef PLAYERCONNECTION_T3081694049_H
#define PLAYERCONNECTION_T3081694049_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.Networking.PlayerConnection.PlayerConnection
struct PlayerConnection_t3081694049 : public ScriptableObject_t2528358522
{
public:
// UnityEngine.Networking.PlayerConnection.PlayerEditorConnectionEvents UnityEngine.Networking.PlayerConnection.PlayerConnection::m_PlayerEditorConnectionEvents
PlayerEditorConnectionEvents_t3411787513 * ___m_PlayerEditorConnectionEvents_5;
// System.Collections.Generic.List`1<System.Int32> UnityEngine.Networking.PlayerConnection.PlayerConnection::m_connectedPlayers
List_1_t128053199 * ___m_connectedPlayers_6;
// System.Boolean UnityEngine.Networking.PlayerConnection.PlayerConnection::m_IsInitilized
bool ___m_IsInitilized_7;
public:
inline static int32_t get_offset_of_m_PlayerEditorConnectionEvents_5() { return static_cast<int32_t>(offsetof(PlayerConnection_t3081694049, ___m_PlayerEditorConnectionEvents_5)); }
inline PlayerEditorConnectionEvents_t3411787513 * get_m_PlayerEditorConnectionEvents_5() const { return ___m_PlayerEditorConnectionEvents_5; }
inline PlayerEditorConnectionEvents_t3411787513 ** get_address_of_m_PlayerEditorConnectionEvents_5() { return &___m_PlayerEditorConnectionEvents_5; }
inline void set_m_PlayerEditorConnectionEvents_5(PlayerEditorConnectionEvents_t3411787513 * value)
{
___m_PlayerEditorConnectionEvents_5 = value;
Il2CppCodeGenWriteBarrier((&___m_PlayerEditorConnectionEvents_5), value);
}
inline static int32_t get_offset_of_m_connectedPlayers_6() { return static_cast<int32_t>(offsetof(PlayerConnection_t3081694049, ___m_connectedPlayers_6)); }
inline List_1_t128053199 * get_m_connectedPlayers_6() const { return ___m_connectedPlayers_6; }
inline List_1_t128053199 ** get_address_of_m_connectedPlayers_6() { return &___m_connectedPlayers_6; }
inline void set_m_connectedPlayers_6(List_1_t128053199 * value)
{
___m_connectedPlayers_6 = value;
Il2CppCodeGenWriteBarrier((&___m_connectedPlayers_6), value);
}
inline static int32_t get_offset_of_m_IsInitilized_7() { return static_cast<int32_t>(offsetof(PlayerConnection_t3081694049, ___m_IsInitilized_7)); }
inline bool get_m_IsInitilized_7() const { return ___m_IsInitilized_7; }
inline bool* get_address_of_m_IsInitilized_7() { return &___m_IsInitilized_7; }
inline void set_m_IsInitilized_7(bool value)
{
___m_IsInitilized_7 = value;
}
};
struct PlayerConnection_t3081694049_StaticFields
{
public:
// UnityEngine.IPlayerEditorConnectionNative UnityEngine.Networking.PlayerConnection.PlayerConnection::connectionNative
RuntimeObject* ___connectionNative_4;
// UnityEngine.Networking.PlayerConnection.PlayerConnection UnityEngine.Networking.PlayerConnection.PlayerConnection::s_Instance
PlayerConnection_t3081694049 * ___s_Instance_8;
public:
inline static int32_t get_offset_of_connectionNative_4() { return static_cast<int32_t>(offsetof(PlayerConnection_t3081694049_StaticFields, ___connectionNative_4)); }
inline RuntimeObject* get_connectionNative_4() const { return ___connectionNative_4; }
inline RuntimeObject** get_address_of_connectionNative_4() { return &___connectionNative_4; }
inline void set_connectionNative_4(RuntimeObject* value)
{
___connectionNative_4 = value;
Il2CppCodeGenWriteBarrier((&___connectionNative_4), value);
}
inline static int32_t get_offset_of_s_Instance_8() { return static_cast<int32_t>(offsetof(PlayerConnection_t3081694049_StaticFields, ___s_Instance_8)); }
inline PlayerConnection_t3081694049 * get_s_Instance_8() const { return ___s_Instance_8; }
inline PlayerConnection_t3081694049 ** get_address_of_s_Instance_8() { return &___s_Instance_8; }
inline void set_s_Instance_8(PlayerConnection_t3081694049 * value)
{
___s_Instance_8 = value;
Il2CppCodeGenWriteBarrier((&___s_Instance_8), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // PLAYERCONNECTION_T3081694049_H
#ifndef PLAYABLEASSET_T3219022681_H
#define PLAYABLEASSET_T3219022681_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.Playables.PlayableAsset
struct PlayableAsset_t3219022681 : public ScriptableObject_t2528358522
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // PLAYABLEASSET_T3219022681_H
#ifndef CREATEOUTPUTMETHOD_T2301811773_H
#define CREATEOUTPUTMETHOD_T2301811773_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.Playables.PlayableBinding/CreateOutputMethod
struct CreateOutputMethod_t2301811773 : public MulticastDelegate_t
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // CREATEOUTPUTMETHOD_T2301811773_H
#ifndef DICTATIONCOMPLETEDDELEGATE_T174017847_H
#define DICTATIONCOMPLETEDDELEGATE_T174017847_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.Windows.Speech.DictationRecognizer/DictationCompletedDelegate
struct DictationCompletedDelegate_t174017847 : public MulticastDelegate_t
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // DICTATIONCOMPLETEDDELEGATE_T174017847_H
#ifndef DICTATIONERRORHANDLER_T287248442_H
#define DICTATIONERRORHANDLER_T287248442_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.Windows.Speech.DictationRecognizer/DictationErrorHandler
struct DictationErrorHandler_t287248442 : public MulticastDelegate_t
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // DICTATIONERRORHANDLER_T287248442_H
#ifndef DICTATIONHYPOTHESISDELEGATE_T263093018_H
#define DICTATIONHYPOTHESISDELEGATE_T263093018_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.Windows.Speech.DictationRecognizer/DictationHypothesisDelegate
struct DictationHypothesisDelegate_t263093018 : public MulticastDelegate_t
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // DICTATIONHYPOTHESISDELEGATE_T263093018_H
#ifndef DICTATIONRESULTDELEGATE_T1743835588_H
#define DICTATIONRESULTDELEGATE_T1743835588_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.Windows.Speech.DictationRecognizer/DictationResultDelegate
struct DictationResultDelegate_t1743835588 : public MulticastDelegate_t
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // DICTATIONRESULTDELEGATE_T1743835588_H
#ifndef ERRORDELEGATE_T1767391626_H
#define ERRORDELEGATE_T1767391626_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.Windows.Speech.PhraseRecognitionSystem/ErrorDelegate
struct ErrorDelegate_t1767391626 : public MulticastDelegate_t
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // ERRORDELEGATE_T1767391626_H
#ifndef STATUSDELEGATE_T1884357950_H
#define STATUSDELEGATE_T1884357950_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.Windows.Speech.PhraseRecognitionSystem/StatusDelegate
struct StatusDelegate_t1884357950 : public MulticastDelegate_t
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // STATUSDELEGATE_T1884357950_H
#ifndef PHRASERECOGNIZEDDELEGATE_T3092874173_H
#define PHRASERECOGNIZEDDELEGATE_T3092874173_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.Windows.Speech.PhraseRecognizer/PhraseRecognizedDelegate
struct PhraseRecognizedDelegate_t3092874173 : public MulticastDelegate_t
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // PHRASERECOGNIZEDDELEGATE_T3092874173_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize3300 = { 0, 0, 0, 0 };
extern const int32_t g_FieldOffsetTable3300[1] =
{
0,
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize3301 = { 0, 0, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize3302 = { 0, 0, 0, 0 };
extern const int32_t g_FieldOffsetTable3302[1] =
{
0,
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize3303 = { 0, 0, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize3304 = { 0, 0, 0, 0 };
extern const int32_t g_FieldOffsetTable3304[1] =
{
0,
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize3305 = { 0, 0, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize3306 = { 0, 0, 0, 0 };
extern const int32_t g_FieldOffsetTable3306[1] =
{
0,
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize3307 = { sizeof (UnityLogWriter_t1374348020), -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize3308 = { sizeof (UnitySynchronizationContext_t1887453786), -1, 0, 0 };
extern const int32_t g_FieldOffsetTable3308[2] =
{
UnitySynchronizationContext_t1887453786::get_offset_of_m_AsyncWorkQueue_0(),
UnitySynchronizationContext_t1887453786::get_offset_of_m_MainThreadID_1(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize3309 = { sizeof (WorkRequest_t1354518612)+ sizeof (RuntimeObject), -1, 0, 0 };
extern const int32_t g_FieldOffsetTable3309[3] =
{
WorkRequest_t1354518612::get_offset_of_m_DelagateCallback_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
WorkRequest_t1354518612::get_offset_of_m_DelagateState_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
WorkRequest_t1354518612::get_offset_of_m_WaitHandle_2() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize3310 = { sizeof (Vector2_t2156229523)+ sizeof (RuntimeObject), sizeof(Vector2_t2156229523 ), sizeof(Vector2_t2156229523_StaticFields), 0 };
extern const int32_t g_FieldOffsetTable3310[10] =
{
Vector2_t2156229523::get_offset_of_x_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
Vector2_t2156229523::get_offset_of_y_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
Vector2_t2156229523_StaticFields::get_offset_of_zeroVector_2(),
Vector2_t2156229523_StaticFields::get_offset_of_oneVector_3(),
Vector2_t2156229523_StaticFields::get_offset_of_upVector_4(),
Vector2_t2156229523_StaticFields::get_offset_of_downVector_5(),
Vector2_t2156229523_StaticFields::get_offset_of_leftVector_6(),
Vector2_t2156229523_StaticFields::get_offset_of_rightVector_7(),
Vector2_t2156229523_StaticFields::get_offset_of_positiveInfinityVector_8(),
Vector2_t2156229523_StaticFields::get_offset_of_negativeInfinityVector_9(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize3311 = { sizeof (Vector3Int_t741115188)+ sizeof (RuntimeObject), sizeof(Vector3Int_t741115188 ), sizeof(Vector3Int_t741115188_StaticFields), 0 };
extern const int32_t g_FieldOffsetTable3311[9] =
{
Vector3Int_t741115188::get_offset_of_m_X_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
Vector3Int_t741115188::get_offset_of_m_Y_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
Vector3Int_t741115188::get_offset_of_m_Z_2() + static_cast<int32_t>(sizeof(RuntimeObject)),
Vector3Int_t741115188_StaticFields::get_offset_of_s_Zero_3(),
Vector3Int_t741115188_StaticFields::get_offset_of_s_One_4(),
Vector3Int_t741115188_StaticFields::get_offset_of_s_Up_5(),
Vector3Int_t741115188_StaticFields::get_offset_of_s_Down_6(),
Vector3Int_t741115188_StaticFields::get_offset_of_s_Left_7(),
Vector3Int_t741115188_StaticFields::get_offset_of_s_Right_8(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize3312 = { sizeof (Vector4_t3319028937)+ sizeof (RuntimeObject), sizeof(Vector4_t3319028937 ), sizeof(Vector4_t3319028937_StaticFields), 0 };
extern const int32_t g_FieldOffsetTable3312[8] =
{
Vector4_t3319028937::get_offset_of_x_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
Vector4_t3319028937::get_offset_of_y_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
Vector4_t3319028937::get_offset_of_z_2() + static_cast<int32_t>(sizeof(RuntimeObject)),
Vector4_t3319028937::get_offset_of_w_3() + static_cast<int32_t>(sizeof(RuntimeObject)),
Vector4_t3319028937_StaticFields::get_offset_of_zeroVector_4(),
Vector4_t3319028937_StaticFields::get_offset_of_oneVector_5(),
Vector4_t3319028937_StaticFields::get_offset_of_positiveInfinityVector_6(),
Vector4_t3319028937_StaticFields::get_offset_of_negativeInfinityVector_7(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize3313 = { sizeof (WaitForEndOfFrame_t1314943911), -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize3314 = { sizeof (WaitForFixedUpdate_t1634918743), -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize3315 = { sizeof (WaitForSeconds_t1699091251), sizeof(WaitForSeconds_t1699091251_marshaled_pinvoke), 0, 0 };
extern const int32_t g_FieldOffsetTable3315[1] =
{
WaitForSeconds_t1699091251::get_offset_of_m_Seconds_0(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize3316 = { sizeof (YieldInstruction_t403091072), sizeof(YieldInstruction_t403091072_marshaled_pinvoke), 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize3317 = { sizeof (ReadOnlyAttribute_t3518714744), -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize3318 = { sizeof (WriteOnlyAttribute_t1738907586), -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize3319 = { sizeof (DeallocateOnJobCompletionAttribute_t3762612740), -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize3320 = { sizeof (NativeFixedLengthAttribute_t3072952540), -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize3321 = { sizeof (NativeMatchesParallelForLengthAttribute_t1813325102), -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize3322 = { sizeof (NativeDisableParallelForRestrictionAttribute_t3768540096), -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize3323 = { sizeof (NativeContainerAttribute_t212308715), -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize3324 = { sizeof (NativeContainerIsReadOnlyAttribute_t4098664174), -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize3325 = { sizeof (NativeContainerIsAtomicWriteOnlyAttribute_t4134969175), -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize3326 = { sizeof (NativeContainerSupportsMinMaxWriteRestrictionAttribute_t3808117416), -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize3327 = { sizeof (NativeContainerSupportsDeallocateOnJobCompletionAttribute_t1480492758), -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize3328 = { sizeof (NativeContainerSupportsDeferredConvertListToArray_t4167123417), -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize3329 = { sizeof (NativeSetThreadIndexAttribute_t1211267337), -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize3330 = { sizeof (NativeContainerNeedsThreadIndexAttribute_t764917452), -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize3331 = { sizeof (NativeDisableUnsafePtrRestrictionAttribute_t2582701661), -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize3332 = { sizeof (NativeDisableContainerSafetyRestrictionAttribute_t708027756), -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize3333 = { sizeof (NativeSetClassTypeToNullOnScheduleAttribute_t1234016338), -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize3334 = { sizeof (CameraPlayable_t3330816414)+ sizeof (RuntimeObject), sizeof(CameraPlayable_t3330816414 ), 0, 0 };
extern const int32_t g_FieldOffsetTable3334[1] =
{
CameraPlayable_t3330816414::get_offset_of_m_Handle_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize3335 = { 0, -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize3336 = { 0, -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize3337 = { 0, -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize3338 = { sizeof (MaterialEffectPlayable_t3995207978)+ sizeof (RuntimeObject), sizeof(MaterialEffectPlayable_t3995207978 ), 0, 0 };
extern const int32_t g_FieldOffsetTable3338[1] =
{
MaterialEffectPlayable_t3995207978::get_offset_of_m_Handle_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize3339 = { sizeof (Playable_t459825607)+ sizeof (RuntimeObject), sizeof(Playable_t459825607 ), sizeof(Playable_t459825607_StaticFields), 0 };
extern const int32_t g_FieldOffsetTable3339[2] =
{
Playable_t459825607::get_offset_of_m_Handle_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
Playable_t459825607_StaticFields::get_offset_of_m_NullPlayable_1(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize3340 = { 0, -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize3341 = { sizeof (PlayableAsset_t3219022681), -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize3342 = { sizeof (PlayableBehaviour_t4203540982), -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize3343 = { sizeof (PlayableBinding_t354260709)+ sizeof (RuntimeObject), -1, sizeof(PlayableBinding_t354260709_StaticFields), 0 };
extern const int32_t g_FieldOffsetTable3343[6] =
{
PlayableBinding_t354260709::get_offset_of_m_StreamName_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
PlayableBinding_t354260709::get_offset_of_m_SourceObject_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
PlayableBinding_t354260709::get_offset_of_m_SourceBindingType_2() + static_cast<int32_t>(sizeof(RuntimeObject)),
PlayableBinding_t354260709::get_offset_of_m_CreateOutputMethod_3() + static_cast<int32_t>(sizeof(RuntimeObject)),
PlayableBinding_t354260709_StaticFields::get_offset_of_None_4(),
PlayableBinding_t354260709_StaticFields::get_offset_of_DefaultDuration_5(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize3344 = { sizeof (CreateOutputMethod_t2301811773), sizeof(Il2CppMethodPointer), 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize3345 = { sizeof (PlayableGraph_t3515989261)+ sizeof (RuntimeObject), sizeof(PlayableGraph_t3515989261 ), 0, 0 };
extern const int32_t g_FieldOffsetTable3345[2] =
{
PlayableGraph_t3515989261::get_offset_of_m_Handle_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
PlayableGraph_t3515989261::get_offset_of_m_Version_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize3346 = { sizeof (PlayableHandle_t1095853803)+ sizeof (RuntimeObject), sizeof(PlayableHandle_t1095853803 ), 0, 0 };
extern const int32_t g_FieldOffsetTable3346[2] =
{
PlayableHandle_t1095853803::get_offset_of_m_Handle_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
PlayableHandle_t1095853803::get_offset_of_m_Version_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize3347 = { sizeof (PlayableOutputHandle_t4208053793)+ sizeof (RuntimeObject), sizeof(PlayableOutputHandle_t4208053793 ), 0, 0 };
extern const int32_t g_FieldOffsetTable3347[2] =
{
PlayableOutputHandle_t4208053793::get_offset_of_m_Handle_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
PlayableOutputHandle_t4208053793::get_offset_of_m_Version_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize3348 = { sizeof (PlayableOutput_t3179894105)+ sizeof (RuntimeObject), sizeof(PlayableOutput_t3179894105 ), sizeof(PlayableOutput_t3179894105_StaticFields), 0 };
extern const int32_t g_FieldOffsetTable3348[2] =
{
PlayableOutput_t3179894105::get_offset_of_m_Handle_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
PlayableOutput_t3179894105_StaticFields::get_offset_of_m_NullPlayableOutput_1(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize3349 = { sizeof (ScriptPlayableOutput_t2715692609)+ sizeof (RuntimeObject), sizeof(ScriptPlayableOutput_t2715692609 ), 0, 0 };
extern const int32_t g_FieldOffsetTable3349[1] =
{
ScriptPlayableOutput_t2715692609::get_offset_of_m_Handle_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize3350 = { sizeof (TextureMixerPlayable_t2398603962)+ sizeof (RuntimeObject), sizeof(TextureMixerPlayable_t2398603962 ), 0, 0 };
extern const int32_t g_FieldOffsetTable3350[1] =
{
TextureMixerPlayable_t2398603962::get_offset_of_m_Handle_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize3351 = { sizeof (TexturePlayableOutput_t648497447)+ sizeof (RuntimeObject), sizeof(TexturePlayableOutput_t648497447 ), 0, 0 };
extern const int32_t g_FieldOffsetTable3351[1] =
{
TexturePlayableOutput_t648497447::get_offset_of_m_Handle_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize3352 = { sizeof (DefaultValueAttribute_t2337225216), -1, 0, 0 };
extern const int32_t g_FieldOffsetTable3352[1] =
{
DefaultValueAttribute_t2337225216::get_offset_of_DefaultValue_0(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize3353 = { sizeof (ExcludeFromDocsAttribute_t3592494112), -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize3354 = { 0, -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize3355 = { 0, -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize3356 = { sizeof (Logger_t274032455), -1, 0, 0 };
extern const int32_t g_FieldOffsetTable3356[3] =
{
Logger_t274032455::get_offset_of_U3ClogHandlerU3Ek__BackingField_0(),
Logger_t274032455::get_offset_of_U3ClogEnabledU3Ek__BackingField_1(),
Logger_t274032455::get_offset_of_U3CfilterLogTypeU3Ek__BackingField_2(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize3357 = { sizeof (MessageEventArgs_t1170575784), -1, 0, 0 };
extern const int32_t g_FieldOffsetTable3357[2] =
{
MessageEventArgs_t1170575784::get_offset_of_playerId_0(),
MessageEventArgs_t1170575784::get_offset_of_data_1(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize3358 = { 0, -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize3359 = { sizeof (PlayerConnection_t3081694049), -1, sizeof(PlayerConnection_t3081694049_StaticFields), 0 };
extern const int32_t g_FieldOffsetTable3359[5] =
{
PlayerConnection_t3081694049_StaticFields::get_offset_of_connectionNative_4(),
PlayerConnection_t3081694049::get_offset_of_m_PlayerEditorConnectionEvents_5(),
PlayerConnection_t3081694049::get_offset_of_m_connectedPlayers_6(),
PlayerConnection_t3081694049::get_offset_of_m_IsInitilized_7(),
PlayerConnection_t3081694049_StaticFields::get_offset_of_s_Instance_8(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize3360 = { sizeof (U3CRegisterU3Ec__AnonStorey0_t2405595090), -1, 0, 0 };
extern const int32_t g_FieldOffsetTable3360[1] =
{
U3CRegisterU3Ec__AnonStorey0_t2405595090::get_offset_of_messageId_0(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize3361 = { sizeof (U3CUnregisterU3Ec__AnonStorey1_t2528476601), -1, 0, 0 };
extern const int32_t g_FieldOffsetTable3361[1] =
{
U3CUnregisterU3Ec__AnonStorey1_t2528476601::get_offset_of_messageId_0(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize3362 = { sizeof (U3CBlockUntilRecvMsgU3Ec__AnonStorey2_t2166869842), -1, 0, 0 };
extern const int32_t g_FieldOffsetTable3362[1] =
{
U3CBlockUntilRecvMsgU3Ec__AnonStorey2_t2166869842::get_offset_of_msgReceived_0(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize3363 = { sizeof (PlayerEditorConnectionEvents_t3411787513), -1, 0, 0 };
extern const int32_t g_FieldOffsetTable3363[3] =
{
PlayerEditorConnectionEvents_t3411787513::get_offset_of_messageTypeSubscribers_0(),
PlayerEditorConnectionEvents_t3411787513::get_offset_of_connectionEvent_1(),
PlayerEditorConnectionEvents_t3411787513::get_offset_of_disconnectionEvent_2(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize3364 = { sizeof (MessageEvent_t1491597365), -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize3365 = { sizeof (ConnectionChangeEvent_t3251856151), -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize3366 = { sizeof (MessageTypeSubscribers_t1684935770), -1, 0, 0 };
extern const int32_t g_FieldOffsetTable3366[3] =
{
MessageTypeSubscribers_t1684935770::get_offset_of_m_messageTypeId_0(),
MessageTypeSubscribers_t1684935770::get_offset_of_subscriberCount_1(),
MessageTypeSubscribers_t1684935770::get_offset_of_messageCallback_2(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize3367 = { sizeof (U3CInvokeMessageIdSubscribersU3Ec__AnonStorey0_t907692441), -1, 0, 0 };
extern const int32_t g_FieldOffsetTable3367[1] =
{
U3CInvokeMessageIdSubscribersU3Ec__AnonStorey0_t907692441::get_offset_of_messageId_0(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize3368 = { sizeof (U3CAddAndCreateU3Ec__AnonStorey1_t1136770903), -1, 0, 0 };
extern const int32_t g_FieldOffsetTable3368[1] =
{
U3CAddAndCreateU3Ec__AnonStorey1_t1136770903::get_offset_of_messageId_0(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize3369 = { sizeof (U3CUnregisterManagedCallbackU3Ec__AnonStorey2_t1335960973), -1, 0, 0 };
extern const int32_t g_FieldOffsetTable3369[1] =
{
U3CUnregisterManagedCallbackU3Ec__AnonStorey2_t1335960973::get_offset_of_messageId_0(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize3370 = { 0, -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize3371 = { 0, -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize3372 = { sizeof (RenderPipelineManager_t4036911426), -1, sizeof(RenderPipelineManager_t4036911426_StaticFields), 0 };
extern const int32_t g_FieldOffsetTable3372[2] =
{
RenderPipelineManager_t4036911426_StaticFields::get_offset_of_s_CurrentPipelineAsset_0(),
RenderPipelineManager_t4036911426_StaticFields::get_offset_of_U3CcurrentPipelineU3Ek__BackingField_1(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize3373 = { sizeof (SupportedRenderingFeatures_t353898663), -1, sizeof(SupportedRenderingFeatures_t353898663_StaticFields), 0 };
extern const int32_t g_FieldOffsetTable3373[10] =
{
SupportedRenderingFeatures_t353898663_StaticFields::get_offset_of_s_Active_0(),
SupportedRenderingFeatures_t353898663::get_offset_of_U3CreflectionProbeSupportFlagsU3Ek__BackingField_1(),
SupportedRenderingFeatures_t353898663::get_offset_of_U3CdefaultMixedLightingModeU3Ek__BackingField_2(),
SupportedRenderingFeatures_t353898663::get_offset_of_U3CsupportedMixedLightingModesU3Ek__BackingField_3(),
SupportedRenderingFeatures_t353898663::get_offset_of_U3CsupportedLightmapBakeTypesU3Ek__BackingField_4(),
SupportedRenderingFeatures_t353898663::get_offset_of_U3CsupportedLightmapsModesU3Ek__BackingField_5(),
SupportedRenderingFeatures_t353898663::get_offset_of_U3CrendererSupportsLightProbeProxyVolumesU3Ek__BackingField_6(),
SupportedRenderingFeatures_t353898663::get_offset_of_U3CrendererSupportsMotionVectorsU3Ek__BackingField_7(),
SupportedRenderingFeatures_t353898663::get_offset_of_U3CrendererSupportsReceiveShadowsU3Ek__BackingField_8(),
SupportedRenderingFeatures_t353898663::get_offset_of_U3CrendererSupportsReflectionProbesU3Ek__BackingField_9(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize3374 = { sizeof (ReflectionProbeSupportFlags_t3313277643)+ sizeof (RuntimeObject), sizeof(int32_t), 0, 0 };
extern const int32_t g_FieldOffsetTable3374[3] =
{
ReflectionProbeSupportFlags_t3313277643::get_offset_of_value___2() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize3375 = { sizeof (LightmapMixedBakeMode_t4188935449)+ sizeof (RuntimeObject), sizeof(int32_t), 0, 0 };
extern const int32_t g_FieldOffsetTable3375[5] =
{
LightmapMixedBakeMode_t4188935449::get_offset_of_value___2() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
0,
0,
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize3376 = { sizeof (Scene_t2348375561)+ sizeof (RuntimeObject), sizeof(Scene_t2348375561 ), 0, 0 };
extern const int32_t g_FieldOffsetTable3376[1] =
{
Scene_t2348375561::get_offset_of_m_Handle_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize3377 = { sizeof (SceneManager_t2787271929), -1, sizeof(SceneManager_t2787271929_StaticFields), 0 };
extern const int32_t g_FieldOffsetTable3377[3] =
{
SceneManager_t2787271929_StaticFields::get_offset_of_sceneLoaded_0(),
SceneManager_t2787271929_StaticFields::get_offset_of_sceneUnloaded_1(),
SceneManager_t2787271929_StaticFields::get_offset_of_activeSceneChanged_2(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize3378 = { sizeof (LoadSceneMode_t3251202195)+ sizeof (RuntimeObject), sizeof(int32_t), 0, 0 };
extern const int32_t g_FieldOffsetTable3378[3] =
{
LoadSceneMode_t3251202195::get_offset_of_value___2() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize3379 = { sizeof (MovedFromAttribute_t481952341), -1, 0, 0 };
extern const int32_t g_FieldOffsetTable3379[2] =
{
MovedFromAttribute_t481952341::get_offset_of_U3CNamespaceU3Ek__BackingField_0(),
MovedFromAttribute_t481952341::get_offset_of_U3CIsInDifferentAssemblyU3Ek__BackingField_1(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize3380 = { sizeof (FormerlySerializedAsAttribute_t2859083114), -1, 0, 0 };
extern const int32_t g_FieldOffsetTable3380[1] =
{
FormerlySerializedAsAttribute_t2859083114::get_offset_of_m_oldName_0(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize3381 = { 0, -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize3382 = { sizeof (GenericStack_t1310059385), -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize3383 = { sizeof (PhraseRecognitionSystem_t3404389927), -1, sizeof(PhraseRecognitionSystem_t3404389927_StaticFields), 0 };
extern const int32_t g_FieldOffsetTable3383[2] =
{
PhraseRecognitionSystem_t3404389927_StaticFields::get_offset_of_OnError_0(),
PhraseRecognitionSystem_t3404389927_StaticFields::get_offset_of_OnStatusChanged_1(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize3384 = { sizeof (ErrorDelegate_t1767391626), sizeof(Il2CppMethodPointer), 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize3385 = { sizeof (StatusDelegate_t1884357950), sizeof(Il2CppMethodPointer), 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize3386 = { sizeof (PhraseRecognizer_t1663548656), -1, 0, 0 };
extern const int32_t g_FieldOffsetTable3386[2] =
{
PhraseRecognizer_t1663548656::get_offset_of_m_Recognizer_0(),
PhraseRecognizer_t1663548656::get_offset_of_OnPhraseRecognized_1(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize3387 = { sizeof (PhraseRecognizedDelegate_t3092874173), sizeof(Il2CppMethodPointer), 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize3388 = { sizeof (DictationRecognizer_t838322161), -1, 0, 0 };
extern const int32_t g_FieldOffsetTable3388[5] =
{
DictationRecognizer_t838322161::get_offset_of_m_Recognizer_0(),
DictationRecognizer_t838322161::get_offset_of_DictationHypothesis_1(),
DictationRecognizer_t838322161::get_offset_of_DictationResult_2(),
DictationRecognizer_t838322161::get_offset_of_DictationComplete_3(),
DictationRecognizer_t838322161::get_offset_of_DictationError_4(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize3389 = { sizeof (DictationHypothesisDelegate_t263093018), sizeof(Il2CppMethodPointer), 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize3390 = { sizeof (DictationResultDelegate_t1743835588), sizeof(Il2CppMethodPointer), 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize3391 = { sizeof (DictationCompletedDelegate_t174017847), sizeof(Il2CppMethodPointer), 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize3392 = { sizeof (DictationErrorHandler_t287248442), sizeof(Il2CppMethodPointer), 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize3393 = { sizeof (ConfidenceLevel_t1067668299)+ sizeof (RuntimeObject), sizeof(int32_t), 0, 0 };
extern const int32_t g_FieldOffsetTable3393[5] =
{
ConfidenceLevel_t1067668299::get_offset_of_value___2() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
0,
0,
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize3394 = { sizeof (SpeechSystemStatus_t3318883750)+ sizeof (RuntimeObject), sizeof(int32_t), 0, 0 };
extern const int32_t g_FieldOffsetTable3394[4] =
{
SpeechSystemStatus_t3318883750::get_offset_of_value___2() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
0,
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize3395 = { sizeof (SpeechError_t2615287629)+ sizeof (RuntimeObject), sizeof(int32_t), 0, 0 };
extern const int32_t g_FieldOffsetTable3395[11] =
{
SpeechError_t2615287629::get_offset_of_value___2() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize3396 = { sizeof (DictationCompletionCause_t1460845807)+ sizeof (RuntimeObject), sizeof(int32_t), 0, 0 };
extern const int32_t g_FieldOffsetTable3396[9] =
{
DictationCompletionCause_t1460845807::get_offset_of_value___2() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
0,
0,
0,
0,
0,
0,
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize3397 = { sizeof (SemanticMeaning_t3533498486)+ sizeof (RuntimeObject), -1, 0, 0 };
extern const int32_t g_FieldOffsetTable3397[2] =
{
SemanticMeaning_t3533498486::get_offset_of_key_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
SemanticMeaning_t3533498486::get_offset_of_values_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize3398 = { sizeof (PhraseRecognizedEventArgs_t3182631328)+ sizeof (RuntimeObject), -1, 0, 0 };
extern const int32_t g_FieldOffsetTable3398[5] =
{
PhraseRecognizedEventArgs_t3182631328::get_offset_of_confidence_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
PhraseRecognizedEventArgs_t3182631328::get_offset_of_semanticMeanings_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
PhraseRecognizedEventArgs_t3182631328::get_offset_of_text_2() + static_cast<int32_t>(sizeof(RuntimeObject)),
PhraseRecognizedEventArgs_t3182631328::get_offset_of_phraseStartTime_3() + static_cast<int32_t>(sizeof(RuntimeObject)),
PhraseRecognizedEventArgs_t3182631328::get_offset_of_phraseDuration_4() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize3399 = { sizeof (NetFxCoreExtensions_t4089902045), -1, 0, 0 };
#ifdef __clang__
#pragma clang diagnostic pop
#endif
| [
"tedk@umich.edu"
] | tedk@umich.edu |
cfe5d43d400392f4391311643e23149bfd20e115 | bbf397b8ad00577bd83b428ecdbcb0f15b0d6f24 | /FaTypes.cpp | 0bfa5e1557d2bc0f6be152466e69e5d148c30063 | [] | no_license | uralx74/Sweety | dc0755baa70bbb3492902b64d21ded569c84dc16 | b0c0844982cb3490a991280d72d6e1114fcbae21 | refs/heads/master | 2021-01-20T03:47:15.501372 | 2017-10-25T11:05:08 | 2017-10-25T11:05:08 | 89,585,144 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 906 | cpp | //---------------------------------------------------------------------------
#pragma hdrstop
#include "FaTypes.h"
/*
PackType::PackType()
{
} */
FaPack::FaPack() :
_faPackId(""),
_faPackTypeId(0)
{
}
String FaPack::getFaPackId()
{
return _faPackId;
}
/*String FaPack::getFaPackTypeCd()
{
return _faPackTypeCd;
}*/
FaTypes::PackTypeId FaPack::getFaPackTypeId()
{
return _faPackTypeId;
}
void FaPack::setFaPackId(const String& faPackType)
{
_faPackId = faPackType;
}
/*void FaPack::setFaPackType(const String& faPackTypeCd)
{
_faPackTypeCd = faPackTypeCd;
} */
void FaPack::setFaPackType(FaTypes::PackTypeId faPackTypeId)
{
_faPackTypeId = faPackTypeId;
}
void FaPack::clear()
{
_faPackId = "";
//_faPackTypeCd = "";
_faPackTypeId = 0;
}
//---------------------------------------------------------------------------
#pragma package(smart_init)
| [
"V.Ovchinnikov@esbt.loc"
] | V.Ovchinnikov@esbt.loc |
c0b2dbe480febcd42adc85bc40e45e157aac677d | b84d8e0c2fc309eb3ac1e5f1ed0b8b648d0bcd1e | /pri_cpp_rand/toc.h | daaf2ee9052053da1d1eaf3b36fe923db232d36c | [] | no_license | Peter-YE/Priority-Ordered-Update | 9872b6e60e97f9ec4c0793fa75a778c9b9b333e1 | 409bc4d6396a625f32f4783108c47006c43de40f | refs/heads/main | 2023-07-06T16:20:33.653411 | 2021-08-05T23:27:41 | 2021-08-05T23:27:41 | 376,520,977 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 469 | h | //
// Academic License - for use in teaching, academic research, and meeting
// course requirements at degree granting institutions only. Not for
// government, commercial, or other organizational use.
//
// toc.h
//
// Code generation for function 'toc'
//
#ifndef TOC_H
#define TOC_H
// Include files
#include "rtwtypes.h"
#include <cstddef>
#include <cstdlib>
// Function Declarations
namespace coder {
double toc();
}
#endif
// End of code generation (toc.h)
| [
"yelianghong@gmail.com"
] | yelianghong@gmail.com |
308111789c6765587ccd9d13b62d65d52252f291 | 165a6328d6427b9b6a79d1b4b1da542a6e797fae | /tensorflow/compiler/jit/increase_dynamism_for_auto_jit_pass.cc | bd8719b7f1acb79e0b0cd91f2f0de0d66d8dab46 | [
"Apache-2.0"
] | permissive | AishwaryaVarma/tensorflow | 268a9410cc384500f1e67c9efd4144989003db60 | 46c6526f629b50dcf6e69e79c2d492027c23f223 | refs/heads/master | 2020-04-04T15:47:40.426902 | 2019-02-11T19:48:20 | 2019-02-11T19:48:20 | 156,052,281 | 0 | 0 | Apache-2.0 | 2019-02-11T19:48:22 | 2018-11-04T05:28:07 | C++ | UTF-8 | C++ | false | false | 12,192 | cc | /* Copyright 2018 The TensorFlow Authors. All Rights Reserved.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
==============================================================================*/
#include "tensorflow/compiler/jit/increase_dynamism_for_auto_jit_pass.h"
#include "absl/algorithm/container.h"
#include "absl/container/inlined_vector.h"
#include "absl/strings/str_cat.h"
#include "absl/strings/str_replace.h"
#include "tensorflow/cc/framework/scope_internal.h"
#include "tensorflow/cc/ops/array_ops.h"
#include "tensorflow/cc/ops/const_op.h"
#include "tensorflow/cc/ops/math_ops.h"
#include "tensorflow/compiler/jit/legacy_flags/mark_for_compilation_pass_flags.h"
#include "tensorflow/compiler/jit/xla_cluster_util.h"
#include "tensorflow/compiler/tf2xla/cc/ops/xla_ops.h"
#include "tensorflow/compiler/tf2xla/dump_graph.h"
#include "tensorflow/compiler/xla/status_macros.h"
#include "tensorflow/core/common_runtime/shape_refiner.h"
#include "tensorflow/core/graph/algorithm.h"
#include "tensorflow/core/public/session_options.h"
#include "tensorflow/core/util/device_name_utils.h"
namespace tensorflow {
namespace {
Status GetTensorFromConstOp(Node* n, Tensor* out_tensor) {
TF_RET_CHECK(n->type_string() == "Const");
const TensorProto* proto = nullptr;
TF_RETURN_IF_ERROR(GetNodeAttr(n->def(), "value", &proto));
Tensor tensor(proto->dtype());
TF_RET_CHECK(tensor.FromProto(*proto));
*out_tensor = std::move(tensor);
return Status::OK();
}
struct SliceInputs {
Output slice_op;
Output input;
Output begin;
Output size;
// The size of the TF slice operation as a std::vector. We can always compute
// this because we only manipulate slices with a Const size.
std::vector<int64> size_as_vector;
};
std::vector<int64> IntTensorAsVector(const Tensor& t) {
DCHECK(t.dtype() == DT_INT32 || t.dtype() == DT_INT64);
std::vector<int64> result;
result.reserve(t.NumElements());
for (int i = 0; i < t.NumElements(); i++) {
int64 element = t.dtype() == DT_INT32
? static_cast<int64>(t.flat<int32>()(i))
: t.flat<int64>()(i);
result.push_back(element);
}
return result;
}
// Packages up the inputs to a Slice operation into an instance of
// `SliceInputs`.
Status GetSliceInputs(Node* slice, SliceInputs* slice_inputs) {
const int kSliceInputIndex = 0;
const int kSliceBeginIndex = 1;
const int kSliceSizeIndex = 2;
const Edge* slice_input_edge;
TF_RETURN_IF_ERROR(slice->input_edge(kSliceInputIndex, &slice_input_edge));
const Edge* slice_size_edge;
TF_RETURN_IF_ERROR(slice->input_edge(kSliceSizeIndex, &slice_size_edge));
const Edge* slice_begin_edge;
TF_RETURN_IF_ERROR(slice->input_edge(kSliceBeginIndex, &slice_begin_edge));
slice_inputs->input =
Output(slice_input_edge->src(), slice_input_edge->src_output());
slice_inputs->begin =
Output(slice_begin_edge->src(), slice_begin_edge->src_output());
slice_inputs->size =
Output(slice_size_edge->src(), slice_size_edge->src_output());
Tensor tf_slice_size;
TF_RETURN_IF_ERROR(
GetTensorFromConstOp(slice_inputs->size.node(), &tf_slice_size));
if (tf_slice_size.dims() != 1) {
return errors::Internal("Expected vector for the slice size input.");
}
slice_inputs->size_as_vector = IntTensorAsVector(tf_slice_size);
return Status::OK();
}
// Casts `x` to a DT_INT64 if it isn't one already.
Output MakeInt64(const Scope& host_scope, absl::string_view name,
const Output& x) {
return x.type() == DT_INT64
? x
: ops::Cast(host_scope.WithOpName(name, "_s64"), x, DT_INT64);
}
// Returns `slice_inputs` with the index and size inputs cast to DT_INT64.
SliceInputs MakeSliceIndexAndSizeInt64(const Scope& host_scope,
const SliceInputs& slice_inputs) {
SliceInputs result;
result.input = slice_inputs.input;
result.begin = MakeInt64(host_scope, "begin", slice_inputs.begin);
result.size = MakeInt64(host_scope, "size", slice_inputs.size);
result.size_as_vector = slice_inputs.size_as_vector;
return result;
}
// This class caches emitted constants to avoid creating multiple nodes for the
// same constant value. This helps make the generated GraphDef more readable.
class ConstantCache {
public:
explicit ConstantCache(const Scope& s) : scope_(s) {}
Output Get1DHostConstant(int64 constant) {
auto it = cache_.find(constant);
if (it == cache_.end()) {
Output new_const =
ops::Const(scope_.WithOpName("const_", constant), {constant});
it = cache_.insert({constant, new_const}).first;
}
return it->second;
}
private:
Scope scope_;
std::unordered_map<int, Output> cache_;
};
// Returns a node computing the size of the Slice op with inputs `slice_inputs`.
Status ComputeSliceSize(const Scope& host_scope,
const SliceInputs& slice_inputs, Output* size) {
// If slice_size[i] >= 0 then slice_size[i] = slice_size[i].
//
// If slice_size[i] == -1 then slice_size[i] = input_size[i] -
// begin[i].
//
// If slice_size[i] < -1 then executing the slice will throw an error, and we
// don't do anything here. We've already filtered these cases out in
// IsRewritableSlice.
if (absl::c_all_of(slice_inputs.size_as_vector,
[](int64 i) { return i >= 0; })) {
*size = slice_inputs.size;
return Status::OK();
}
Output input_shape =
ops::Shape(host_scope.WithOpName("input_shape"), slice_inputs.input,
ops::Shape::OutType(DT_INT64));
ConstantCache constant_pool(host_scope);
std::vector<Output> slice_size;
for (int i = 0; i < slice_inputs.size_as_vector.size(); i++) {
if (slice_inputs.size_as_vector[i] >= 0) {
slice_size.push_back(
constant_pool.Get1DHostConstant(slice_inputs.size_as_vector[i]));
continue;
}
DCHECK_EQ(slice_inputs.size_as_vector[i], -1);
Output begin_i = ops::Slice(
host_scope.WithOpName("begin_", i), slice_inputs.begin,
constant_pool.Get1DHostConstant(i), constant_pool.Get1DHostConstant(1));
Output input_shape_i = ops::Slice(
host_scope.WithOpName("input_shape_", i), input_shape,
constant_pool.Get1DHostConstant(i), constant_pool.Get1DHostConstant(1));
slice_size.push_back(ops::Sub(host_scope.WithOpName("slice_size_", i),
input_shape_i, begin_i));
DCHECK_EQ(slice_size.back().type(), DT_INT64);
}
*size = ops::Concat(host_scope.WithOpName("slice_size"), slice_size,
ops::Const(host_scope.WithOpName("concat_axis"), 0));
return Status::OK();
}
// Terminology: "static sized" slice is a slice with the
// _XlaCompileTimeConstantInputs attribute set to {2}. The output shape of
// these slices can be solely determined by their "size" input.
Status ConvertTensorFlowSliceToStaticShapedSlice(
Graph* g, Node* slice, const SliceInputs& slice_inputs,
absl::string_view cluster_name, Node** result) {
string host_name;
TF_RETURN_IF_ERROR(DeviceNameUtils::DeviceNameToCpuDeviceName(
slice->assigned_device_name(), &host_name));
Status status;
Scope main_scope =
NewInternalScope(g, &status, /*refiner=*/nullptr)
.WithXlaCluster(string(cluster_name))
.NewSubScope(absl::StrCat(slice->name(), "/static_shaped_slice"));
Scope host_scope = main_scope.WithAssignedDevice(host_name);
SliceInputs slice_inputs_int64 =
MakeSliceIndexAndSizeInt64(host_scope, slice_inputs);
Output slice_size;
TF_RETURN_IF_ERROR(
ComputeSliceSize(host_scope, slice_inputs_int64, &slice_size));
*result =
ops::Slice(main_scope.WithAssignedDevice(slice->assigned_device_name())
.WithOpName("static_shaped_slice"),
slice_inputs_int64.input, slice_inputs_int64.begin, slice_size)
.node();
std::vector<string> compile_time_const_inputs;
compile_time_const_inputs.push_back("size");
(*result)->AddAttr(kXlaCompileTimeConstantInputsAttr,
compile_time_const_inputs);
return status;
}
void ReplaceTensorFlowSliceWithStaticShapedSlice(Graph* g, Node* slice,
Node* static_shaped_slice) {
absl::InlinedVector<const Edge*, 6> edges_to_remove;
std::vector<const Edge*> slice_out_edges;
absl::c_copy(slice->out_edges(), std::back_inserter(slice_out_edges));
for (const Edge* e : slice_out_edges) {
DCHECK(e->src_output() == 0 || e->src_output() == Graph::kControlSlot);
int src_output = e->src_output();
int dst_input = e->dst_input();
Node* dst = e->dst();
g->RemoveEdge(e);
g->AddEdge(static_shaped_slice, src_output, dst, dst_input);
}
for (const Edge* e : slice->in_edges()) {
if (e->IsControlEdge()) {
g->AddControlEdge(e->src(), static_shaped_slice);
}
}
g->RemoveNode(slice);
}
Status RewriteSlice(Graph* g, Node* slice, const SliceInputs& slice_inputs,
absl::string_view cluster_name) {
VLOG(3) << "Rewriting slice " << slice->name()
<< " to a \"static shaped\" Slice";
Node* static_shaped_slice;
TF_RETURN_IF_ERROR(ConvertTensorFlowSliceToStaticShapedSlice(
g, slice, slice_inputs, cluster_name, &static_shaped_slice));
ReplaceTensorFlowSliceWithStaticShapedSlice(g, slice, static_shaped_slice);
return Status::OK();
}
// Returns true if `n` is a slice we can rewrite to have a static shape
// (i.e. have the output shape only depend on the "size" input). Fills in
// `slice_inputs` in the process.
bool IsRewritableSlice(Node* n, SliceInputs* slice_inputs) {
if (n->type_string() != "Slice") {
return false;
}
if (!GetXlaClusterForNode(*n).has_value()) {
// There is no need to change slice ops outside XLA clusters.
return false;
}
if (!GetSliceInputs(n, slice_inputs).ok()) {
// Could not parse slice inputs. E.g. the sizes input was not a constant.
return false;
}
// If slice_size[i] < -1 for any i then executing the slice will throw an
// error, and we don't do anything here.
return absl::c_all_of(slice_inputs->size_as_vector,
[](int64 size_i) { return size_i >= -1; });
}
Status FindAndRewriteSlices(Graph* g, bool* changed) {
std::vector<std::pair<Node*, SliceInputs>> slices_to_rewrite;
for (Node* n : g->nodes()) {
SliceInputs slice_inputs;
if (IsRewritableSlice(n, &slice_inputs)) {
slices_to_rewrite.push_back({n, std::move(slice_inputs)});
}
}
for (const auto& pair : slices_to_rewrite) {
TF_RETURN_IF_ERROR(RewriteSlice(g, pair.first, pair.second,
*GetXlaClusterForNode(*pair.first)));
}
if (!slices_to_rewrite.empty()) {
// We've added constants to the graph; hook them up to _SOURCE.
FixupSourceAndSinkEdges(g);
}
*changed = !slices_to_rewrite.empty();
return Status::OK();
}
} // namespace
Status IncreaseDynamismForAutoJitPass::Run(
const GraphOptimizationPassOptions& options) {
legacy_flags::MarkForCompilationPassFlags* flags =
legacy_flags::GetMarkForCompilationPassFlags();
if (flags->tf_xla_clustering_debug) {
dump_graph::DumpGraphToFile("before_increase_dynamism_for_auto_jit_pass",
**options.graph, options.flib_def);
}
bool changed;
TF_RETURN_IF_ERROR(FindAndRewriteSlices(options.graph->get(), &changed));
if (changed && flags->tf_xla_clustering_debug) {
dump_graph::DumpGraphToFile("increase_dynamism_for_auto_jit_pass",
**options.graph, options.flib_def);
}
return Status::OK();
}
} // namespace tensorflow
| [
"gardener@tensorflow.org"
] | gardener@tensorflow.org |
efe196c3cd18efabdffe54d6465d2138468dcd5b | 5b4312ddc24f29538dce0444b7be81e17191c005 | /autoware.ai/1.12.0_cuda/install/autoware_can_msgs/include/autoware_can_msgs/CANData.h | 6a55a476cddad615323e11baadab0c74e6c7dbc7 | [
"MIT"
] | permissive | muyangren907/autoware | b842f1aeb2bfe7913fb2be002ea4fc426b4e9be2 | 5ae70f0cdaf5fc70b91cd727cf5b5f90bc399d38 | refs/heads/master | 2020-09-22T13:08:14.237380 | 2019-12-03T07:12:49 | 2019-12-03T07:12:49 | 225,167,473 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 6,601 | h | // Generated by gencpp from file autoware_can_msgs/CANData.msg
// DO NOT EDIT!
#ifndef AUTOWARE_CAN_MSGS_MESSAGE_CANDATA_H
#define AUTOWARE_CAN_MSGS_MESSAGE_CANDATA_H
#include <string>
#include <vector>
#include <map>
#include <ros/types.h>
#include <ros/serialization.h>
#include <ros/builtin_message_traits.h>
#include <ros/message_operations.h>
#include <std_msgs/Header.h>
namespace autoware_can_msgs
{
template <class ContainerAllocator>
struct CANData_
{
typedef CANData_<ContainerAllocator> Type;
CANData_()
: header()
, count(0)
, id(0)
, time(0)
, flag(0) {
}
CANData_(const ContainerAllocator& _alloc)
: header(_alloc)
, count(0)
, id(0)
, time(0)
, flag(0) {
(void)_alloc;
}
typedef ::std_msgs::Header_<ContainerAllocator> _header_type;
_header_type header;
typedef uint32_t _count_type;
_count_type count;
typedef uint32_t _id_type;
_id_type id;
typedef uint32_t _time_type;
_time_type time;
typedef uint16_t _flag_type;
_flag_type flag;
typedef boost::shared_ptr< ::autoware_can_msgs::CANData_<ContainerAllocator> > Ptr;
typedef boost::shared_ptr< ::autoware_can_msgs::CANData_<ContainerAllocator> const> ConstPtr;
}; // struct CANData_
typedef ::autoware_can_msgs::CANData_<std::allocator<void> > CANData;
typedef boost::shared_ptr< ::autoware_can_msgs::CANData > CANDataPtr;
typedef boost::shared_ptr< ::autoware_can_msgs::CANData const> CANDataConstPtr;
// constants requiring out of line definition
template<typename ContainerAllocator>
std::ostream& operator<<(std::ostream& s, const ::autoware_can_msgs::CANData_<ContainerAllocator> & v)
{
ros::message_operations::Printer< ::autoware_can_msgs::CANData_<ContainerAllocator> >::stream(s, "", v);
return s;
}
} // namespace autoware_can_msgs
namespace ros
{
namespace message_traits
{
// BOOLTRAITS {'IsFixedSize': False, 'IsMessage': True, 'HasHeader': True}
// {'std_msgs': ['/opt/ros/melodic/share/std_msgs/cmake/../msg'], 'autoware_can_msgs': ['/home/muyangren907/autoware/autoware.ai/1.12.0_cuda/src/autoware/messages/autoware_can_msgs/msg']}
// !!!!!!!!!!! ['__class__', '__delattr__', '__dict__', '__doc__', '__eq__', '__format__', '__getattribute__', '__hash__', '__init__', '__module__', '__ne__', '__new__', '__reduce__', '__reduce_ex__', '__repr__', '__setattr__', '__sizeof__', '__str__', '__subclasshook__', '__weakref__', '_parsed_fields', 'constants', 'fields', 'full_name', 'has_header', 'header_present', 'names', 'package', 'parsed_fields', 'short_name', 'text', 'types']
template <class ContainerAllocator>
struct IsFixedSize< ::autoware_can_msgs::CANData_<ContainerAllocator> >
: FalseType
{ };
template <class ContainerAllocator>
struct IsFixedSize< ::autoware_can_msgs::CANData_<ContainerAllocator> const>
: FalseType
{ };
template <class ContainerAllocator>
struct IsMessage< ::autoware_can_msgs::CANData_<ContainerAllocator> >
: TrueType
{ };
template <class ContainerAllocator>
struct IsMessage< ::autoware_can_msgs::CANData_<ContainerAllocator> const>
: TrueType
{ };
template <class ContainerAllocator>
struct HasHeader< ::autoware_can_msgs::CANData_<ContainerAllocator> >
: TrueType
{ };
template <class ContainerAllocator>
struct HasHeader< ::autoware_can_msgs::CANData_<ContainerAllocator> const>
: TrueType
{ };
template<class ContainerAllocator>
struct MD5Sum< ::autoware_can_msgs::CANData_<ContainerAllocator> >
{
static const char* value()
{
return "3364528f120c0215964c8aca9e410a19";
}
static const char* value(const ::autoware_can_msgs::CANData_<ContainerAllocator>&) { return value(); }
static const uint64_t static_value1 = 0x3364528f120c0215ULL;
static const uint64_t static_value2 = 0x964c8aca9e410a19ULL;
};
template<class ContainerAllocator>
struct DataType< ::autoware_can_msgs::CANData_<ContainerAllocator> >
{
static const char* value()
{
return "autoware_can_msgs/CANData";
}
static const char* value(const ::autoware_can_msgs::CANData_<ContainerAllocator>&) { return value(); }
};
template<class ContainerAllocator>
struct Definition< ::autoware_can_msgs::CANData_<ContainerAllocator> >
{
static const char* value()
{
return "Header header\n"
"uint32 count\n"
"uint32 id\n"
"uint32 time\n"
"uint16 flag\n"
"\n"
"================================================================================\n"
"MSG: std_msgs/Header\n"
"# Standard metadata for higher-level stamped data types.\n"
"# This is generally used to communicate timestamped data \n"
"# in a particular coordinate frame.\n"
"# \n"
"# sequence ID: consecutively increasing ID \n"
"uint32 seq\n"
"#Two-integer timestamp that is expressed as:\n"
"# * stamp.sec: seconds (stamp_secs) since epoch (in Python the variable is called 'secs')\n"
"# * stamp.nsec: nanoseconds since stamp_secs (in Python the variable is called 'nsecs')\n"
"# time-handling sugar is provided by the client library\n"
"time stamp\n"
"#Frame this data is associated with\n"
"string frame_id\n"
;
}
static const char* value(const ::autoware_can_msgs::CANData_<ContainerAllocator>&) { return value(); }
};
} // namespace message_traits
} // namespace ros
namespace ros
{
namespace serialization
{
template<class ContainerAllocator> struct Serializer< ::autoware_can_msgs::CANData_<ContainerAllocator> >
{
template<typename Stream, typename T> inline static void allInOne(Stream& stream, T m)
{
stream.next(m.header);
stream.next(m.count);
stream.next(m.id);
stream.next(m.time);
stream.next(m.flag);
}
ROS_DECLARE_ALLINONE_SERIALIZER
}; // struct CANData_
} // namespace serialization
} // namespace ros
namespace ros
{
namespace message_operations
{
template<class ContainerAllocator>
struct Printer< ::autoware_can_msgs::CANData_<ContainerAllocator> >
{
template<typename Stream> static void stream(Stream& s, const std::string& indent, const ::autoware_can_msgs::CANData_<ContainerAllocator>& v)
{
s << indent << "header: ";
s << std::endl;
Printer< ::std_msgs::Header_<ContainerAllocator> >::stream(s, indent + " ", v.header);
s << indent << "count: ";
Printer<uint32_t>::stream(s, indent + " ", v.count);
s << indent << "id: ";
Printer<uint32_t>::stream(s, indent + " ", v.id);
s << indent << "time: ";
Printer<uint32_t>::stream(s, indent + " ", v.time);
s << indent << "flag: ";
Printer<uint16_t>::stream(s, indent + " ", v.flag);
}
};
} // namespace message_operations
} // namespace ros
#endif // AUTOWARE_CAN_MSGS_MESSAGE_CANDATA_H
| [
"907097904@qq.com"
] | 907097904@qq.com |
1a10d9df71926c52c58071e570c6b98f7e66ee7d | 9894d3a9056927f97be327942305882e25adf6fe | /Day 03/ex00/main.cpp | f287062958ba5e55ccfe7f02b951963b30819058 | [
"MIT"
] | permissive | akharrou/42-Piscine-CPP | 3c34585cbce5144cc3dd4452e72bd906fb6fbcc2 | 11c80e32f96718946134400435182629470f1439 | refs/heads/master | 2020-06-12T20:32:06.586570 | 2019-08-19T04:53:42 | 2019-08-19T04:53:42 | 194,416,333 | 2 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 4,795 | cpp | /* ************************************************************************** */
/* */
/* ::: :::::::: */
/* main.cpp :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: akharrou <akharrou@student.42.us.org> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2019/07/17 20:39:54 by akharrou #+# #+# */
/* Updated: 2019/07/18 15:39:02 by akharrou ### ########.fr */
/* */
/* ************************************************************************** */
#include "FragTrap.hpp"
int main() {
/* — — — — — — — — — — — — — — — — — — — — — — — — — — — — — — — — — — — */
FragTrap instance_1 ("Mark");
FragTrap instance_2 ("Koby");
FragTrap instance_3 ("Brian");
FragTrap instance_4 ("Albert");
FragTrap instance_5 ("Susie");
std::cout << std::endl;
/* — — — — — — — — — — — — — — — — — — — — — — — — — — — — — — — — — — — */
std::cout << instance_1 << std::endl;
std::cout << instance_2 << std::endl;
std::cout << instance_3 << std::endl;
std::cout << instance_4 << std::endl;
std::cout << instance_5 << std::endl;
std::cout << std::endl;
/* — — — — — — — — — — — — — — — — — — — — — — — — — — — — — — — — — — — */
instance_1.vaulthunter_dot_exe( instance_3.getName() );
instance_3.takeDamage( 70 );
std::cout << std::endl;
instance_1.vaulthunter_dot_exe( instance_4.getName() );
instance_4.takeDamage( 70 );
std::cout << std::endl;
instance_1.vaulthunter_dot_exe( instance_5.getName() );
instance_5.takeDamage( 70 );
std::cout << std::endl;
/* — — — — — — — — — — — — — — — — — — — — — — — — — — — — — — — — — — — */
std::cout << instance_1 << std::endl;
std::cout << instance_2 << std::endl;
std::cout << instance_3 << std::endl;
std::cout << instance_4 << std::endl;
std::cout << instance_5 << std::endl;
std::cout << std::endl;
/* — — — — — — — — — — — — — — — — — — — — — — — — — — — — — — — — — — — */
instance_1.beRepaired( 20 );
instance_1.beRepaired( 20 );
instance_1.beRepaired( 20 );
instance_1.beRepaired( 20 );
instance_1.beRepaired( 20 );
instance_1.beRepaired( 20 );
std::cout << std::endl;
/* — — — — — — — — — — — — — — — — — — — — — — — — — — — — — — — — — — — */
std::cout << instance_1 << std::endl;
std::cout << std::endl;
/* — — — — — — — — — — — — — — — — — — — — — — — — — — — — — — — — — — — */
instance_3.beRepaired( 20 );
instance_4.beRepaired( 20 );
instance_5.beRepaired( 20 );
std::cout << std::endl;
/* — — — — — — — — — — — — — — — — — — — — — — — — — — — — — — — — — — — */
std::cout << instance_2 << std::endl;
std::cout << instance_3 << std::endl;
std::cout << instance_4 << std::endl;
std::cout << instance_5 << std::endl;
std::cout << std::endl;
/* — — — — — — — — — — — — — — — — — — — — — — — — — — — — — — — — — — — */
instance_3.beRepaired( 20 );
instance_4.beRepaired( 20 );
instance_5.beRepaired( 20 );
std::cout << std::endl;
instance_3.beRepaired( 20 );
instance_4.beRepaired( 20 );
instance_5.beRepaired( 20 );
std::cout << std::endl;
instance_3.beRepaired( 20 );
instance_4.beRepaired( 20 );
instance_5.beRepaired( 20 );
std::cout << std::endl;
instance_3.beRepaired( 20 );
instance_4.beRepaired( 20 );
instance_5.beRepaired( 20 );
std::cout << std::endl;
/* — — — — — — — — — — — — — — — — — — — — — — — — — — — — — — — — — — — */
std::cout << instance_1 << std::endl;
std::cout << instance_2 << std::endl;
std::cout << instance_3 << std::endl;
std::cout << instance_4 << std::endl;
std::cout << instance_5 << std::endl;
std::cout << std::endl;
/* — — — — — — — — — — — — — — — — — — — — — — — — — — — — — — — — — — — */
return (0);
}
| [
"idev.aymen@gmail.com"
] | idev.aymen@gmail.com |
1b5b32a8abfa86e22cf6c85eefb72ccebc515e10 | 656ab73828ae36c320cc49034ffc10d909940fca | /arduino_repeater/arduino_repeater.ino | 91c861fc169ad86f3758b51b7aa7e152499ebe73 | [] | no_license | OctopusKat/UKHASnet_nodes | 6a4f2498363b0bad39a6f1ab63a9cf3fa2a16171 | f903b891235bb9a5a992c8ecf43ca14e8d009371 | refs/heads/master | 2021-01-17T12:08:04.904396 | 2014-04-30T21:52:25 | 2014-04-30T21:52:25 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,065 | ino | /*
UKHASnet rf69_repeater code
based on rf22_client.pde/ino from the RF22 library
*/
#include <SPI.h>
#include <string.h>
#include "RFM69Config.h"
#include "RFM69.h"
#include "LowPower.h"
//*************Node ID Setup ****************/
char id[] = "P5";
char location_string[] = "50.9387,-1.3979";
uint8_t rfm_power = 20; // dBmW
//*************Pin Setup ****************/
int batt_pin = 0; //ADC 0 - measure battery voltage
//*************Misc Setup ****************/
byte num_repeats = '3'; //The number of hops the message will make before stopping
float repeat_threshold = 3.65;
int zombie_mode = 1;
float slow_freq_threshold = 3.6;
float battV=0.0;
int n, count = 1, data_interval = 4;
byte data_count = 97; // 'a'
char data[64], string_end[] = "]";
// Singleton instance of the radio
RFM69 rf69(9.3);
void setupRFM69(){
analogReference(INTERNAL); // 1.1V ADC reference
while (!rf69.init()){
delay(100);
}
}
int gen_Data(){
byte rfmTemp = rf69.readTemp();
while(rfmTemp>100) {
rfmTemp = rf69.readTemp();
}
battV = sampleBattv();
char tempStr[14]; //make buffer large enough for 7 digits
char* battStr;
battStr = dtostrf(battV,7,2,tempStr);
// Strip leading space
while( (strlen(battStr) > 0) && (battStr[0] == 32) )
{
strcpy(battStr,&battStr[1]);
}
if(data_count=='a' or data_count=='z') {
n=sprintf(data, "%c%cL%sT%dV%sZ%d[%s]", num_repeats, data_count, location_string, rfmTemp, battStr, zombie_mode, id);
} else {
n=sprintf(data, "%c%cT%dV%sZ%d[%s]", num_repeats, data_count, rfmTemp, battStr, zombie_mode, id);
}
return n;
}
void setup()
{
randomSeed(analogRead(6));
delay(2000);
while (!rf69.init()){
delay(100);
}
delay(1000);
int packet_len = gen_Data();
rf69.send((uint8_t*)data, packet_len, rfm_power);
delay(100);
}
void loop()
{
count++;
if(zombie_mode==0) {
rf69.setMode(RFM69_MODE_RX);
for(int i=0;i<32;i++) {
LowPower.powerDown(SLEEP_250MS, ADC_OFF, BOD_OFF);
if(rf69.checkRx()) {
uint8_t buf[64];
uint8_t len = sizeof(buf);
rf69.recv(buf, &len);
for (int i=0; i<len; i++) {
if (buf[i] == ']') {
buf[i+1] = '\0';
}
}
// Need to take the recieved buffer and decode it and add a reference
if (buf[0] > '0') {
//Reduce the repeat value
buf[0] = buf[0] - 1;
//Add the repeater ID
//First find "]"
for (int i=0; i<len; i++) {
if (buf[i] == ']') {
buf[i] = ',';
buf[i+1] = '\0';
strcpy(data, (char*)buf); //first copy buf to data (bytes to char)
if(strstr(data, id) == 0) {
int packet_len = sprintf(data, "%s%s]", data, id);
packet_len = strlen(data);
//random delay to try and avoid packet collision
delay(random(50, 800));
rf69.send((uint8_t*)data, packet_len, rfm_power);
break;
} else {
break;
}
}
}
}
}
}
} else {
// Sleep for 8 seconds
rf69.setMode(RFM69_MODE_SLEEP);
LowPower.powerDown(SLEEP_8S, ADC_OFF, BOD_OFF);
}
if (count >= data_interval){
delay(100);
data_count++;
if(data_count > 122){
data_count = 98; //'b'
}
int packet_len = gen_Data();
rf69.send((uint8_t*)data, packet_len, rfm_power);
if(battV > slow_freq_threshold) {
data_interval = random(15, 20) + count;
if(battV > repeat_threshold && zombie_mode==1) {
rf69.setMode(RFM69_MODE_RX);
zombie_mode=0;
} else if (battV < repeat_threshold && zombie_mode==0) {
rf69.setMode(RFM69_MODE_SLEEP);
zombie_mode=1;
}
}
else {
data_interval = random(25, 30) + count;
}
}
}
float sampleBattv() {
// External 4:1 Divider
return ((float)analogRead(batt_pin)*1.1*4*2.24)/1023.0;
}
| [
"phildcrump@gmail.com"
] | phildcrump@gmail.com |
5425c86f0f951f27c626f8e5eedb413acffa3138 | f878e34dcc2f3a4535ef99aeab0f86924e16dcab | /libraries/arisenlib/core/arisen/crypto.hpp | 3c7cf261f58f10d0a034617e70244c7cafdf8441 | [
"MIT"
] | permissive | ArisenIO/arisen.cdt | e1f112a24468ea05bca43812dcc91b56d8ce51a2 | ae642eaaeb72097c8f7326f5c4b492d83cbe6d78 | refs/heads/master | 2021-02-09T18:35:41.398707 | 2020-12-10T17:54:06 | 2020-12-10T17:54:06 | 244,313,999 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 7,459 | hpp | /**
* @file
* @copyright defined in rsn/LICENSE
*/
#pragma once
#include "fixed_bytes.hpp"
#include "varint.hpp"
#include "serialize.hpp"
#include <array>
namespace arisen {
/**
* @defgroup public_key Public Key Type
* @ingroup core
* @ingroup types
* @brief Specifies public key type
*/
/**
* ARISEN Public Key
*
* @ingroup public_key
*/
struct public_key {
/**
* Type of the public key, could be either K1 or R1
*/
unsigned_int type;
/**
* Bytes of the public key
*/
std::array<char,33> data;
/// @cond OPERATORS
friend bool operator == ( const public_key& a, const public_key& b ) {
return std::tie(a.type,a.data) == std::tie(b.type,b.data);
}
friend bool operator != ( const public_key& a, const public_key& b ) {
return std::tie(a.type,a.data) != std::tie(b.type,b.data);
}
/// @cond
};
/// @cond IMPLEMENTATIONS
/**
* Serialize an arisen::public_key into a stream
*
* @ingroup public_key
* @param ds - The stream to write
* @param pubkey - The value to serialize
* @tparam DataStream - Type of datastream buffer
* @return DataStream& - Reference to the datastream
*/
template<typename DataStream>
inline DataStream& operator<<(DataStream& ds, const arisen::public_key& pubkey) {
ds << pubkey.type;
ds.write( pubkey.data.data(), pubkey.data.size() );
return ds;
}
/**
* Deserialize an arisen::public_key from a stream
*
* @ingroup public_key
* @param ds - The stream to read
* @param pubkey - The destination for deserialized value
* @tparam DataStream - Type of datastream buffer
* @return DataStream& - Reference to the datastream
*/
template<typename DataStream>
inline DataStream& operator>>(DataStream& ds, arisen::public_key& pubkey) {
ds >> pubkey.type;
ds.read( pubkey.data.data(), pubkey.data.size() );
return ds;
}
/// @endcond
/**
* @defgroup signature Signature
* @ingroup core
* @ingroup types
* @brief Specifies signature type
*/
/**
* ARISEN Signature
*
* @ingroup signature
*/
struct signature {
/**
* Type of the signature, could be either K1 or R1
*/
unsigned_int type;
/**
* Bytes of the signature
*/
std::array<char,65> data;
/// @cond OPERATORS
friend bool operator == ( const signature& a, const signature& b ) {
return std::tie(a.type,a.data) == std::tie(b.type,b.data);
}
friend bool operator != ( const signature& a, const signature& b ) {
return std::tie(a.type,a.data) != std::tie(b.type,b.data);
}
/// @endcond
};
/// @cond IMPLEMENTATIONS
/**
* Serialize an arisen::signature into a stream
*
* @param ds - The stream to write
* @param sig - The value to serialize
* @tparam DataStream - Type of datastream buffer
* @return DataStream& - Reference to the datastream
*/
template<typename DataStream>
inline DataStream& operator<<(DataStream& ds, const arisen::signature& sig) {
ds << sig.type;
ds.write( sig.data.data(), sig.data.size() );
return ds;
}
/**
* Deserialize an arisen::signature from a stream
*
* @param ds - The stream to read
* @param sig - The destination for deserialized value
* @tparam DataStream - Type of datastream buffer
* @return DataStream& - Reference to the datastream
*/
template<typename DataStream>
inline DataStream& operator>>(DataStream& ds, arisen::signature& sig) {
ds >> sig.type;
ds.read( sig.data.data(), sig.data.size() );
return ds;
}
/// @endcond
/**
* @defgroup crypto Crypto
* @ingroup core
* @brief Defines API for calculating and checking hashes
*/
/**
* Tests if the SHA256 hash generated from data matches the provided digest.
*
* @ingroup crypto
* @param data - Data you want to hash
* @param length - Data length
* @param hash - digest to compare to
* @note This method is optimized to a NO-OP when in fast evaluation mode.
*/
void assert_sha256( const char* data, uint32_t length, const arisen::checksum256& hash );
/**
* Tests if the SHA1 hash generated from data matches the provided digest.
*
* @ingroup crypto
* @param data - Data you want to hash
* @param length - Data length
* @param hash - digest to compare to
* @note This method is optimized to a NO-OP when in fast evaluation mode.
*/
void assert_sha1( const char* data, uint32_t length, const arisen::checksum160& hash );
/**
* Tests if the SHA512 hash generated from data matches the provided digest.
*
* @ingroup crypto
* @param data - Data you want to hash
* @param length - Data length
* @param hash - digest to compare to
* @note This method is optimized to a NO-OP when in fast evaluation mode.
*/
void assert_sha512( const char* data, uint32_t length, const arisen::checksum512& hash );
/**
* Tests if the RIPEMD160 hash generated from data matches the provided digest.
*
* @ingroup crypto
* @param data - Data you want to hash
* @param length - Data length
* @param hash - digest to compare to
*/
void assert_ripemd160( const char* data, uint32_t length, const arisen::checksum160& hash );
/**
* Hashes `data` using SHA256.
*
* @ingroup crypto
* @param data - Data you want to hash
* @param length - Data length
* @return arisen::checksum256 - Computed digest
*/
arisen::checksum256 sha256( const char* data, uint32_t length );
/**
* Hashes `data` using SHA1.
*
* @ingroup crypto
*
* @param data - Data you want to hash
* @param length - Data length
* @return arisen::checksum160 - Computed digest
*/
arisen::checksum160 sha1( const char* data, uint32_t length );
/**
* Hashes `data` using SHA512.
*
* @ingroup crypto
* @param data - Data you want to hash
* @param length - Data length
* @return arisen::checksum512 - Computed digest
*/
arisen::checksum512 sha512( const char* data, uint32_t length );
/**
* Hashes `data` using RIPEMD160.
*
* @ingroup crypto
* @param data - Data you want to hash
* @param length - Data length
* @return arisen::checksum160 - Computed digest
*/
arisen::checksum160 ripemd160( const char* data, uint32_t length );
/**
* Calculates the public key used for a given signature on a given digest.
*
* @ingroup crypto
* @param digest - Digest of the message that was signed
* @param sig - Signature
* @return arisen::public_key - Recovered public key
*/
arisen::public_key recover_key( const arisen::checksum256& digest, const arisen::signature& sig );
/**
* Tests a given public key with the recovered public key from digest and signature.
*
* @ingroup crypto
* @param digest - Digest of the message that was signed
* @param sig - Signature
* @param pubkey - Public key
*/
void assert_recover_key( const arisen::checksum256& digest, const arisen::signature& sig, const arisen::public_key& pubkey );
}
| [
"shikhars371@gmail.com"
] | shikhars371@gmail.com |
4ad19a0b2d1d029b0933e284389f13e1da1761c3 | 19c1253d63817149fd970b5f02f721c2a93b6d76 | /Password Cracking/key.hpp | b811149a55b010f43d5e4dec61c27887af6f8a80 | [] | no_license | GoGirish/Purdue-CS251 | 493a1cabb2b9f9d5ed09696ed11c5661f9ba58cc | 41b22dea0a46a5afeb168016b022505ff7e88fde | refs/heads/master | 2021-01-25T07:48:48.905431 | 2017-06-07T18:00:17 | 2017-06-07T18:00:17 | 93,664,013 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,587 | hpp | #ifndef KEY_HPP
#define KEY_HPP
#include <algorithm>
#include <array>
#include <cassert>
#include <iomanip>
#include <iostream>
#include <stdexcept>
#include <string>
#include <vector>
#ifdef C_IS_SET
#undef C_IS_SET
#endif
static constexpr int B=5; // number of bits per character
static constexpr int R=32; // size of alphabet (2^B)
#ifdef USE_6_CHARS
static constexpr int C=6; // number of characters per word
static constexpr int N=30; // number of bits per word
#define C_IS_SET
#endif
#ifdef USE_7_CHARS
static constexpr int C=7; // number of characters per word
static constexpr int N=35; // number of bits per word
#define C_IS_SET
#endif
#ifdef USE_8_CHARS
static constexpr int C=8; // number of characters per word
static constexpr int N=40; // number of bits per word
#define C_IS_SET
#endif
#ifdef USE_9_CHARS
static constexpr int C=9; // number of characters per word
static constexpr int N=45; // number of bits per word
#define C_IS_SET
#endif
#ifdef USE_10_CHARS
static constexpr int C=10; // number of characters per word
static constexpr int N=50; // number of bits per word
#define C_IS_SET
#endif
#ifndef C_IS_SET
static constexpr int C=5; // number of characters per word
static constexpr int N=25; // number of bits per word
#endif
#define ALPHABET "abcdefghijklmnopqrstuvwxyz012345"
typedef std::array<char, C> word_type; // fixed size word
// map a string to its representation in given alphabet
static inline word_type to_string(const std::string& s) {
word_type w;
int j;
for (int i = 0; i < C; ++i) {
for (j = 0; j < R; ++j) {
if (s[i] == ALPHABET[j]) {
w[i] = j;
break;
}
}
if (j == R) throw std::out_of_range("invalid character");
}
return w;
}
class Key {
private:
word_type m_digit;
int bit(int) const;
public:
// Default Constructor
Key();
// Initialize the Key from a compatible character string
Key(const std::string&);
// Initialize the Key from a word of 32 bit characters
Key(const word_type&);
// Assignment operators
Key& operator=(const Key&);
Key& operator+=(const Key&);
// Comparison operators
bool operator==(const Key&) const;
bool operator<(const Key&) const;
// Print the contents of the Key (for debugging mostly)
void show() const;
// Assign the Key generated from the argument string to the current Key
void set_string(const std::string&);
// Add subset of the integers T[i] indexed by the bits of k
// and return subset sum. Do sum mod 2^N.
Key subset_sum(const std::vector<Key>&, bool verbose=false);
};
inline int Key::bit(int i) const {
// j=i/m_b: j-th character contains i-th bit
// k=i%m_b: i-th bit is k-th bit of j-th character
// m_digit[j] >> k & 1 (=00000001)
// we return m_b-1-j-th bit since we count bits from the left
return (m_digit[i/B] >> (B - 1 - i % B)) & 1;
}
inline Key::Key() {
std::fill(m_digit.begin(), m_digit.end(), 0);
}
inline Key::Key(const std::string& s) {
set_string(s);
}
inline Key::Key(const word_type& w) : m_digit(w) {}
inline Key& Key::operator=(const Key& other) {
std::copy(other.m_digit.begin(), other.m_digit.end(), m_digit.begin());
return *this;
}
inline void Key::set_string(const std::string& s) {
if (s.size() < C) {
throw std::invalid_argument("input string is too short");
}
m_digit = to_string(s);
}
inline bool Key::operator==(const Key& other) const {
return m_digit == other.m_digit;
}
inline bool Key::operator<(const Key& other) const {
return m_digit < other.m_digit; // lexicographical order
}
Key& Key::operator+=(const Key& other) {
int t;
int carry = 0;
for (int i = C-1; i >= 0; --i) {
t = m_digit[i];
m_digit[i] = (t + other.m_digit[i] + carry) % R;
carry = (t + other.m_digit[i] + carry) >= R;
}
return *this;
}
Key Key::subset_sum(const std::vector<Key>& T, bool verbose) {
if (T.size() != N)
throw std::invalid_argument("dictionary has wrong size");
Key sum;
for (int i = 0; i < N; ++i) {
if (bit(i)) {
sum += T[i];
if (verbose) {
std::cout << std::setw(2) << i << " ";
T[i].show();
}
}
}
return sum;
}
inline void Key::show() const {
std::for_each(m_digit.begin(), m_digit.end(), [](const char& c)
{
std::cout << ALPHABET[c];
});
std::cout << " ";
std::for_each(m_digit.begin(), m_digit.end(), [](const char& c)
{
std::cout << std::setw(2) << static_cast<int>(c) << ' ';
});
std::cout << " ";
for (int i = 0; i < N; ++i) {
std::cout << bit(i) << std::flush;
}
std::cout << '\n';
}
#endif // KEY_HPP
| [
"girishg@purdue.edu"
] | girishg@purdue.edu |
097d4cbc654e99a8f5cf199abfdf0b643b3cb2b4 | 390f357fec98ab6c886ee504f27e7127869c419b | /最小距离.cpp | bc5bb988ae3fa0bda463170e59efa39fafda3ad3 | [] | no_license | baibaixue/acm | 696f9aa948465166c75fadba28851f7028ab00e1 | 07cac352d8dc23c2e3cf0b84f65fda6afbf3707e | refs/heads/master | 2021-07-04T07:51:37.380678 | 2020-11-06T15:00:14 | 2020-11-06T15:00:14 | 195,429,206 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 702 | cpp | #include<cstdio>
#include<iostream>
#include<algorithm>
#include<queue>
#include<string.h>
#include<vector>
#include<cmath>
#define maxn 55
using namespace std;
char s1[maxn];
char s2[maxn];
int dis[maxn];
int cmp(int a,int b){
return a>b;
}
int main(){
while(scanf("%s",&s1)!=EOF){
scanf("%s",&s2);
int k;
scanf("%d",&k);
int len=strlen(s1);
for(int i=0;i<len;i++){
dis[i]=fabs((int)(s1[i]-s2[i]));
}
sort(dis,dis+len,cmp);
int ans=0;
for(int i=0;i<len;i++){
if(i<k){
if(dis[i]==0){
ans+=1;
}
}else{
ans+=dis[i];
}
}
printf("%d\n",ans);
memset(s1,0,sizeof(s1));
memset(s2,0,sizeof(s2));
memset(dis,0,sizeof(dis));
}
return 0;
}
| [
"52575446+baibaixue@users.noreply.github.com"
] | 52575446+baibaixue@users.noreply.github.com |
c597bafa2efa33cb2aefd8ba6bcb6e14080c6ec0 | 0d4180498063d0b4a129170b5e885e79ab7de0b9 | /pipelines/StrainTensorPipeline.h | 80ed6e607260f8b29b544b4bd8e93cf2285f1417 | [] | no_license | CISMM/ImageTracker | dd0038feaca23de0cf4aa17db50e95b170b0ca31 | ad7efce0443daab8992721785edbb25cf9fe25ff | refs/heads/main | 2023-06-27T10:55:41.556083 | 2021-07-29T13:07:17 | 2021-07-29T13:07:17 | 390,725,337 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,226 | h | #pragma once
#include <string>
#include "itkImage.h"
#include "itkVector.h"
#include "CommonTypes.h"
#include "ItkVectorPipeline.h"
/**
* \class StrainTensorPipeline
* \brief Computes the strain tensor for a given 2D displacement field.
* Computes the Lagrangian strain tensor given a displacement field. A displacment field represents
* displacement in X and Y at each image location--it is a vector field:
* L(x,y) = [Lx(x,y), Ly(x,y)].
*
* Strain is a measure of change in displacement as an object is deformed.
*/
class StrainTensorPipeline :
public ItkVectorPipeline
{
public:
// Common itk typedefs
typedef StrainTensorPipeline Self;
typedef ItkPipeline Superclass;
typedef itk::SmartPointer< Self > Pointer;
typedef itk::SmartPointer< const Self > ConstPointer;
itkNewMacro(Self);
itkTypeMacro(StrainTensorPipeline, ItkPipeline);
virtual void Update();
itkGetMacro(Sigma, double);
itkSetMacro(Sigma, double);
protected:
StrainTensorPipeline()
{}
virtual ~StrainTensorPipeline(){}
private:
// Not implemented
StrainTensorPipeline(const Self& other);
void operator=(const Self& other);
double m_Sigma;
};
| [
"beastwoo"
] | beastwoo |
754cc6f8de13925f623b590850cc6f14b35a0269 | 641fa8341d8c436ad24945bcbf8e7d7d1dd7dbb2 | /printing/backend/cups_printer.cc | 3cb80e0420fd825add92ae2fc70bfabddf1837f8 | [
"BSD-3-Clause"
] | permissive | massnetwork/mass-browser | 7de0dfc541cbac00ffa7308541394bac1e945b76 | 67526da9358734698c067b7775be491423884339 | refs/heads/master | 2022-12-07T09:01:31.027715 | 2017-01-19T14:29:18 | 2017-01-19T14:29:18 | 73,799,690 | 4 | 4 | BSD-3-Clause | 2022-11-26T11:53:23 | 2016-11-15T09:49:29 | null | UTF-8 | C++ | false | false | 7,762 | cc | // Copyright 2016 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "printing/backend/cups_printer.h"
#include <cups/cups.h>
#include <string>
#include <utility>
#include "base/files/file.h"
#include "base/files/file_path.h"
#include "base/files/file_util.h"
#include "base/strings/string_number_conversions.h"
#include "printing/backend/cups_connection.h"
#include "printing/backend/print_backend.h"
#include "printing/backend/print_backend_consts.h"
namespace {
const char kCUPSPrinterInfoOpt[] = "printer-info";
const char kCUPSPrinterStateOpt[] = "printer-state";
} // namespace
namespace printing {
CupsPrinter::CupsPrinter(http_t* http,
std::unique_ptr<cups_dest_t, DestinationDeleter> dest,
std::unique_ptr<cups_dinfo_t, DestInfoDeleter> info)
: cups_http_(http),
destination_(std::move(dest)),
dest_info_(std::move(info)) {
DCHECK(cups_http_);
DCHECK(destination_);
}
CupsPrinter::CupsPrinter(CupsPrinter&& printer)
: cups_http_(printer.cups_http_),
destination_(std::move(printer.destination_)),
dest_info_(std::move(printer.dest_info_)) {
DCHECK(cups_http_);
DCHECK(destination_);
}
CupsPrinter::~CupsPrinter() {}
bool CupsPrinter::is_default() const {
return destination_->is_default;
}
ipp_attribute_t* CupsPrinter::GetSupportedOptionValues(
base::StringPiece option_name) const {
if (!InitializeDestInfo())
return nullptr;
return cupsFindDestSupported(cups_http_, destination_.get(), dest_info_.get(),
option_name.as_string().c_str());
}
std::vector<base::StringPiece> CupsPrinter::GetSupportedOptionValueStrings(
base::StringPiece option_name) const {
std::vector<base::StringPiece> values;
ipp_attribute_t* attr = GetSupportedOptionValues(option_name);
if (!attr)
return values;
base::StringPiece value;
int num_options = ippGetCount(attr);
for (int i = 0; i < num_options; ++i) {
value.set(ippGetString(attr, i, nullptr));
values.push_back(value);
}
return values;
}
ipp_attribute_t* CupsPrinter::GetDefaultOptionValue(
base::StringPiece option_name) const {
if (!InitializeDestInfo())
return nullptr;
return cupsFindDestDefault(cups_http_, destination_.get(), dest_info_.get(),
option_name.as_string().c_str());
}
bool CupsPrinter::CheckOptionSupported(base::StringPiece name,
base::StringPiece value) const {
if (!InitializeDestInfo())
return false;
int supported = cupsCheckDestSupported(
cups_http_, destination_.get(), dest_info_.get(),
name.as_string().c_str(), value.as_string().c_str());
return supported == 1;
}
bool CupsPrinter::ToPrinterInfo(PrinterBasicInfo* printer_info) const {
const cups_dest_t* printer = destination_.get();
printer_info->printer_name = printer->name;
printer_info->is_default = printer->is_default;
const char* info = cupsGetOption(kCUPSPrinterInfoOpt, printer->num_options,
printer->options);
if (info)
printer_info->printer_description = info;
const char* state = cupsGetOption(kCUPSPrinterStateOpt, printer->num_options,
printer->options);
if (state)
base::StringToInt(state, &printer_info->printer_status);
const char* drv_info = cupsGetOption(kDriverNameTagName,
printer->num_options, printer->options);
if (drv_info)
printer_info->options[kDriverInfoTagName] = *drv_info;
// Store printer options.
for (int opt_index = 0; opt_index < printer->num_options; ++opt_index) {
printer_info->options[printer->options[opt_index].name] =
printer->options[opt_index].value;
}
return true;
}
base::FilePath CupsPrinter::GetPPD() const {
base::StringPiece printer_name = destination_->name;
const char* ppd_path =
cupsGetPPD2(cups_http_, printer_name.as_string().c_str());
base::FilePath path(ppd_path);
if (ppd_path) {
// There is no reliable way right now to detect full and complete PPD
// get downloaded. If we reach http timeout, it may simply return
// downloaded part as a full response. It might be good enough to check
// http->data_remaining or http->_data_remaining, unfortunately http_t
// is an internal structure and fields are not exposed in CUPS headers.
// httpGetLength or httpGetLength2 returning the full content size.
// Comparing file size against that content length might be unreliable
// since some http reponses are encoded and content_length > file size.
// Let's just check for the obvious CUPS and http errors here.
ipp_status_t error_code = cupsLastError();
int http_error = httpError(cups_http_);
if (error_code > IPP_OK_EVENTS_COMPLETE || http_error != 0) {
LOG(ERROR) << "Error downloading PPD file, name: " << destination_->name
<< ", CUPS error: " << static_cast<int>(error_code)
<< ", HTTP error: " << http_error;
base::DeleteFile(path, false);
path.clear();
}
}
return path;
}
std::string CupsPrinter::GetName() const {
return std::string(destination_->name);
}
std::string CupsPrinter::GetMakeAndModel() const {
const char* make_and_model =
cupsGetOption(kDriverNameTagName, destination_->num_options,
destination_->options);
return make_and_model ? std::string(make_and_model) : std::string();
}
bool CupsPrinter::IsAvailable() const {
return InitializeDestInfo();
}
bool CupsPrinter::InitializeDestInfo() const {
if (dest_info_)
return true;
dest_info_.reset(cupsCopyDestInfo(cups_http_, destination_.get()));
return !!dest_info_;
}
ipp_status_t CupsPrinter::CreateJob(int* job_id,
base::StringPiece title,
const std::vector<cups_option_t>& options) {
DCHECK(dest_info_) << "Verify availability before starting a print job";
cups_option_t* data = const_cast<cups_option_t*>(
options.data()); // createDestJob will not modify the data
ipp_status_t create_status = cupsCreateDestJob(
cups_http_, destination_.get(), dest_info_.get(), job_id,
title.as_string().c_str(), options.size(), data);
return create_status;
}
bool CupsPrinter::StartDocument(int job_id,
base::StringPiece document_name,
bool last_document,
const std::vector<cups_option_t>& options) {
DCHECK(dest_info_);
DCHECK(job_id);
cups_option_t* data = const_cast<cups_option_t*>(
options.data()); // createStartDestDocument will not modify the data
http_status_t start_doc_status = cupsStartDestDocument(
cups_http_, destination_.get(), dest_info_.get(), job_id,
document_name.as_string().c_str(), CUPS_FORMAT_PDF, options.size(), data,
last_document ? 0 : 1);
return start_doc_status == HTTP_CONTINUE;
}
bool CupsPrinter::StreamData(const std::vector<char>& buffer) {
http_status_t status =
cupsWriteRequestData(cups_http_, buffer.data(), buffer.size());
return status == HTTP_STATUS_CONTINUE;
}
bool CupsPrinter::FinishDocument() {
DCHECK(dest_info_);
ipp_status_t status =
cupsFinishDestDocument(cups_http_, destination_.get(), dest_info_.get());
return status == IPP_STATUS_OK;
}
ipp_status_t CupsPrinter::CloseJob(int job_id) {
DCHECK(dest_info_);
DCHECK(job_id);
return cupsCloseDestJob(cups_http_, destination_.get(), dest_info_.get(),
job_id);
}
} // namespace printing
| [
"xElvis89x@gmail.com"
] | xElvis89x@gmail.com |
281647dcddeef0dfa4fa5442e7aed5d6aee63ab1 | 4df1038d6511e221ac090f7113ca9cf741837edb | /week_09/day_4_gomoku_game_logic_with_unit_tests/Player.h | 3823cd2ed1958b38eb95b8b71aa14bad11cc120d | [] | no_license | greenfox-zerda-sparta/juliabaki | 86af6ef89b290cc968247e5dbe1dc7f57c8d357c | 82998e8105914375ed2927426d6b04f8fa280b38 | refs/heads/master | 2021-01-17T18:21:25.037633 | 2017-02-07T11:27:59 | 2017-02-07T11:27:59 | 71,350,696 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 189 | h | #ifndef PLAYER_H_
#define PLAYER_H_
#include "Stone.h"
class Player {
public:
Player();
Stone* placeStone(int coordinate_x, int coordinate_y);
~Player();
};
#endif /* PLAYER_H_ */
| [
"bakijulia@gmail.com"
] | bakijulia@gmail.com |
82d10f67cb12b67cdef9e5df7beefa4998cd330a | e0a5c8354120afa6f95f0a3e0a7eba9fac5f1dec | /task5/task5.cpp | 9553e2e68c6cde34ddadae4e06e0c16697096c3b | [] | no_license | VashchilkoAV/MPI | 03dc0d3d8a572a59ddf95223482578475917185e | a8d6925dbb86ce66d089fb0af1140c9349ed27ef | refs/heads/master | 2023-05-26T05:07:24.642470 | 2021-06-14T17:55:44 | 2021-06-14T17:55:44 | 354,052,218 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,391 | cpp | #include <mpi.h>
#include <fstream>
#include <iostream>
#include <string>
#include <vector>
#include <sstream>
#define MAX_TOKEN 1000*1000*1000
typedef std::vector<size_t> Number;
Number convertToNumber(const std::string& line) {
Number number;
for (int i = static_cast<int>(line.length()); i > 0; i-= 9) {
if (i >= 9) {
number.push_back(std::stoul(line.substr(i - 9, 9)));
} else {
number.push_back(std::stoul(line.substr(0, i)));
}
}
while ((number.size() > 1) && number.back() == 0) {
number.pop_back();
}
return number;
}
void alignToCommonSize(Number* number, const size_t N) {
while (number->size() < N) {
number->push_back(0);
}
return;
}
int summarize(Number* answer, const Number& first, const Number& second,
size_t left, size_t right, size_t overflow) {
for (size_t i = 0; i < right - left; ++i) {
answer->data()[i] = first[left + i] + second[left + i] + overflow;
if (answer->data()[i] >= MAX_TOKEN) {
overflow = 1;
answer->data()[i] -= MAX_TOKEN;
} else {
overflow = 0;
}
}
return static_cast<int>(overflow);
}
size_t countDigits(size_t n) {
size_t digits = 1;
unsigned long k = 10;
for (int i = 0; i < 10; i++) {
if (n >= k) {
digits++;
k*=10;
} else {
break;
}
}
return digits;
}
std::string operator*(const std::string& s, unsigned int n) {
std::stringstream out;
for (unsigned i = 0; i < n; i++)
out << s;
return out.str();
}
std::string operator*(unsigned int n, const std::string& s) { return s * n; }
int main(int argc, char** argv) {
int size, rank;
std::ofstream result("result.txt");
MPI_Init(&argc, &argv);
MPI_Comm_size(MPI_COMM_WORLD, &size);
MPI_Comm_rank(MPI_COMM_WORLD, &rank);
if (argc < 3) {
std::cout << "Not enough arguments\n";
return 1;
}
std::string first_file(argv[1]);
std::string second_file(argv[2]);
std::ifstream first(first_file);
std::ifstream second(second_file);
if ((!first.is_open()) || (!second.is_open()) || (!result.is_open())) {
std::cout << ("Error opening files\n");
return 1;
}
std::string first_string, second_string;
std::getline(first, first_string);
std::getline(second, second_string);
Number first_number = convertToNumber(first_string*10000);
Number second_number = convertToNumber(second_string*1000);
MPI_Barrier(MPI_COMM_WORLD);
size_t N = first_number.size() > second_number.size() ?
first_number.size() : second_number.size();
alignToCommonSize(&first_number, N);
alignToCommonSize(&second_number, N);
size_t left_index = rank * (N / size);
size_t right_index = (rank != size - 1) ? (rank + 1) * (N / size) : N;
double start = MPI_Wtime();
int overflow = 0;
Number with_overflow(right_index - left_index);
Number without_overflow(right_index - left_index);
int with = summarize(&with_overflow, first_number, second_number, left_index, right_index, 1);
int without = summarize(&without_overflow, first_number, second_number, left_index, right_index, 0);
if (rank != 0) {
MPI_Recv(&overflow, 1, MPI_INT, rank - 1, 0, MPI_COMM_WORLD, MPI_STATUS_IGNORE);
}
Number answer(right_index - left_index);
switch (overflow) {
case 0:
answer = without_overflow;
overflow = without;
break;
case 1:
answer = with_overflow;
overflow = with;
break;
}
if (rank != size - 1) {
MPI_Send(&overflow, 1, MPI_INT, rank + 1, 0, MPI_COMM_WORLD);
}
double end = MPI_Wtime() - start;
if (rank == 0) {
size_t sizeOfAnswer = answer.size();
for (size_t i = 0; i < sizeOfAnswer; ++i) {
first_number[i] = answer[i];
}
}
if (size > 1) {
if (rank == size - 1) {
MPI_Send(answer.data(), static_cast<int>(right_index - left_index), MPI_INT, 0, 0, MPI_COMM_WORLD);
} //я не знаю почему, но так быстрее работает
if (rank == 0) {
for (int i = 1; i < size; i++) {
size_t left = i * (N / size);
size_t right = (i != size - 1) ? (i + 1) * (N / size) : N;
MPI_Recv(first_number.data() + left, static_cast<int>(right - left), MPI_INT, i, 0, MPI_COMM_WORLD, MPI_STATUS_IGNORE);
}
} else {
MPI_Send(answer.data(), static_cast<int>(right_index - left_index), MPI_INT, 0, 0, MPI_COMM_WORLD);
}
}
if (rank == 0) {
if (first_number[N - 1] == 0) {
first_number[N - 1] = MAX_TOKEN;
}
result << (first_number.empty() ? 0 : first_number.back());
for (int i = static_cast<int>(N - 2); i >= 0; i--) {
size_t sizeOfInt = countDigits(first_number[static_cast<size_t>(i)]);
while (sizeOfInt < 9) {
result << "0";
sizeOfInt++;
}
result << first_number[static_cast<size_t>(i)];
}
result.close();
std::cout << end << "\n";
}
MPI_Finalize();
return 0;
}
| [
"vashchilko.av@phystech.edu"
] | vashchilko.av@phystech.edu |
3debf909ea40c95bb3580a2057f0f43b92538ce4 | 0eff74b05b60098333ad66cf801bdd93becc9ea4 | /second/download/CMake/CMake-gumtree/Kitware_CMake_new_hunk_126.cpp | 21056dd3fc368fc8d50478cc23d428fc7c38b7b1 | [] | no_license | niuxu18/logTracker-old | 97543445ea7e414ed40bdc681239365d33418975 | f2b060f13a0295387fe02187543db124916eb446 | refs/heads/master | 2021-09-13T21:39:37.686481 | 2017-12-11T03:36:34 | 2017-12-11T03:36:34 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 609 | cpp | int
archive_read_disk_set_atime_restored(struct archive *_a)
{
struct archive_read_disk *a = (struct archive_read_disk *)_a;
archive_check_magic(_a, ARCHIVE_READ_DISK_MAGIC,
ARCHIVE_STATE_ANY, "archive_read_disk_restore_atime");
#ifdef HAVE_UTIMES
a->flags |= ARCHIVE_READDISK_RESTORE_ATIME;
if (a->tree != NULL)
a->tree->flags |= needsRestoreTimes;
return (ARCHIVE_OK);
#else
/* Display warning and unset flag */
archive_set_error(&a->archive, ARCHIVE_ERRNO_MISC,
"Cannot restore access time on this system");
a->flags &= ~ARCHIVE_READDISK_RESTORE_ATIME;
return (ARCHIVE_WARN);
#endif
}
| [
"993273596@qq.com"
] | 993273596@qq.com |
3c21f83a1bc010dfd4584d0383cb7bef467a9225 | 06bd829a0b316ff1a8b54b4fc1bb88c73a4fc68f | /二分法/457.经典二分查找问题.cpp | 5d0b0189b78a01781b803db651c6c93636f2e2ef | [] | no_license | LiuYu0521/lintcode | 148e763294f478f50858f8053cacf5478b5c60b4 | 97c90a2065c6bf6df76c43211af0db2da528b965 | refs/heads/master | 2021-01-22T21:53:32.924735 | 2017-08-13T02:51:25 | 2017-08-13T02:51:25 | 92,742,383 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 637 | cpp | class Solution {
public:
/**
* @param A an integer array sorted in ascending order
* @param target an integer
* @return an integer
*/
int findPosition(vector<int>& A, int target) {
// Write your code here
int left = 0;
int right = A.size() - 1;
int mid = left + (right - left) / 2;
while(left <= right)
{
if(A[mid] == target)
return mid;
else if(A[mid] < target)
left = mid + 1;
else
right = mid - 1;
mid = (left + right) / 2;
}
return -1;
}
};
| [
"ly819933137@gmail.com"
] | ly819933137@gmail.com |
a8db7701d75d83ca4cbff9dc659725c50d5c70f4 | 79813a2689ae22b0315323f398337017639662bb | /src/modules/processes/NoOperation/NoOperationInstance.cpp | 24537fc50d7077202419160c4d5820e8c829b740 | [
"LicenseRef-scancode-other-permissive"
] | permissive | jackros1022/PCL-1 | 4b51b494c69e4d97182387aa84ead1a964798264 | 059423bc8a3d7946a628fe1913b805bc3633aea5 | refs/heads/master | 2021-01-23T05:09:19.844862 | 2017-02-08T11:53:24 | 2017-02-08T11:53:24 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,410 | cpp | // ____ ______ __
// / __ \ / ____// /
// / /_/ // / / /
// / ____// /___ / /___ PixInsight Class Library
// /_/ \____//_____/ PCL 02.01.01.0784
// ----------------------------------------------------------------------------
// Standard NoOperation Process Module Version 01.00.00.0269
// ----------------------------------------------------------------------------
// NoOperationInstance.cpp - Released 2016/02/21 20:22:43 UTC
// ----------------------------------------------------------------------------
// This file is part of the standard NoOperation PixInsight module.
//
// Copyright (c) 2003-2016 Pleiades Astrophoto S.L. All Rights Reserved.
//
// Redistribution and use in both source and binary forms, with or without
// modification, is permitted provided that the following conditions are met:
//
// 1. All redistributions of source code must retain the above copyright
// notice, this list of conditions and the following disclaimer.
//
// 2. All redistributions in binary form must reproduce the above copyright
// notice, this list of conditions and the following disclaimer in the
// documentation and/or other materials provided with the distribution.
//
// 3. Neither the names "PixInsight" and "Pleiades Astrophoto", nor the names
// of their contributors, may be used to endorse or promote products derived
// from this software without specific prior written permission. For written
// permission, please contact info@pixinsight.com.
//
// 4. All products derived from this software, in any form whatsoever, must
// reproduce the following acknowledgment in the end-user documentation
// and/or other materials provided with the product:
//
// "This product is based on software from the PixInsight project, developed
// by Pleiades Astrophoto and its contributors (http://pixinsight.com/)."
//
// Alternatively, if that is where third-party acknowledgments normally
// appear, this acknowledgment must be reproduced in the product itself.
//
// THIS SOFTWARE IS PROVIDED BY PLEIADES ASTROPHOTO AND ITS CONTRIBUTORS
// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
// TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
// PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL PLEIADES ASTROPHOTO OR ITS
// CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
// EXEMPLARY OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, BUSINESS
// INTERRUPTION; PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; AND LOSS OF USE,
// DATA OR PROFITS) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
// CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
// ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
// POSSIBILITY OF SUCH DAMAGE.
// ----------------------------------------------------------------------------
#include "NoOperationInstance.h"
namespace pcl
{
// ----------------------------------------------------------------------------
NoOperationInstance::NoOperationInstance( const MetaProcess* m ) :
ProcessImplementation( m )
{
}
// ----------------------------------------------------------------------------
bool NoOperationInstance::IsHistoryUpdater( const View& ) const
{
return false;
}
// ----------------------------------------------------------------------------
bool NoOperationInstance::IsMaskable( const View&, const ImageWindow& /*mask*/ ) const
{
return false;
}
// ----------------------------------------------------------------------------
bool NoOperationInstance::CanExecuteOn( const View& view, pcl::String& whyNot ) const
{
whyNot.Clear();
return true;
}
// ----------------------------------------------------------------------------
bool NoOperationInstance::ExecuteOn( View& )
{
return true;
}
// ----------------------------------------------------------------------------
bool NoOperationInstance::CanExecuteGlobal( String& whyNot ) const
{
whyNot.Clear();
return true;
}
// ----------------------------------------------------------------------------
bool NoOperationInstance::ExecuteGlobal()
{
return true;
}
// ----------------------------------------------------------------------------
} // pcl
// ----------------------------------------------------------------------------
// EOF NoOperationInstance.cpp - Released 2016/02/21 20:22:43 UTC
| [
"juan.conejero@pixinsight.com"
] | juan.conejero@pixinsight.com |
3d8abe34b04ddf3d4f0b229b589902e4e181f9a0 | 6cfe7c65380924bfd6fe46a7b6cd5b006b333e96 | /source/digits_hits/src/GateEnergyEfficiency.cc | 4bb78d7f57448f94c97eae5297d1ed0f8938baab | [] | no_license | copernicus231/gatempi | 800eb61dd5de373d591e9cb49630172e1c4809b2 | b97c38418458dfd21e8d25887419f7967871782e | refs/heads/master | 2020-12-24T12:01:56.966710 | 2012-08-13T05:12:22 | 2012-08-13T05:12:22 | 5,534,931 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,666 | cc | /*----------------------
GATE version name: gate_v6
Copyright (C): OpenGATE Collaboration
This software is distributed under the terms
of the GNU Lesser General Public Licence (LGPL)
See GATE/LICENSE.txt for further details
----------------------*/
#include "GateEnergyEfficiency.hh"
#include "GateEnergyEfficiencyMessenger.hh"
#include "GateTools.hh"
#include "GateVSystem.hh"
#include "GateVDistribution.hh"
#include "GateSystemListManager.hh"
#include "Randomize.hh"
#include "G4UnitsTable.hh"
#include <fstream>
GateEnergyEfficiency::GateEnergyEfficiency(GatePulseProcessorChain* itsChain,
const G4String& itsName)
: GateVPulseProcessor(itsChain,itsName),
m_efficiency(0)
{
m_messenger = new GateEnergyEfficiencyMessenger(this);
}
GateEnergyEfficiency::~GateEnergyEfficiency()
{
delete m_messenger;
}
void GateEnergyEfficiency::ProcessOnePulse(const GatePulse* inputPulse,GatePulseList& outputPulseList)
{
if (!m_efficiency){ // default efficiency is 1
outputPulseList.push_back(new GatePulse(*inputPulse));
return;
}
GateVSystem* system = GateSystemListManager::GetInstance()->GetSystem(0);
if (!system){
G4cerr<<"[GateEnergyEfficiency::ProcessOnePulse] Problem : no system defined"<<G4endl;
return ;
}
G4double eff = m_efficiency->Value(inputPulse->GetEnergy());
// G4cout<<inputPulse->GetEnergy()<<" "<<eff<<G4endl;
if (G4UniformRand() < eff)
outputPulseList.push_back(new GatePulse(*inputPulse));
}
void GateEnergyEfficiency::DescribeMyself(size_t indent)
{
G4cout << GateTools::Indent(indent) << "Tabular Efficiency "<< G4endl;
}
| [
"copernicus231@gmail.com"
] | copernicus231@gmail.com |
92bfdf14109d8b5d67538b6ca66f0fdfc00a93ad | 4091c9e7832c8c3fa2820fe8d9730b5647122678 | /DFS.cpp | 10972ea133f6d14e272a1ffe801a0638c1c6557d | [] | no_license | Shweta029/ADA-Assignment | 8c2abdbd63b4d3ab4a493407dc1eb365854f47c6 | 5ca5c0bb5e2d3ba704b91d81f1c9d84c1644ef1b | refs/heads/main | 2023-08-16T08:07:57.128979 | 2021-09-30T03:37:50 | 2021-09-30T03:37:50 | 411,906,617 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 492 | cpp | #include<stdio.h>
void DFS(int);
int G[10][10],visited[10],n;
int main()
{
int i,j;
printf("Enter number of vertices:");
scanf("%d",&n);
printf("\nEnter adjecency matrix of the graph:");
for(i=0;i<n;i++)
for(j=0;j<n;j++)
scanf("%d",&G[i][j]);
for(i=0;i<n;i++)
visited[i]=0;
DFS(0);
}
void DFS(int i)
{
int j;
printf("\n%d",i);
visited[i]=1;
for(j=0;j<n;j++)
if(!visited[j]&&G[i][j]==1)
DFS(j);
}
| [
"noreply@github.com"
] | noreply@github.com |
27aad257255335638323147a2621d6a14b3131b7 | 60ccc97366c43b0f83275c2c7aabd569939f8a43 | /lcpfw/examples/tests/ipc_channel.cpp | 7b06ae2d56b3686c0c7b3ea39c4efc4b2a385fc2 | [] | no_license | VestasWey/mysite | d89c886c333e5aae31a04584e592bd108ead8dd3 | 41ea707007b688a3ef27eec55332500e369a191f | refs/heads/master | 2022-12-09T10:02:19.268154 | 2022-10-03T03:14:16 | 2022-10-03T03:14:16 | 118,091,757 | 1 | 1 | null | 2022-11-26T14:29:04 | 2018-01-19T07:22:23 | C++ | UTF-8 | C++ | false | false | 48 | cpp | #include "stdafx.h"
void ipc_example()
{
} | [
"Vestas.Wey@qq.com"
] | Vestas.Wey@qq.com |
1172e02a85613207ca59b955a76ffae88e870188 | db0de2afe7c2ad4748d6b115bfba9c378d2cb5b3 | /2048-2015-04-05/2048/Classes/GameScene.cpp | 64213cbe7d9be0008f0c96bd419bc63faf5c5386 | [] | no_license | adrianhihi/2048 | 40a50a16833986fb6070eb86f826c37a2792c8bc | 7cbee8812bd0176715a599f3a3cc8bce25bcdc36 | refs/heads/master | 2016-09-05T13:11:17.191609 | 2015-04-06T04:59:52 | 2015-04-06T04:59:52 | 33,467,179 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 13,547 | cpp | //
// GameScene.cpp
// Game2048
//
// Created by ZhaoLei on 2/6/15.
//
//
#include "GameScene.h"
#include <iostream>
#include <SimpleAudioEngine.h>
#include "GameOver.h"
using namespace CocosDenshion;
Scene * Game::createScene() {
auto scene = Scene::create();
auto layer = Game::create();
scene->addChild(layer);
return scene;
};
bool Game::init(){
if (!Layer::init()) {
return false;
}
auto labelGame = Label::createWithBMFont("fonts/futura-48.fnt", "2048");
labelGame->setPosition(Point(labelGame->getContentSize().width/2, GAME_SCREEN_HEIGHT - labelGame->getContentSize().height/2));
this->addChild(labelGame);
auto labelRestart = Label::createWithBMFont("fonts/futura-48.fnt", "Restart");
auto restartItem = MenuItemLabel::create(labelRestart, CC_CALLBACK_1(Game::menuRestart, this));
restartItem->setScale(1.3);
auto menu = Menu::create(restartItem, NULL);
menu->setPosition(Point(Director::getInstance()->getWinSize().width/2, 150));
this->addChild(menu);
//net
colorBack = LayerColor::create(Color4B(170, 170, 170, 255), GAME_TILED_WIDTH * GAME_COLs + GAME_TILED_BOARD_WIDTH * (GAME_COLs + 1), GAME_TILED_HEIGHT * GAME_ROWS + GAME_TILED_BOARD_WIDTH * (GAME_ROWS + 1));
colorBack->ignoreAnchorPointForPosition(false);
colorBack->setPosition(Point(GAME_SCREEN_WIDTH/2, GAME_SCREEN_HEIGHT/2));
this->addChild(colorBack);
//score
score = 0;
auto labelScore = Label::createWithBMFont("fonts/futura-48.fnt", "Score: 0");
labelScore->setPosition(Point(GAME_SCREEN_WIDTH/2, GAME_SCREEN_HEIGHT - labelGame->getContentSize().height/2));
this->addChild(labelScore);
labelScore->setTag(120);
//elements
for (int row = 0; row < GAME_ROWS; row++) {
for (int col = 0; col < GAME_COLs; col ++) {
auto layerTiled = LayerColor::create(Color4B(70, 70, 70, 255), GAME_TILED_WIDTH, GAME_TILED_HEIGHT);
layerTiled->setPosition(Point(GAME_TILED_WIDTH * col + GAME_TILED_BOARD_WIDTH * (col + 1), GAME_TILED_HEIGHT * (row) + GAME_TILED_BOARD_WIDTH * (row + 1)));
colorBack->addChild(layerTiled);
}
}
//initial net
for (int i = 0; i<GAME_ROWS; i++) {
for (int j = 0; j<GAME_COLs; j++) {
map[i][j] = 0;
}
}
//initial number
newMovedTiled();
//touch
auto event = EventListenerTouchOneByOne::create();
event->onTouchBegan = [&](Touch * t, Event* e) {
m_x = t->getLocation().x;
m_y = t->getLocation().y;
m_startMove = true;
return true;
};
event->onTouchMoved = [&](Touch * t, Event * e) {
int x = t->getLocation().x;
int y = t->getLocation().y;
// std::cout<<"m_y - y is: " << m_y -y <<std::endl;
// std::cout<<"m_x - x is: " << m_x -x <<std::endl;
// std::cout << "m_start is" << m_startMove<<std::endl;
if (m_startMove && (abs(m_x-x) >30 || abs(m_y-y) > 30)) {
m_startMove = false;
MOVE_DIR dir;
if (abs(m_x - x) > abs(m_y - y)) {
if (m_x < x) {
dir = RIGHT;
} else{
dir = LEFT;
}
}
else{
if (m_y < y) {
dir = UP;
}
else {
dir = DOWN;
}
}
moveAllTiled(dir);
}
};
Director::getInstance()->getEventDispatcher()->addEventListenerWithSceneGraphPriority(event, this);
return true;
};
void Game::moveAllTiled(MOVE_DIR dir){
soundClear = false;
//
switch (dir) {
case DOWN:
moveDown();
break;
case UP:
moveUp();
break;
case LEFT:
moveLeft();
break;
case RIGHT:
moveRight();
break;
default:
break;
}
//audio
if (soundClear) {
SimpleAudioEngine::getInstance()->playEffect("moveClear.wav");
}
else{
SimpleAudioEngine::getInstance()->playEffect("move1.wav");
}
//score
auto labelScore = (Label *)this->getChildByTag(120);
labelScore->setString(StringUtils::format("score: %d", score));
//game over
//new part generate
newMovedTiled();
};
void Game::newMovedTiled() {
auto tiled = MovedTiled::create();
int freeCount = 16 - allTiled.size();
int num = random(0, freeCount-1);
int count = -1;
int row = 0, col = 0;
bool find = false;
for (; row < GAME_ROWS; row++) {
for (col = 0; col < GAME_COLs; col++) {
if (map[row][col] == 0) {
count ++;
if (count == num) {
find = true;
break;
}
}
}
if (find) {
break;
}
}
if (freeCount !=0) {
tiled->showAt(row, col);
colorBack->addChild(tiled);
allTiled.pushBack(tiled);
map[row][col] = allTiled.getIndex(tiled) + 1;
}
if (freeCount == 1) {
for (int r=0; r<GAME_ROWS; r++) {
for (int c=0; c<GAME_COLs; c++) {
int num = allTiled.at(map[r][c] -1)->m_number;
int objNum = 0;
if (r + 1 < GAME_ROWS) {
objNum = allTiled.at(map[r+1][c]-1)->m_number;
if (num==objNum) {
return;
}
}
if (r-1>=0) {
objNum = allTiled.at(map[r-1][c]-1)->m_number;
if (num==objNum) {
return;
}
}
if (c+1<GAME_COLs) {
objNum = allTiled.at(map[r][c+1]-1)->m_number;
if (num==objNum) {
return;
}
}
if (c-1>=0) {
objNum = allTiled.at(map[r][c-1]-1)->m_number;
if (num==objNum) {
return;
}
}
}
}
auto scene =GameOver::createScene();
Director::getInstance()->replaceScene(TransitionFadeDown::create(0.5, scene));
return;
}
};
void Game::moveUp() {
for (int col = 0; col < GAME_COLs; col++) {
for (int row = GAME_ROWS - 1; row >= 0; row--) {
if (map[row][col] > 0) {
for (int row_temp = row; row_temp < GAME_ROWS - 1; row_temp++) {
if (map[row_temp + 1][col] == 0) {
map[row_temp+1][col] = map[row_temp][col];
map[row_temp][col] = 0;
allTiled.at(map[row_temp+1][col] - 1)->moveTo(UP);
}
else {
int numObj = allTiled.at(map[row_temp + 1][col] - 1)->m_number;
int numNow = allTiled.at(map[row_temp][col] - 1)->m_number;
if (numNow == numObj) {
soundClear = true;
score += numNow*2;
allTiled.at(map[row_temp + 1][col] -1)->doubleNumber();
allTiled.at(map[row_temp][col] -1)->runAction(Sequence::create(MoveBy::create(0.1,Point ::ZERO), RemoveSelf::create(),NULL));
int index = map[row_temp][col];
allTiled.erase(map[row_temp][col]-1);
map[row_temp][col] = 0;
for (int r=0; r<GAME_ROWS ; r++) {
for (int c=0; c<GAME_COLs; c++) {
if (map[r][c] > index) {
map[r][c]--;
}
}
}
}
break;
}
}
}
}
}
};
void Game::moveDown() {
for (int col = 0; col < GAME_COLs; col++) {
for (int row = 0; row < GAME_ROWS; row++) {
if (map[row][col] > 0) {
for (int row_temp = row; row_temp > 0; row_temp--) {
if (map[row_temp - 1][col] == 0) {
map[row_temp-1][col] = map[row_temp][col];
map[row_temp][col] = 0;
allTiled.at(map[row_temp-1][col] - 1)->moveTo(DOWN);
}
else {
int numObj = allTiled.at(map[row_temp - 1][col] - 1)->m_number;
int numNow = allTiled.at(map[row_temp][col] - 1)->m_number;
if (numNow == numObj) {
soundClear = true;
score += numNow*2;
allTiled.at(map[row_temp - 1][col] -1)->doubleNumber();
allTiled.at(map[row_temp][col] -1)->runAction(Sequence::create(MoveBy::create(0.1,Point ::ZERO), RemoveSelf::create(),NULL));
int index = map[row_temp][col];
allTiled.erase(map[row_temp][col]-1);
map[row_temp][col] = 0;
for (int r=0; r<GAME_ROWS ; r++) {
for (int c=0; c<GAME_COLs; c++) {
if (map[r][c] > index) {
map[r][c]--;
}
}
}
}
break;
}
}
}
}
}
};
void Game::moveLeft() {
for (int row = 0; row < GAME_ROWS; row++) {
for (int col = 0; col < GAME_COLs; col++) {
if (map[row][col] > 0) {
for (int col_temp = col; col_temp > 0; col_temp--) {
if (map[row][col_temp-1] == 0) {
map[row][col_temp-1] = map[row][col_temp];
map[row][col_temp] = 0;
allTiled.at(map[row][col_temp-1] - 1)->moveTo(LEFT);
}
else {
int numObj = allTiled.at(map[row][col_temp-1] - 1)->m_number;
int numNow = allTiled.at(map[row][col_temp] - 1)->m_number;
if (numNow == numObj) {
soundClear = true;
score += numNow*2;
allTiled.at(map[row][col_temp-1] -1)->doubleNumber();
allTiled.at(map[row][col_temp] -1)->runAction(Sequence::create(MoveBy::create(0.1,Point ::ZERO), RemoveSelf::create(),NULL));
int index = map[row][col_temp];
allTiled.erase(map[row][col_temp]-1);
map[row][col_temp] = 0;
for (int r=0; r<GAME_ROWS ; r++) {
for (int c=0; c<GAME_COLs; c++) {
if (map[r][c] > index) {
map[r][c]--;
}
}
}
}
break;
}
}
}
}
}
};
void Game::moveRight() {
for (int row = 0; row < GAME_ROWS; row++) {
for (int col = GAME_COLs -1; col >= 0; col--) {
if (map[row][col] > 0) {
for (int col_temp = col; col_temp < GAME_COLs-1; col_temp++) {
if (map[row][col_temp+1] == 0) {
map[row][col_temp+1] = map[row][col_temp];
map[row][col_temp] = 0;
allTiled.at(map[row][col_temp+1] - 1)->moveTo(RIGHT);
}
else {
int numObj = allTiled.at(map[row][col_temp+1] - 1)->m_number;
int numNow = allTiled.at(map[row][col_temp] - 1)->m_number;
if (numNow == numObj) {
soundClear = true;
score += numNow*2;
allTiled.at(map[row][col_temp+1] -1)->doubleNumber();
allTiled.at(map[row][col_temp] -1)->runAction(Sequence::create(MoveBy::create(0.1,Point ::ZERO), RemoveSelf::create(),NULL));
int index = map[row][col_temp];
allTiled.erase(map[row][col_temp]-1);
map[row][col_temp] = 0;
for (int r=0; r<GAME_ROWS ; r++) {
for (int c=0; c<GAME_COLs; c++) {
if (map[r][c] > index) {
map[r][c]--;
}
}
}
}
break;
}
}
}
}
}
};
void Game::menuRestart(Ref * pSender) {
Director::getInstance()->replaceScene(Game::createScene());
} | [
"haimobai@usc.edu"
] | haimobai@usc.edu |
4ae1e30d5690107e38661c086f53ae6645472c60 | d54d471eb9c77d21f6448f9b303d197e1b87a767 | /Sorting algorithms/DataSorted.h | c65e7842a4a47a4bb8fbd76b46b7953b4673de5d | [] | no_license | MananJMehta/OOPS-DSAs-and-CPP | 14b1812dbc2075df70ff2e25f1c9fc011b98adbe | 10e7c01dab9f6f9e4bf26c5e779caaf9e8f071b2 | refs/heads/master | 2021-01-17T08:07:01.898274 | 2017-03-07T08:58:44 | 2017-03-07T08:58:44 | 83,854,714 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 844 | h | //
// DataSorted.h
/*
* Assignment #12: Compare sorting algorithms
*
* CMPE 180-92 Data Structures and Algorithms in C++
* Department of Computer Engineering
* R. Mak, Nov. 20, 2016
*/
#ifndef DATASORTED_H_
#define DATASORTED_H_
#include "DataGenerator.h"
/**
* Generator for already sorted data.
*/
class DataSorted: public DataGenerator
{
public:
DataSorted() {}
virtual ~DataSorted() {}
/**
* Get the name of this data generator.
* @return the name.
*/
string name() { return "Already sorted"; }
/**
* Generate already sorted values (low to high) to fill a vector.
* @param data the data vector to fill.
*/
virtual void generate_data(vector<int>& data, int size)
{
for (int i = 0; i < size; i++) data.push_back(i);
}
};
#endif /* DATASORTED_H_ */
| [
"noreply@github.com"
] | noreply@github.com |
a68d203d425116f028ca264ec56b5d9f534f2eda | 84ff28e829d51446f5d9295adf0ba7fc524dbfd7 | /project/src/Shader.cpp | ef1dcfecf7c4b471ac9b8a715d4996174d9fc390 | [
"MIT"
] | permissive | GCDemoScene/DemoScene | b506663d7470054715f0bd3a45ee299a330874ce | 65519d2a4b1498ef45cf825146c1525e4d0829cf | refs/heads/master | 2021-01-23T06:50:03.059911 | 2015-03-24T08:53:07 | 2015-03-24T08:53:07 | 29,699,390 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,824 | cpp | #include "Shader.hpp"
#include <iostream>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
GLuint compileShader(GLenum shaderType, const char * sourceBuffer, int bufferSize)
{
GLuint shaderObject = glCreateShader(shaderType);
const char * sc[1] = { sourceBuffer };
glShaderSource(shaderObject, 1, sc, NULL);
glCompileShader(shaderObject);
checkCompileError(shaderObject, sc);
return shaderObject;
}
GLuint compileShaderFromFile(GLenum shaderType, const char * path)
{
FILE * shaderFileDesc = fopen( path, "rb" );
if (!shaderFileDesc)
{
std::cerr << "enable to open file" << std::endl;
return 0;
}
fseek ( shaderFileDesc , 0 , SEEK_END );
long fileSize = ftell ( shaderFileDesc );
rewind ( shaderFileDesc );
char * buffer = new char[fileSize + 1];
fread( buffer, 1, fileSize, shaderFileDesc );
buffer[fileSize] = '\0';
GLuint shaderObject = compileShader(shaderType, buffer, fileSize );
delete[] buffer;
return shaderObject;
}
int checkCompileError(GLuint shader, const char ** sourceBuffer)
{
// Get error log size and print it eventually
int logLength;
glGetShaderiv(shader, GL_INFO_LOG_LENGTH, &logLength);
if (logLength > 1)
{
char * log = new char[logLength];
glGetShaderInfoLog(shader, logLength, &logLength, log);
char *token, *string;
string = strdup(sourceBuffer[0]);
int lc = 0;
while ((token = strsep(&string, "\n")) != NULL) {
printf("%3d : %s\n", lc, token);
++lc;
}
fprintf(stderr, "Compile : %s", log);
delete[] log;
}
// If an error happend quit
int status;
glGetShaderiv(shader, GL_COMPILE_STATUS, &status);
if (status == GL_FALSE)
return -1;
return 0;
}
| [
"angeline.guignard@gmail.com"
] | angeline.guignard@gmail.com |
e599764616c1612fb1ca5436ded3c897e79ca379 | c270db7c6783daca0a50b86f85d343fd22c93fd0 | /DearPyGui/src/core/AppItems/misc/mvItemPool.h | 5b5d839a85343d3b341987a2749a29aab6d6055b | [
"MIT"
] | permissive | htnminh/DearPyGui | fdabe58326cc8e1e59ecfca82075a28a835efac5 | bfbcb297f287295fae9766b21a53a99fbb0fe756 | refs/heads/master | 2023-07-10T09:49:05.294126 | 2021-08-21T07:07:28 | 2021-08-21T07:07:28 | 398,491,136 | 0 | 0 | MIT | 2021-08-21T07:06:40 | 2021-08-21T07:06:40 | null | UTF-8 | C++ | false | false | 2,287 | h | #pragma once
#include "mvItemRegistry.h"
namespace Marvel {
//-----------------------------------------------------------------------------
// mvItemSet
//-----------------------------------------------------------------------------
MV_REGISTER_WIDGET(mvItemSet, MV_ITEM_DESC_DEFAULT, StorageValueTypes::None, 1);
class mvItemSet : public mvAppItem
{
friend class mvItemPool;
public:
static void InsertParser(std::map<std::string, mvPythonParser>* parsers);
MV_APPLY_WIDGET_REGISTRATION(mvAppItemType::mvItemSet, add_item_set)
MV_NO_COMMANDS
MV_NO_CONSTANTS
MV_DEFAULT_CHILDREN
MV_START_PARENTS
MV_ADD_PARENT(mvAppItemType::mvItemPool)
MV_END_PARENTS
public:
mvItemSet(mvUUID uuid);
// overriding until we can remove these
bool preDraw() override { return true; }
void postDraw() override {}
void draw(ImDrawList* drawlist, float x, float y) override {}
void handleSpecificRequiredArgs(PyObject* args) override;
void getSpecificConfiguration(PyObject* dict) override;
mvRef<mvAppItem> getItem();
void returnItem(mvRef<mvAppItem> item);
private:
// config
int _itemType = -1;
int _itemCount = 0;
std::vector<mvRef<mvAppItem>> _availableItems;
std::vector<mvRef<mvAppItem>> _returnedItems;
// internal
int _currentAvailableIndex = 0;
int _currentReturnIndex = 0;
};
//-----------------------------------------------------------------------------
// mvItemPool
//-----------------------------------------------------------------------------
MV_REGISTER_WIDGET(mvItemPool, MV_ITEM_DESC_ROOT | MV_ITEM_DESC_CONTAINER, StorageValueTypes::None, 1);
class mvItemPool : public mvAppItem
{
public:
static void InsertParser(std::map<std::string, mvPythonParser>* parsers);
MV_APPLY_WIDGET_REGISTRATION(mvAppItemType::mvItemPool, add_item_pool)
MV_NO_COMMANDS
MV_DEFAULT_PARENTS
MV_NO_CONSTANTS
MV_START_CHILDREN
MV_ADD_CHILD(mvAppItemType::mvItemSet)
MV_END_CHILDREN
public:
mvItemPool(mvUUID uuid);
// overriding until we can remove these
bool preDraw() override { return true; }
void postDraw() override {}
void draw(ImDrawList* drawlist, float x, float y) override {}
mvRef<mvAppItem> getItem(mvAppItemType itemType);
void returnItem(mvRef<mvAppItem> item);
};
}
| [
"noreply@github.com"
] | noreply@github.com |
ad7c169028ec68e3b399272cfcfe99506f3992f8 | 0178c643685f0a3ef8626c50be44f3a8a47cce69 | /sequence1/src/backup/homotopy/homotopy_eth_main.cpp | f688222a73fb58acd0feff12de1fc30f1eb5e78b | [] | no_license | hfgong/trpl | a96234e6a060d3ff19d24b054988b9d9fb634410 | 896116e16a9035b1ad992b4e39a0925b414a69fd | refs/heads/master | 2020-03-30T14:08:13.663233 | 2011-03-04T16:09:41 | 2011-03-04T16:09:41 | 1,439,719 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 21,867 | cpp | #include <iostream>
#include <algorithm>
#include <vector>
#include <numeric>
#include <limits>
#include <boost/filesystem.hpp>
#include <boost/format.hpp>
#include <boost/lambda/lambda.hpp>
#include <boost/lambda/casts.hpp>
#include <boost/lambda/bind.hpp>
#include <boost/numeric/ublas/matrix.hpp>
#include <boost/numeric/ublas/assignment.hpp>
#include <boost/numeric/ublas/lu.hpp>
#include <boost/numeric/bindings/traits/ublas_vector.hpp>
#include <boost/numeric/bindings/traits/ublas_sparse.hpp>
#include <boost/numeric/bindings/umfpack/umfpack.hpp>
#include <boost/numeric/ublas/io.hpp>
#include <boost/iterator/counting_iterator.hpp>
#include <boost/graph/graph_traits.hpp>
#include <boost/graph/adjacency_list.hpp>
#include <boost/graph/dijkstra_shortest_paths.hpp>
#include <CImg.h>
#include "statistics.hpp"
#include "cvpr_array_traits.hpp"
#include "real_timer.hpp"
#include "text_file.hpp"
#include "misc_utils.hpp"
namespace umf=boost::numeric::bindings::umfpack;
using namespace boost::numeric::ublas;
using namespace boost;
using namespace cvpr;
using namespace cimg_library;
namespace fs = boost::filesystem;
typedef cvpr::sparse_matrix_t<double>::type umf_sparse_matrix;
struct directory_structure_t
{
directory_structure_t() {
prefix = "../training_data/seq_eth/";
output = "../test/output2/";
workspace = "../test/workspace/";
figures = "../test/figures/";
}
void make_dir(){
if ( !fs::exists( prefix ) )
{
fs::create_directory( prefix );
}
if ( !fs::exists( workspace ) )
{
fs::create_directory( workspace );
}
if ( !fs::exists( output ) )
{
fs::create_directory( output );
}
if ( !fs::exists( figures ) )
{
fs::create_directory( figures );
}
}
std::string prefix;
std::string output;
std::string workspace;
std::string figures;
};
#include "homotopy.hpp"
void read_jpeg_list(std::string const& prefix,
std::vector<std::string>& jpg_names)
{
using namespace boost::numeric::ublas;
using namespace boost::lambda;
using namespace boost;
fs::path full_path(prefix);
std::vector<fs::path> files;
typedef fs::directory_iterator diter;
bool (*is_file)(fs::path const&) = &fs::is_regular_file;
std::copy_if(diter(full_path), diter(), std::back_inserter(files), is_file);
vector<std::string> file_names(files.size());
std::transform(files.begin(), files.end(), file_names.begin(),
bind(&fs::path::string, _1));
bool (*check_end)(std::string const&, std::string const&) = &boost::ends_with;
bool (*check_start)(std::string const&, std::string const&) =&boost::starts_with;
function<bool (std::string const&)> jpg_filt = bind(check_end, _1, ".jpeg");
std::copy_if(file_names.begin(), file_names.end(), std::back_inserter(jpg_names),
jpg_filt);
std::for_each(jpg_names.begin(), jpg_names.end(), _1=bind(&fs::path::filename, _1));
//std::for_each(jpg_names.begin(), jpg_names.end(), std::cout<<_1<<'\n');
}
struct ground_lim_t
{
double xmin, xmax, ymin, ymax;
};
template <class Float>
void draw_positions(CImg<unsigned char>& image,
matrix<Float> const& pos,
vector<int> const& obj,
int tt,
vector<matrix<double> > const& hist_pos,
vector<vector<int> >& hist_time)
{
using namespace boost::lambda;
unsigned char pcol[3]={255, 0, 0};
unsigned char lcol[3]={0, 255, 0};
//image.draw_line(0, 0, 100, 100, pcol);
std::string num = lexical_cast<std::string>(pos.size1());
unsigned char tcol[3]={255, 255, 255};
//image.draw_text(200, 10, num.c_str(), tcol);
for(int pp=0; pp<pos.size1(); ++pp)
{
image.draw_circle(static_cast<int>(pos(pp, 0)+0.5l),
static_cast<int>(pos(pp, 1)+0.5l),
5, pcol, 1);
std::string num = lexical_cast<std::string>(obj(pp));
image.draw_text(static_cast<int>(pos(pp, 0)+0.5l),
static_cast<int>(pos(pp, 1)+0.5l),
num.c_str(), tcol);
for(int ss=0; ss+1<hist_pos(obj(pp)).size1(); ++ss)
{
image.draw_line(static_cast<int>(hist_pos(obj(pp))(ss, 0)+0.5l),
static_cast<int>(hist_pos(obj(pp))(ss, 1)+0.5l),
static_cast<int>(hist_pos(obj(pp))(ss+1, 0)+0.5l),
static_cast<int>(hist_pos(obj(pp))(ss+1, 1)+0.5l),
lcol);
if(hist_time(obj(pp))(ss+1)>=tt) break;
}
}
}
void draw_ground_positions(CImg<float>& gmap,
vector<matrix<double> > const& pos,
ground_lim_t const& glim,
double grid)
{
using namespace boost::lambda;
unsigned char pcol[3]={255, 0, 0};
unsigned char lcol[3]={0, 255, 0};
std::string num = lexical_cast<std::string>(pos.size());
unsigned char tcol[3]={255, 255, 255};
for(int pp=0; pp<pos.size(); ++pp)
{
int st = pos(pp).size1();
if(st == 0) continue;
double g1 = (pos(pp)(st-1, 0)-glim.xmin)/grid+0.5l;
double g2 = (pos(pp)(st-1, 1)-glim.ymin)/grid+0.5l;
gmap.draw_circle(static_cast<int>(g1),
static_cast<int>(g2),
5, pcol, 1);
std::string num = lexical_cast<std::string>(pp);
gmap.draw_text(static_cast<int>(g1),
static_cast<int>(g2),
num.c_str(), tcol);
for(int ss=0; ss+1<st; ++ss)
{
double g1 = (pos(pp)(ss, 0)-glim.xmin)/grid+0.5l;
double g2 = (pos(pp)(ss, 1)-glim.ymin)/grid+0.5l;
double h1 = (pos(pp)(ss+1, 0)-glim.xmin)/grid+0.5l;
double h2 = (pos(pp)(ss+1, 1)-glim.ymin)/grid+0.5l;
gmap.draw_line(static_cast<int>(g1),
static_cast<int>(g2),
static_cast<int>(h1),
static_cast<int>(h2),
lcol);
}
}
}
//[frame_number pedestrian_ID pos_x pos_z pos_y v_x v_z v_y ]
//however pos_z and v_z (direction perpendicular to the ground) are not used.
void extract_frame_pos(matrix<double> const& obsmat, int T,
vector<matrix<double> >& frame_pos,
vector<vector<int> >& frame_obj)
{
using namespace boost::lambda;
matrix_column<matrix<double>const > col(obsmat, 0);
vector<int> frame_num(col.size());
std::transform(col.begin(), col.end(), frame_num.begin(),
ll_static_cast<int>(_1+0.5l) );
int num_rec = frame_num.size();
frame_pos = vector<matrix<double> >(T);
frame_obj = vector<vector<int> >(T);
vector<std::vector<int> > rec_idx(T);
for(int ii=0; ii<num_rec; ++ii)
{
int tt = frame_num(ii)-1;
if(tt<T) rec_idx(tt).push_back(ii);
}
for(int tt=0; tt<T; ++tt)
{
frame_pos(tt) = scalar_matrix<double>(rec_idx(tt).size(), 2, 0.0l);
frame_obj(tt) = scalar_vector<int>(rec_idx(tt).size(), 0);
for(int kk=0; kk<rec_idx(tt).size(); ++kk)
{
frame_pos(tt)(kk, 0) = obsmat(rec_idx(tt)[kk], 2);
frame_pos(tt)(kk, 1) = obsmat(rec_idx(tt)[kk], 4);
frame_obj(tt)(kk) = static_cast<int>(obsmat(rec_idx(tt)[kk], 1)+0.5l)-1;
}
}
}
void extract_object_pos(matrix<double> const& obsmat,
vector<matrix<double> >& object_pos,
vector<vector<int> >& object_time)
{
using namespace boost::lambda;
matrix_column<matrix<double>const > col(obsmat, 1);
vector<int> object_id(col.size());
std::transform(col.begin(), col.end(), object_id.begin(),
ll_static_cast<int>(_1+0.5l) );
int num_rec = object_id.size();
int num_obj = *std::max_element(object_id.begin(), object_id.end());
object_pos = vector<matrix<double> >(num_obj);
object_time = vector<vector<int> >(num_obj);
vector<std::vector<int> > rec_idx(num_obj);
for(int ii=0; ii<num_rec; ++ii)
{
int oo = object_id(ii)-1;
rec_idx(oo).push_back(ii);
}
for(int oo=0; oo<num_obj; ++oo)
{
object_pos(oo) = scalar_matrix<double>(rec_idx(oo).size(), 2, 0.0l);
object_time(oo) = scalar_vector<int>(rec_idx(oo).size(), 0);
for(int kk=0; kk<rec_idx(oo).size(); ++kk)
{
object_pos(oo)(kk, 0) = obsmat(rec_idx(oo)[kk], 2);
object_pos(oo)(kk, 1) = obsmat(rec_idx(oo)[kk], 4);
object_time(oo)(kk) = static_cast<int>(obsmat(rec_idx(oo)[kk], 0)+0.5l)-1;
}
}
}
void homopgray_apply(matrix<double> const& H,
matrix<double> const& prev,
matrix<double>& after)
{
after = matrix<double>(prev.size1(), 2);
for(int ii=0; ii<prev.size1(); ++ii)
{
vector<double> v(3);
v <<= prev(ii, 0), prev(ii, 1), 1.0l;
vector<double> vr = prod(H, v);
vr /= vr(2);
after(ii, 0) = vr(0);
after(ii, 1) = vr(1);
}
}
void interpolate_object_pos(vector<matrix<double> > const& object_pos,
vector<vector<int> > const& object_time,
vector<matrix<double> > & interp_pos,
vector<vector<int> >& interp_time)
{
int N = object_pos.size();
interp_pos = vector<matrix<double> >(N);
interp_time = vector<vector<int> >(N);
for(int nn=0; nn<N; ++nn)
{
int st = object_time(nn).size();
if(st==0) continue;
if(st==1)
{
interp_pos(nn) = object_pos(nn);
interp_time(nn) = object_time(nn);
continue;
}
int dt = object_time(nn)(st-1) - object_time(nn)(0) +1;
interp_pos(nn) = matrix<double>(dt, 2);
interp_time(nn) = vector<int>(dt);
int t0 = object_time(nn)(0);
for(int ss=0; ss+1<st; ++ss)
{
int t1 = object_time(nn)(ss);
int t2 = object_time(nn)(ss+1);
for(int tt=t1; tt<=t2; ++tt)
{
interp_pos(nn)(tt-t0, 0) = object_pos(nn)(ss, 0)*(t2-tt)/(t2-t1)
+object_pos(nn)(ss+1, 0)*(tt-t1)/(t2-t1);
interp_pos(nn)(tt-t0, 1) = object_pos(nn)(ss, 1)*(t2-tt)/(t2-t1)
+object_pos(nn)(ss+1, 1)*(tt-t1)/(t2-t1);
}
}
std::copy(counting_iterator<int>(t0),
counting_iterator<int>(t0+dt),
interp_time(nn).begin());
}
}
void translate_frame_pos(vector<matrix<double> > const& object_pos,
vector<vector<int> > &object_time, int T,
vector<matrix<double> > & frame_pos,
vector<vector<int> > & frame_obj)
{
using namespace boost::lambda;
int num_obj = object_pos.size();
frame_pos = vector<matrix<double> >(T);
frame_obj = vector<vector<int> >(T);
vector<std::vector<int> > o_idx(T);
vector<std::vector<int> > s_idx(T);
for(int oo=0; oo<num_obj; ++oo)
{
for(int ss=0; ss<object_time(oo).size(); ++ss)
{
int tt = object_time(oo)(ss);
if(tt<T)
{
//std::cout<<"tt="<<tt<<std::endl;
o_idx(tt).push_back(oo);
s_idx(tt).push_back(ss);
}
}
}
for(int tt=0; tt<T; ++tt)
{
frame_pos(tt) = scalar_matrix<double>(o_idx(tt).size(), 2, 0.0l);
frame_obj(tt) = scalar_vector<int>(o_idx(tt).size(), 0);
for(int kk=0; kk<o_idx(tt).size(); ++kk)
{
int oo = o_idx(tt)[kk];
int ss = s_idx(tt)[kk];
frame_pos(tt)(kk, 0) = object_pos(oo)(ss, 0);
frame_pos(tt)(kk, 1) = object_pos(oo)(ss, 1);
frame_obj(tt)(kk) = oo;
}
}
}
template <class Mat1, class Mat2>
void compute_ground_map(Mat1 const& map,
matrix<double> const& H_grd2img,
ground_lim_t const& glim,
double grid,
Mat2 & gmap)
{
typedef array2d_traits<Mat1> tr1;
typedef array2d_traits<Mat2> tr2;
int gsize1 = static_cast<int>((glim.ymax-glim.ymin)/grid)+1;
int gsize2 = static_cast<int>((glim.xmax-glim.xmin)/grid)+1;
tr2::change_size(gmap, gsize1, gsize2);
matrix<double> prev(gsize1*gsize2, 2);
matrix<int> m(gsize1*gsize2, 2);
int ii=0;
for(int yy=0; yy<gsize1; ++yy)
{
for(int xx=0; xx<gsize2; ++xx)
{
prev(ii, 0) = xx*grid+glim.xmin;
prev(ii, 1) = yy*grid+glim.ymin;
m(ii, 0) = xx;
m(ii, 1) = yy;
++ii;
}
}
matrix<double> after;
homopgray_apply(H_grd2img, prev, after);
for(int ii=0; ii<gsize1*gsize2; ++ii)
{
int yy = m(ii, 1);
int xx = m(ii, 0);
double iy = after(ii, 1);
double ix = after(ii, 0);
tr2::ref(gmap, yy, xx) = static_cast<typename tr2::value_type>
(map.linear_atXY(ix, iy)); //CImg
}
}
void translate_ground_pos(vector<matrix<double> > const& interp_pos,
ground_lim_t const& glim, double grid,
vector<matrix<int> >& gmap_pos)
{
int np = interp_pos.size();
gmap_pos = vector<matrix<int> >(np);
for(int pp=0; pp<np; ++pp)
{
int nt = interp_pos(pp).size1();
gmap_pos(pp) = matrix<int>(nt, 2);
for(int tt=0; tt<nt; ++tt)
{
gmap_pos(pp)(tt, 0) =
static_cast<int>((interp_pos(pp)(tt, 0)-glim.xmin)/grid+0.5l);
gmap_pos(pp)(tt, 1) =
static_cast<int>((interp_pos(pp)(tt, 1)-glim.ymin)/grid+0.5l);
}
}
}
void fix_object_pos(vector<matrix<int> > const& gmap_pos,
vector<vector<int> > const& interp_time,
matrix<int> const& obs,
vector<matrix<int> > & fixed_pos,
vector<vector<int> > & fixed_time)
{
int np = gmap_pos.size();
fixed_pos = vector<matrix<int> >(np);
fixed_time = vector<vector<int> >(np);
for(int pp=0; pp<np; ++pp)
{
std::vector<int> idx;
for(int tt=0; tt<gmap_pos(pp).size1(); ++tt)
{
int xx = gmap_pos(pp)(tt, 0);
int yy = gmap_pos(pp)(tt, 1);
if(xx>=0 && xx<obs.size2() && yy>=0 && yy<obs.size1())
{
if(obs(yy, xx)==0) idx.push_back(tt);
}
}
if(idx.size()==0) continue;
bool cont_t=true;
for(int ss=0; ss+1<idx.size(); ++ss)
{
if(idx[ss]+1!=idx[ss+1])
{
cont_t = false;
break;
}
}
if(!cont_t) continue;
fixed_pos(pp) = matrix<int>(idx.size(), 2);
fixed_time(pp) = vector<int>(idx.size());
for(int ss=0; ss<idx.size(); ++ss)
{
int tt = idx[ss];
fixed_pos(pp)(ss, 0) = gmap_pos(pp)(tt, 0);
fixed_pos(pp)(ss, 1) = gmap_pos(pp)(tt, 1);
fixed_time(pp)(ss) = interp_time(pp)(tt);
}
}
}
void test_wind_angle()
{
int ng = 6;
int no = 2;
vector<vector<int> > sg(ng);
vector<vector<double> > fdist(ng);
matrix<int> ig2yx(ng, 2);
matrix<double> obs(no, 2);
sg(0) = vector<int>(2);
sg(1) = vector<int>(3);
sg(2) = vector<int>(2);
sg(3) = vector<int>(2);
sg(4) = vector<int>(3);
sg(5) = vector<int>(2);
sg(0) <<= 1, 3;
sg(1) <<= 0, 2, 4;
sg(2) <<= 1, 5;
sg(3) <<= 0, 4;
sg(4) <<= 1, 3, 5;
sg(5) <<= 2, 4;
fdist(0) = scalar_vector<double>(2, 1.0l);
fdist(1) = scalar_vector<double>(3, 1.1l);
fdist(2) = scalar_vector<double>(2, 1.2l);
fdist(3) = scalar_vector<double>(2, 1.3l);
fdist(4) = scalar_vector<double>(3, 1.4l);
fdist(5) = scalar_vector<double>(2, 1.5l);
ig2yx <<= 1, -2,
1, 0,
1, 2,
-1, -2,
-1, 0,
-1, 2;
obs <<= 1, 0,
-1, 0;
int wnum_l = -1;
int wnum_u = 0;
//int wnum_l = -2;
//int wnum_u = 1;
vector<vector<int> > result_path;
vector<double> result_dist;
vector<vector<int> > result_wind_num;
wind_angle_planning(sg, fdist, ig2yx, obs, wnum_l, wnum_u, 0, 2,
result_path, result_dist, result_wind_num);
}
int main(int argc, char* argv[])
{
//test_dijk();
//return 0;
//test_wind_angle();
//return 0;
using namespace boost::lambda;
directory_structure_t ds;
ds.make_dir();
std::vector<std::string> seq;
read_jpeg_list(ds.prefix+"images/", seq);
matrix<double> obsmat;
read_text_array2d(ds.prefix+"obsmat.txt", obsmat);
array2d_print(std::cout, project(obsmat, range(0, 5), range::all()));
matrix_column<matrix<double> > colx(obsmat, 2), coly(obsmat, 4);
ground_lim_t glim;
glim.xmax = *std::max_element(colx.begin(), colx.end())+0.5l;
glim.xmin = *std::min_element(colx.begin(), colx.end())-0.5l;
glim.ymax = *std::max_element(coly.begin(), coly.end())+0.5l;;
glim.ymin = *std::min_element(coly.begin(), coly.end())-0.5l;
matrix<double> H; //homography from image to ground
read_text_array2d(ds.prefix+"H.txt", H);
std::cout<<"H="<<std::endl;
array2d_print(std::cout, H);
std::cout<<"Hinv="<<std::endl;
matrix<double> Hinv = inverse(H); //homography from ground to image
array2d_print(std::cout, Hinv);
int T = seq.size();
std::string map_name = ds.prefix+"map2.png";
CImg<unsigned char> map(map_name.c_str()); //map on image plane
map.permute_axes("yxzc");
CImg<float> gmap;
double grid = 0.05;
compute_ground_map(map, Hinv, glim, grid, gmap);
{
std::string name = ds.figures+"gmap.png";
gmap.save_png(name.c_str());
}
vector<matrix<double> > object_pos;
vector<vector<int> > object_time;
extract_object_pos(obsmat, object_pos, object_time);
vector<matrix<double> > interp_pos;
vector<vector<int> > interp_time;
interpolate_object_pos(object_pos, object_time, interp_pos, interp_time);
matrix<int> obs;
array2d_transform(gmap, obs, ll_static_cast<int>(_1+0.5f)>=250);
CImg<float> gmap_vis=gmap;
gmap_vis.resize(-100, -100, -100, -300);
draw_ground_positions(gmap_vis, interp_pos, glim, grid);
{
std::string name = ds.figures+"gtrj.png";
gmap_vis.save_png(name.c_str());
}
vector<matrix<int> > gmap_pos;
translate_ground_pos(interp_pos, glim, grid, gmap_pos);
vector<matrix<int> > fixed_pos; //remove trj hits obstacles
vector<vector<int> > fixed_time;
fix_object_pos(gmap_pos, interp_time, obs, fixed_pos, fixed_time);
for(int pp = 1; pp<80; ++pp)
{
//int pp = 7;
std::cout<<"object "<<pp<<std::endl;
if(fixed_time(pp).size()==0) continue;
int tt = fixed_time(pp)(0);
matrix<int>& path = fixed_pos(pp);
matrix<int> dyn_obs=scalar_matrix<int>(obs.size1(), obs.size2(), 0);
std::vector<int> obs_x, obs_y;
for(int oo=0; oo<fixed_pos.size(); ++oo)
{
if(oo==pp) continue;
int nt = fixed_time(oo).size();
for(int ss=0; ss<nt; ++ss)
{
if(tt!=fixed_time(oo)(ss)) continue;
int x0 = fixed_pos(oo)(ss, 0);
int y0 = fixed_pos(oo)(ss, 1);
if(std::abs(x0-path(0, 0))<=5 && std::abs(y0-path(0, 1))<=5)
break;
obs_x.push_back(x0);
obs_y.push_back(y0);
for(int xx=x0-4; xx<=x0+4; ++xx)
{
if(xx<=0 || xx>=dyn_obs.size2()) continue;
for(int yy=y0-4; yy<=y0+4; ++yy)
{
if(yy<=0 || yy>=dyn_obs.size1()) continue;
dyn_obs(yy, xx) = 1;
}
}
}
}
if(0 == obs_x.size()) continue;
vector<matrix<float> > feat;
generate_feature_maps(obs, dyn_obs, feat);
for(int ii=0; ii<feat.size(); ++ii)
{
CImg<unsigned char> vis_feat;
double maxf = *(std::max_element(feat(ii).data().begin(), feat(ii).data().end()));
array2d_transform(feat(ii), vis_feat, ll_static_cast<unsigned char>(_1*254/maxf));
std::string name = ds.figures+
str(format("vis_feat%03d-%03d.png")%pp%ii);
vis_feat.save_png(name.c_str());
}
vector<vector<int> > sg; //(num_states, num_neighbors)
matrix<vector<double> > fg; //(num_features, num_states, num_neighbors)
matrix<int> yx2ig;
matrix<int> ig2yx;
std::cout<<"graphing"<<std::endl;
real_timer_t timerx;
get_state_graph(obs, dyn_obs, sg, yx2ig, ig2yx);
get_feature_graph(obs, dyn_obs, feat, sg, ig2yx, fg);
std::cout<<"graphing time:"<<timerx.elapsed()/1000.0f<<std::endl;
vector<int> path_ig;
get_path_gindex(path, yx2ig, path_ig);
vector<double> wei(feat.size()+1);
//wei <<= 3.03502, 7.03021, 15.8033, 2;
wei <<= 1.61642, 7.03021, 15.3362, 1.23757;
int ng = sg.size();
vector<vector<double> > fdist(ng);
for(int gg=0; gg<ng; ++gg)
{
fdist(gg) = scalar_vector<double>(sg(gg).size(), 0.0l);
for(int nn=0; nn<sg(gg).size(); ++nn)
{
for(int ff=0; ff<fg.size1(); ++ff)
{
fdist(gg)(nn) += fg(ff, gg)(nn)*wei(ff);
}
}
}
int start = path_ig(0);
int goal = path_ig(path_ig.size()-1);
vector<int> spath;
real_timer_t timerd;
std::cout<<"dijkstra..."<<std::endl;
//shortest_path(sg, fdist, start, goal, spath);
int wnum_l = -1;
int wnum_u = 0;
if(obs_x.size()>3) //change to use critical obstacles
{
obs_x.erase(obs_x.begin()+3, obs_x.end());
obs_y.erase(obs_y.begin()+3, obs_y.end());
}
matrix<double> obs_cent(obs_x.size(), 2);
{
matrix_column<matrix<double> > colx(obs_cent, 0);
std::copy(obs_x.begin(), obs_x.end(), colx.begin());
matrix_column<matrix<double> > coly(obs_cent, 1);
std::copy(obs_y.begin(), obs_y.end(), coly.begin());
}
vector<vector<int> > result_path;
vector<double> result_dist;
vector<vector<int> > result_wind_num;
wind_angle_planning(sg, fdist, ig2yx, obs_cent, wnum_l, wnum_u,
start, goal,
result_path, result_dist, result_wind_num);
//construct_augmented_graph(sg, fdist, ig2yx, obs_cent, wnum_l, wnum_u);
std::cout<<"dijkstra time:"<<timerd.elapsed()/1000.f<<std::endl;
#if 0
std::cout<<"start="<<start<<std::endl;
std::cout<<"goal="<<goal<<std::endl;
std::cout<<"sg.size="<<sg.size()<<std::endl;
std::cout<<"obs(start)="<<obs(path(0, 1), path(0, 0))<<std::endl;
std::cout<<"obs(goal)="<<obs(path(path.size1()-1, 1),
path(path.size1()-1, 0))<<std::endl;
std::cout<<"start="<<path(0, 1)<<", "<<path(0, 0)<<std::endl;
std::cout<<"goal="<<path(path.size1()-1, 1)<<", "
<<path(path.size1()-1, 0)<<std::endl;
std::cout<<"obs.size="<<obs.size1()<<", "<<obs.size2()<<std::endl;
#endif
for(int zz=0; zz<result_path.size(); ++zz)
{
CImg<unsigned char> vis_vmap;
array2d_transform(gmap, vis_vmap,
ll_static_cast<unsigned char>(_1));
unsigned char scol[3]={255, 0, 0};
unsigned char gcol[3]={0, 0, 255};
unsigned char lcol[3]={0, 255, 0};
unsigned char ocol[3]={0, 255, 255};
vis_vmap.resize(-100, -100, -100, -300);
vis_vmap.draw_circle(path(0, 0), path(0, 1), 5, scol);
vis_vmap.draw_circle(path(path.size1()-1, 0),
path(path.size1()-1, 1), 5, gcol);
for(int tt=0; tt+1<path.size1(); ++tt)
{
vis_vmap.draw_line(path(tt, 0), path(tt, 1),
path(tt+1, 0), path(tt+1, 1), lcol);
}
vector<int>& spath = result_path(zz);
for(int ss=0; ss+1<spath.size(); ++ss)
{
int gg = spath(ss);
int g2 = spath(ss+1);
vis_vmap.draw_line(ig2yx(gg, 1), ig2yx(gg, 0),
ig2yx(g2, 1), ig2yx(g2, 0),
gcol);
}
for(int oo=0; oo<obs_x.size(); ++oo)
{
vis_vmap.draw_circle(obs_x[oo], obs_y[oo], 4, ocol);
}
std::string name = ds.figures+
str(format("homotopy%03d-%03d.png")%pp%zz);
vis_vmap.save_png(name.c_str());
}
}
return 0;
}
| [
"haifeng@v03-64.vision"
] | haifeng@v03-64.vision |
63edef2e157bbfbd3c5c0a69bcc9d32c304f46bb | e9af6102d60621ab77f593e0e7fb3a23cd7c13ca | /Program/source/project/femmodel.cpp | 64814e98e6e604ae3311e8c98eea3e721efc3b6a | [] | no_license | NII-APP/NPO | 209390838c6dbdc0b6ce647d998936a75876faca | 5b5ced5b9a1b9c605243fdcf3440b95f23d5c42f | refs/heads/master | 2020-05-30T04:37:52.454852 | 2016-10-17T12:12:05 | 2016-10-17T12:12:05 | 25,005,665 | 2 | 4 | null | null | null | null | UTF-8 | C++ | false | false | 13,138 | cpp | #include "femmodel.h"
#include <cassert>
#include <exception>
#include <QModelIndex>
#include <QDialog>
#include <fem.h>
#include "identity.h"
#include "application.h"
#include "project.h"
#include "kernel/eigenmodesfounder.h"
#include "gui/mainWindow/mainwindow.h"
FEMModel::FEMModel(const Project * p, QObject* parent)
: QAbstractItemModel(parent)
, __project(p)
{
Q_ASSERT(sizeof(quintptr) >= 4);
}
bool FEMModel::isRootIndex(const QModelIndex& i) {
return i.row() == -1 && i.column() == -1 && !i.internalId();
}
bool FEMModel::isTopIndex(const QModelIndex& i) {
return !i.internalId() && !isRootIndex(i);
}
bool FEMModel::isInfoIndex(const QModelIndex& i) {
return i.internalId() && !(i.internalId() >> 16);
}
FEMModel::ModelRow FEMModel::modelRole(const int row, const int model) const {
switch (row) {
case 0:
return Vertexes;
case 1:
try {
return __project->FEMList().at(model)->getModes().empty() ? ImportModes : MAC;
} catch (...) {
#ifdef VIEWERMODEL_DEBUG
qDebug() << model << "value fail";
#endif
return WrongId;
}
case 2:
try {
return __project->FEMList().at(model)->getModes().empty() ? ModesIdentification : Modes;
} catch (...) {
#ifdef VIEWERMODEL_DEBUG
qDebug() << model << "value fail";
#endif
return WrongId;
}
case 3:
try {
return __project->FEMList().at(model)->getModes().empty() ? ModesCompute : WrongId;
} catch (...) {
#ifdef VIEWERMODEL_DEBUG
qDebug() << model << "value fail";
#endif
return WrongId;
}
}
return WrongId;
}
FEMModel::ModelRow FEMModel::modelRole(const QModelIndex& i) const {
if (i.internalId() >> 16) {
return static_cast<ModelRow>(i.internalId() >> 16);
} else if (isInfoIndex(i)) {
return modelRole(i.row(), modelId(i));
}
return WrongId;
}
int FEMModel::toRow(ModelRow r) {
switch (r) {
case Vertexes:
return 0;
case MAC: case ImportModes:
return 1;
case Modes: case ModesIdentification: default:
return 2;
}
}
int FEMModel::modelId(const QModelIndex& i) {
if (isRootIndex(i)) {
return -1;
}
return isTopIndex(i) ? i.row() : (i.internalId() & 0xFFFF) - 1;
}
Qt::ItemFlags FEMModel::flags(const QModelIndex &index) const
{
if (isTopIndex(index)) {
return QAbstractItemModel::flags(index) | Qt::ItemIsEditable;
}
return QAbstractItemModel::flags(index);
}
QModelIndex FEMModel::index(int row, int column, const QModelIndex &parent) const {
#ifdef VIEWERMODEL_DEBUG
qDebug() << "index" << row << parent << parent.internalId();
#endif
if (isRootIndex(parent)) {
#ifdef VIEWERMODEL_DEBUG
qDebug() << "\ttopLevel" << createIndex(row, column, (quintptr)0);
#endif
//if it's a first-level item the number of model is a row
return createIndex(row, column, (quintptr)0);
} else {
//otherwice innerId is the black magic!
//last 4 bytes separated for two parts: first two bytes is a row in model information, last two - model id
if (isInfoIndex(parent)) {
#ifdef VIEWERMODEL_DEBUG
qDebug() << "create second depance lavel" << parent << QString::number(parent.internalId() | (static_cast<quintptr>(modelRole(parent.row(), modelId(parent))) << 16), 16);
#endif
return createIndex(row, column, parent.internalId() | (static_cast<quintptr>(modelRole(parent.row(), modelId(parent))) << 16));
} else {
#ifdef VIEWERMODEL_DEBUG
qDebug() << "create first depance lavel" << parent.row() + 1 << parent;
#endif
return createIndex(row, column, parent.row() + 1);
}
}
}
QModelIndex FEMModel::FEMIndex(int femId) const
{
return index(femId, 0, QModelIndex());
}
QModelIndex FEMModel::FEMIndex(const FEM* femId) const
{
return index(__project->toId(femId), 0, QModelIndex());
}
QModelIndex FEMModel::parent(const QModelIndex & index) const {
#ifdef VIEWERMODEL_DEBUG
qDebug() << "parent" << index;
#endif
if (isRootIndex(index) || isTopIndex(index)) {
#ifdef VIEWERMODEL_DEBUG
qDebug() << "\troot" << index;
#endif
return QModelIndex();
} else if (isInfoIndex(index)) {
#ifdef VIEWERMODEL_DEBUG
qDebug() << "\ttop" << createIndex(modelId(index), 0);
#endif
return createIndex(modelId(index), 0);
} else {
#ifdef VIEWERMODEL_DEBUG
qDebug() << "\tinfo" << createIndex(toRow(modelRole(index)), 0, index.internalId() & 0xFFFF);
#endif
return createIndex(toRow(modelRole(index)), 0, index.internalId() & 0xFFFF);
}
}
int FEMModel::columnCount(const QModelIndex &) const { return 1; }
int FEMModel::rowCount(const QModelIndex & i) const {
#ifdef VIEWERMODEL_DEBUG
qDebug() << "rowCount" << i;
#endif
if (isRootIndex(i)) {
#ifdef VIEWERMODEL_DEBUG
qDebug() << "\troot" << static_cast<int>(__project->FEMList().size() + 1);
#endif
return static_cast<int>(__project->FEMList().size() + 1);
}
if (isTopIndex(i)) {
try {
#ifdef VIEWERMODEL_DEBUG
qDebug() << "\ttop" << (__project->FEMList().at(i.row())->getModes().empty() ? WithoutModes : WithModes);
#endif
return __project->FEMList().at(i.row())->getModes().empty() ? WithoutModes : WithModes;
} catch (...) {
#ifdef VIEWERMODEL_DEBUG
qDebug() << "\ttopReject";
#endif
return 0;
}
}
if (!isInfoIndex(i)) {
#ifdef VIEWERMODEL_DEBUG
qDebug() << "\tinModes" << 0;
#endif
return 0;
}
switch (modelRole(i)) {
case Modes:
#ifdef VIEWERMODEL_DEBUG
qDebug() << "\tmodes";
#endif
try {
const EigenModes& modes(__project->FEMList().at(modelId(i))->getModes());
return static_cast<int>(modes.size());
} catch (...) {
return 0;
}
default:
#ifdef VIEWERMODEL_DEBUG
qDebug() << "\tenother";
#endif
return 0;
}
}
QVariant FEMModel::headerData(int, Qt::Orientation, int role) const {
if (role == Qt::DisplayRole) {
return Application::identity()->tr("models list", "viewer model");
}
return QVariant();
}
bool FEMModel::setData(const QModelIndex &index, const QVariant &value, int role)
{
assert(role == Qt::EditRole);
if (role != Qt::EditRole) {
return false;
}
try {
Project::ConstModels models(__project->FEMList());
Application::nonConstProject()->constCast(models.at(index.row()))->setName(value.toString());
emit dataChanged(index, index, QVector<int>{ Qt::DisplayRole });
return true;
} catch(...) {
return false;
}
}
bool FEMModel::removeFEM(int id)
{
try {
this->beginRemoveRows(QModelIndex(), id, id);
Application::nonConstProject()->deleteFEM(Application::project()->toFEM(id));
this->endRemoveRows();
return true;
} catch(...) {
return false;
}
}
void FEMModel::addFEM(const QString& fname)
{
FEM* fem(new FEM);
try {
try {
fem->read(fname);
} catch (std::exception e) {
QMessageBox::warning(Application::mainWindow(),
Application::identity()->tr("modes identification wizard/file warning/title"),
QString(e.what()));
return;
}
} catch(...) {
return;
}
beginInsertRows(QModelIndex(), Application::project()->FEMCount(),
Application::project()->FEMCount());
Application::nonConstProject()->pushFEM(fem);
endInsertRows();
}
void FEMModel::beginAddModes(const FEM* model)
{
beginAddModes(FEMIndex(model));
}
void FEMModel::endAddModes(const FEM* model)
{
endAddModes(FEMIndex(model));
}
void FEMModel::beginAddModes(const QModelIndex & i)
{
if (WithoutModes < WithModes) {
beginInsertRows(i, WithoutModes, WithModes - 1);
} else {
beginRemoveRows(i, WithModes, WithoutModes - 1);
}
}
void FEMModel::endAddModes(const QModelIndex& i)
{
if (WithoutModes < WithModes) {
endInsertRows();
} else {
endRemoveRows();
}
const QModelIndex index(this->index(2, 0, i));
emit this->dataChanged(index, index, QVector<int>{ Qt::DisplayRole });
}
EigenModesFounder* FEMModel::provideFounder(int modelId)
{
FEM* const model(Application::nonConstProject()->FEMList().at(modelId));
EigenModesFounder* const p(new EigenModesFounder(model, this));
connect(p, &EigenModesFounder::finished, p, &EigenModesFounder::deleteLater);
connect(p, &EigenModesFounder::modesMined, [this, &model](){ beginAddModes(FEMIndex(model)); });
connect(p, &EigenModesFounder::modesReceived, [this, p]() {
this->endAddModes(FEMIndex(p->model()));
});
connect(p, &EigenModesFounder::MACUpdated, [this, p]() {
const QModelIndex index(this->index(1, 0, FEMIndex(p->model())));
emit this->dataChanged(index, index, QVector<int>{ Qt::DisplayRole });
});
return p;
}
FEMModel::SharedEigenModesFounder FEMModel::foundModes(const int modelId, std::function<void(EigenModesFounder * const)> f)
{
EigenModesFounder* const p(provideFounder(modelId));
f(p);
//trick to avoid delete(p) while thread is still running
SharedEigenModesFounder* r(new SharedEigenModesFounder(p));
connect(p, &EigenModesFounder::finished, [r]{ delete r; });
return *r;
}
FEMModel::SharedEigenModesFounder FEMModel::importModes(const int modelId, const QString& file)
{
return foundModes(modelId, [&file](EigenModesFounder* f){ f->readModes(file); });
}
FEMModel::SharedEigenModesFounder FEMModel::calculateModes(const int modelId, const IgoFESolver::SolverOptions& options)
{
return foundModes(modelId, [&options](EigenModesFounder* f){ f->calculateModes(options); });
}
FEMModel::SharedEigenModesFounder FEMModel::identificateModes(const int modelId)
{
return foundModes(modelId, [](EigenModesFounder* f){ f->identificateModes(); });
}
QVariant FEMModel::data(const QModelIndex & index, int role) const {
if (role != Qt::DisplayRole && role != Qt::EditRole) {
if (role == Qt::DecorationRole && isTopIndex(index) && __project->FEMList().size() == index.row()) {
static const QIcon add(Identity::fromSvg(":/media/resource/images/list-add-512px.svg"));
return add;
}
return QVariant();
}
if (isRootIndex(index)) {
return QVariant();
}
#ifdef VIEWERMODEL_DEBUG
qDebug() << "data" << index;
#endif
if (isTopIndex(index)) {
try {
return __project->FEMList().at(index.row())->getName();
} catch(...) {
return Application::identity()->geometriesModelAdd();
}
}
try {
const FEM* const mesh(__project->FEMList().at(modelId(index)));
if (isInfoIndex(index)) {
ModelRow r(modelRole(index));
static const QString vertexesStr(Application::identity()->tr("vertexes", "viewer model"));
static const QString modesStr(Application::identity()->tr("modes", "viewer model"));
static const QString importStr(Application::identity()->tr("import", "viewer model"));
static const QString identificationStr(Application::identity()->tr("identification", "viewer model"));
static const QString compute(Application::identity()->tr("compute", "viewer model"));
static const QString macStr(Application::identity()->tr("mac", "viewer model"));
static const QString macCalcStr(Application::identity()->tr("mac calc", "viewer model"));
switch (r) {
case FEMModel::Vertexes:
return vertexesStr.arg(mesh->getNodes().length());
case FEMModel::Modes:
return modesStr.arg(mesh->getModes().size());
case FEMModel::ImportModes:
return importStr;
case FEMModel::ModesIdentification:
return identificationStr;
case FEMModel::ModesCompute:
return compute;
case FEMModel::MAC:
const CMatrix& mac(mesh->getModes().getMAC());
if (mac.size() != mac.finiteCount()) {
return macCalcStr.arg(QString::number(mac.finiteCount()), QString::number(mac.size()));
}
return macStr;
}
return "something wrong";
}
return Application::identity()->formSelectorLabel().arg(QString::number(index.row() + 1), QString::number(mesh->getModes().at(index.row()).frequency()));
} catch (...) {
qFatal((QString("model id fail 0x") + QString::number(index.internalId(), 16) + ' ' + QString::number(modelId(index))).toLocal8Bit());
return "Model id fail" + QString::number(modelId(index));
}
}
void FEMModel::setProject(const Project* p) {
__project = p;
}
const Project* FEMModel::getProject() {
return __project;
}
| [
"vornon@ya.ru"
] | vornon@ya.ru |
10df77871b5bfaa1d02d9f5840b6d2402a2ec292 | ea72d488e341dfabd8a44be40a44767b130eb753 | /libsparsembs/include/sparsembs/dynamic-simulators.h | 18f36651bc69fdc576848493c5002cdfe990de49 | [] | no_license | min-zhi/multibody-state-estimation | 351b1217131cb853c108385cc7e6a2a4be1a2c13 | 6d71da36cff1541dd2329fe2ec363d5de8d287ed | refs/heads/master | 2021-05-26T00:30:35.176963 | 2020-01-30T23:32:42 | 2020-01-30T23:33:41 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 14,963 | h | #pragma once
#include "sparsembs-common.h"
#include <list>
namespace sparsembs
{
using namespace Eigen;
struct TPointState
{
TPointState(
const mrpt::math::TPoint2D& _pos, const mrpt::math::TPoint2D _vel)
: pos(_pos), vel(_vel)
{
}
mrpt::math::TPoint2D pos, vel;
};
typedef std::pair<double, TPointState> timestamped_point_t;
enum TOrderingMethods
{
orderNatural = 0, //!< Leave variables in their natural order
orderAMD, //!< Use AMD algorithm
orderCOLAMD, //!< Use COLAMD algorithm (Only for KLU (??) )
orderMETIS, //!< Use METIS graph-based partitioning
orderCHOLMOD, //!< Use AMD/COLAMD then METIS
orderNESDIS, //!< CHOLMOD's version of nested graph disection
orderTryKeepBest //!< Try different methods and keep the best one
};
/** Logging structure for CDynamicSimulatorBase's "sensors" */
struct TSensorData
{
size_t pnt_index; //!< In the original MBS model
const double* pos[3]; //!< Pointers to the up-to-date coordinates (X,Y,Z)
const double* vel[3]; //!< Pointers to the up-to-date velocities (X,Y,Z)
/** Log of sensed data: */
std::deque<timestamped_point_t> log;
};
class CAssembledRigidModel; //!< A MBS preprocessed and ready for
//!< kinematic/dynamic simulations.
enum ODE_integrator_t
{
ODE_Euler = 0, //!< Simple, explicit, Euler method
ODE_Trapezoidal, //!< Implicit 2nd order method
ODE_RK4 //!< Explicit Runge-Kutta 4th order method
};
/** State of the simulation, passed to a user-provided function */
struct TSimulationState
{
double t;
const CAssembledRigidModel* const
arm; //!< From this object you can retrieve the current "q"
//!< coordinates, velocities, bodies, etc.
TSimulationState(const CAssembledRigidModel* arm_);
};
typedef TSimulationState& TSimulationStateRef;
using simul_callback_t = std::function<void(const TSimulationStateRef)>;
class CDynamicSimulatorBase;
/** The common part of all simulators */
class CDynamicSimulatorBase
{
public:
using Ptr = std::shared_ptr<CDynamicSimulatorBase>;
/** A class factory, creates a dynamic simulator from a string with the
* class name: "CDynamicSimulator_Lagrange_LU_dense",
* "CDynamicSimulator_Lagrange_UMFPACK", ...
*/
static Ptr Create(
const std::string& name,
const std::shared_ptr<CAssembledRigidModel> arm_ptr);
CDynamicSimulatorBase(std::shared_ptr<CAssembledRigidModel> arm_ptr);
virtual ~CDynamicSimulatorBase();
struct TParameters
{
ODE_integrator_t
ode_solver; //!< Method for numerical integration of ODE system
double time_step; //!< For fixed-time integrators, the fixed time step
simul_callback_t
user_callback; //!< Called AFTER each new simulation step
TParameters();
};
TParameters params; //!< The simulator parameters
/** One-time preparation of the linear systems and anything else required,
* before starting to call solve_ddotq()
* ** MUST BE CALLED BEFORE solve_ddotq() **
*/
void prepare();
/** Solve for the current accelerations
* You MUST call prepare() before this method.
*/
virtual void solve_ddotq(
double t, VectorXd& ddot_q, VectorXd* lagrangre = NULL);
/** Integrators will call this before solve_ddotq() once per time step */
virtual void pre_iteration(double t) {}
/** Integrators will call this after each time step */
virtual void post_iteration(double t) {}
/** Runs a dynamic simulation for a given time span
* \return The actual final time of the simulation, which will always be >=
* t_end. It may be >t_end due the fixed time step of some integrators.
*/
virtual double run(const double t_ini, const double t_end);
/** \name Sensors
@{ */
/** Add a "sensor" that grabs the position of a given point.
* \sa saveSensorLogsToFile
*/
void addPointSensor(const size_t pnt_index);
/** Save all logged data to a text file, loadable from MATLAB with "load()".
* \return false on any error, true if all go ok.
*/
bool saveSensorLogsToFile(const std::string& filename) const;
/** @} */
protected:
const std::shared_ptr<CAssembledRigidModel>
m_arm_ptr; //!< The smart pointer. Normally use m_arm which is faster
CAssembledRigidModel* const m_arm; //!< The prepared MBS model.
/** Build the two subvectors of the RHS of the motion equation, with the
* generalized forces "Q" and the Jacobian-based term "c". "Q" must have
* space for nDOFs doubles, and "c" must have space for "nConstraints".
*/
void build_RHS(double* Q, double* c);
/** Prepare the linear systems and anything else required to really call
* solve_ddotq() */
virtual void internal_prepare() = 0;
/** Solve for the current accelerations */
virtual void internal_solve_ddotq(
double t, VectorXd& ddot_q, VectorXd* lagrangre = NULL) = 0;
/** Implement a especific combination of dynamic formulation + integrator.
* \return false if it's not implemented, so it should fallback to generic
* integrator + internal_solve_ddotq()
*/
virtual bool internal_integrate(
double t, double dt, const ODE_integrator_t integr)
{
return false;
}
// Auxiliary variables of the ODE integrators (declared here to avoid
// reallocating mem)
Eigen::VectorXd q0; // Backup of state.
Eigen::VectorXd k1, k2, k3, k4;
Eigen::VectorXd v1, v2, v3, v4; // \dot{q}
private:
Eigen::VectorXd ddotq1, ddotq2, ddotq3, ddotq4; // \ddot{q}
protected:
bool m_init; //!< Used to indicate if user has called prepare()
/** List of "sensed point_index" -> list of logged data.
* Updated by addPointSensor()
*/
std::list<TSensorData> m_sensors;
};
class CDynamicSimulatorIndepBase;
/** Especialization of simulator for formulations in independent coordinates (it
* requires different integrators) */
class CDynamicSimulatorIndepBase : public CDynamicSimulatorBase
{
public:
using Ptr = std::shared_ptr<CDynamicSimulatorIndepBase>;
CDynamicSimulatorIndepBase(std::shared_ptr<CAssembledRigidModel> arm_ptr);
virtual ~CDynamicSimulatorIndepBase();
/** Runs a dynamic simulation for a given time span
* \return The actual final time of the simulation, which will always be >=
* t_end. It may be >t_end due the fixed time step of some integrators.
*/
virtual double run(const double t_ini, const double t_end);
/** Solve for the current independent accelerations
* You MUST call prepare() before this method.
*/
void solve_ddotz(double t, VectorXd& ddot_z, bool can_choose_indep_coords);
/** Performs the addition of velocities: out_dq = dq +
* independent2dependent(dz) */
virtual void dq_plus_dz(
const Eigen::VectorXd& dq, const Eigen::VectorXd& dz,
Eigen::VectorXd& out_dq) const = 0;
/** Compute dependent velocities and positions from the independent ones */
virtual void correct_dependent_q_dq() = 0;
protected:
/** Wrapper for ddotq computation, from ddotz */
virtual void internal_solve_ddotq(
double t, VectorXd& ddot_q, VectorXd* lagrangre = NULL);
/** Solve for the current accelerations of independent coords */
virtual void internal_solve_ddotz(
double t, VectorXd& ddot_z, bool can_choose_indep_coords) = 0;
// Auxiliary variables of the ODE integrators (declared here to avoid
// reallocating mem)
Eigen::VectorXd ddotz1, ddotz2, ddotz3, ddotz4; // \ddot{z}
};
class CDynamicSimulator_Lagrange_LU_dense : public CDynamicSimulatorBase
{
public:
CDynamicSimulator_Lagrange_LU_dense(
const std::shared_ptr<CAssembledRigidModel> arm_ptr);
private:
virtual void internal_prepare();
virtual void internal_solve_ddotq(
double t, VectorXd& ddot_q, VectorXd* lagrangre = NULL);
Eigen::MatrixXd m_mass; //!< The MBS constant mass matrix
};
class CDynamicSimulator_R_matrix_dense : public CDynamicSimulatorBase
{
public:
CDynamicSimulator_R_matrix_dense(
const std::shared_ptr<CAssembledRigidModel> arm_ptr);
private:
virtual void internal_prepare();
virtual void internal_solve_ddotq(
double t, VectorXd& ddot_q, VectorXd* lagrangre = NULL);
Eigen::MatrixXd m_mass; //!< The MBS constant mass matrix
};
/** R matrix projection method (as in section 5.2.3 of "J. García De Jalon &
* Bayo" book) */
class CDynamicSimulator_Indep_dense : public CDynamicSimulatorIndepBase
{
public:
CDynamicSimulator_Indep_dense(
const std::shared_ptr<CAssembledRigidModel> arm_ptr);
virtual void dq_plus_dz(
const Eigen::VectorXd& dq, const Eigen::VectorXd& dz,
Eigen::VectorXd& out_dq) const;
/** Compute dependent velocities and positions from the independent ones */
virtual void correct_dependent_q_dq();
private:
virtual void internal_prepare();
virtual void internal_solve_ddotz(
double t, VectorXd& ddot_z, bool can_choose_indep_coords);
Eigen::MatrixXd m_mass; //!< The MBS constant mass matrix
std::vector<size_t>
m_indep_idxs; //!< The indices in "q" of those coordinates to be used
//!< as "independent" (z)
};
class CDynamicSimulator_Lagrange_CHOLMOD : public CDynamicSimulatorBase
{
public:
CDynamicSimulator_Lagrange_CHOLMOD(
const std::shared_ptr<CAssembledRigidModel> arm_ptr);
virtual ~CDynamicSimulator_Lagrange_CHOLMOD();
TOrderingMethods ordering_M; //!< The ordering algorithm for factorizing M
TOrderingMethods
ordering_EEt; //!< The ordering algorithm for factorizing E*E'
private:
virtual void internal_prepare();
virtual void internal_solve_ddotq(
double t, VectorXd& ddot_q, VectorXd* lagrangre = NULL);
cholmod_common m_cholmod_common;
cholmod_triplet* m_mass_tri;
cholmod_sparse* m_mass;
cholmod_factor* m_Lm; //!< Mass = Lm * Lm'
cholmod_factor* m_Lt; //!< E*E' = Lt*Lt'
cholmod_triplet* m_Phi_q_t_tri;
std::vector<double*>
m_ptrs_Phi_q_t_tri; //!< Pointers to elements in m_Phi_q_t_tri in the
//!< same order than in the sparse Jacobian.
cholmod_dense *m_Q, *m_c, *m_z; //!< RHS & auxiliary vectors
};
class CDynamicSimulator_Lagrange_UMFPACK : public CDynamicSimulatorBase
{
public:
CDynamicSimulator_Lagrange_UMFPACK(
const std::shared_ptr<CAssembledRigidModel> arm_ptr);
virtual ~CDynamicSimulator_Lagrange_UMFPACK();
TOrderingMethods ordering;
private:
virtual void internal_prepare();
virtual void internal_solve_ddotq(
double t, VectorXd& ddot_q, VectorXd* lagrangre = NULL);
std::vector<Eigen::Triplet<double>> m_mass_tri;
std::vector<Eigen::Triplet<double>>
m_A_tri; //!< Augmented matrix (triplet form)
std::vector<double*> m_A_tri_ptrs_Phi_q; //!< Placeholders for the non-zero
//!< entries of the Jacobian.
Eigen::SparseMatrix<double> m_A; //!< Augmented matrix (CCS)
void* m_numeric;
void* m_symbolic;
double m_umf_control[UMFPACK_CONTROL];
double m_umf_info[UMFPACK_INFO];
};
class CDynamicSimulator_Lagrange_KLU : public CDynamicSimulatorBase
{
public:
CDynamicSimulator_Lagrange_KLU(
const std::shared_ptr<CAssembledRigidModel> arm_ptr);
virtual ~CDynamicSimulator_Lagrange_KLU();
TOrderingMethods ordering;
private:
virtual void internal_prepare();
virtual void internal_solve_ddotq(
double t, VectorXd& ddot_q, VectorXd* lagrangre = NULL);
std::vector<Eigen::Triplet<double>> m_mass_tri;
std::vector<Eigen::Triplet<double>>
m_A_tri; //!< Augmented matrix (triplet form)
std::vector<double*> m_A_tri_ptrs_Phi_q; //!< Placeholders for the non-zero
//!< entries of the Jacobian.
Eigen::SparseMatrix<double> m_A; //!< Augmented matrix (CCS)
klu_common m_common;
klu_numeric* m_numeric;
klu_symbolic* m_symbolic;
};
class CDynamicSimulatorBasePenalty : public CDynamicSimulatorBase
{
public:
struct TPenaltyParams
{
double alpha; //!< Penalty multiplier (default: 1e4)
double w; //!< Penalty omega (default: 10)
double xi; //!< Penalty xi (default: 1)
TPenaltyParams() : alpha(1e7), w(10), xi(1) {}
};
TPenaltyParams
params_penalty; //!< Parameters of the "penalty" dynamic formulation
CDynamicSimulatorBasePenalty(
const std::shared_ptr<CAssembledRigidModel> arm_ptr)
: CDynamicSimulatorBase(arm_ptr)
{
}
virtual ~CDynamicSimulatorBasePenalty() {}
};
class CDynamicSimulator_AugmentedLagrangian_KLU
: public CDynamicSimulatorBasePenalty
{
public:
CDynamicSimulator_AugmentedLagrangian_KLU(
const std::shared_ptr<CAssembledRigidModel> arm_ptr);
virtual ~CDynamicSimulator_AugmentedLagrangian_KLU();
TOrderingMethods ordering;
const Eigen::SparseMatrix<double>& getA() const { return m_A; }
private:
virtual void internal_prepare();
virtual void internal_solve_ddotq(
double t, VectorXd& ddot_q, VectorXd* lagrangre = NULL);
struct TSparseDotProduct
{
std::vector<std::pair<const double*, const double*>> lst_terms;
double *out_ptr1,
*out_ptr2; //!< Store the result of the dot product in these
//!< pointers, if they are not NULL.
};
std::vector<Eigen::Triplet<double>> m_A_tri,
m_M_tri; //!< Augmented matrix (triplet form)
std::vector<TSparseDotProduct>
m_PhiqtPhi; //!< Quick list of operations needed to update the product
//!< Phi_q^t * Phi_q and store it into m_A_tri.
Eigen::SparseMatrix<double> m_A, m_M; //!< Augmented matrix (CCS)
klu_common m_common;
klu_numeric *m_numeric, *m_numeric_M;
klu_symbolic *m_symbolic, *m_symbolic_M;
};
class CDynamicSimulator_AugmentedLagrangian_Dense
: public CDynamicSimulatorBasePenalty
{
public:
CDynamicSimulator_AugmentedLagrangian_Dense(
const std::shared_ptr<CAssembledRigidModel> arm_ptr);
virtual ~CDynamicSimulator_AugmentedLagrangian_Dense();
/** Integrators will call this after each time step */
virtual void post_iteration(double t);
private:
virtual void internal_prepare();
virtual void internal_solve_ddotq(
double t, VectorXd& ddot_q, VectorXd* lagrangre = NULL);
Eigen::MatrixXd m_M; //!< The MBS constant mass matrix
Eigen::LDLT<Eigen::MatrixXd> m_M_ldlt;
// Data updated during solve(), then reused during post_iteration():
Eigen::MatrixXd m_A, m_Phi_q, m_dotPhi_q;
Eigen::FullPivLU<Eigen::MatrixXd> m_A_lu;
};
class CDynamicSimulator_ALi3_Dense : public CDynamicSimulatorBasePenalty
{
public:
CDynamicSimulator_ALi3_Dense(
const std::shared_ptr<CAssembledRigidModel> arm_ptr);
virtual ~CDynamicSimulator_ALi3_Dense();
/** Integrators will call this after each time step */
virtual void post_iteration(double t);
private:
virtual void internal_prepare();
virtual void internal_solve_ddotq(
double t, VectorXd& ddot_q, VectorXd* lagrangre = NULL);
/** Implement a especific combination of dynamic formulation + integrator.
* \return false if it's not implemented, so it should fallback to generic
* integrator + internal_solve_ddotq()
*/
virtual bool internal_integrate(
double t, double dt, const ODE_integrator_t integr);
Eigen::MatrixXd m_M; //!< The MBS constant mass matrix
Eigen::LDLT<Eigen::MatrixXd> m_M_ldlt;
// Data updated during solve(), then reused during post_iteration():
Eigen::MatrixXd m_A, m_Phi_q, m_dotPhi_q;
Eigen::FullPivLU<Eigen::MatrixXd> m_A_lu;
Eigen::VectorXd m_Lambda;
};
} // namespace sparsembs
| [
"joseluisblancoc@gmail.com"
] | joseluisblancoc@gmail.com |
ff7ce28c15939134e8dce55c6f89ec1867c5873a | 1f15536b7bb6a4d5c9abe245445408d4d759ae7d | /Temp/StagingArea/Data/il2cppOutput/Bulk_mscorlib_1.cpp | aedd5d19ee66f46ab80e035d89ddbb9e3252b4ed | [] | no_license | rpierucci/HoopTactics | 4ab5136226743c13ee1537eff7d308d22d40ee1e | 19974973beb4eae55a6dd0143a1d6fe1fe4d203a | refs/heads/master | 2020-03-12T14:04:11.004525 | 2018-04-23T07:43:27 | 2018-04-23T07:43:27 | 130,658,091 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,985,274 | cpp | #include "il2cpp-config.h"
#ifndef _MSC_VER
# include <alloca.h>
#else
# include <malloc.h>
#endif
#include <cstring>
#include <string.h>
#include <stdio.h>
#include <cmath>
#include <limits>
#include <assert.h>
#include <stdint.h>
#include "il2cpp-class-internals.h"
#include "codegen/il2cpp-codegen.h"
#include "il2cpp-object-internals.h"
template <typename R>
struct VirtFuncInvoker0
{
typedef R (*Func)(void*, const RuntimeMethod*);
static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
return ((Func)invokeData.methodPtr)(obj, invokeData.method);
}
};
struct VirtActionInvoker0
{
typedef void (*Action)(void*, const RuntimeMethod*);
static inline void Invoke (Il2CppMethodSlot slot, RuntimeObject* obj)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
((Action)invokeData.methodPtr)(obj, invokeData.method);
}
};
template <typename R, typename T1>
struct VirtFuncInvoker1
{
typedef R (*Func)(void*, T1, const RuntimeMethod*);
static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
return ((Func)invokeData.methodPtr)(obj, p1, invokeData.method);
}
};
template <typename T1>
struct VirtActionInvoker1
{
typedef void (*Action)(void*, T1, const RuntimeMethod*);
static inline void Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
((Action)invokeData.methodPtr)(obj, p1, invokeData.method);
}
};
template <typename T1, typename T2>
struct VirtActionInvoker2
{
typedef void (*Action)(void*, T1, T2, const RuntimeMethod*);
static inline void Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
((Action)invokeData.methodPtr)(obj, p1, p2, invokeData.method);
}
};
template <typename R, typename T1, typename T2, typename T3, typename T4>
struct VirtFuncInvoker4
{
typedef R (*Func)(void*, T1, T2, T3, T4, const RuntimeMethod*);
static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2, T3 p3, T4 p4)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
return ((Func)invokeData.methodPtr)(obj, p1, p2, p3, p4, invokeData.method);
}
};
template <typename R, typename T1, typename T2, typename T3, typename T4, typename T5>
struct VirtFuncInvoker5
{
typedef R (*Func)(void*, T1, T2, T3, T4, T5, const RuntimeMethod*);
static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2, T3 p3, T4 p4, T5 p5)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
return ((Func)invokeData.methodPtr)(obj, p1, p2, p3, p4, p5, invokeData.method);
}
};
template <typename R, typename T1, typename T2>
struct VirtFuncInvoker2
{
typedef R (*Func)(void*, T1, T2, const RuntimeMethod*);
static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
return ((Func)invokeData.methodPtr)(obj, p1, p2, invokeData.method);
}
};
template <typename R, typename T1, typename T2, typename T3>
struct VirtFuncInvoker3
{
typedef R (*Func)(void*, T1, T2, T3, const RuntimeMethod*);
static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2, T3 p3)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
return ((Func)invokeData.methodPtr)(obj, p1, p2, p3, invokeData.method);
}
};
template <typename T1, typename T2, typename T3, typename T4>
struct VirtActionInvoker4
{
typedef void (*Action)(void*, T1, T2, T3, T4, const RuntimeMethod*);
static inline void Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2, T3 p3, T4 p4)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
((Action)invokeData.methodPtr)(obj, p1, p2, p3, p4, invokeData.method);
}
};
template <typename T1, typename T2, typename T3>
struct VirtActionInvoker3
{
typedef void (*Action)(void*, T1, T2, T3, const RuntimeMethod*);
static inline void Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2, T3 p3)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
((Action)invokeData.methodPtr)(obj, p1, p2, p3, invokeData.method);
}
};
template <typename T1>
struct GenericVirtActionInvoker1
{
typedef void (*Action)(void*, T1, const RuntimeMethod*);
static inline void Invoke (const RuntimeMethod* method, RuntimeObject* obj, T1 p1)
{
VirtualInvokeData invokeData;
il2cpp_codegen_get_generic_virtual_invoke_data(method, obj, &invokeData);
((Action)invokeData.methodPtr)(obj, p1, invokeData.method);
}
};
struct GenericVirtActionInvoker0
{
typedef void (*Action)(void*, const RuntimeMethod*);
static inline void Invoke (const RuntimeMethod* method, RuntimeObject* obj)
{
VirtualInvokeData invokeData;
il2cpp_codegen_get_generic_virtual_invoke_data(method, obj, &invokeData);
((Action)invokeData.methodPtr)(obj, invokeData.method);
}
};
template <typename T1, typename T2>
struct GenericVirtActionInvoker2
{
typedef void (*Action)(void*, T1, T2, const RuntimeMethod*);
static inline void Invoke (const RuntimeMethod* method, RuntimeObject* obj, T1 p1, T2 p2)
{
VirtualInvokeData invokeData;
il2cpp_codegen_get_generic_virtual_invoke_data(method, obj, &invokeData);
((Action)invokeData.methodPtr)(obj, p1, p2, invokeData.method);
}
};
template <typename R>
struct InterfaceFuncInvoker0
{
typedef R (*Func)(void*, const RuntimeMethod*);
static inline R Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface);
return ((Func)invokeData.methodPtr)(obj, invokeData.method);
}
};
struct InterfaceActionInvoker0
{
typedef void (*Action)(void*, const RuntimeMethod*);
static inline void Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface);
((Action)invokeData.methodPtr)(obj, invokeData.method);
}
};
template <typename R, typename T1>
struct InterfaceFuncInvoker1
{
typedef R (*Func)(void*, T1, const RuntimeMethod*);
static inline R Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj, T1 p1)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface);
return ((Func)invokeData.methodPtr)(obj, p1, invokeData.method);
}
};
template <typename T1>
struct InterfaceActionInvoker1
{
typedef void (*Action)(void*, T1, const RuntimeMethod*);
static inline void Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj, T1 p1)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface);
((Action)invokeData.methodPtr)(obj, p1, invokeData.method);
}
};
template <typename T1, typename T2>
struct InterfaceActionInvoker2
{
typedef void (*Action)(void*, T1, T2, const RuntimeMethod*);
static inline void Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj, T1 p1, T2 p2)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface);
((Action)invokeData.methodPtr)(obj, p1, p2, invokeData.method);
}
};
template <typename R, typename T1, typename T2>
struct InterfaceFuncInvoker2
{
typedef R (*Func)(void*, T1, T2, const RuntimeMethod*);
static inline R Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj, T1 p1, T2 p2)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface);
return ((Func)invokeData.methodPtr)(obj, p1, p2, invokeData.method);
}
};
template <typename T1>
struct GenericInterfaceActionInvoker1
{
typedef void (*Action)(void*, T1, const RuntimeMethod*);
static inline void Invoke (const RuntimeMethod* method, RuntimeObject* obj, T1 p1)
{
VirtualInvokeData invokeData;
il2cpp_codegen_get_generic_interface_invoke_data(method, obj, &invokeData);
((Action)invokeData.methodPtr)(obj, p1, invokeData.method);
}
};
struct GenericInterfaceActionInvoker0
{
typedef void (*Action)(void*, const RuntimeMethod*);
static inline void Invoke (const RuntimeMethod* method, RuntimeObject* obj)
{
VirtualInvokeData invokeData;
il2cpp_codegen_get_generic_interface_invoke_data(method, obj, &invokeData);
((Action)invokeData.methodPtr)(obj, invokeData.method);
}
};
template <typename T1, typename T2>
struct GenericInterfaceActionInvoker2
{
typedef void (*Action)(void*, T1, T2, const RuntimeMethod*);
static inline void Invoke (const RuntimeMethod* method, RuntimeObject* obj, T1 p1, T2 p2)
{
VirtualInvokeData invokeData;
il2cpp_codegen_get_generic_interface_invoke_data(method, obj, &invokeData);
((Action)invokeData.methodPtr)(obj, p1, p2, invokeData.method);
}
};
// Mono.Security.X509.PKCS12/DeriveBytes
struct DeriveBytes_t1492915135;
// System.String
struct String_t;
// System.Byte[]
struct ByteU5BU5D_t4116647657;
// System.Security.Cryptography.HashAlgorithm
struct HashAlgorithm_t1432317219;
// Mono.Security.X509.SafeBag
struct SafeBag_t3961248199;
// Mono.Security.ASN1
struct ASN1_t2114160832;
// System.Text.StringBuilder
struct StringBuilder_t;
// System.Text.Encoding
struct Encoding_t1523322056;
// System.Char[]
struct CharU5BU5D_t3528271667;
// Mono.Security.X509.X509Certificate
struct X509Certificate_t489243024;
// System.Security.Cryptography.CryptographicException
struct CryptographicException_t248831461;
// System.Exception
struct Exception_t;
// Mono.Security.X509.X509ExtensionCollection
struct X509ExtensionCollection_t609554708;
// System.Security.Cryptography.DSA
struct DSA_t2386879874;
// System.Security.Cryptography.DSACryptoServiceProvider
struct DSACryptoServiceProvider_t3992668923;
// Mono.Security.X509.X509CertificateCollection
struct X509CertificateCollection_t1542168549;
// System.Collections.CollectionBase
struct CollectionBase_t2727926298;
// System.Collections.IEnumerator
struct IEnumerator_t1853284238;
// System.Collections.ArrayList
struct ArrayList_t2718874744;
// System.ArgumentNullException
struct ArgumentNullException_t1615371798;
// Mono.Security.X509.X509CertificateCollection/X509CertificateEnumerator
struct X509CertificateEnumerator_t3515934697;
// Mono.Security.X509.X509Extension
struct X509Extension_t3173393652;
// System.ArgumentException
struct ArgumentException_t132251570;
// System.Globalization.CultureInfo
struct CultureInfo_t4157843068;
// System.IFormatProvider
struct IFormatProvider_t2518567562;
// Mono.Xml.SecurityParser
struct SecurityParser_t4124480077;
// Mono.Xml.SmallXmlParser
struct SmallXmlParser_t973787839;
// System.Collections.Stack
struct Stack_t2329662280;
// System.IO.StringReader
struct StringReader_t3465604688;
// System.IO.TextReader
struct TextReader_t283511965;
// Mono.Xml.SmallXmlParser/IContentHandler
struct IContentHandler_t2787973995;
// System.Security.SecurityElement
struct SecurityElement_t1046076091;
// Mono.Xml.SmallXmlParser/IAttrList
struct IAttrList_t3807428360;
// Mono.Xml.SmallXmlParser/AttrListImpl
struct AttrListImpl_t567962447;
// Mono.Xml.SmallXmlParserException
struct SmallXmlParserException_t1329648272;
// System.String[]
struct StringU5BU5D_t1281789340;
// System.Collections.Generic.Dictionary`2<System.String,System.Int32>
struct Dictionary_2_t2736202052;
// System.Collections.Generic.Dictionary`2<System.Object,System.Int32>
struct Dictionary_2_t3384741;
// System.Type
struct Type_t;
// System.SystemException
struct SystemException_t176217640;
// System.__Il2CppComDelegate
struct __Il2CppComDelegate_t1102178620;
// System.__Il2CppComObject
struct Il2CppComObject;
// System.AccessViolationException
struct AccessViolationException_t339633883;
// System.Runtime.Serialization.SerializationInfo
struct SerializationInfo_t950877179;
// System.ActivationContext
struct ActivationContext_t976916018;
// System.Object[]
struct ObjectU5BU5D_t2843939325;
// System.Reflection.Binder
struct Binder_t2999457153;
// System.MissingMethodException
struct MissingMethodException_t1274661534;
// System.NotSupportedException
struct NotSupportedException_t1314879016;
// System.Reflection.ConstructorInfo
struct ConstructorInfo_t5769829;
// System.Reflection.MethodBase
struct MethodBase_t;
// System.MonoType
struct MonoType_t;
// System.Type[]
struct TypeU5BU5D_t3940880105;
// System.Reflection.ParameterModifier[]
struct ParameterModifierU5BU5D_t2943407543;
// System.AppDomain
struct AppDomain_t1571427825;
// System.MarshalByRefObject
struct MarshalByRefObject_t2760389100;
// System.Reflection.Assembly
struct Assembly_t;
// System.Security.Policy.Evidence
struct Evidence_t2008144148;
// System.IO.FileNotFoundException
struct FileNotFoundException_t225391025;
// System.Runtime.Remoting.Contexts.Context
struct Context_t3285446944;
// System.Reflection.Emit.TypeBuilder
struct TypeBuilder_t1073948154;
// System.Collections.Hashtable
struct Hashtable_t1853889766;
// System.MulticastDelegate
struct MulticastDelegate_t;
// System.Delegate[]
struct DelegateU5BU5D_t1703627840;
// System.ResolveEventArgs
struct ResolveEventArgs_t1779456501;
// System.ResolveEventHandler
struct ResolveEventHandler_t2775508208;
// System.Delegate
struct Delegate_t1188392813;
// System.AppDomainInitializer
struct AppDomainInitializer_t682969308;
// System.IAsyncResult
struct IAsyncResult_t767004451;
// System.AsyncCallback
struct AsyncCallback_t3962456242;
// System.AppDomainSetup
struct AppDomainSetup_t123196401;
// System.ApplicationException
struct ApplicationException_t2339761290;
// System.ApplicationIdentity
struct ApplicationIdentity_t1917735356;
// System.ArgumentOutOfRangeException
struct ArgumentOutOfRangeException_t777629997;
// System.ArithmeticException
struct ArithmeticException_t4283546778;
// System.IndexOutOfRangeException
struct IndexOutOfRangeException_t1578797820;
// System.RankException
struct RankException_t3812021567;
// System.Int32[]
struct Int32U5BU5D_t385246372;
// System.Array/SimpleEnumerator
struct SimpleEnumerator_t433892249;
// System.TypeLoadException
struct TypeLoadException_t3707937253;
// System.Int64[]
struct Int64U5BU5D_t2559172825;
// System.Collections.IComparer
struct IComparer_t1540313114;
// System.InvalidOperationException
struct InvalidOperationException_t56020091;
// System.InvalidCastException
struct InvalidCastException_t3927145244;
// System.ArrayTypeMismatchException
struct ArrayTypeMismatchException_t2342549375;
// System.Array/Swapper
struct Swapper_t2822380397;
// System.Double[]
struct DoubleU5BU5D_t3413330114;
// System.AssemblyLoadEventHandler
struct AssemblyLoadEventHandler_t107971893;
// System.AssemblyLoadEventArgs
struct AssemblyLoadEventArgs_t2792010465;
// System.Attribute
struct Attribute_t861562559;
// System.Reflection.MemberInfo
struct MemberInfo_t;
// System.Reflection.ICustomAttributeProvider
struct ICustomAttributeProvider_t1530824137;
// System.Reflection.ParameterInfo
struct ParameterInfo_t1861056598;
// System.AttributeUsageAttribute
struct AttributeUsageAttribute_t290877318;
// System.FormatException
struct FormatException_t154580423;
// System.OverflowException
struct OverflowException_t2020128637;
// System.CharEnumerator
struct CharEnumerator_t1121470421;
// System.CLSCompliantAttribute
struct CLSCompliantAttribute_t999444765;
// System.Collections.ICollection
struct ICollection_t3904884886;
// System.Collections.ArrayList/SimpleEnumerator
struct SimpleEnumerator_t4287166116;
// System.Collections.ArrayList/SynchronizedArrayListWrapper
struct SynchronizedArrayListWrapper_t2283757095;
// System.Collections.ArrayList/ReadOnlyArrayListWrapper
struct ReadOnlyArrayListWrapper_t3401315650;
// System.Collections.ArrayList/ArrayListWrapper
struct ArrayListWrapper_t240606758;
// System.Collections.ArrayList/FixedSizeArrayListWrapper
struct FixedSizeArrayListWrapper_t220909481;
// System.Collections.BitArray
struct BitArray_t4087883509;
// System.Collections.BitArray/BitArrayEnumerator
struct BitArrayEnumerator_t893496218;
// System.Collections.CaseInsensitiveComparer
struct CaseInsensitiveComparer_t3670035800;
// System.Collections.Comparer
struct Comparer_t1912461351;
// System.Collections.CaseInsensitiveHashCodeProvider
struct CaseInsensitiveHashCodeProvider_t1962629119;
// System.Globalization.TextInfo
struct TextInfo_t3810425522;
// System.Collections.IList
struct IList_t2094931216;
// System.Collections.Generic.KeyNotFoundException
struct KeyNotFoundException_t2292407383;
// System.Collections.IHashCodeProvider
struct IHashCodeProvider_t267601189;
// System.Collections.Hashtable/Slot[]
struct SlotU5BU5D_t2994659099;
// System.Collections.IDictionary
struct IDictionary_t1363984059;
// System.Collections.IEqualityComparer
struct IEqualityComparer_t1493878338;
// System.Collections.Hashtable/Enumerator
struct Enumerator_t661358686;
// System.Collections.Hashtable/HashKeys
struct HashKeys_t1568156503;
// System.Collections.Hashtable/HashValues
struct HashValues_t618387445;
// System.Collections.IDictionaryEnumerator
struct IDictionaryEnumerator_t1693217257;
// System.Runtime.Serialization.SerializationException
struct SerializationException_t3941511869;
// System.Collections.Hashtable/SyncHashtable
struct SyncHashtable_t3569774773;
// System.Collections.Hashtable/KeyMarker
struct KeyMarker_t2496412495;
// System.Collections.SortedList
struct SortedList_t2427694641;
// System.Collections.SortedList/Enumerator
struct Enumerator_t3548462377;
// System.Collections.Stack/Enumerator
struct Enumerator_t2929709194;
// System.IO.Stream
struct Stream_t1273022909;
// System.IO.UnexceptionalStreamWriter
struct UnexceptionalStreamWriter_t2539306459;
// System.IO.TextWriter
struct TextWriter_t3478189236;
// System.IO.UnexceptionalStreamReader
struct UnexceptionalStreamReader_t2154476246;
// System.IO.FileStream
struct FileStream_t4292183065;
// System.IO.NullStream
struct NullStream_t1684893697;
// System.ContextBoundObject
struct ContextBoundObject_t1394786030;
// System.Text.ASCIIEncoding
struct ASCIIEncoding_t3446586211;
// System.Globalization.CompareInfo
struct CompareInfo_t1092934962;
// System.Runtime.Serialization.IFormatterConverter
struct IFormatterConverter_t2171992254;
// System.Collections.Generic.Link[]
struct LinkU5BU5D_t964245573;
// System.Collections.Generic.IEqualityComparer`1<System.String>
struct IEqualityComparer_1_t3954782707;
// System.Collections.Generic.Dictionary`2/Transform`1<System.String,System.Int32,System.Collections.DictionaryEntry>
struct Transform_1_t3530625384;
// System.Runtime.Remoting.ServerIdentity
struct ServerIdentity_t2342208608;
// System.Security.Cryptography.KeySizes[]
struct KeySizesU5BU5D_t722666473;
// Mono.Globalization.Unicode.SimpleCollator
struct SimpleCollator_t2877834729;
// System.Collections.SortedList/Slot[]
struct SlotU5BU5D_t227397015;
// System.Globalization.NumberFormatInfo
struct NumberFormatInfo_t435877138;
// System.Globalization.DateTimeFormatInfo
struct DateTimeFormatInfo_t2405853701;
// System.Globalization.Calendar[]
struct CalendarU5BU5D_t3985046076;
// System.Globalization.Calendar
struct Calendar_t1661121569;
// System.Int32
struct Int32_t2950945753;
// System.Void
struct Void_t1185182177;
// System.IntPtr[]
struct IntPtrU5BU5D_t4013366056;
// System.Text.DecoderFallback
struct DecoderFallback_t3123823036;
// System.Text.EncoderFallback
struct EncoderFallback_t1188251036;
// System.Byte
struct Byte_t1134296376;
// System.Double
struct Double_t594665363;
// System.UInt16
struct UInt16_t2177724958;
// System.Text.Decoder
struct Decoder_t2204182725;
// System.Security.Cryptography.RandomNumberGenerator
struct RandomNumberGenerator_t386037858;
// System.Boolean[]
struct BooleanU5BU5D_t2897418192;
// System.Runtime.Remoting.Messaging.IMessageSink
struct IMessageSink_t2514424906;
// System.Runtime.Remoting.Contexts.DynamicPropertyCollection
struct DynamicPropertyCollection_t652373272;
// System.Runtime.Remoting.Contexts.ContextCallbackObject
struct ContextCallbackObject_t2292721408;
// System.Reflection.Assembly/ResolveEventHolder
struct ResolveEventHolder_t2120639521;
// System.Security.PermissionSet
struct PermissionSet_t223948603;
// System.Reflection.MethodInfo
struct MethodInfo_t;
// System.DelegateData
struct DelegateData_t1677132599;
// Mono.Security.Cryptography.KeyPairPersistence
struct KeyPairPersistence_t2094547461;
// Mono.Security.Cryptography.DSAManaged
struct DSAManaged_t2800260182;
// System.Reflection.MemberFilter
struct MemberFilter_t426314064;
// System.Runtime.Hosting.ActivationArguments
struct ActivationArguments_t4219999170;
// System.Security.Policy.ApplicationTrust
struct ApplicationTrust_t3270368423;
// System.Security.Principal.IPrincipal
struct IPrincipal_t2343618843;
// System.AppDomainManager
struct AppDomainManager_t1420869192;
// System.EventHandler
struct EventHandler_t1348719766;
// System.UnhandledExceptionEventHandler
struct UnhandledExceptionEventHandler_t3101989324;
// System.Reflection.Emit.UnmanagedMarshal
struct UnmanagedMarshal_t984015687;
// System.MonoTypeInfo
struct MonoTypeInfo_t3366989025;
// System.Reflection.Emit.MethodBuilder[]
struct MethodBuilderU5BU5D_t3705301900;
// System.Reflection.Emit.ConstructorBuilder[]
struct ConstructorBuilderU5BU5D_t3223009221;
// System.Reflection.Emit.PropertyBuilder[]
struct PropertyBuilderU5BU5D_t4023329206;
// System.Reflection.Emit.FieldBuilder[]
struct FieldBuilderU5BU5D_t138311604;
// System.Reflection.Emit.EventBuilder[]
struct EventBuilderU5BU5D_t3902749141;
// System.Reflection.Emit.CustomAttributeBuilder[]
struct CustomAttributeBuilderU5BU5D_t2951373564;
// System.Reflection.Emit.TypeBuilder[]
struct TypeBuilderU5BU5D_t786280671;
// System.Reflection.Emit.ModuleBuilder
struct ModuleBuilder_t731887691;
// System.Reflection.Emit.GenericTypeParameterBuilder[]
struct GenericTypeParameterBuilderU5BU5D_t3780444109;
// System.Reflection.Emit.RefEmitPermissionSet[]
struct RefEmitPermissionSetU5BU5D_t567451178;
extern RuntimeClass* ByteU5BU5D_t4116647657_il2cpp_TypeInfo_var;
extern RuntimeClass* DeriveBytes_t1492915135_il2cpp_TypeInfo_var;
extern RuntimeField* U3CPrivateImplementationDetailsU3E_t3057255361____U24U24fieldU2D20_12_FieldInfo_var;
extern RuntimeField* U3CPrivateImplementationDetailsU3E_t3057255361____U24U24fieldU2D21_13_FieldInfo_var;
extern RuntimeField* U3CPrivateImplementationDetailsU3E_t3057255361____U24U24fieldU2D22_14_FieldInfo_var;
extern const uint32_t DeriveBytes__cctor_m1212925033_MetadataUsageId;
extern const uint32_t DeriveBytes_set_Password_m3005258189_MetadataUsageId;
extern const uint32_t DeriveBytes_set_Salt_m441577179_MetadataUsageId;
extern const uint32_t DeriveBytes_Derive_m408582823_MetadataUsageId;
extern const uint32_t DeriveBytes_DeriveKey_m2238010581_MetadataUsageId;
extern const uint32_t DeriveBytes_DeriveIV_m3639813821_MetadataUsageId;
extern const uint32_t DeriveBytes_DeriveMAC_m694919248_MetadataUsageId;
extern RuntimeClass* X501_t1758824425_il2cpp_TypeInfo_var;
extern RuntimeField* U3CPrivateImplementationDetailsU3E_t3057255361____U24U24fieldU2D23_15_FieldInfo_var;
extern RuntimeField* U3CPrivateImplementationDetailsU3E_t3057255361____U24U24fieldU2D24_16_FieldInfo_var;
extern RuntimeField* U3CPrivateImplementationDetailsU3E_t3057255361____U24U24fieldU2D25_17_FieldInfo_var;
extern const uint32_t X501__cctor_m1166912714_MetadataUsageId;
extern RuntimeClass* StringBuilder_t_il2cpp_TypeInfo_var;
extern String_t* _stringLiteral3450517380;
extern const uint32_t X501_ToString_m4186311521_MetadataUsageId;
extern const uint32_t X501_ToString_m2278029064_MetadataUsageId;
extern RuntimeClass* Encoding_t1523322056_il2cpp_TypeInfo_var;
extern RuntimeClass* CharU5BU5D_t3528271667_il2cpp_TypeInfo_var;
extern RuntimeClass* String_t_il2cpp_TypeInfo_var;
extern RuntimeField* U3CPrivateImplementationDetailsU3E_t3057255361____U24U24fieldU2D26_18_FieldInfo_var;
extern String_t* _stringLiteral3451762653;
extern String_t* _stringLiteral3451762657;
extern String_t* _stringLiteral3483892138;
extern String_t* _stringLiteral3483302310;
extern String_t* _stringLiteral3451762660;
extern String_t* _stringLiteral3451762669;
extern String_t* _stringLiteral4091040253;
extern String_t* _stringLiteral3482974629;
extern String_t* _stringLiteral1505933697;
extern String_t* _stringLiteral3451762651;
extern String_t* _stringLiteral4248496721;
extern String_t* _stringLiteral3451762668;
extern String_t* _stringLiteral3483302326;
extern String_t* _stringLiteral3451762649;
extern String_t* _stringLiteral3451762663;
extern String_t* _stringLiteral403552631;
extern String_t* _stringLiteral3452614547;
extern String_t* _stringLiteral3452614528;
extern String_t* _stringLiteral3452614526;
extern const uint32_t X501_AppendEntry_m2470239841_MetadataUsageId;
extern RuntimeClass* X509Certificate_t489243024_il2cpp_TypeInfo_var;
extern RuntimeClass* Exception_t_il2cpp_TypeInfo_var;
extern RuntimeClass* CryptographicException_t248831461_il2cpp_TypeInfo_var;
extern const RuntimeMethod* X509Certificate__ctor_m3656389950_RuntimeMethod_var;
extern String_t* _stringLiteral1735138889;
extern const uint32_t X509Certificate__ctor_m3656389950_MetadataUsageId;
extern String_t* _stringLiteral1185035339;
extern const uint32_t X509Certificate__cctor_m198658613_MetadataUsageId;
extern RuntimeClass* ASN1_t2114160832_il2cpp_TypeInfo_var;
extern RuntimeClass* X509ExtensionCollection_t609554708_il2cpp_TypeInfo_var;
extern const RuntimeMethod* X509Certificate_Parse_m1106379228_RuntimeMethod_var;
extern const uint32_t X509Certificate_Parse_m1106379228_MetadataUsageId;
extern const uint32_t X509Certificate_GetUnsignedBigInteger_m1025066663_MetadataUsageId;
extern RuntimeClass* DSACryptoServiceProvider_t3992668923_il2cpp_TypeInfo_var;
extern const RuntimeMethod* X509Certificate_get_DSA_m1760272844_RuntimeMethod_var;
extern String_t* _stringLiteral683764801;
extern const uint32_t X509Certificate_get_DSA_m1760272844_MetadataUsageId;
extern const uint32_t X509Certificate_get_KeyAlgorithmParameters_m681676289_MetadataUsageId;
extern const uint32_t X509Certificate_get_PublicKey_m1627137142_MetadataUsageId;
extern const uint32_t X509Certificate_get_RawData_m2387471414_MetadataUsageId;
extern RuntimeClass* Convert_t2465617642_il2cpp_TypeInfo_var;
extern String_t* _stringLiteral418672143;
extern String_t* _stringLiteral2710142936;
extern const uint32_t X509Certificate_PEM_m1177570576_MetadataUsageId;
extern const uint32_t X509CertificateCollection_get_Item_m3219599455_MetadataUsageId;
extern RuntimeClass* ArgumentNullException_t1615371798_il2cpp_TypeInfo_var;
extern const RuntimeMethod* X509CertificateCollection_Add_m3136524580_RuntimeMethod_var;
extern String_t* _stringLiteral3493618073;
extern const uint32_t X509CertificateCollection_Add_m3136524580_MetadataUsageId;
extern RuntimeClass* X509CertificateEnumerator_t3515934697_il2cpp_TypeInfo_var;
extern const uint32_t X509CertificateCollection_GetEnumerator_m4229251522_MetadataUsageId;
extern RuntimeClass* IEnumerable_t1941168011_il2cpp_TypeInfo_var;
extern const uint32_t X509CertificateEnumerator__ctor_m3747779152_MetadataUsageId;
extern RuntimeClass* IEnumerator_t1853284238_il2cpp_TypeInfo_var;
extern const uint32_t X509CertificateEnumerator_System_Collections_IEnumerator_get_Current_m418791713_MetadataUsageId;
extern const uint32_t X509CertificateEnumerator_System_Collections_IEnumerator_MoveNext_m708500216_MetadataUsageId;
extern const uint32_t X509CertificateEnumerator_System_Collections_IEnumerator_Reset_m2928805663_MetadataUsageId;
extern const uint32_t X509CertificateEnumerator_get_Current_m3041233561_MetadataUsageId;
extern const uint32_t X509CertificateEnumerator_MoveNext_m2269241175_MetadataUsageId;
extern const uint32_t X509CertificateEnumerator_Reset_m122774664_MetadataUsageId;
extern RuntimeClass* ArgumentException_t132251570_il2cpp_TypeInfo_var;
extern RuntimeClass* RuntimeObject_il2cpp_TypeInfo_var;
extern const RuntimeMethod* X509Extension__ctor_m1750445243_RuntimeMethod_var;
extern String_t* _stringLiteral1590810976;
extern const uint32_t X509Extension__ctor_m1750445243_MetadataUsageId;
extern RuntimeClass* X509Extension_t3173393652_il2cpp_TypeInfo_var;
extern const uint32_t X509Extension_Equals_m1222951829_MetadataUsageId;
extern RuntimeClass* CultureInfo_t4157843068_il2cpp_TypeInfo_var;
extern String_t* _stringLiteral3451435000;
extern String_t* _stringLiteral3786055882;
extern String_t* _stringLiteral3450517376;
extern String_t* _stringLiteral3452614530;
extern const uint32_t X509Extension_WriteLine_m1400196767_MetadataUsageId;
extern const uint32_t X509Extension_ToString_m3664524823_MetadataUsageId;
extern const RuntimeMethod* X509ExtensionCollection__ctor_m3315097415_RuntimeMethod_var;
extern String_t* _stringLiteral632220839;
extern const uint32_t X509ExtensionCollection__ctor_m3315097415_MetadataUsageId;
extern RuntimeClass* Stack_t2329662280_il2cpp_TypeInfo_var;
extern const uint32_t SecurityParser__ctor_m1786039976_MetadataUsageId;
extern RuntimeClass* StringReader_t3465604688_il2cpp_TypeInfo_var;
extern const uint32_t SecurityParser_LoadXml_m1638830459_MetadataUsageId;
extern RuntimeClass* SecurityElement_t1046076091_il2cpp_TypeInfo_var;
extern RuntimeClass* IAttrList_t3807428360_il2cpp_TypeInfo_var;
extern const uint32_t SecurityParser_OnStartElement_m2534612579_MetadataUsageId;
extern const uint32_t SecurityParser_OnEndElement_m2088612360_MetadataUsageId;
extern const uint32_t SecurityParser_OnChars_m396174937_MetadataUsageId;
extern RuntimeClass* AttrListImpl_t567962447_il2cpp_TypeInfo_var;
extern const uint32_t SmallXmlParser__ctor_m202236734_MetadataUsageId;
extern RuntimeClass* SmallXmlParserException_t1329648272_il2cpp_TypeInfo_var;
extern const uint32_t SmallXmlParser_Error_m3899025466_MetadataUsageId;
extern RuntimeClass* StringU5BU5D_t1281789340_il2cpp_TypeInfo_var;
extern String_t* _stringLiteral2888367018;
extern String_t* _stringLiteral3452614532;
extern const uint32_t SmallXmlParser_UnexpectedEndError_m1914362401_MetadataUsageId;
extern RuntimeClass* Char_t3634460470_il2cpp_TypeInfo_var;
extern const uint32_t SmallXmlParser_IsNameChar_m2946368541_MetadataUsageId;
extern const RuntimeMethod* SmallXmlParser_SkipWhitespaces_m4243606597_RuntimeMethod_var;
extern String_t* _stringLiteral2234486756;
extern const uint32_t SmallXmlParser_SkipWhitespaces_m4243606597_MetadataUsageId;
extern const RuntimeMethod* SmallXmlParser_Expect_m674880652_RuntimeMethod_var;
extern String_t* _stringLiteral3607331757;
extern const uint32_t SmallXmlParser_Expect_m674880652_MetadataUsageId;
extern const RuntimeMethod* SmallXmlParser_ReadUntil_m2715581630_RuntimeMethod_var;
extern const uint32_t SmallXmlParser_ReadUntil_m2715581630_MetadataUsageId;
extern const RuntimeMethod* SmallXmlParser_ReadName_m3409228522_RuntimeMethod_var;
extern String_t* _stringLiteral178613742;
extern String_t* _stringLiteral2257131301;
extern const uint32_t SmallXmlParser_ReadName_m3409228522_MetadataUsageId;
extern RuntimeClass* IContentHandler_t2787973995_il2cpp_TypeInfo_var;
extern const RuntimeMethod* SmallXmlParser_Parse_m2140493703_RuntimeMethod_var;
extern String_t* _stringLiteral1840238834;
extern const uint32_t SmallXmlParser_Parse_m2140493703_MetadataUsageId;
extern const RuntimeMethod* SmallXmlParser_ReadContent_m1631445300_RuntimeMethod_var;
extern String_t* _stringLiteral2757040089;
extern String_t* _stringLiteral2151608716;
extern String_t* _stringLiteral2857192859;
extern String_t* _stringLiteral1056387298;
extern String_t* _stringLiteral703883227;
extern String_t* _stringLiteral3452614545;
extern String_t* _stringLiteral2270729185;
extern const uint32_t SmallXmlParser_ReadContent_m1631445300_MetadataUsageId;
extern const uint32_t SmallXmlParser_HandleBufferedContent_m3185158999_MetadataUsageId;
extern RuntimeClass* SmallXmlParser_t973787839_il2cpp_TypeInfo_var;
extern RuntimeClass* Dictionary_2_t2736202052_il2cpp_TypeInfo_var;
extern const RuntimeMethod* Dictionary_2__ctor_m2392909825_RuntimeMethod_var;
extern const RuntimeMethod* Dictionary_2_Add_m282647386_RuntimeMethod_var;
extern const RuntimeMethod* Dictionary_2_TryGetValue_m1013208020_RuntimeMethod_var;
extern const RuntimeMethod* SmallXmlParser_ReadReference_m1750252339_RuntimeMethod_var;
extern String_t* _stringLiteral228143257;
extern String_t* _stringLiteral2328692158;
extern String_t* _stringLiteral372704686;
extern String_t* _stringLiteral3455498180;
extern String_t* _stringLiteral3455498169;
extern String_t* _stringLiteral203507977;
extern const uint32_t SmallXmlParser_ReadReference_m1750252339_MetadataUsageId;
extern const RuntimeMethod* SmallXmlParser_ReadAttribute_m3518350607_RuntimeMethod_var;
extern String_t* _stringLiteral4028743167;
extern String_t* _stringLiteral1942376246;
extern const uint32_t SmallXmlParser_ReadAttribute_m3518350607_MetadataUsageId;
extern const RuntimeMethod* SmallXmlParser_ReadCDATASection_m138715165_RuntimeMethod_var;
extern const uint32_t SmallXmlParser_ReadCDATASection_m138715165_MetadataUsageId;
extern const RuntimeMethod* SmallXmlParser_ReadComment_m1578426707_RuntimeMethod_var;
extern String_t* _stringLiteral2372855559;
extern const uint32_t SmallXmlParser_ReadComment_m1578426707_MetadataUsageId;
extern RuntimeClass* ArrayList_t2718874744_il2cpp_TypeInfo_var;
extern const uint32_t AttrListImpl__ctor_m3844427077_MetadataUsageId;
extern const uint32_t AttrListImpl_GetName_m2880551319_MetadataUsageId;
extern const uint32_t AttrListImpl_GetValue_m3657391095_MetadataUsageId;
extern const uint32_t AttrListImpl_GetValue_m215192361_MetadataUsageId;
extern const RuntimeType* String_t_0_0_0_var;
extern RuntimeClass* Type_t_il2cpp_TypeInfo_var;
extern const uint32_t AttrListImpl_get_Names_m977594476_MetadataUsageId;
extern const uint32_t AttrListImpl_get_Values_m3139810172_MetadataUsageId;
extern RuntimeClass* Int32_t2950945753_il2cpp_TypeInfo_var;
extern String_t* _stringLiteral3493700598;
extern const uint32_t SmallXmlParserException__ctor_m1976648878_MetadataUsageId;
extern String_t* _stringLiteral2452977534;
extern const uint32_t AccessViolationException__ctor_m459401853_MetadataUsageId;
extern RuntimeClass* ObjectU5BU5D_t2843939325_il2cpp_TypeInfo_var;
extern const uint32_t Activator_CreateInstance_m94526014_MetadataUsageId;
extern RuntimeClass* Binder_t2999457153_il2cpp_TypeInfo_var;
extern const uint32_t Activator_CreateInstance_m3736402505_MetadataUsageId;
extern RuntimeClass* TypeU5BU5D_t3940880105_il2cpp_TypeInfo_var;
extern RuntimeClass* ConstructorInfo_t5769829_il2cpp_TypeInfo_var;
extern RuntimeClass* MissingMethodException_t1274661534_il2cpp_TypeInfo_var;
extern RuntimeClass* NotSupportedException_t1314879016_il2cpp_TypeInfo_var;
extern const RuntimeMethod* Activator_CreateInstance_m2998273980_RuntimeMethod_var;
extern String_t* _stringLiteral2686827879;
extern String_t* _stringLiteral3243520166;
extern String_t* _stringLiteral2788501656;
extern String_t* _stringLiteral576173281;
extern String_t* _stringLiteral3861759892;
extern const uint32_t Activator_CreateInstance_m2998273980_MetadataUsageId;
extern RuntimeClass* MonoType_t_il2cpp_TypeInfo_var;
extern const RuntimeMethod* Activator_CreateInstance_m2597605935_RuntimeMethod_var;
extern String_t* _stringLiteral940967826;
extern String_t* _stringLiteral882111926;
extern const uint32_t Activator_CreateInstance_m2597605935_MetadataUsageId;
extern const RuntimeType* TypedReference_t1491108119_0_0_0_var;
extern const RuntimeType* ArgIterator_t539591376_0_0_0_var;
extern const RuntimeType* Void_t1185182177_0_0_0_var;
extern const RuntimeType* RuntimeArgumentHandle_t3162137059_0_0_0_var;
extern const RuntimeMethod* Activator_CheckType_m2787213785_RuntimeMethod_var;
extern String_t* _stringLiteral434156966;
extern const uint32_t Activator_CheckType_m2787213785_MetadataUsageId;
extern const RuntimeMethod* Activator_CheckAbstractType_m2015247896_RuntimeMethod_var;
extern String_t* _stringLiteral1908389171;
extern const uint32_t Activator_CheckAbstractType_m2015247896_MetadataUsageId;
extern RuntimeClass* FileNotFoundException_t225391025_il2cpp_TypeInfo_var;
extern const RuntimeMethod* AppDomain_Load_m2969998014_RuntimeMethod_var;
extern String_t* _stringLiteral1952006009;
extern String_t* _stringLiteral248753636;
extern const uint32_t AppDomain_Load_m2969998014_MetadataUsageId;
extern RuntimeClass* AppDomain_t1571427825_il2cpp_TypeInfo_var;
extern RuntimeClass* Guid_t_il2cpp_TypeInfo_var;
extern const uint32_t AppDomain_GetProcessGuid_m3316193837_MetadataUsageId;
extern RuntimeClass* TypeBuilder_t1073948154_il2cpp_TypeInfo_var;
extern RuntimeClass* Hashtable_t1853889766_il2cpp_TypeInfo_var;
extern RuntimeClass* ResolveEventHandler_t2775508208_il2cpp_TypeInfo_var;
extern RuntimeClass* ResolveEventArgs_t1779456501_il2cpp_TypeInfo_var;
extern const uint32_t AppDomain_DoTypeResolve_m1335093328_MetadataUsageId;
extern String_t* _stringLiteral2760664194;
extern const uint32_t ApplicationException__ctor_m2557611022_MetadataUsageId;
extern const RuntimeMethod* ArgIterator_Equals_m4289772452_RuntimeMethod_var;
extern String_t* _stringLiteral3728554605;
extern const uint32_t ArgIterator_Equals_m4289772452_MetadataUsageId;
extern String_t* _stringLiteral2953645311;
extern const uint32_t ArgumentException__ctor_m3698743796_MetadataUsageId;
extern String_t* _stringLiteral3227757242;
extern const uint32_t ArgumentException__ctor_m3200406061_MetadataUsageId;
extern String_t* _stringLiteral3659667674;
extern const uint32_t ArgumentException_get_Message_m520762021_MetadataUsageId;
extern String_t* _stringLiteral595465389;
extern const uint32_t ArgumentNullException__ctor_m2751210921_MetadataUsageId;
extern const uint32_t ArgumentNullException__ctor_m1170824041_MetadataUsageId;
extern String_t* _stringLiteral4256626985;
extern const uint32_t ArgumentOutOfRangeException__ctor_m2047740448_MetadataUsageId;
extern const uint32_t ArgumentOutOfRangeException__ctor_m3628145864_MetadataUsageId;
extern String_t* _stringLiteral4139101678;
extern const uint32_t ArgumentOutOfRangeException__ctor_m769015475_MetadataUsageId;
extern const uint32_t ArgumentOutOfRangeException_get_Message_m1913926628_MetadataUsageId;
extern String_t* _stringLiteral3292752458;
extern const uint32_t ArithmeticException__ctor_m479063094_MetadataUsageId;
extern RuntimeClass* IndexOutOfRangeException_t1578797820_il2cpp_TypeInfo_var;
extern const RuntimeMethod* Array_System_Collections_IList_get_Item_m631337679_RuntimeMethod_var;
extern String_t* _stringLiteral797640427;
extern String_t* _stringLiteral1684534236;
extern const uint32_t Array_System_Collections_IList_get_Item_m631337679_MetadataUsageId;
extern const RuntimeMethod* Array_System_Collections_IList_set_Item_m2667455393_RuntimeMethod_var;
extern const uint32_t Array_System_Collections_IList_set_Item_m2667455393_MetadataUsageId;
extern const RuntimeMethod* Array_System_Collections_IList_Add_m1063688101_RuntimeMethod_var;
extern const uint32_t Array_System_Collections_IList_Add_m1063688101_MetadataUsageId;
extern RuntimeClass* RankException_t3812021567_il2cpp_TypeInfo_var;
extern const RuntimeMethod* Array_System_Collections_IList_Contains_m3297693594_RuntimeMethod_var;
extern const uint32_t Array_System_Collections_IList_Contains_m3297693594_MetadataUsageId;
extern const RuntimeMethod* Array_System_Collections_IList_IndexOf_m3301661616_RuntimeMethod_var;
extern const uint32_t Array_System_Collections_IList_IndexOf_m3301661616_MetadataUsageId;
extern const RuntimeMethod* Array_System_Collections_IList_Insert_m2476478913_RuntimeMethod_var;
extern const uint32_t Array_System_Collections_IList_Insert_m2476478913_MetadataUsageId;
extern const RuntimeMethod* Array_System_Collections_IList_Remove_m1479535418_RuntimeMethod_var;
extern const uint32_t Array_System_Collections_IList_Remove_m1479535418_MetadataUsageId;
extern const RuntimeMethod* Array_System_Collections_IList_RemoveAt_m41405158_RuntimeMethod_var;
extern const uint32_t Array_System_Collections_IList_RemoveAt_m41405158_MetadataUsageId;
extern const RuntimeMethod* Array_InternalArray__ICollection_Clear_m4058340337_RuntimeMethod_var;
extern String_t* _stringLiteral2240313997;
extern const uint32_t Array_InternalArray__ICollection_Clear_m4058340337_MetadataUsageId;
extern const RuntimeMethod* Array_InternalArray__RemoveAt_m616137314_RuntimeMethod_var;
extern const uint32_t Array_InternalArray__RemoveAt_m616137314_MetadataUsageId;
extern RuntimeClass* SimpleEnumerator_t433892249_il2cpp_TypeInfo_var;
extern const uint32_t Array_GetEnumerator_m4277730612_MetadataUsageId;
extern const RuntimeMethod* Array_GetValue_m2528546681_RuntimeMethod_var;
extern String_t* _stringLiteral2455840074;
extern String_t* _stringLiteral1145078360;
extern const uint32_t Array_GetValue_m2528546681_MetadataUsageId;
extern RuntimeClass* Int32U5BU5D_t385246372_il2cpp_TypeInfo_var;
extern const uint32_t Array_GetValue_m352525925_MetadataUsageId;
extern const uint32_t Array_GetValue_m793801589_MetadataUsageId;
extern RuntimeClass* ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var;
extern const RuntimeMethod* Array_GetValue_m2528415604_RuntimeMethod_var;
extern String_t* _stringLiteral1356516794;
extern const uint32_t Array_GetValue_m2528415604_MetadataUsageId;
extern const RuntimeMethod* Array_GetValue_m4249310555_RuntimeMethod_var;
extern String_t* _stringLiteral800851691;
extern String_t* _stringLiteral800917227;
extern const uint32_t Array_GetValue_m4249310555_MetadataUsageId;
extern const RuntimeMethod* Array_GetValue_m1062368071_RuntimeMethod_var;
extern String_t* _stringLiteral800982763;
extern const uint32_t Array_GetValue_m1062368071_MetadataUsageId;
extern const RuntimeMethod* Array_SetValue_m3412648248_RuntimeMethod_var;
extern const uint32_t Array_SetValue_m3412648248_MetadataUsageId;
extern const RuntimeMethod* Array_SetValue_m394135409_RuntimeMethod_var;
extern const uint32_t Array_SetValue_m394135409_MetadataUsageId;
extern const RuntimeMethod* Array_SetValue_m282347242_RuntimeMethod_var;
extern const uint32_t Array_SetValue_m282347242_MetadataUsageId;
extern const RuntimeMethod* Array_SetValue_m3412255035_RuntimeMethod_var;
extern String_t* _stringLiteral1537657916;
extern const uint32_t Array_SetValue_m3412255035_MetadataUsageId;
extern const uint32_t Array_SetValue_m3998268557_MetadataUsageId;
extern const uint32_t Array_SetValue_m2601781200_MetadataUsageId;
extern const uint32_t Array_CreateInstance_m2750085942_MetadataUsageId;
extern const uint32_t Array_CreateInstance_m1740754882_MetadataUsageId;
extern const uint32_t Array_CreateInstance_m2696293787_MetadataUsageId;
extern RuntimeClass* TypeLoadException_t3707937253_il2cpp_TypeInfo_var;
extern const RuntimeMethod* Array_CreateInstance_m2175520447_RuntimeMethod_var;
extern String_t* _stringLiteral1767760159;
extern String_t* _stringLiteral1151827249;
extern String_t* _stringLiteral3410374040;
extern String_t* _stringLiteral408657276;
extern String_t* _stringLiteral482725228;
extern const uint32_t Array_CreateInstance_m2175520447_MetadataUsageId;
extern const RuntimeMethod* Array_CreateInstance_m3395539612_RuntimeMethod_var;
extern String_t* _stringLiteral1784063431;
extern String_t* _stringLiteral543129819;
extern String_t* _stringLiteral368171286;
extern String_t* _stringLiteral2504639343;
extern String_t* _stringLiteral3934254921;
extern const uint32_t Array_CreateInstance_m3395539612_MetadataUsageId;
extern const RuntimeMethod* Array_GetIntArray_m1205726566_RuntimeMethod_var;
extern String_t* _stringLiteral3498926489;
extern String_t* _stringLiteral1633051326;
extern const uint32_t Array_GetIntArray_m1205726566_MetadataUsageId;
extern const RuntimeMethod* Array_CreateInstance_m1027597705_RuntimeMethod_var;
extern const uint32_t Array_CreateInstance_m1027597705_MetadataUsageId;
extern const RuntimeMethod* Array_GetValue_m116098292_RuntimeMethod_var;
extern String_t* _stringLiteral3305999801;
extern const uint32_t Array_GetValue_m116098292_MetadataUsageId;
extern const RuntimeMethod* Array_SetValue_m1817114699_RuntimeMethod_var;
extern const uint32_t Array_SetValue_m1817114699_MetadataUsageId;
extern RuntimeClass* IComparable_t36111218_il2cpp_TypeInfo_var;
extern const RuntimeMethod* Array_BinarySearch_m687718979_RuntimeMethod_var;
extern String_t* _stringLiteral4007973390;
extern String_t* _stringLiteral3353253190;
extern const uint32_t Array_BinarySearch_m687718979_MetadataUsageId;
extern const RuntimeMethod* Array_BinarySearch_m157235616_RuntimeMethod_var;
extern String_t* _stringLiteral2275762465;
extern const uint32_t Array_BinarySearch_m157235616_MetadataUsageId;
extern const RuntimeMethod* Array_BinarySearch_m3171087170_RuntimeMethod_var;
extern String_t* _stringLiteral165262286;
extern String_t* _stringLiteral1212500642;
extern String_t* _stringLiteral4139011980;
extern String_t* _stringLiteral764441593;
extern String_t* _stringLiteral4109807668;
extern const uint32_t Array_BinarySearch_m3171087170_MetadataUsageId;
extern const RuntimeMethod* Array_BinarySearch_m1987924169_RuntimeMethod_var;
extern const uint32_t Array_BinarySearch_m1987924169_MetadataUsageId;
extern RuntimeClass* Comparer_t1912461351_il2cpp_TypeInfo_var;
extern RuntimeClass* IComparer_t1540313114_il2cpp_TypeInfo_var;
extern RuntimeClass* InvalidOperationException_t56020091_il2cpp_TypeInfo_var;
extern const RuntimeMethod* Array_DoBinarySearch_m3657328456_RuntimeMethod_var;
extern String_t* _stringLiteral525549249;
extern const uint32_t Array_DoBinarySearch_m3657328456_MetadataUsageId;
extern const RuntimeMethod* Array_Clear_m2231608178_RuntimeMethod_var;
extern String_t* _stringLiteral981375421;
extern String_t* _stringLiteral3960923460;
extern String_t* _stringLiteral3722491601;
extern const uint32_t Array_Clear_m2231608178_MetadataUsageId;
extern const RuntimeMethod* Array_Copy_m1988217701_RuntimeMethod_var;
extern String_t* _stringLiteral530567594;
extern String_t* _stringLiteral1688126764;
extern const uint32_t Array_Copy_m1988217701_MetadataUsageId;
extern const RuntimeType* RuntimeObject_0_0_0_var;
extern RuntimeClass* InvalidCastException_t3927145244_il2cpp_TypeInfo_var;
extern RuntimeClass* ArrayTypeMismatchException_t2342549375_il2cpp_TypeInfo_var;
extern const RuntimeMethod* Array_Copy_m344457298_RuntimeMethod_var;
extern String_t* _stringLiteral4004074309;
extern String_t* _stringLiteral1511102372;
extern String_t* _stringLiteral17874541;
extern String_t* _stringLiteral1039466911;
extern const uint32_t Array_Copy_m344457298_MetadataUsageId;
extern const RuntimeMethod* Array_Copy_m514679699_RuntimeMethod_var;
extern String_t* _stringLiteral2620667082;
extern const uint32_t Array_Copy_m514679699_MetadataUsageId;
extern const RuntimeMethod* Array_Copy_m1988610914_RuntimeMethod_var;
extern const uint32_t Array_Copy_m1988610914_MetadataUsageId;
extern const RuntimeMethod* Array_IndexOf_m1714973386_RuntimeMethod_var;
extern const uint32_t Array_IndexOf_m1714973386_MetadataUsageId;
extern const RuntimeMethod* Array_IndexOf_m2527777724_RuntimeMethod_var;
extern const uint32_t Array_IndexOf_m2527777724_MetadataUsageId;
extern const RuntimeMethod* Array_IndexOf_m2805394078_RuntimeMethod_var;
extern const uint32_t Array_IndexOf_m2805394078_MetadataUsageId;
extern const RuntimeMethod* Array_LastIndexOf_m1426784917_RuntimeMethod_var;
extern const uint32_t Array_LastIndexOf_m1426784917_MetadataUsageId;
extern const RuntimeMethod* Array_LastIndexOf_m3999123122_RuntimeMethod_var;
extern const uint32_t Array_LastIndexOf_m3999123122_MetadataUsageId;
extern const RuntimeMethod* Array_LastIndexOf_m707980579_RuntimeMethod_var;
extern const uint32_t Array_LastIndexOf_m707980579_MetadataUsageId;
extern RuntimeClass* Swapper_t2822380397_il2cpp_TypeInfo_var;
extern RuntimeClass* DoubleU5BU5D_t3413330114_il2cpp_TypeInfo_var;
extern const RuntimeMethod* Array_int_swapper_m3830919681_RuntimeMethod_var;
extern const RuntimeMethod* Array_double_swapper_m4135376022_RuntimeMethod_var;
extern const RuntimeMethod* Array_obj_swapper_m472969017_RuntimeMethod_var;
extern const RuntimeMethod* Array_slow_swapper_m4116724811_RuntimeMethod_var;
extern const uint32_t Array_get_swapper_m3428716670_MetadataUsageId;
extern const RuntimeMethod* Array_Reverse_m3714848183_RuntimeMethod_var;
extern const uint32_t Array_Reverse_m3714848183_MetadataUsageId;
extern const RuntimeMethod* Array_Reverse_m816310962_RuntimeMethod_var;
extern const uint32_t Array_Reverse_m816310962_MetadataUsageId;
extern const RuntimeMethod* Array_Sort_m3698291233_RuntimeMethod_var;
extern const uint32_t Array_Sort_m3698291233_MetadataUsageId;
extern const RuntimeMethod* Array_Sort_m459550270_RuntimeMethod_var;
extern String_t* _stringLiteral465436770;
extern const uint32_t Array_Sort_m459550270_MetadataUsageId;
extern const RuntimeMethod* Array_Sort_m870838517_RuntimeMethod_var;
extern const uint32_t Array_Sort_m870838517_MetadataUsageId;
extern const RuntimeMethod* Array_Sort_m3145621264_RuntimeMethod_var;
extern const uint32_t Array_Sort_m3145621264_MetadataUsageId;
extern RuntimeClass* UInt32U5BU5D_t2770800703_il2cpp_TypeInfo_var;
extern const RuntimeMethod* Array_Sort_m2934663614_RuntimeMethod_var;
extern String_t* _stringLiteral3166607389;
extern const uint32_t Array_Sort_m2934663614_MetadataUsageId;
extern const uint32_t Array_int_swapper_m3830919681_MetadataUsageId;
extern const uint32_t Array_obj_swapper_m472969017_MetadataUsageId;
extern const uint32_t Array_double_swapper_m4135376022_MetadataUsageId;
extern const uint32_t Array_compare_m2837221808_MetadataUsageId;
extern const RuntimeMethod* Array_CopyTo_m225704097_RuntimeMethod_var;
extern String_t* _stringLiteral221691501;
extern const uint32_t Array_CopyTo_m225704097_MetadataUsageId;
extern const RuntimeMethod* Array_CopyTo_m3358199659_RuntimeMethod_var;
extern const uint32_t Array_CopyTo_m3358199659_MetadataUsageId;
extern const RuntimeMethod* SimpleEnumerator_get_Current_m72361444_RuntimeMethod_var;
extern String_t* _stringLiteral320771010;
extern String_t* _stringLiteral3811138045;
extern const uint32_t SimpleEnumerator_get_Current_m72361444_MetadataUsageId;
extern const uint32_t Swapper_BeginInvoke_m1688449973_MetadataUsageId;
extern String_t* _stringLiteral435687691;
extern const uint32_t ArrayTypeMismatchException__ctor_m3375008173_MetadataUsageId;
extern const RuntimeType* Attribute_t861562559_0_0_0_var;
extern const RuntimeMethod* Attribute_CheckParameters_m456532822_RuntimeMethod_var;
extern String_t* _stringLiteral4059539929;
extern String_t* _stringLiteral1460131600;
extern String_t* _stringLiteral1497536000;
extern const uint32_t Attribute_CheckParameters_m456532822_MetadataUsageId;
extern RuntimeClass* MonoCustomAttrs_t3634537737_il2cpp_TypeInfo_var;
extern const uint32_t Attribute_GetCustomAttribute_m1244111375_MetadataUsageId;
extern const RuntimeMethod* Attribute_IsDefined_m1430686743_RuntimeMethod_var;
extern String_t* _stringLiteral919961682;
extern const uint32_t Attribute_IsDefined_m1430686743_MetadataUsageId;
extern RuntimeClass* Attribute_t861562559_il2cpp_TypeInfo_var;
extern const uint32_t Attribute_Equals_m710241514_MetadataUsageId;
extern RuntimeClass* BitConverter_t3118986983_il2cpp_TypeInfo_var;
extern const uint32_t BitConverter__cctor_m3841343255_MetadataUsageId;
extern const uint32_t BitConverter_DoubleToInt64Bits_m3574395137_MetadataUsageId;
extern const uint32_t BitConverter_GetBytes_m2120707223_MetadataUsageId;
extern const uint32_t BitConverter_GetBytes_m3693159656_MetadataUsageId;
extern const RuntimeMethod* BitConverter_PutBytes_m2614286581_RuntimeMethod_var;
extern String_t* _stringLiteral2410720131;
extern String_t* _stringLiteral1358229803;
extern String_t* _stringLiteral218911153;
extern const uint32_t BitConverter_PutBytes_m2614286581_MetadataUsageId;
extern const uint32_t BitConverter_ToInt64_m349022421_MetadataUsageId;
extern const RuntimeMethod* BitConverter_ToString_m3464863163_RuntimeMethod_var;
extern const uint32_t BitConverter_ToString_m3464863163_MetadataUsageId;
extern const RuntimeMethod* BitConverter_ToString_m3439099539_RuntimeMethod_var;
extern String_t* _stringLiteral1401089528;
extern String_t* _stringLiteral1939948882;
extern String_t* _stringLiteral3506339377;
extern const uint32_t BitConverter_ToString_m3439099539_MetadataUsageId;
extern RuntimeClass* Boolean_t97287965_il2cpp_TypeInfo_var;
extern String_t* _stringLiteral3875955625;
extern String_t* _stringLiteral4002445261;
extern const uint32_t Boolean__cctor_m1091629305_MetadataUsageId;
extern const RuntimeMethod* Boolean_System_IConvertible_ToType_m2078828242_RuntimeMethod_var;
extern String_t* _stringLiteral3252615044;
extern const uint32_t Boolean_System_IConvertible_ToType_m2078828242_MetadataUsageId;
extern const uint32_t Boolean_System_IConvertible_ToByte_m3917074947_MetadataUsageId;
extern const RuntimeMethod* Boolean_System_IConvertible_ToChar_m4279513009_RuntimeMethod_var;
extern const uint32_t Boolean_System_IConvertible_ToChar_m4279513009_MetadataUsageId;
extern const RuntimeMethod* Boolean_System_IConvertible_ToDateTime_m603510836_RuntimeMethod_var;
extern const uint32_t Boolean_System_IConvertible_ToDateTime_m603510836_MetadataUsageId;
extern const uint32_t Boolean_System_IConvertible_ToDecimal_m3176932461_MetadataUsageId;
extern const uint32_t Boolean_System_IConvertible_ToDouble_m2859188631_MetadataUsageId;
extern const uint32_t Boolean_System_IConvertible_ToInt16_m973746887_MetadataUsageId;
extern const uint32_t Boolean_System_IConvertible_ToInt32_m1127498050_MetadataUsageId;
extern const uint32_t Boolean_System_IConvertible_ToInt64_m2059204559_MetadataUsageId;
extern const uint32_t Boolean_System_IConvertible_ToSByte_m806999_MetadataUsageId;
extern const uint32_t Boolean_System_IConvertible_ToSingle_m1524606222_MetadataUsageId;
extern const uint32_t Boolean_System_IConvertible_ToUInt16_m3465173538_MetadataUsageId;
extern const uint32_t Boolean_System_IConvertible_ToUInt32_m2723177447_MetadataUsageId;
extern const uint32_t Boolean_System_IConvertible_ToUInt64_m1739877596_MetadataUsageId;
extern const RuntimeMethod* Boolean_CompareTo_m3665076258_RuntimeMethod_var;
extern String_t* _stringLiteral1558646782;
extern const uint32_t Boolean_CompareTo_m3665076258_MetadataUsageId;
extern const uint32_t Boolean_Equals_m2410333903_MetadataUsageId;
extern RuntimeClass* FormatException_t154580423_il2cpp_TypeInfo_var;
extern const RuntimeMethod* Boolean_Parse_m2370352694_RuntimeMethod_var;
extern String_t* _stringLiteral3793797373;
extern const uint32_t Boolean_Parse_m2370352694_MetadataUsageId;
extern const uint32_t Boolean_ToString_m2664721875_MetadataUsageId;
extern const RuntimeMethod* Buffer_ByteLength_m2639516074_RuntimeMethod_var;
extern String_t* _stringLiteral2265951865;
extern const uint32_t Buffer_ByteLength_m2639516074_MetadataUsageId;
extern const RuntimeMethod* Buffer_BlockCopy_m2884209081_RuntimeMethod_var;
extern String_t* _stringLiteral538040360;
extern String_t* _stringLiteral2554397442;
extern String_t* _stringLiteral220175259;
extern String_t* _stringLiteral2892689725;
extern String_t* _stringLiteral3566890907;
extern String_t* _stringLiteral2002595880;
extern String_t* _stringLiteral4039891654;
extern const uint32_t Buffer_BlockCopy_m2884209081_MetadataUsageId;
extern RuntimeClass* Byte_t1134296376_il2cpp_TypeInfo_var;
extern const RuntimeMethod* Byte_System_IConvertible_ToType_m2251112646_RuntimeMethod_var;
extern const uint32_t Byte_System_IConvertible_ToType_m2251112646_MetadataUsageId;
extern const uint32_t Byte_System_IConvertible_ToBoolean_m2888023769_MetadataUsageId;
extern const uint32_t Byte_System_IConvertible_ToChar_m2173687830_MetadataUsageId;
extern const RuntimeMethod* Byte_System_IConvertible_ToDateTime_m3654084722_RuntimeMethod_var;
extern const uint32_t Byte_System_IConvertible_ToDateTime_m3654084722_MetadataUsageId;
extern const uint32_t Byte_System_IConvertible_ToDecimal_m3746192770_MetadataUsageId;
extern const uint32_t Byte_System_IConvertible_ToDouble_m1540319472_MetadataUsageId;
extern const uint32_t Byte_System_IConvertible_ToInt16_m4136764794_MetadataUsageId;
extern const uint32_t Byte_System_IConvertible_ToInt32_m3495522413_MetadataUsageId;
extern const uint32_t Byte_System_IConvertible_ToInt64_m285584218_MetadataUsageId;
extern const uint32_t Byte_System_IConvertible_ToSByte_m1869482168_MetadataUsageId;
extern const uint32_t Byte_System_IConvertible_ToSingle_m324484566_MetadataUsageId;
extern const uint32_t Byte_System_IConvertible_ToUInt16_m1879180133_MetadataUsageId;
extern const uint32_t Byte_System_IConvertible_ToUInt32_m1049546902_MetadataUsageId;
extern const uint32_t Byte_System_IConvertible_ToUInt64_m371883985_MetadataUsageId;
extern const RuntimeMethod* Byte_CompareTo_m4285128861_RuntimeMethod_var;
extern String_t* _stringLiteral171208806;
extern const uint32_t Byte_CompareTo_m4285128861_MetadataUsageId;
extern const uint32_t Byte_Equals_m1161982810_MetadataUsageId;
extern RuntimeClass* OverflowException_t2020128637_il2cpp_TypeInfo_var;
extern const RuntimeMethod* Byte_Parse_m3200377149_RuntimeMethod_var;
extern String_t* _stringLiteral2517860609;
extern const uint32_t Byte_Parse_m3200377149_MetadataUsageId;
extern RuntimeClass* NumberFormatter_t1182924621_il2cpp_TypeInfo_var;
extern const uint32_t Byte_ToString_m721125428_MetadataUsageId;
extern const uint32_t Byte_ToString_m2335342258_MetadataUsageId;
extern const uint32_t Byte_ToString_m4063101981_MetadataUsageId;
extern const uint32_t Char__cctor_m2787437263_MetadataUsageId;
extern const RuntimeMethod* Char_System_IConvertible_ToType_m4138905176_RuntimeMethod_var;
extern const uint32_t Char_System_IConvertible_ToType_m4138905176_MetadataUsageId;
extern const RuntimeMethod* Char_System_IConvertible_ToBoolean_m309214875_RuntimeMethod_var;
extern const uint32_t Char_System_IConvertible_ToBoolean_m309214875_MetadataUsageId;
extern const uint32_t Char_System_IConvertible_ToByte_m2347554595_MetadataUsageId;
extern const RuntimeMethod* Char_System_IConvertible_ToDateTime_m3564102661_RuntimeMethod_var;
extern const uint32_t Char_System_IConvertible_ToDateTime_m3564102661_MetadataUsageId;
extern const RuntimeMethod* Char_System_IConvertible_ToDecimal_m3534906463_RuntimeMethod_var;
extern const uint32_t Char_System_IConvertible_ToDecimal_m3534906463_MetadataUsageId;
extern const RuntimeMethod* Char_System_IConvertible_ToDouble_m3575321888_RuntimeMethod_var;
extern const uint32_t Char_System_IConvertible_ToDouble_m3575321888_MetadataUsageId;
extern const uint32_t Char_System_IConvertible_ToInt16_m975497224_MetadataUsageId;
extern const uint32_t Char_System_IConvertible_ToInt32_m1777243200_MetadataUsageId;
extern const uint32_t Char_System_IConvertible_ToInt64_m1630543716_MetadataUsageId;
extern const uint32_t Char_System_IConvertible_ToSByte_m973063527_MetadataUsageId;
extern const RuntimeMethod* Char_System_IConvertible_ToSingle_m2690985411_RuntimeMethod_var;
extern const uint32_t Char_System_IConvertible_ToSingle_m2690985411_MetadataUsageId;
extern const uint32_t Char_System_IConvertible_ToUInt16_m2449138174_MetadataUsageId;
extern const uint32_t Char_System_IConvertible_ToUInt32_m3901815580_MetadataUsageId;
extern const uint32_t Char_System_IConvertible_ToUInt64_m3536560782_MetadataUsageId;
extern const RuntimeMethod* Char_CompareTo_m42489266_RuntimeMethod_var;
extern String_t* _stringLiteral1920911092;
extern const uint32_t Char_CompareTo_m42489266_MetadataUsageId;
extern const uint32_t Char_Equals_m1279957088_MetadataUsageId;
extern const uint32_t Char_GetUnicodeCategory_m57882613_MetadataUsageId;
extern const uint32_t Char_IsDigit_m3646673943_MetadataUsageId;
extern const uint32_t Char_IsLetter_m3996985877_MetadataUsageId;
extern const uint32_t Char_IsLetterOrDigit_m3494175785_MetadataUsageId;
extern const uint32_t Char_IsLower_m3108076820_MetadataUsageId;
extern const uint32_t Char_IsSurrogate_m3686972571_MetadataUsageId;
extern const uint32_t Char_IsUpper_m3564669513_MetadataUsageId;
extern const uint32_t Char_IsWhiteSpace_m2148390798_MetadataUsageId;
extern const uint32_t Char_IsWhiteSpace_m3213701995_MetadataUsageId;
extern const RuntimeMethod* Char_CheckParameter_m4114020212_RuntimeMethod_var;
extern String_t* _stringLiteral3452614605;
extern String_t* _stringLiteral250046704;
extern const uint32_t Char_CheckParameter_m4114020212_MetadataUsageId;
extern const RuntimeMethod* Char_Parse_m82218915_RuntimeMethod_var;
extern String_t* _stringLiteral2754150777;
extern const uint32_t Char_Parse_m82218915_MetadataUsageId;
extern const uint32_t Char_ToLower_m844856331_MetadataUsageId;
extern const uint32_t Char_ToLowerInvariant_m1926695830_MetadataUsageId;
extern const RuntimeMethod* Char_ToLower_m3999837485_RuntimeMethod_var;
extern String_t* _stringLiteral461586467;
extern const uint32_t Char_ToLower_m3999837485_MetadataUsageId;
extern const uint32_t Char_ToUpper_m3999570441_MetadataUsageId;
extern const uint32_t Char_ToUpperInvariant_m3658711221_MetadataUsageId;
extern const uint32_t CharEnumerator_System_Collections_IEnumerator_get_Current_m1328529384_MetadataUsageId;
extern const RuntimeMethod* CharEnumerator_get_Current_m525608209_RuntimeMethod_var;
extern String_t* _stringLiteral2140447019;
extern const uint32_t CharEnumerator_get_Current_m525608209_MetadataUsageId;
extern RuntimeClass* CharEnumerator_t1121470421_il2cpp_TypeInfo_var;
extern const uint32_t CharEnumerator_Clone_m1884400089_MetadataUsageId;
extern const uint32_t ArrayList__ctor_m4254721275_MetadataUsageId;
extern RuntimeClass* RuntimeArray_il2cpp_TypeInfo_var;
extern RuntimeClass* ICollection_t3904884886_il2cpp_TypeInfo_var;
extern const RuntimeMethod* ArrayList__ctor_m2130986447_RuntimeMethod_var;
extern String_t* _stringLiteral3452614589;
extern const uint32_t ArrayList__ctor_m2130986447_MetadataUsageId;
extern String_t* _stringLiteral3623012086;
extern String_t* _stringLiteral3500389620;
extern const uint32_t ArrayList__ctor_m3828927650_MetadataUsageId;
extern const uint32_t ArrayList__ctor_m2075768692_MetadataUsageId;
extern const uint32_t ArrayList__cctor_m3052737821_MetadataUsageId;
extern String_t* _stringLiteral1370080298;
extern const uint32_t ArrayList_get_Item_m3820278660_MetadataUsageId;
extern const uint32_t ArrayList_set_Item_m2003485935_MetadataUsageId;
extern String_t* _stringLiteral3623013078;
extern String_t* _stringLiteral2019553010;
extern const uint32_t ArrayList_set_Capacity_m1058991803_MetadataUsageId;
extern const uint32_t ArrayList_EnsureCapacity_m3016383533_MetadataUsageId;
extern const uint32_t ArrayList_Shift_m395607654_MetadataUsageId;
extern const RuntimeMethod* ArrayList_IndexOf_m1052788661_RuntimeMethod_var;
extern const RuntimeMethod* Array_IndexOf_TisRuntimeObject_m828474689_RuntimeMethod_var;
extern String_t* _stringLiteral2662431096;
extern String_t* _stringLiteral3732847104;
extern String_t* _stringLiteral738047332;
extern const uint32_t ArrayList_IndexOf_m1052788661_MetadataUsageId;
extern String_t* _stringLiteral3314103136;
extern const uint32_t ArrayList_Insert_m3524057793_MetadataUsageId;
extern const RuntimeMethod* ArrayList_InsertRange_m1740766984_RuntimeMethod_var;
extern const uint32_t ArrayList_InsertRange_m1740766984_MetadataUsageId;
extern String_t* _stringLiteral2628772951;
extern const uint32_t ArrayList_RemoveAt_m761734947_MetadataUsageId;
extern const RuntimeMethod* ArrayList_CopyTo_m3105450421_RuntimeMethod_var;
extern String_t* _stringLiteral2432024763;
extern const uint32_t ArrayList_CopyTo_m3105450421_MetadataUsageId;
extern RuntimeClass* SimpleEnumerator_t4287166116_il2cpp_TypeInfo_var;
extern const uint32_t ArrayList_GetEnumerator_m3176119603_MetadataUsageId;
extern const RuntimeMethod* Array_Sort_TisRuntimeObject_m440635289_RuntimeMethod_var;
extern const uint32_t ArrayList_Sort_m582560637_MetadataUsageId;
extern const uint32_t ArrayList_ToArray_m3827492363_MetadataUsageId;
extern const uint32_t ArrayList_Clone_m2682741233_MetadataUsageId;
extern const RuntimeMethod* ArrayList_ThrowNewArgumentOutOfRangeException_m3110627888_RuntimeMethod_var;
extern const uint32_t ArrayList_ThrowNewArgumentOutOfRangeException_m3110627888_MetadataUsageId;
extern RuntimeClass* SynchronizedArrayListWrapper_t2283757095_il2cpp_TypeInfo_var;
extern const RuntimeMethod* ArrayList_Synchronized_m1327684267_RuntimeMethod_var;
extern String_t* _stringLiteral3941568111;
extern const uint32_t ArrayList_Synchronized_m1327684267_MetadataUsageId;
extern RuntimeClass* ReadOnlyArrayListWrapper_t3401315650_il2cpp_TypeInfo_var;
extern const RuntimeMethod* ArrayList_ReadOnly_m1905796817_RuntimeMethod_var;
extern const uint32_t ArrayList_ReadOnly_m1905796817_MetadataUsageId;
extern const uint32_t ArrayListWrapper__ctor_m970192266_MetadataUsageId;
extern String_t* _stringLiteral1872550032;
extern const uint32_t FixedSizeArrayListWrapper_get_ErrorMessage_m3049061776_MetadataUsageId;
extern const RuntimeMethod* FixedSizeArrayListWrapper_set_Capacity_m4221053039_RuntimeMethod_var;
extern const uint32_t FixedSizeArrayListWrapper_set_Capacity_m4221053039_MetadataUsageId;
extern const RuntimeMethod* FixedSizeArrayListWrapper_Add_m4066213493_RuntimeMethod_var;
extern const uint32_t FixedSizeArrayListWrapper_Add_m4066213493_MetadataUsageId;
extern const RuntimeMethod* FixedSizeArrayListWrapper_AddRange_m413351014_RuntimeMethod_var;
extern const uint32_t FixedSizeArrayListWrapper_AddRange_m413351014_MetadataUsageId;
extern const RuntimeMethod* FixedSizeArrayListWrapper_Clear_m1544415003_RuntimeMethod_var;
extern const uint32_t FixedSizeArrayListWrapper_Clear_m1544415003_MetadataUsageId;
extern const RuntimeMethod* FixedSizeArrayListWrapper_Insert_m723948816_RuntimeMethod_var;
extern const uint32_t FixedSizeArrayListWrapper_Insert_m723948816_MetadataUsageId;
extern const RuntimeMethod* FixedSizeArrayListWrapper_InsertRange_m1706982628_RuntimeMethod_var;
extern const uint32_t FixedSizeArrayListWrapper_InsertRange_m1706982628_MetadataUsageId;
extern const RuntimeMethod* FixedSizeArrayListWrapper_Remove_m3827525800_RuntimeMethod_var;
extern const uint32_t FixedSizeArrayListWrapper_Remove_m3827525800_MetadataUsageId;
extern const RuntimeMethod* FixedSizeArrayListWrapper_RemoveAt_m3591870267_RuntimeMethod_var;
extern const uint32_t FixedSizeArrayListWrapper_RemoveAt_m3591870267_MetadataUsageId;
extern String_t* _stringLiteral2728449070;
extern const uint32_t ReadOnlyArrayListWrapper_get_ErrorMessage_m1121552994_MetadataUsageId;
extern const RuntimeMethod* ReadOnlyArrayListWrapper_set_Item_m1909157432_RuntimeMethod_var;
extern const uint32_t ReadOnlyArrayListWrapper_set_Item_m1909157432_MetadataUsageId;
extern const RuntimeMethod* ReadOnlyArrayListWrapper_Sort_m2577012511_RuntimeMethod_var;
extern const uint32_t ReadOnlyArrayListWrapper_Sort_m2577012511_MetadataUsageId;
extern const RuntimeMethod* ReadOnlyArrayListWrapper_Sort_m2022378864_RuntimeMethod_var;
extern const uint32_t ReadOnlyArrayListWrapper_Sort_m2022378864_MetadataUsageId;
extern const uint32_t SimpleEnumerator__ctor_m917940076_MetadataUsageId;
extern const uint32_t SimpleEnumerator__cctor_m2844299657_MetadataUsageId;
extern const RuntimeMethod* SimpleEnumerator_MoveNext_m3113120129_RuntimeMethod_var;
extern String_t* _stringLiteral1126590890;
extern const uint32_t SimpleEnumerator_MoveNext_m3113120129_MetadataUsageId;
extern const RuntimeMethod* SimpleEnumerator_get_Current_m2439519409_RuntimeMethod_var;
extern String_t* _stringLiteral1882906432;
extern String_t* _stringLiteral3170219154;
extern const uint32_t SimpleEnumerator_get_Current_m2439519409_MetadataUsageId;
extern const RuntimeMethod* SimpleEnumerator_Reset_m1520014659_RuntimeMethod_var;
extern const uint32_t SimpleEnumerator_Reset_m1520014659_MetadataUsageId;
extern const RuntimeMethod* BitArray__ctor_m2765908219_RuntimeMethod_var;
extern String_t* _stringLiteral419169028;
extern const uint32_t BitArray__ctor_m2765908219_MetadataUsageId;
extern const RuntimeMethod* BitArray__ctor_m52841262_RuntimeMethod_var;
extern const uint32_t BitArray__ctor_m52841262_MetadataUsageId;
extern RuntimeClass* BitArray_t4087883509_il2cpp_TypeInfo_var;
extern const uint32_t BitArray_Clone_m3537018332_MetadataUsageId;
extern RuntimeClass* BooleanU5BU5D_t2897418192_il2cpp_TypeInfo_var;
extern const RuntimeMethod* BitArray_CopyTo_m4205938202_RuntimeMethod_var;
extern String_t* _stringLiteral711425728;
extern String_t* _stringLiteral1128309649;
extern String_t* _stringLiteral607502006;
extern const uint32_t BitArray_CopyTo_m4205938202_MetadataUsageId;
extern const RuntimeMethod* BitArray_Get_m1610855460_RuntimeMethod_var;
extern const uint32_t BitArray_Get_m1610855460_MetadataUsageId;
extern const RuntimeMethod* BitArray_Set_m2486900776_RuntimeMethod_var;
extern const uint32_t BitArray_Set_m2486900776_MetadataUsageId;
extern RuntimeClass* BitArrayEnumerator_t893496218_il2cpp_TypeInfo_var;
extern const uint32_t BitArray_GetEnumerator_m1964744199_MetadataUsageId;
extern const RuntimeMethod* BitArrayEnumerator_get_Current_m4220391712_RuntimeMethod_var;
extern String_t* _stringLiteral3868419112;
extern String_t* _stringLiteral2736026462;
extern const uint32_t BitArrayEnumerator_get_Current_m4220391712_MetadataUsageId;
extern const RuntimeMethod* BitArrayEnumerator_checkVersion_m500404395_RuntimeMethod_var;
extern const uint32_t BitArrayEnumerator_checkVersion_m500404395_MetadataUsageId;
extern const uint32_t CaseInsensitiveComparer__ctor_m1508720200_MetadataUsageId;
extern RuntimeClass* CaseInsensitiveComparer_t3670035800_il2cpp_TypeInfo_var;
extern const uint32_t CaseInsensitiveComparer__cctor_m2727609021_MetadataUsageId;
extern const uint32_t CaseInsensitiveComparer_get_DefaultInvariant_m2155614047_MetadataUsageId;
extern const uint32_t CaseInsensitiveComparer_Compare_m1224120810_MetadataUsageId;
extern RuntimeClass* CaseInsensitiveHashCodeProvider_t1962629119_il2cpp_TypeInfo_var;
extern const uint32_t CaseInsensitiveHashCodeProvider__ctor_m1410573049_MetadataUsageId;
extern const RuntimeMethod* CaseInsensitiveHashCodeProvider__ctor_m3307631072_RuntimeMethod_var;
extern const uint32_t CaseInsensitiveHashCodeProvider__ctor_m3307631072_MetadataUsageId;
extern const uint32_t CaseInsensitiveHashCodeProvider__cctor_m3655208966_MetadataUsageId;
extern const uint32_t CaseInsensitiveHashCodeProvider_AreEqual_m1790260777_MetadataUsageId;
extern const uint32_t CaseInsensitiveHashCodeProvider_AreEqual_m3534448780_MetadataUsageId;
extern const uint32_t CaseInsensitiveHashCodeProvider_get_DefaultInvariant_m4264275163_MetadataUsageId;
extern const RuntimeMethod* CaseInsensitiveHashCodeProvider_GetHashCode_m2168170016_RuntimeMethod_var;
extern String_t* _stringLiteral1746845353;
extern const uint32_t CaseInsensitiveHashCodeProvider_GetHashCode_m2168170016_MetadataUsageId;
extern const uint32_t CollectionBase_System_Collections_IList_Add_m3784093852_MetadataUsageId;
extern const uint32_t CollectionBase_System_Collections_IList_Insert_m1955629979_MetadataUsageId;
extern const RuntimeMethod* CollectionBase_System_Collections_IList_Remove_m1918979845_RuntimeMethod_var;
extern String_t* _stringLiteral3301559111;
extern const uint32_t CollectionBase_System_Collections_IList_Remove_m1918979845_MetadataUsageId;
extern const RuntimeMethod* CollectionBase_System_Collections_IList_set_Item_m1592328081_RuntimeMethod_var;
extern const uint32_t CollectionBase_System_Collections_IList_set_Item_m1592328081_MetadataUsageId;
extern const uint32_t CollectionBase_get_InnerList_m132195395_MetadataUsageId;
extern const RuntimeMethod* CollectionBase_OnValidate_m1606907366_RuntimeMethod_var;
extern String_t* _stringLiteral3439493095;
extern const uint32_t CollectionBase_OnValidate_m1606907366_MetadataUsageId;
extern const RuntimeMethod* Comparer__ctor_m2580215220_RuntimeMethod_var;
extern const uint32_t Comparer__ctor_m2580215220_MetadataUsageId;
extern const uint32_t Comparer__cctor_m3311686689_MetadataUsageId;
extern const RuntimeMethod* Comparer_Compare_m3984347512_RuntimeMethod_var;
extern String_t* _stringLiteral4056318485;
extern const uint32_t Comparer_Compare_m3984347512_MetadataUsageId;
extern RuntimeClass* Il2CppComObject_il2cpp_TypeInfo_var;
extern const uint32_t DictionaryEntry_t3123975638_pinvoke_FromNativeMethodDefinition_MetadataUsageId;
extern const uint32_t DictionaryEntry_t3123975638_com_FromNativeMethodDefinition_MetadataUsageId;
extern String_t* _stringLiteral4076297504;
extern const uint32_t KeyNotFoundException__ctor_m541499307_MetadataUsageId;
extern RuntimeClass* SlotU5BU5D_t2994659099_il2cpp_TypeInfo_var;
extern const RuntimeMethod* Hashtable__ctor_m3491720775_RuntimeMethod_var;
extern String_t* _stringLiteral3914839736;
extern String_t* _stringLiteral2137170806;
extern String_t* _stringLiteral1327355122;
extern String_t* _stringLiteral144441821;
extern const uint32_t Hashtable__ctor_m3491720775_MetadataUsageId;
extern const uint32_t Hashtable__ctor_m3890751112_MetadataUsageId;
extern RuntimeClass* IDictionary_t1363984059_il2cpp_TypeInfo_var;
extern RuntimeClass* IDictionaryEnumerator_t1693217257_il2cpp_TypeInfo_var;
extern const RuntimeMethod* Hashtable__ctor_m2421324048_RuntimeMethod_var;
extern String_t* _stringLiteral2957729587;
extern const uint32_t Hashtable__ctor_m2421324048_MetadataUsageId;
extern RuntimeField* U3CPrivateImplementationDetailsU3E_t3057255361____U24U24fieldU2D27_19_FieldInfo_var;
extern const uint32_t Hashtable__cctor_m4112166779_MetadataUsageId;
extern RuntimeClass* Enumerator_t661358686_il2cpp_TypeInfo_var;
extern const uint32_t Hashtable_System_Collections_IEnumerable_GetEnumerator_m2751657639_MetadataUsageId;
extern RuntimeClass* HashKeys_t1568156503_il2cpp_TypeInfo_var;
extern const uint32_t Hashtable_get_Keys_m625158339_MetadataUsageId;
extern RuntimeClass* HashValues_t618387445_il2cpp_TypeInfo_var;
extern const uint32_t Hashtable_get_Values_m1643322147_MetadataUsageId;
extern const RuntimeMethod* Hashtable_get_Item_m2003685141_RuntimeMethod_var;
extern String_t* _stringLiteral2600271970;
extern String_t* _stringLiteral2340372691;
extern const uint32_t Hashtable_get_Item_m2003685141_MetadataUsageId;
extern RuntimeClass* DictionaryEntry_t3123975638_il2cpp_TypeInfo_var;
extern const RuntimeMethod* Hashtable_CopyTo_m2905447224_RuntimeMethod_var;
extern String_t* _stringLiteral335484879;
extern String_t* _stringLiteral4171269070;
extern String_t* _stringLiteral620593767;
extern String_t* _stringLiteral1529146404;
extern const uint32_t Hashtable_CopyTo_m2905447224_MetadataUsageId;
extern const uint32_t Hashtable_GetEnumerator_m4240267690_MetadataUsageId;
extern RuntimeClass* KeyMarker_t2496412495_il2cpp_TypeInfo_var;
extern const uint32_t Hashtable_Remove_m4032631466_MetadataUsageId;
extern const uint32_t Hashtable_Clone_m3078962909_MetadataUsageId;
extern const RuntimeType* Single_t1397266774_0_0_0_var;
extern const RuntimeType* Int32_t2950945753_0_0_0_var;
extern const RuntimeType* ObjectU5BU5D_t2843939325_0_0_0_var;
extern RuntimeClass* Single_t1397266774_il2cpp_TypeInfo_var;
extern RuntimeClass* IEqualityComparer_t1493878338_il2cpp_TypeInfo_var;
extern RuntimeClass* IHashCodeProvider_t267601189_il2cpp_TypeInfo_var;
extern RuntimeClass* SerializationException_t3941511869_il2cpp_TypeInfo_var;
extern const RuntimeMethod* Hashtable_OnDeserialization_m1032066502_RuntimeMethod_var;
extern String_t* _stringLiteral2137201366;
extern String_t* _stringLiteral1902402919;
extern String_t* _stringLiteral1982757576;
extern String_t* _stringLiteral892943380;
extern String_t* _stringLiteral2714025534;
extern String_t* _stringLiteral953796230;
extern String_t* _stringLiteral465436802;
extern String_t* _stringLiteral3498927737;
extern String_t* _stringLiteral1452171784;
extern const uint32_t Hashtable_OnDeserialization_m1032066502_MetadataUsageId;
extern RuntimeClass* SyncHashtable_t3569774773_il2cpp_TypeInfo_var;
extern const RuntimeMethod* Hashtable_Synchronized_m2228653257_RuntimeMethod_var;
extern String_t* _stringLiteral3496353285;
extern const uint32_t Hashtable_Synchronized_m2228653257_MetadataUsageId;
extern const uint32_t Hashtable_GetHash_m3068611952_MetadataUsageId;
extern const uint32_t Hashtable_KeyEquals_m2549637027_MetadataUsageId;
extern const RuntimeMethod* Hashtable_SetTable_m1520626497_RuntimeMethod_var;
extern const uint32_t Hashtable_SetTable_m1520626497_MetadataUsageId;
extern const RuntimeMethod* Hashtable_Find_m1835111773_RuntimeMethod_var;
extern const uint32_t Hashtable_Find_m1835111773_MetadataUsageId;
extern const uint32_t Hashtable_Rehash_m2389268722_MetadataUsageId;
extern const RuntimeMethod* Hashtable_PutImpl_m2485103604_RuntimeMethod_var;
extern String_t* _stringLiteral4256447631;
extern const uint32_t Hashtable_PutImpl_m2485103604_MetadataUsageId;
extern const uint32_t Hashtable_CopyToArray_m320168007_MetadataUsageId;
extern const uint32_t Hashtable_CalcPrime_m550773117_MetadataUsageId;
extern const uint32_t Hashtable_ToPrime_m33531354_MetadataUsageId;
extern String_t* _stringLiteral3975821837;
extern const uint32_t Enumerator__cctor_m4169372056_MetadataUsageId;
extern const RuntimeMethod* Enumerator_FailFast_m3955249002_RuntimeMethod_var;
extern const uint32_t Enumerator_FailFast_m3955249002_MetadataUsageId;
extern const uint32_t Enumerator_MoveNext_m1474126172_MetadataUsageId;
extern const RuntimeMethod* Enumerator_get_Entry_m2184304359_RuntimeMethod_var;
extern const uint32_t Enumerator_get_Entry_m2184304359_MetadataUsageId;
extern const RuntimeMethod* Enumerator_get_Key_m2288024554_RuntimeMethod_var;
extern const uint32_t Enumerator_get_Key_m2288024554_MetadataUsageId;
extern const RuntimeMethod* Enumerator_get_Value_m1047280424_RuntimeMethod_var;
extern const uint32_t Enumerator_get_Value_m1047280424_MetadataUsageId;
extern const RuntimeMethod* Enumerator_get_Current_m2763018784_RuntimeMethod_var;
extern String_t* _stringLiteral2944759611;
extern const uint32_t Enumerator_get_Current_m2763018784_MetadataUsageId;
extern const RuntimeMethod* HashKeys__ctor_m2668698759_RuntimeMethod_var;
extern const uint32_t HashKeys__ctor_m2668698759_MetadataUsageId;
extern const RuntimeMethod* HashKeys_CopyTo_m4219627824_RuntimeMethod_var;
extern String_t* _stringLiteral1447312481;
extern const uint32_t HashKeys_CopyTo_m4219627824_MetadataUsageId;
extern const uint32_t HashKeys_GetEnumerator_m3432430781_MetadataUsageId;
extern const RuntimeMethod* HashValues__ctor_m1651100305_RuntimeMethod_var;
extern const uint32_t HashValues__ctor_m1651100305_MetadataUsageId;
extern const RuntimeMethod* HashValues_CopyTo_m2621023127_RuntimeMethod_var;
extern const uint32_t HashValues_CopyTo_m2621023127_MetadataUsageId;
extern const uint32_t HashValues_GetEnumerator_m2924783834_MetadataUsageId;
extern const uint32_t KeyMarker__cctor_m2590194914_MetadataUsageId;
extern const uint32_t Slot_t3975888750_pinvoke_FromNativeMethodDefinition_MetadataUsageId;
extern const uint32_t Slot_t3975888750_com_FromNativeMethodDefinition_MetadataUsageId;
extern const RuntimeMethod* SyncHashtable__ctor_m988729399_RuntimeMethod_var;
extern const uint32_t SyncHashtable__ctor_m988729399_MetadataUsageId;
extern const RuntimeType* Hashtable_t1853889766_0_0_0_var;
extern String_t* _stringLiteral1944658239;
extern const uint32_t SyncHashtable__ctor_m2449935938_MetadataUsageId;
extern const uint32_t SyncHashtable_System_Collections_IEnumerable_GetEnumerator_m1325482064_MetadataUsageId;
extern const uint32_t SyncHashtable_GetEnumerator_m4254656826_MetadataUsageId;
extern const uint32_t SyncHashtable_Clone_m3726939774_MetadataUsageId;
extern RuntimeClass* SortedList_t2427694641_il2cpp_TypeInfo_var;
extern const uint32_t SortedList__ctor_m1261191695_MetadataUsageId;
extern const RuntimeMethod* SortedList__ctor_m449121548_RuntimeMethod_var;
extern const uint32_t SortedList__ctor_m449121548_MetadataUsageId;
extern const RuntimeMethod* SortedList__ctor_m3676552745_RuntimeMethod_var;
extern const uint32_t SortedList__ctor_m3676552745_MetadataUsageId;
extern const uint32_t SortedList__cctor_m1247132_MetadataUsageId;
extern RuntimeClass* Enumerator_t3548462377_il2cpp_TypeInfo_var;
extern const uint32_t SortedList_System_Collections_IEnumerable_GetEnumerator_m2738760439_MetadataUsageId;
extern const RuntimeMethod* SortedList_get_Item_m3673863299_RuntimeMethod_var;
extern const uint32_t SortedList_get_Item_m3673863299_MetadataUsageId;
extern const RuntimeMethod* SortedList_set_Item_m32382988_RuntimeMethod_var;
extern String_t* _stringLiteral3755497266;
extern String_t* _stringLiteral537584632;
extern const uint32_t SortedList_set_Item_m32382988_MetadataUsageId;
extern RuntimeClass* SlotU5BU5D_t227397015_il2cpp_TypeInfo_var;
extern const RuntimeMethod* SortedList_set_Capacity_m509376950_RuntimeMethod_var;
extern String_t* _stringLiteral2892361463;
extern const uint32_t SortedList_set_Capacity_m509376950_MetadataUsageId;
extern const RuntimeMethod* SortedList_Contains_m559482983_RuntimeMethod_var;
extern const uint32_t SortedList_Contains_m559482983_MetadataUsageId;
extern const uint32_t SortedList_GetEnumerator_m772783392_MetadataUsageId;
extern const RuntimeMethod* SortedList_CopyTo_m3001281572_RuntimeMethod_var;
extern String_t* _stringLiteral212975728;
extern String_t* _stringLiteral2572553248;
extern String_t* _stringLiteral4047089040;
extern const uint32_t SortedList_CopyTo_m3001281572_MetadataUsageId;
extern const uint32_t SortedList_Clone_m928094797_MetadataUsageId;
extern const RuntimeMethod* SortedList_RemoveAt_m1767403850_RuntimeMethod_var;
extern String_t* _stringLiteral2876180;
extern const uint32_t SortedList_RemoveAt_m1767403850_MetadataUsageId;
extern const RuntimeMethod* SortedList_IndexOfKey_m91331983_RuntimeMethod_var;
extern const uint32_t SortedList_IndexOfKey_m91331983_MetadataUsageId;
extern const RuntimeMethod* SortedList_ContainsKey_m2883715045_RuntimeMethod_var;
extern const uint32_t SortedList_ContainsKey_m2883715045_MetadataUsageId;
extern const RuntimeMethod* SortedList_GetByIndex_m3848565786_RuntimeMethod_var;
extern const uint32_t SortedList_GetByIndex_m3848565786_MetadataUsageId;
extern const uint32_t SortedList_EnsureCapacity_m1354099314_MetadataUsageId;
extern const RuntimeMethod* SortedList_PutImpl_m3408406199_RuntimeMethod_var;
extern String_t* _stringLiteral4048624017;
extern String_t* _stringLiteral2449404886;
extern String_t* _stringLiteral2154733698;
extern String_t* _stringLiteral3452614643;
extern const uint32_t SortedList_PutImpl_m3408406199_MetadataUsageId;
extern const uint32_t SortedList_InitTable_m875730861_MetadataUsageId;
extern const uint32_t SortedList_Find_m3363512987_MetadataUsageId;
extern String_t* _stringLiteral3773069608;
extern const uint32_t Enumerator__cctor_m3377250123_MetadataUsageId;
extern const RuntimeMethod* Enumerator_Reset_m1367479817_RuntimeMethod_var;
extern const uint32_t Enumerator_Reset_m1367479817_MetadataUsageId;
extern const RuntimeMethod* Enumerator_MoveNext_m635366482_RuntimeMethod_var;
extern const uint32_t Enumerator_MoveNext_m635366482_MetadataUsageId;
extern const RuntimeMethod* Enumerator_get_Entry_m3561948123_RuntimeMethod_var;
extern const uint32_t Enumerator_get_Entry_m3561948123_MetadataUsageId;
extern const RuntimeMethod* Enumerator_get_Key_m1796421380_RuntimeMethod_var;
extern const uint32_t Enumerator_get_Key_m1796421380_MetadataUsageId;
extern const RuntimeMethod* Enumerator_get_Value_m3071982030_RuntimeMethod_var;
extern const uint32_t Enumerator_get_Value_m3071982030_MetadataUsageId;
extern RuntimeClass* EnumeratorMode_t3719608883_il2cpp_TypeInfo_var;
extern const RuntimeMethod* Enumerator_get_Current_m3370609987_RuntimeMethod_var;
extern String_t* _stringLiteral2698904487;
extern const uint32_t Enumerator_get_Current_m3370609987_MetadataUsageId;
extern const uint32_t Enumerator_Clone_m1942171085_MetadataUsageId;
extern const uint32_t Slot_t384495010_pinvoke_FromNativeMethodDefinition_MetadataUsageId;
extern const uint32_t Slot_t384495010_com_FromNativeMethodDefinition_MetadataUsageId;
extern const uint32_t Stack__ctor_m2907601956_MetadataUsageId;
extern RuntimeClass* IDisposable_t3640265483_il2cpp_TypeInfo_var;
extern const RuntimeMethod* Stack__ctor_m2602729586_RuntimeMethod_var;
extern String_t* _stringLiteral2909841371;
extern const uint32_t Stack__ctor_m2602729586_MetadataUsageId;
extern const RuntimeMethod* Stack__ctor_m3503577671_RuntimeMethod_var;
extern String_t* _stringLiteral2623602555;
extern const uint32_t Stack__ctor_m3503577671_MetadataUsageId;
extern const uint32_t Stack_Resize_m3124769495_MetadataUsageId;
extern const uint32_t Stack_Clone_m2625073663_MetadataUsageId;
extern const RuntimeMethod* Stack_CopyTo_m953825709_RuntimeMethod_var;
extern const uint32_t Stack_CopyTo_m953825709_MetadataUsageId;
extern RuntimeClass* Enumerator_t2929709194_il2cpp_TypeInfo_var;
extern const uint32_t Stack_GetEnumerator_m2673437525_MetadataUsageId;
extern const RuntimeMethod* Stack_Peek_m2216191248_RuntimeMethod_var;
extern const uint32_t Stack_Peek_m2216191248_MetadataUsageId;
extern const RuntimeMethod* Stack_Pop_m4248134981_RuntimeMethod_var;
extern const uint32_t Stack_Pop_m4248134981_MetadataUsageId;
extern const RuntimeMethod* Enumerator_get_Current_m2520471220_RuntimeMethod_var;
extern const uint32_t Enumerator_get_Current_m2520471220_MetadataUsageId;
extern const RuntimeMethod* Enumerator_MoveNext_m3995713679_RuntimeMethod_var;
extern const uint32_t Enumerator_MoveNext_m3995713679_MetadataUsageId;
extern const RuntimeMethod* Enumerator_Reset_m2459931042_RuntimeMethod_var;
extern const uint32_t Enumerator_Reset_m2459931042_MetadataUsageId;
extern RuntimeClass* Console_t3208230065_il2cpp_TypeInfo_var;
extern const uint32_t Console__cctor_m1860305256_MetadataUsageId;
extern RuntimeClass* UnexceptionalStreamWriter_t2539306459_il2cpp_TypeInfo_var;
extern RuntimeClass* StreamWriter_t1266378904_il2cpp_TypeInfo_var;
extern RuntimeClass* TextWriter_t3478189236_il2cpp_TypeInfo_var;
extern RuntimeClass* UnexceptionalStreamReader_t2154476246_il2cpp_TypeInfo_var;
extern RuntimeClass* TextReader_t283511965_il2cpp_TypeInfo_var;
extern const uint32_t Console_SetEncodings_m1501183766_MetadataUsageId;
extern const uint32_t Console_get_Error_m1839879495_MetadataUsageId;
extern RuntimeClass* FileStream_t4292183065_il2cpp_TypeInfo_var;
extern RuntimeClass* IOException_t4088381929_il2cpp_TypeInfo_var;
extern RuntimeClass* NullStream_t1684893697_il2cpp_TypeInfo_var;
extern const uint32_t Console_Open_m3077673205_MetadataUsageId;
extern RuntimeClass* MonoIO_t2601436415_il2cpp_TypeInfo_var;
extern const uint32_t Console_OpenStandardError_m294613724_MetadataUsageId;
extern const uint32_t Console_OpenStandardInput_m3262421490_MetadataUsageId;
extern const uint32_t Console_OpenStandardOutput_m1257556731_MetadataUsageId;
extern const RuntimeType* DBNull_t3725197148_0_0_0_var;
extern const RuntimeType* Boolean_t97287965_0_0_0_var;
extern const RuntimeType* Char_t3634460470_0_0_0_var;
extern const RuntimeType* SByte_t1669577662_0_0_0_var;
extern const RuntimeType* Byte_t1134296376_0_0_0_var;
extern const RuntimeType* Int16_t2552820387_0_0_0_var;
extern const RuntimeType* UInt16_t2177724958_0_0_0_var;
extern const RuntimeType* UInt32_t2560061978_0_0_0_var;
extern const RuntimeType* Int64_t3736567304_0_0_0_var;
extern const RuntimeType* UInt64_t4134040092_0_0_0_var;
extern const RuntimeType* Double_t594665363_0_0_0_var;
extern const RuntimeType* Decimal_t2948259380_0_0_0_var;
extern const RuntimeType* DateTime_t3738529785_0_0_0_var;
extern RuntimeClass* DBNull_t3725197148_il2cpp_TypeInfo_var;
extern const uint32_t Convert__cctor_m2847208289_MetadataUsageId;
extern const RuntimeMethod* Convert_FromBase64String_m3685135396_RuntimeMethod_var;
extern const uint32_t Convert_FromBase64String_m3685135396_MetadataUsageId;
extern const RuntimeMethod* Convert_ToBase64String_m3839334935_RuntimeMethod_var;
extern String_t* _stringLiteral3370457935;
extern const uint32_t Convert_ToBase64String_m3839334935_MetadataUsageId;
extern RuntimeClass* ASCIIEncoding_t3446586211_il2cpp_TypeInfo_var;
extern const RuntimeMethod* Convert_ToBase64String_m1959325926_RuntimeMethod_var;
extern String_t* _stringLiteral4195418819;
extern String_t* _stringLiteral2616087032;
extern const uint32_t Convert_ToBase64String_m1959325926_MetadataUsageId;
extern RuntimeClass* Decimal_t2948259380_il2cpp_TypeInfo_var;
extern const uint32_t Convert_ToBoolean_m2694598181_MetadataUsageId;
extern const uint32_t Convert_ToBoolean_m3588715767_MetadataUsageId;
extern const uint32_t Convert_ToBoolean_m2072772931_MetadataUsageId;
extern RuntimeClass* IConvertible_t2977365677_il2cpp_TypeInfo_var;
extern const uint32_t Convert_ToBoolean_m4120735400_MetadataUsageId;
extern const RuntimeMethod* Convert_ToByte_m143827699_RuntimeMethod_var;
extern String_t* _stringLiteral2033665859;
extern const uint32_t Convert_ToByte_m143827699_MetadataUsageId;
extern const RuntimeMethod* Convert_ToByte_m4214436835_RuntimeMethod_var;
extern String_t* _stringLiteral3787107145;
extern const uint32_t Convert_ToByte_m4214436835_MetadataUsageId;
extern const RuntimeMethod* Convert_ToByte_m3824130483_RuntimeMethod_var;
extern String_t* _stringLiteral1094002144;
extern const uint32_t Convert_ToByte_m3824130483_MetadataUsageId;
extern const RuntimeMethod* Convert_ToByte_m4146281512_RuntimeMethod_var;
extern String_t* _stringLiteral2278533264;
extern String_t* _stringLiteral1871323949;
extern const uint32_t Convert_ToByte_m4146281512_MetadataUsageId;
extern const RuntimeMethod* Convert_ToByte_m1734770211_RuntimeMethod_var;
extern const uint32_t Convert_ToByte_m1734770211_MetadataUsageId;
extern const RuntimeMethod* Convert_ToByte_m2122266396_RuntimeMethod_var;
extern const uint32_t Convert_ToByte_m2122266396_MetadataUsageId;
extern const RuntimeMethod* Convert_ToByte_m1442000130_RuntimeMethod_var;
extern String_t* _stringLiteral218462200;
extern const uint32_t Convert_ToByte_m1442000130_MetadataUsageId;
extern const RuntimeMethod* Convert_ToByte_m1336644845_RuntimeMethod_var;
extern const uint32_t Convert_ToByte_m1336644845_MetadataUsageId;
extern const RuntimeMethod* Convert_ToByte_m1993550870_RuntimeMethod_var;
extern const uint32_t Convert_ToByte_m1993550870_MetadataUsageId;
extern const RuntimeMethod* Convert_ToByte_m3567528984_RuntimeMethod_var;
extern const uint32_t Convert_ToByte_m3567528984_MetadataUsageId;
extern const RuntimeMethod* Convert_ToByte_m2375887898_RuntimeMethod_var;
extern const uint32_t Convert_ToByte_m2375887898_MetadataUsageId;
extern const uint32_t Convert_ToByte_m3527805587_MetadataUsageId;
extern const RuntimeMethod* Convert_ToChar_m4189066566_RuntimeMethod_var;
extern String_t* _stringLiteral3573694151;
extern const uint32_t Convert_ToChar_m4189066566_MetadataUsageId;
extern const RuntimeMethod* Convert_ToChar_m4210014069_RuntimeMethod_var;
extern const uint32_t Convert_ToChar_m4210014069_MetadataUsageId;
extern const RuntimeMethod* Convert_ToChar_m2522572389_RuntimeMethod_var;
extern String_t* _stringLiteral3362215234;
extern const uint32_t Convert_ToChar_m2522572389_MetadataUsageId;
extern const RuntimeMethod* Convert_ToChar_m3776556379_RuntimeMethod_var;
extern String_t* _stringLiteral1852120378;
extern const uint32_t Convert_ToChar_m3776556379_MetadataUsageId;
extern const RuntimeMethod* Convert_ToChar_m2261593104_RuntimeMethod_var;
extern const uint32_t Convert_ToChar_m2261593104_MetadataUsageId;
extern const uint32_t Convert_ToChar_m1442101407_MetadataUsageId;
extern const RuntimeMethod* Convert_ToChar_m2796006345_RuntimeMethod_var;
extern String_t* _stringLiteral3036456040;
extern const uint32_t Convert_ToChar_m2796006345_MetadataUsageId;
extern const RuntimeMethod* Convert_ToChar_m1604365259_RuntimeMethod_var;
extern const uint32_t Convert_ToChar_m1604365259_MetadataUsageId;
extern const uint32_t Convert_ToChar_m3757390865_MetadataUsageId;
extern RuntimeClass* DateTime_t3738529785_il2cpp_TypeInfo_var;
extern const uint32_t Convert_ToDateTime_m3802186295_MetadataUsageId;
extern const RuntimeMethod* Convert_ToDateTime_m626620011_RuntimeMethod_var;
extern const uint32_t Convert_ToDateTime_m626620011_MetadataUsageId;
extern const RuntimeMethod* Convert_ToDateTime_m228494645_RuntimeMethod_var;
extern const uint32_t Convert_ToDateTime_m228494645_MetadataUsageId;
extern const RuntimeMethod* Convert_ToDateTime_m2616935982_RuntimeMethod_var;
extern const uint32_t Convert_ToDateTime_m2616935982_MetadataUsageId;
extern const RuntimeMethod* Convert_ToDateTime_m1800003024_RuntimeMethod_var;
extern const uint32_t Convert_ToDateTime_m1800003024_MetadataUsageId;
extern const uint32_t Convert_ToDateTime_m1567637286_MetadataUsageId;
extern const RuntimeMethod* Convert_ToDateTime_m296553984_RuntimeMethod_var;
extern const uint32_t Convert_ToDateTime_m296553984_MetadataUsageId;
extern const RuntimeMethod* Convert_ToDateTime_m649137482_RuntimeMethod_var;
extern const uint32_t Convert_ToDateTime_m649137482_MetadataUsageId;
extern const RuntimeMethod* Convert_ToDateTime_m1031474510_RuntimeMethod_var;
extern const uint32_t Convert_ToDateTime_m1031474510_MetadataUsageId;
extern const RuntimeMethod* Convert_ToDateTime_m3752463692_RuntimeMethod_var;
extern const uint32_t Convert_ToDateTime_m3752463692_MetadataUsageId;
extern const uint32_t Convert_ToDecimal_m2233265097_MetadataUsageId;
extern const uint32_t Convert_ToDecimal_m3209124080_MetadataUsageId;
extern const uint32_t Convert_ToDecimal_m841368097_MetadataUsageId;
extern const uint32_t Convert_ToDecimal_m3508035522_MetadataUsageId;
extern const uint32_t Convert_ToDecimal_m1284148187_MetadataUsageId;
extern const uint32_t Convert_ToDecimal_m1284279264_MetadataUsageId;
extern const uint32_t Convert_ToDecimal_m996138310_MetadataUsageId;
extern const uint32_t Convert_ToDecimal_m1284410333_MetadataUsageId;
extern const uint32_t Convert_ToDecimal_m1233667008_MetadataUsageId;
extern const uint32_t Convert_ToDecimal_m889385228_MetadataUsageId;
extern const uint32_t Convert_ToDecimal_m1695757674_MetadataUsageId;
extern const uint32_t Convert_ToDecimal_m2858622624_MetadataUsageId;
extern const uint32_t Convert_ToDecimal_m3815908452_MetadataUsageId;
extern const uint32_t Convert_ToDouble_m1177445661_MetadataUsageId;
extern const uint32_t Convert_ToDouble_m4017511472_MetadataUsageId;
extern const RuntimeMethod* Convert_ToInt16_m3018161032_RuntimeMethod_var;
extern String_t* _stringLiteral2917292804;
extern const uint32_t Convert_ToInt16_m3018161032_MetadataUsageId;
extern const RuntimeMethod* Convert_ToInt16_m2763665794_RuntimeMethod_var;
extern String_t* _stringLiteral3531382908;
extern const uint32_t Convert_ToInt16_m2763665794_MetadataUsageId;
extern const RuntimeMethod* Convert_ToInt16_m2780199356_RuntimeMethod_var;
extern const uint32_t Convert_ToInt16_m2780199356_MetadataUsageId;
extern const RuntimeMethod* Convert_ToInt16_m1336719169_RuntimeMethod_var;
extern const uint32_t Convert_ToInt16_m1336719169_MetadataUsageId;
extern const RuntimeMethod* Convert_ToInt16_m4174308322_RuntimeMethod_var;
extern const uint32_t Convert_ToInt16_m4174308322_MetadataUsageId;
extern const RuntimeMethod* Convert_ToInt16_m4174439391_RuntimeMethod_var;
extern const uint32_t Convert_ToInt16_m4174439391_MetadataUsageId;
extern const RuntimeMethod* Convert_ToInt16_m571189957_RuntimeMethod_var;
extern const uint32_t Convert_ToInt16_m571189957_MetadataUsageId;
extern const RuntimeMethod* Convert_ToInt16_m1733792763_RuntimeMethod_var;
extern const uint32_t Convert_ToInt16_m1733792763_MetadataUsageId;
extern const RuntimeMethod* Convert_ToInt16_m2896657713_RuntimeMethod_var;
extern const uint32_t Convert_ToInt16_m2896657713_MetadataUsageId;
extern const uint32_t Convert_ToInt16_m198393465_MetadataUsageId;
extern const uint32_t Convert_ToInt16_m1223489986_MetadataUsageId;
extern const RuntimeMethod* Convert_ToInt32_m3048308591_RuntimeMethod_var;
extern String_t* _stringLiteral3389715555;
extern const uint32_t Convert_ToInt32_m3048308591_MetadataUsageId;
extern const RuntimeMethod* Convert_ToInt32_m2880498116_RuntimeMethod_var;
extern const uint32_t Convert_ToInt32_m2880498116_MetadataUsageId;
extern const RuntimeMethod* Convert_ToInt32_m1613163543_RuntimeMethod_var;
extern const uint32_t Convert_ToInt32_m1613163543_MetadataUsageId;
extern const RuntimeMethod* Convert_ToInt32_m1085875835_RuntimeMethod_var;
extern const uint32_t Convert_ToInt32_m1085875835_MetadataUsageId;
extern const RuntimeMethod* Convert_ToInt32_m3956995719_RuntimeMethod_var;
extern String_t* _stringLiteral1342583032;
extern const uint32_t Convert_ToInt32_m3956995719_MetadataUsageId;
extern const RuntimeMethod* Convert_ToInt32_m825155517_RuntimeMethod_var;
extern const uint32_t Convert_ToInt32_m825155517_MetadataUsageId;
extern const uint32_t Convert_ToInt32_m2608095889_MetadataUsageId;
extern const uint32_t Convert_ToInt32_m3211312035_MetadataUsageId;
extern const RuntimeMethod* Convert_ToInt64_m4082637156_RuntimeMethod_var;
extern String_t* _stringLiteral3205301826;
extern const uint32_t Convert_ToInt64_m4082637156_MetadataUsageId;
extern const RuntimeMethod* Convert_ToInt64_m3758262873_RuntimeMethod_var;
extern const uint32_t Convert_ToInt64_m3758262873_MetadataUsageId;
extern const RuntimeMethod* Convert_ToInt64_m658295522_RuntimeMethod_var;
extern const uint32_t Convert_ToInt64_m658295522_MetadataUsageId;
extern const RuntimeMethod* Convert_ToInt64_m260173354_RuntimeMethod_var;
extern String_t* _stringLiteral2667268558;
extern const uint32_t Convert_ToInt64_m260173354_MetadataUsageId;
extern const uint32_t Convert_ToInt64_m3240678588_MetadataUsageId;
extern const uint32_t Convert_ToInt64_m2643251823_MetadataUsageId;
extern const RuntimeMethod* Convert_ToSByte_m717245755_RuntimeMethod_var;
extern String_t* _stringLiteral661645146;
extern const uint32_t Convert_ToSByte_m717245755_MetadataUsageId;
extern const RuntimeMethod* Convert_ToSByte_m1350241137_RuntimeMethod_var;
extern const uint32_t Convert_ToSByte_m1350241137_MetadataUsageId;
extern const RuntimeMethod* Convert_ToSByte_m2991657475_RuntimeMethod_var;
extern String_t* _stringLiteral1770622501;
extern const uint32_t Convert_ToSByte_m2991657475_MetadataUsageId;
extern const RuntimeMethod* Convert_ToSByte_m3796870839_RuntimeMethod_var;
extern const uint32_t Convert_ToSByte_m3796870839_MetadataUsageId;
extern const RuntimeMethod* Convert_ToSByte_m3472794164_RuntimeMethod_var;
extern String_t* _stringLiteral2856141936;
extern const uint32_t Convert_ToSByte_m3472794164_MetadataUsageId;
extern const RuntimeMethod* Convert_ToSByte_m2653418303_RuntimeMethod_var;
extern const uint32_t Convert_ToSByte_m2653418303_MetadataUsageId;
extern const RuntimeMethod* Convert_ToSByte_m2653811524_RuntimeMethod_var;
extern const uint32_t Convert_ToSByte_m2653811524_MetadataUsageId;
extern const RuntimeMethod* Convert_ToSByte_m2653680449_RuntimeMethod_var;
extern const uint32_t Convert_ToSByte_m2653680449_MetadataUsageId;
extern const RuntimeMethod* Convert_ToSByte_m4075629912_RuntimeMethod_var;
extern const uint32_t Convert_ToSByte_m4075629912_MetadataUsageId;
extern const RuntimeMethod* Convert_ToSByte_m2486156346_RuntimeMethod_var;
extern const uint32_t Convert_ToSByte_m2486156346_MetadataUsageId;
extern const RuntimeMethod* Convert_ToSByte_m1679390684_RuntimeMethod_var;
extern const uint32_t Convert_ToSByte_m1679390684_MetadataUsageId;
extern const RuntimeMethod* Convert_ToSByte_m516918950_RuntimeMethod_var;
extern const uint32_t Convert_ToSByte_m516918950_MetadataUsageId;
extern const uint32_t Convert_ToSByte_m4061885981_MetadataUsageId;
extern const uint32_t Convert_ToSingle_m1389817074_MetadataUsageId;
extern const uint32_t Convert_ToSingle_m3605848385_MetadataUsageId;
extern const uint32_t Convert_ToString_m2219349533_MetadataUsageId;
extern const uint32_t Convert_ToString_m1854379141_MetadataUsageId;
extern const RuntimeMethod* Convert_ToUInt16_m867476252_RuntimeMethod_var;
extern String_t* _stringLiteral588587340;
extern const uint32_t Convert_ToUInt16_m867476252_MetadataUsageId;
extern const RuntimeMethod* Convert_ToUInt16_m3523269149_RuntimeMethod_var;
extern const uint32_t Convert_ToUInt16_m3523269149_MetadataUsageId;
extern const RuntimeMethod* Convert_ToUInt16_m2185524030_RuntimeMethod_var;
extern const uint32_t Convert_ToUInt16_m2185524030_MetadataUsageId;
extern const RuntimeMethod* Convert_ToUInt16_m3515425647_RuntimeMethod_var;
extern const uint32_t Convert_ToUInt16_m3515425647_MetadataUsageId;
extern const RuntimeMethod* Convert_ToUInt16_m3902921832_RuntimeMethod_var;
extern const uint32_t Convert_ToUInt16_m3902921832_MetadataUsageId;
extern const RuntimeMethod* Convert_ToUInt16_m3736443170_RuntimeMethod_var;
extern String_t* _stringLiteral2375818832;
extern const uint32_t Convert_ToUInt16_m3736443170_MetadataUsageId;
extern const RuntimeMethod* Convert_ToUInt16_m1147931813_RuntimeMethod_var;
extern const uint32_t Convert_ToUInt16_m1147931813_MetadataUsageId;
extern const RuntimeMethod* Convert_ToUInt16_m1480956416_RuntimeMethod_var;
extern String_t* _stringLiteral3910897868;
extern const uint32_t Convert_ToUInt16_m1480956416_MetadataUsageId;
extern const RuntimeMethod* Convert_ToUInt16_m2672597498_RuntimeMethod_var;
extern const uint32_t Convert_ToUInt16_m2672597498_MetadataUsageId;
extern const uint32_t Convert_ToUInt16_m4211508274_MetadataUsageId;
extern const RuntimeMethod* Convert_ToUInt32_m3622072499_RuntimeMethod_var;
extern String_t* _stringLiteral894538182;
extern const uint32_t Convert_ToUInt32_m3622072499_MetadataUsageId;
extern const RuntimeMethod* Convert_ToUInt32_m1453583008_RuntimeMethod_var;
extern const uint32_t Convert_ToUInt32_m1453583008_MetadataUsageId;
extern const RuntimeMethod* Convert_ToUInt32_m2045194461_RuntimeMethod_var;
extern const uint32_t Convert_ToUInt32_m2045194461_MetadataUsageId;
extern const RuntimeMethod* Convert_ToUInt32_m2215525276_RuntimeMethod_var;
extern String_t* _stringLiteral2580672812;
extern const uint32_t Convert_ToUInt32_m2215525276_MetadataUsageId;
extern const RuntimeMethod* Convert_ToUInt32_m2194577773_RuntimeMethod_var;
extern const uint32_t Convert_ToUInt32_m2194577773_MetadataUsageId;
extern const RuntimeMethod* Convert_ToUInt32_m3592050311_RuntimeMethod_var;
extern const uint32_t Convert_ToUInt32_m3592050311_MetadataUsageId;
extern const RuntimeMethod* Convert_ToUInt32_m4142998738_RuntimeMethod_var;
extern const uint32_t Convert_ToUInt32_m4142998738_MetadataUsageId;
extern const RuntimeMethod* Convert_ToUInt32_m1767593911_RuntimeMethod_var;
extern String_t* _stringLiteral3367608834;
extern const uint32_t Convert_ToUInt32_m1767593911_MetadataUsageId;
extern const uint32_t Convert_ToUInt32_m2061619287_MetadataUsageId;
extern const RuntimeMethod* Convert_ToUInt64_m92315402_RuntimeMethod_var;
extern String_t* _stringLiteral2015603325;
extern const uint32_t Convert_ToUInt64_m92315402_MetadataUsageId;
extern const RuntimeMethod* Convert_ToUInt64_m1433697267_RuntimeMethod_var;
extern const uint32_t Convert_ToUInt64_m1433697267_MetadataUsageId;
extern const RuntimeMethod* Convert_ToUInt64_m1627266664_RuntimeMethod_var;
extern const uint32_t Convert_ToUInt64_m1627266664_MetadataUsageId;
extern const RuntimeMethod* Convert_ToUInt64_m786726853_RuntimeMethod_var;
extern String_t* _stringLiteral2977630634;
extern const uint32_t Convert_ToUInt64_m786726853_MetadataUsageId;
extern const RuntimeMethod* Convert_ToUInt64_m409548990_RuntimeMethod_var;
extern const uint32_t Convert_ToUInt64_m409548990_MetadataUsageId;
extern const RuntimeMethod* Convert_ToUInt64_m473526756_RuntimeMethod_var;
extern const uint32_t Convert_ToUInt64_m473526756_MetadataUsageId;
extern const RuntimeMethod* Convert_ToUInt64_m388601487_RuntimeMethod_var;
extern const uint32_t Convert_ToUInt64_m388601487_MetadataUsageId;
extern const uint32_t Convert_ToUInt64_m1841050714_MetadataUsageId;
extern const uint32_t Convert_ToUInt64_m3170916409_MetadataUsageId;
extern const RuntimeMethod* Convert_ChangeType_m739676612_RuntimeMethod_var;
extern String_t* _stringLiteral1255815265;
extern const uint32_t Convert_ChangeType_m739676612_MetadataUsageId;
extern RuntimeClass* SByte_t1669577662_il2cpp_TypeInfo_var;
extern RuntimeClass* Int16_t2552820387_il2cpp_TypeInfo_var;
extern RuntimeClass* UInt16_t2177724958_il2cpp_TypeInfo_var;
extern RuntimeClass* UInt32_t2560061978_il2cpp_TypeInfo_var;
extern RuntimeClass* Int64_t3736567304_il2cpp_TypeInfo_var;
extern RuntimeClass* UInt64_t4134040092_il2cpp_TypeInfo_var;
extern RuntimeClass* Double_t594665363_il2cpp_TypeInfo_var;
extern const RuntimeMethod* Convert_ToType_m2406080310_RuntimeMethod_var;
extern String_t* _stringLiteral3495165633;
extern String_t* _stringLiteral2617833356;
extern String_t* _stringLiteral2368423739;
extern String_t* _stringLiteral559265016;
extern String_t* _stringLiteral684852591;
extern const uint32_t Convert_ToType_m2406080310_MetadataUsageId;
struct ByteU5BU5D_t4116647657;
struct CharU5BU5D_t3528271667;
struct StringU5BU5D_t1281789340;
struct ObjectU5BU5D_t2843939325;
struct TypeU5BU5D_t3940880105;
struct ConstructorInfoU5BU5D_t881249896;
struct MethodBaseU5BU5D_t779831733;
struct ParameterModifierU5BU5D_t2943407543;
struct DelegateU5BU5D_t1703627840;
struct Int32U5BU5D_t385246372;
struct Int64U5BU5D_t2559172825;
struct DoubleU5BU5D_t3413330114;
struct UInt32U5BU5D_t2770800703;
struct BooleanU5BU5D_t2897418192;
struct SlotU5BU5D_t2994659099;
struct SlotU5BU5D_t227397015;
#ifndef RUNTIMEOBJECT_H
#define RUNTIMEOBJECT_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Object
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // RUNTIMEOBJECT_H
#ifndef ATTRIBUTE_T861562559_H
#define ATTRIBUTE_T861562559_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Attribute
struct Attribute_t861562559 : public RuntimeObject
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // ATTRIBUTE_T861562559_H
#ifndef COMPARER_T1912461351_H
#define COMPARER_T1912461351_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Collections.Comparer
struct Comparer_t1912461351 : public RuntimeObject
{
public:
// System.Globalization.CompareInfo System.Collections.Comparer::m_compareInfo
CompareInfo_t1092934962 * ___m_compareInfo_2;
public:
inline static int32_t get_offset_of_m_compareInfo_2() { return static_cast<int32_t>(offsetof(Comparer_t1912461351, ___m_compareInfo_2)); }
inline CompareInfo_t1092934962 * get_m_compareInfo_2() const { return ___m_compareInfo_2; }
inline CompareInfo_t1092934962 ** get_address_of_m_compareInfo_2() { return &___m_compareInfo_2; }
inline void set_m_compareInfo_2(CompareInfo_t1092934962 * value)
{
___m_compareInfo_2 = value;
Il2CppCodeGenWriteBarrier((&___m_compareInfo_2), value);
}
};
struct Comparer_t1912461351_StaticFields
{
public:
// System.Collections.Comparer System.Collections.Comparer::Default
Comparer_t1912461351 * ___Default_0;
// System.Collections.Comparer System.Collections.Comparer::DefaultInvariant
Comparer_t1912461351 * ___DefaultInvariant_1;
public:
inline static int32_t get_offset_of_Default_0() { return static_cast<int32_t>(offsetof(Comparer_t1912461351_StaticFields, ___Default_0)); }
inline Comparer_t1912461351 * get_Default_0() const { return ___Default_0; }
inline Comparer_t1912461351 ** get_address_of_Default_0() { return &___Default_0; }
inline void set_Default_0(Comparer_t1912461351 * value)
{
___Default_0 = value;
Il2CppCodeGenWriteBarrier((&___Default_0), value);
}
inline static int32_t get_offset_of_DefaultInvariant_1() { return static_cast<int32_t>(offsetof(Comparer_t1912461351_StaticFields, ___DefaultInvariant_1)); }
inline Comparer_t1912461351 * get_DefaultInvariant_1() const { return ___DefaultInvariant_1; }
inline Comparer_t1912461351 ** get_address_of_DefaultInvariant_1() { return &___DefaultInvariant_1; }
inline void set_DefaultInvariant_1(Comparer_t1912461351 * value)
{
___DefaultInvariant_1 = value;
Il2CppCodeGenWriteBarrier((&___DefaultInvariant_1), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // COMPARER_T1912461351_H
#ifndef APPLICATIONIDENTITY_T1917735356_H
#define APPLICATIONIDENTITY_T1917735356_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.ApplicationIdentity
struct ApplicationIdentity_t1917735356 : public RuntimeObject
{
public:
// System.String System.ApplicationIdentity::_fullName
String_t* ____fullName_0;
public:
inline static int32_t get_offset_of__fullName_0() { return static_cast<int32_t>(offsetof(ApplicationIdentity_t1917735356, ____fullName_0)); }
inline String_t* get__fullName_0() const { return ____fullName_0; }
inline String_t** get_address_of__fullName_0() { return &____fullName_0; }
inline void set__fullName_0(String_t* value)
{
____fullName_0 = value;
Il2CppCodeGenWriteBarrier((&____fullName_0), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // APPLICATIONIDENTITY_T1917735356_H
#ifndef SIMPLEENUMERATOR_T433892249_H
#define SIMPLEENUMERATOR_T433892249_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Array/SimpleEnumerator
struct SimpleEnumerator_t433892249 : public RuntimeObject
{
public:
// System.Array System.Array/SimpleEnumerator::enumeratee
RuntimeArray * ___enumeratee_0;
// System.Int32 System.Array/SimpleEnumerator::currentpos
int32_t ___currentpos_1;
// System.Int32 System.Array/SimpleEnumerator::length
int32_t ___length_2;
public:
inline static int32_t get_offset_of_enumeratee_0() { return static_cast<int32_t>(offsetof(SimpleEnumerator_t433892249, ___enumeratee_0)); }
inline RuntimeArray * get_enumeratee_0() const { return ___enumeratee_0; }
inline RuntimeArray ** get_address_of_enumeratee_0() { return &___enumeratee_0; }
inline void set_enumeratee_0(RuntimeArray * value)
{
___enumeratee_0 = value;
Il2CppCodeGenWriteBarrier((&___enumeratee_0), value);
}
inline static int32_t get_offset_of_currentpos_1() { return static_cast<int32_t>(offsetof(SimpleEnumerator_t433892249, ___currentpos_1)); }
inline int32_t get_currentpos_1() const { return ___currentpos_1; }
inline int32_t* get_address_of_currentpos_1() { return &___currentpos_1; }
inline void set_currentpos_1(int32_t value)
{
___currentpos_1 = value;
}
inline static int32_t get_offset_of_length_2() { return static_cast<int32_t>(offsetof(SimpleEnumerator_t433892249, ___length_2)); }
inline int32_t get_length_2() const { return ___length_2; }
inline int32_t* get_address_of_length_2() { return &___length_2; }
inline void set_length_2(int32_t value)
{
___length_2 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // SIMPLEENUMERATOR_T433892249_H
#ifndef MEMBERINFO_T_H
#define MEMBERINFO_T_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Reflection.MemberInfo
struct MemberInfo_t : public RuntimeObject
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // MEMBERINFO_T_H
#ifndef CHARENUMERATOR_T1121470421_H
#define CHARENUMERATOR_T1121470421_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.CharEnumerator
struct CharEnumerator_t1121470421 : public RuntimeObject
{
public:
// System.String System.CharEnumerator::str
String_t* ___str_0;
// System.Int32 System.CharEnumerator::index
int32_t ___index_1;
// System.Int32 System.CharEnumerator::length
int32_t ___length_2;
public:
inline static int32_t get_offset_of_str_0() { return static_cast<int32_t>(offsetof(CharEnumerator_t1121470421, ___str_0)); }
inline String_t* get_str_0() const { return ___str_0; }
inline String_t** get_address_of_str_0() { return &___str_0; }
inline void set_str_0(String_t* value)
{
___str_0 = value;
Il2CppCodeGenWriteBarrier((&___str_0), value);
}
inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(CharEnumerator_t1121470421, ___index_1)); }
inline int32_t get_index_1() const { return ___index_1; }
inline int32_t* get_address_of_index_1() { return &___index_1; }
inline void set_index_1(int32_t value)
{
___index_1 = value;
}
inline static int32_t get_offset_of_length_2() { return static_cast<int32_t>(offsetof(CharEnumerator_t1121470421, ___length_2)); }
inline int32_t get_length_2() const { return ___length_2; }
inline int32_t* get_address_of_length_2() { return &___length_2; }
inline void set_length_2(int32_t value)
{
___length_2 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // CHARENUMERATOR_T1121470421_H
#ifndef SIMPLEENUMERATOR_T4287166116_H
#define SIMPLEENUMERATOR_T4287166116_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Collections.ArrayList/SimpleEnumerator
struct SimpleEnumerator_t4287166116 : public RuntimeObject
{
public:
// System.Collections.ArrayList System.Collections.ArrayList/SimpleEnumerator::list
ArrayList_t2718874744 * ___list_0;
// System.Int32 System.Collections.ArrayList/SimpleEnumerator::index
int32_t ___index_1;
// System.Int32 System.Collections.ArrayList/SimpleEnumerator::version
int32_t ___version_2;
// System.Object System.Collections.ArrayList/SimpleEnumerator::currentElement
RuntimeObject * ___currentElement_3;
public:
inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(SimpleEnumerator_t4287166116, ___list_0)); }
inline ArrayList_t2718874744 * get_list_0() const { return ___list_0; }
inline ArrayList_t2718874744 ** get_address_of_list_0() { return &___list_0; }
inline void set_list_0(ArrayList_t2718874744 * value)
{
___list_0 = value;
Il2CppCodeGenWriteBarrier((&___list_0), value);
}
inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(SimpleEnumerator_t4287166116, ___index_1)); }
inline int32_t get_index_1() const { return ___index_1; }
inline int32_t* get_address_of_index_1() { return &___index_1; }
inline void set_index_1(int32_t value)
{
___index_1 = value;
}
inline static int32_t get_offset_of_version_2() { return static_cast<int32_t>(offsetof(SimpleEnumerator_t4287166116, ___version_2)); }
inline int32_t get_version_2() const { return ___version_2; }
inline int32_t* get_address_of_version_2() { return &___version_2; }
inline void set_version_2(int32_t value)
{
___version_2 = value;
}
inline static int32_t get_offset_of_currentElement_3() { return static_cast<int32_t>(offsetof(SimpleEnumerator_t4287166116, ___currentElement_3)); }
inline RuntimeObject * get_currentElement_3() const { return ___currentElement_3; }
inline RuntimeObject ** get_address_of_currentElement_3() { return &___currentElement_3; }
inline void set_currentElement_3(RuntimeObject * value)
{
___currentElement_3 = value;
Il2CppCodeGenWriteBarrier((&___currentElement_3), value);
}
};
struct SimpleEnumerator_t4287166116_StaticFields
{
public:
// System.Object System.Collections.ArrayList/SimpleEnumerator::endFlag
RuntimeObject * ___endFlag_4;
public:
inline static int32_t get_offset_of_endFlag_4() { return static_cast<int32_t>(offsetof(SimpleEnumerator_t4287166116_StaticFields, ___endFlag_4)); }
inline RuntimeObject * get_endFlag_4() const { return ___endFlag_4; }
inline RuntimeObject ** get_address_of_endFlag_4() { return &___endFlag_4; }
inline void set_endFlag_4(RuntimeObject * value)
{
___endFlag_4 = value;
Il2CppCodeGenWriteBarrier((&___endFlag_4), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // SIMPLEENUMERATOR_T4287166116_H
#ifndef BITCONVERTER_T3118986983_H
#define BITCONVERTER_T3118986983_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.BitConverter
struct BitConverter_t3118986983 : public RuntimeObject
{
public:
public:
};
struct BitConverter_t3118986983_StaticFields
{
public:
// System.Boolean System.BitConverter::SwappedWordsInDouble
bool ___SwappedWordsInDouble_0;
// System.Boolean System.BitConverter::IsLittleEndian
bool ___IsLittleEndian_1;
public:
inline static int32_t get_offset_of_SwappedWordsInDouble_0() { return static_cast<int32_t>(offsetof(BitConverter_t3118986983_StaticFields, ___SwappedWordsInDouble_0)); }
inline bool get_SwappedWordsInDouble_0() const { return ___SwappedWordsInDouble_0; }
inline bool* get_address_of_SwappedWordsInDouble_0() { return &___SwappedWordsInDouble_0; }
inline void set_SwappedWordsInDouble_0(bool value)
{
___SwappedWordsInDouble_0 = value;
}
inline static int32_t get_offset_of_IsLittleEndian_1() { return static_cast<int32_t>(offsetof(BitConverter_t3118986983_StaticFields, ___IsLittleEndian_1)); }
inline bool get_IsLittleEndian_1() const { return ___IsLittleEndian_1; }
inline bool* get_address_of_IsLittleEndian_1() { return &___IsLittleEndian_1; }
inline void set_IsLittleEndian_1(bool value)
{
___IsLittleEndian_1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // BITCONVERTER_T3118986983_H
#ifndef BUFFER_T1599081364_H
#define BUFFER_T1599081364_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Buffer
struct Buffer_t1599081364 : public RuntimeObject
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // BUFFER_T1599081364_H
#ifndef HASHTABLE_T1853889766_H
#define HASHTABLE_T1853889766_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Collections.Hashtable
struct Hashtable_t1853889766 : public RuntimeObject
{
public:
// System.Int32 System.Collections.Hashtable::inUse
int32_t ___inUse_1;
// System.Int32 System.Collections.Hashtable::modificationCount
int32_t ___modificationCount_2;
// System.Single System.Collections.Hashtable::loadFactor
float ___loadFactor_3;
// System.Collections.Hashtable/Slot[] System.Collections.Hashtable::table
SlotU5BU5D_t2994659099* ___table_4;
// System.Int32[] System.Collections.Hashtable::hashes
Int32U5BU5D_t385246372* ___hashes_5;
// System.Int32 System.Collections.Hashtable::threshold
int32_t ___threshold_6;
// System.Collections.Hashtable/HashKeys System.Collections.Hashtable::hashKeys
HashKeys_t1568156503 * ___hashKeys_7;
// System.Collections.Hashtable/HashValues System.Collections.Hashtable::hashValues
HashValues_t618387445 * ___hashValues_8;
// System.Collections.IHashCodeProvider System.Collections.Hashtable::hcpRef
RuntimeObject* ___hcpRef_9;
// System.Collections.IComparer System.Collections.Hashtable::comparerRef
RuntimeObject* ___comparerRef_10;
// System.Runtime.Serialization.SerializationInfo System.Collections.Hashtable::serializationInfo
SerializationInfo_t950877179 * ___serializationInfo_11;
// System.Collections.IEqualityComparer System.Collections.Hashtable::equalityComparer
RuntimeObject* ___equalityComparer_12;
public:
inline static int32_t get_offset_of_inUse_1() { return static_cast<int32_t>(offsetof(Hashtable_t1853889766, ___inUse_1)); }
inline int32_t get_inUse_1() const { return ___inUse_1; }
inline int32_t* get_address_of_inUse_1() { return &___inUse_1; }
inline void set_inUse_1(int32_t value)
{
___inUse_1 = value;
}
inline static int32_t get_offset_of_modificationCount_2() { return static_cast<int32_t>(offsetof(Hashtable_t1853889766, ___modificationCount_2)); }
inline int32_t get_modificationCount_2() const { return ___modificationCount_2; }
inline int32_t* get_address_of_modificationCount_2() { return &___modificationCount_2; }
inline void set_modificationCount_2(int32_t value)
{
___modificationCount_2 = value;
}
inline static int32_t get_offset_of_loadFactor_3() { return static_cast<int32_t>(offsetof(Hashtable_t1853889766, ___loadFactor_3)); }
inline float get_loadFactor_3() const { return ___loadFactor_3; }
inline float* get_address_of_loadFactor_3() { return &___loadFactor_3; }
inline void set_loadFactor_3(float value)
{
___loadFactor_3 = value;
}
inline static int32_t get_offset_of_table_4() { return static_cast<int32_t>(offsetof(Hashtable_t1853889766, ___table_4)); }
inline SlotU5BU5D_t2994659099* get_table_4() const { return ___table_4; }
inline SlotU5BU5D_t2994659099** get_address_of_table_4() { return &___table_4; }
inline void set_table_4(SlotU5BU5D_t2994659099* value)
{
___table_4 = value;
Il2CppCodeGenWriteBarrier((&___table_4), value);
}
inline static int32_t get_offset_of_hashes_5() { return static_cast<int32_t>(offsetof(Hashtable_t1853889766, ___hashes_5)); }
inline Int32U5BU5D_t385246372* get_hashes_5() const { return ___hashes_5; }
inline Int32U5BU5D_t385246372** get_address_of_hashes_5() { return &___hashes_5; }
inline void set_hashes_5(Int32U5BU5D_t385246372* value)
{
___hashes_5 = value;
Il2CppCodeGenWriteBarrier((&___hashes_5), value);
}
inline static int32_t get_offset_of_threshold_6() { return static_cast<int32_t>(offsetof(Hashtable_t1853889766, ___threshold_6)); }
inline int32_t get_threshold_6() const { return ___threshold_6; }
inline int32_t* get_address_of_threshold_6() { return &___threshold_6; }
inline void set_threshold_6(int32_t value)
{
___threshold_6 = value;
}
inline static int32_t get_offset_of_hashKeys_7() { return static_cast<int32_t>(offsetof(Hashtable_t1853889766, ___hashKeys_7)); }
inline HashKeys_t1568156503 * get_hashKeys_7() const { return ___hashKeys_7; }
inline HashKeys_t1568156503 ** get_address_of_hashKeys_7() { return &___hashKeys_7; }
inline void set_hashKeys_7(HashKeys_t1568156503 * value)
{
___hashKeys_7 = value;
Il2CppCodeGenWriteBarrier((&___hashKeys_7), value);
}
inline static int32_t get_offset_of_hashValues_8() { return static_cast<int32_t>(offsetof(Hashtable_t1853889766, ___hashValues_8)); }
inline HashValues_t618387445 * get_hashValues_8() const { return ___hashValues_8; }
inline HashValues_t618387445 ** get_address_of_hashValues_8() { return &___hashValues_8; }
inline void set_hashValues_8(HashValues_t618387445 * value)
{
___hashValues_8 = value;
Il2CppCodeGenWriteBarrier((&___hashValues_8), value);
}
inline static int32_t get_offset_of_hcpRef_9() { return static_cast<int32_t>(offsetof(Hashtable_t1853889766, ___hcpRef_9)); }
inline RuntimeObject* get_hcpRef_9() const { return ___hcpRef_9; }
inline RuntimeObject** get_address_of_hcpRef_9() { return &___hcpRef_9; }
inline void set_hcpRef_9(RuntimeObject* value)
{
___hcpRef_9 = value;
Il2CppCodeGenWriteBarrier((&___hcpRef_9), value);
}
inline static int32_t get_offset_of_comparerRef_10() { return static_cast<int32_t>(offsetof(Hashtable_t1853889766, ___comparerRef_10)); }
inline RuntimeObject* get_comparerRef_10() const { return ___comparerRef_10; }
inline RuntimeObject** get_address_of_comparerRef_10() { return &___comparerRef_10; }
inline void set_comparerRef_10(RuntimeObject* value)
{
___comparerRef_10 = value;
Il2CppCodeGenWriteBarrier((&___comparerRef_10), value);
}
inline static int32_t get_offset_of_serializationInfo_11() { return static_cast<int32_t>(offsetof(Hashtable_t1853889766, ___serializationInfo_11)); }
inline SerializationInfo_t950877179 * get_serializationInfo_11() const { return ___serializationInfo_11; }
inline SerializationInfo_t950877179 ** get_address_of_serializationInfo_11() { return &___serializationInfo_11; }
inline void set_serializationInfo_11(SerializationInfo_t950877179 * value)
{
___serializationInfo_11 = value;
Il2CppCodeGenWriteBarrier((&___serializationInfo_11), value);
}
inline static int32_t get_offset_of_equalityComparer_12() { return static_cast<int32_t>(offsetof(Hashtable_t1853889766, ___equalityComparer_12)); }
inline RuntimeObject* get_equalityComparer_12() const { return ___equalityComparer_12; }
inline RuntimeObject** get_address_of_equalityComparer_12() { return &___equalityComparer_12; }
inline void set_equalityComparer_12(RuntimeObject* value)
{
___equalityComparer_12 = value;
Il2CppCodeGenWriteBarrier((&___equalityComparer_12), value);
}
};
struct Hashtable_t1853889766_StaticFields
{
public:
// System.Int32[] System.Collections.Hashtable::primeTbl
Int32U5BU5D_t385246372* ___primeTbl_13;
public:
inline static int32_t get_offset_of_primeTbl_13() { return static_cast<int32_t>(offsetof(Hashtable_t1853889766_StaticFields, ___primeTbl_13)); }
inline Int32U5BU5D_t385246372* get_primeTbl_13() const { return ___primeTbl_13; }
inline Int32U5BU5D_t385246372** get_address_of_primeTbl_13() { return &___primeTbl_13; }
inline void set_primeTbl_13(Int32U5BU5D_t385246372* value)
{
___primeTbl_13 = value;
Il2CppCodeGenWriteBarrier((&___primeTbl_13), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // HASHTABLE_T1853889766_H
#ifndef IL2CPPCOMOBJECT_H
#define IL2CPPCOMOBJECT_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.__Il2CppComObject
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // IL2CPPCOMOBJECT_H
#ifndef SERIALIZATIONINFO_T950877179_H
#define SERIALIZATIONINFO_T950877179_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Runtime.Serialization.SerializationInfo
struct SerializationInfo_t950877179 : public RuntimeObject
{
public:
// System.Collections.Hashtable System.Runtime.Serialization.SerializationInfo::serialized
Hashtable_t1853889766 * ___serialized_0;
// System.Collections.ArrayList System.Runtime.Serialization.SerializationInfo::values
ArrayList_t2718874744 * ___values_1;
// System.String System.Runtime.Serialization.SerializationInfo::assemblyName
String_t* ___assemblyName_2;
// System.String System.Runtime.Serialization.SerializationInfo::fullTypeName
String_t* ___fullTypeName_3;
// System.Runtime.Serialization.IFormatterConverter System.Runtime.Serialization.SerializationInfo::converter
RuntimeObject* ___converter_4;
public:
inline static int32_t get_offset_of_serialized_0() { return static_cast<int32_t>(offsetof(SerializationInfo_t950877179, ___serialized_0)); }
inline Hashtable_t1853889766 * get_serialized_0() const { return ___serialized_0; }
inline Hashtable_t1853889766 ** get_address_of_serialized_0() { return &___serialized_0; }
inline void set_serialized_0(Hashtable_t1853889766 * value)
{
___serialized_0 = value;
Il2CppCodeGenWriteBarrier((&___serialized_0), value);
}
inline static int32_t get_offset_of_values_1() { return static_cast<int32_t>(offsetof(SerializationInfo_t950877179, ___values_1)); }
inline ArrayList_t2718874744 * get_values_1() const { return ___values_1; }
inline ArrayList_t2718874744 ** get_address_of_values_1() { return &___values_1; }
inline void set_values_1(ArrayList_t2718874744 * value)
{
___values_1 = value;
Il2CppCodeGenWriteBarrier((&___values_1), value);
}
inline static int32_t get_offset_of_assemblyName_2() { return static_cast<int32_t>(offsetof(SerializationInfo_t950877179, ___assemblyName_2)); }
inline String_t* get_assemblyName_2() const { return ___assemblyName_2; }
inline String_t** get_address_of_assemblyName_2() { return &___assemblyName_2; }
inline void set_assemblyName_2(String_t* value)
{
___assemblyName_2 = value;
Il2CppCodeGenWriteBarrier((&___assemblyName_2), value);
}
inline static int32_t get_offset_of_fullTypeName_3() { return static_cast<int32_t>(offsetof(SerializationInfo_t950877179, ___fullTypeName_3)); }
inline String_t* get_fullTypeName_3() const { return ___fullTypeName_3; }
inline String_t** get_address_of_fullTypeName_3() { return &___fullTypeName_3; }
inline void set_fullTypeName_3(String_t* value)
{
___fullTypeName_3 = value;
Il2CppCodeGenWriteBarrier((&___fullTypeName_3), value);
}
inline static int32_t get_offset_of_converter_4() { return static_cast<int32_t>(offsetof(SerializationInfo_t950877179, ___converter_4)); }
inline RuntimeObject* get_converter_4() const { return ___converter_4; }
inline RuntimeObject** get_address_of_converter_4() { return &___converter_4; }
inline void set_converter_4(RuntimeObject* value)
{
___converter_4 = value;
Il2CppCodeGenWriteBarrier((&___converter_4), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // SERIALIZATIONINFO_T950877179_H
#ifndef ATTRLISTIMPL_T567962447_H
#define ATTRLISTIMPL_T567962447_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Mono.Xml.SmallXmlParser/AttrListImpl
struct AttrListImpl_t567962447 : public RuntimeObject
{
public:
// System.Collections.ArrayList Mono.Xml.SmallXmlParser/AttrListImpl::attrNames
ArrayList_t2718874744 * ___attrNames_0;
// System.Collections.ArrayList Mono.Xml.SmallXmlParser/AttrListImpl::attrValues
ArrayList_t2718874744 * ___attrValues_1;
public:
inline static int32_t get_offset_of_attrNames_0() { return static_cast<int32_t>(offsetof(AttrListImpl_t567962447, ___attrNames_0)); }
inline ArrayList_t2718874744 * get_attrNames_0() const { return ___attrNames_0; }
inline ArrayList_t2718874744 ** get_address_of_attrNames_0() { return &___attrNames_0; }
inline void set_attrNames_0(ArrayList_t2718874744 * value)
{
___attrNames_0 = value;
Il2CppCodeGenWriteBarrier((&___attrNames_0), value);
}
inline static int32_t get_offset_of_attrValues_1() { return static_cast<int32_t>(offsetof(AttrListImpl_t567962447, ___attrValues_1)); }
inline ArrayList_t2718874744 * get_attrValues_1() const { return ___attrValues_1; }
inline ArrayList_t2718874744 ** get_address_of_attrValues_1() { return &___attrValues_1; }
inline void set_attrValues_1(ArrayList_t2718874744 * value)
{
___attrValues_1 = value;
Il2CppCodeGenWriteBarrier((&___attrValues_1), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // ATTRLISTIMPL_T567962447_H
#ifndef DICTIONARY_2_T2736202052_H
#define DICTIONARY_2_T2736202052_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Collections.Generic.Dictionary`2<System.String,System.Int32>
struct Dictionary_2_t2736202052 : public RuntimeObject
{
public:
// System.Int32[] System.Collections.Generic.Dictionary`2::table
Int32U5BU5D_t385246372* ___table_4;
// System.Collections.Generic.Link[] System.Collections.Generic.Dictionary`2::linkSlots
LinkU5BU5D_t964245573* ___linkSlots_5;
// TKey[] System.Collections.Generic.Dictionary`2::keySlots
StringU5BU5D_t1281789340* ___keySlots_6;
// TValue[] System.Collections.Generic.Dictionary`2::valueSlots
Int32U5BU5D_t385246372* ___valueSlots_7;
// System.Int32 System.Collections.Generic.Dictionary`2::touchedSlots
int32_t ___touchedSlots_8;
// System.Int32 System.Collections.Generic.Dictionary`2::emptySlot
int32_t ___emptySlot_9;
// System.Int32 System.Collections.Generic.Dictionary`2::count
int32_t ___count_10;
// System.Int32 System.Collections.Generic.Dictionary`2::threshold
int32_t ___threshold_11;
// System.Collections.Generic.IEqualityComparer`1<TKey> System.Collections.Generic.Dictionary`2::hcp
RuntimeObject* ___hcp_12;
// System.Runtime.Serialization.SerializationInfo System.Collections.Generic.Dictionary`2::serialization_info
SerializationInfo_t950877179 * ___serialization_info_13;
// System.Int32 System.Collections.Generic.Dictionary`2::generation
int32_t ___generation_14;
public:
inline static int32_t get_offset_of_table_4() { return static_cast<int32_t>(offsetof(Dictionary_2_t2736202052, ___table_4)); }
inline Int32U5BU5D_t385246372* get_table_4() const { return ___table_4; }
inline Int32U5BU5D_t385246372** get_address_of_table_4() { return &___table_4; }
inline void set_table_4(Int32U5BU5D_t385246372* value)
{
___table_4 = value;
Il2CppCodeGenWriteBarrier((&___table_4), value);
}
inline static int32_t get_offset_of_linkSlots_5() { return static_cast<int32_t>(offsetof(Dictionary_2_t2736202052, ___linkSlots_5)); }
inline LinkU5BU5D_t964245573* get_linkSlots_5() const { return ___linkSlots_5; }
inline LinkU5BU5D_t964245573** get_address_of_linkSlots_5() { return &___linkSlots_5; }
inline void set_linkSlots_5(LinkU5BU5D_t964245573* value)
{
___linkSlots_5 = value;
Il2CppCodeGenWriteBarrier((&___linkSlots_5), value);
}
inline static int32_t get_offset_of_keySlots_6() { return static_cast<int32_t>(offsetof(Dictionary_2_t2736202052, ___keySlots_6)); }
inline StringU5BU5D_t1281789340* get_keySlots_6() const { return ___keySlots_6; }
inline StringU5BU5D_t1281789340** get_address_of_keySlots_6() { return &___keySlots_6; }
inline void set_keySlots_6(StringU5BU5D_t1281789340* value)
{
___keySlots_6 = value;
Il2CppCodeGenWriteBarrier((&___keySlots_6), value);
}
inline static int32_t get_offset_of_valueSlots_7() { return static_cast<int32_t>(offsetof(Dictionary_2_t2736202052, ___valueSlots_7)); }
inline Int32U5BU5D_t385246372* get_valueSlots_7() const { return ___valueSlots_7; }
inline Int32U5BU5D_t385246372** get_address_of_valueSlots_7() { return &___valueSlots_7; }
inline void set_valueSlots_7(Int32U5BU5D_t385246372* value)
{
___valueSlots_7 = value;
Il2CppCodeGenWriteBarrier((&___valueSlots_7), value);
}
inline static int32_t get_offset_of_touchedSlots_8() { return static_cast<int32_t>(offsetof(Dictionary_2_t2736202052, ___touchedSlots_8)); }
inline int32_t get_touchedSlots_8() const { return ___touchedSlots_8; }
inline int32_t* get_address_of_touchedSlots_8() { return &___touchedSlots_8; }
inline void set_touchedSlots_8(int32_t value)
{
___touchedSlots_8 = value;
}
inline static int32_t get_offset_of_emptySlot_9() { return static_cast<int32_t>(offsetof(Dictionary_2_t2736202052, ___emptySlot_9)); }
inline int32_t get_emptySlot_9() const { return ___emptySlot_9; }
inline int32_t* get_address_of_emptySlot_9() { return &___emptySlot_9; }
inline void set_emptySlot_9(int32_t value)
{
___emptySlot_9 = value;
}
inline static int32_t get_offset_of_count_10() { return static_cast<int32_t>(offsetof(Dictionary_2_t2736202052, ___count_10)); }
inline int32_t get_count_10() const { return ___count_10; }
inline int32_t* get_address_of_count_10() { return &___count_10; }
inline void set_count_10(int32_t value)
{
___count_10 = value;
}
inline static int32_t get_offset_of_threshold_11() { return static_cast<int32_t>(offsetof(Dictionary_2_t2736202052, ___threshold_11)); }
inline int32_t get_threshold_11() const { return ___threshold_11; }
inline int32_t* get_address_of_threshold_11() { return &___threshold_11; }
inline void set_threshold_11(int32_t value)
{
___threshold_11 = value;
}
inline static int32_t get_offset_of_hcp_12() { return static_cast<int32_t>(offsetof(Dictionary_2_t2736202052, ___hcp_12)); }
inline RuntimeObject* get_hcp_12() const { return ___hcp_12; }
inline RuntimeObject** get_address_of_hcp_12() { return &___hcp_12; }
inline void set_hcp_12(RuntimeObject* value)
{
___hcp_12 = value;
Il2CppCodeGenWriteBarrier((&___hcp_12), value);
}
inline static int32_t get_offset_of_serialization_info_13() { return static_cast<int32_t>(offsetof(Dictionary_2_t2736202052, ___serialization_info_13)); }
inline SerializationInfo_t950877179 * get_serialization_info_13() const { return ___serialization_info_13; }
inline SerializationInfo_t950877179 ** get_address_of_serialization_info_13() { return &___serialization_info_13; }
inline void set_serialization_info_13(SerializationInfo_t950877179 * value)
{
___serialization_info_13 = value;
Il2CppCodeGenWriteBarrier((&___serialization_info_13), value);
}
inline static int32_t get_offset_of_generation_14() { return static_cast<int32_t>(offsetof(Dictionary_2_t2736202052, ___generation_14)); }
inline int32_t get_generation_14() const { return ___generation_14; }
inline int32_t* get_address_of_generation_14() { return &___generation_14; }
inline void set_generation_14(int32_t value)
{
___generation_14 = value;
}
};
struct Dictionary_2_t2736202052_StaticFields
{
public:
// System.Collections.Generic.Dictionary`2/Transform`1<TKey,TValue,System.Collections.DictionaryEntry> System.Collections.Generic.Dictionary`2::<>f__am$cacheB
Transform_1_t3530625384 * ___U3CU3Ef__amU24cacheB_15;
public:
inline static int32_t get_offset_of_U3CU3Ef__amU24cacheB_15() { return static_cast<int32_t>(offsetof(Dictionary_2_t2736202052_StaticFields, ___U3CU3Ef__amU24cacheB_15)); }
inline Transform_1_t3530625384 * get_U3CU3Ef__amU24cacheB_15() const { return ___U3CU3Ef__amU24cacheB_15; }
inline Transform_1_t3530625384 ** get_address_of_U3CU3Ef__amU24cacheB_15() { return &___U3CU3Ef__amU24cacheB_15; }
inline void set_U3CU3Ef__amU24cacheB_15(Transform_1_t3530625384 * value)
{
___U3CU3Ef__amU24cacheB_15 = value;
Il2CppCodeGenWriteBarrier((&___U3CU3Ef__amU24cacheB_15), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // DICTIONARY_2_T2736202052_H
#ifndef ACTIVATIONCONTEXT_T976916018_H
#define ACTIVATIONCONTEXT_T976916018_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.ActivationContext
struct ActivationContext_t976916018 : public RuntimeObject
{
public:
// System.Boolean System.ActivationContext::_disposed
bool ____disposed_0;
public:
inline static int32_t get_offset_of__disposed_0() { return static_cast<int32_t>(offsetof(ActivationContext_t976916018, ____disposed_0)); }
inline bool get__disposed_0() const { return ____disposed_0; }
inline bool* get_address_of__disposed_0() { return &____disposed_0; }
inline void set__disposed_0(bool value)
{
____disposed_0 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // ACTIVATIONCONTEXT_T976916018_H
#ifndef MARSHALBYREFOBJECT_T2760389100_H
#define MARSHALBYREFOBJECT_T2760389100_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.MarshalByRefObject
struct MarshalByRefObject_t2760389100 : public RuntimeObject
{
public:
// System.Runtime.Remoting.ServerIdentity System.MarshalByRefObject::_identity
ServerIdentity_t2342208608 * ____identity_0;
public:
inline static int32_t get_offset_of__identity_0() { return static_cast<int32_t>(offsetof(MarshalByRefObject_t2760389100, ____identity_0)); }
inline ServerIdentity_t2342208608 * get__identity_0() const { return ____identity_0; }
inline ServerIdentity_t2342208608 ** get_address_of__identity_0() { return &____identity_0; }
inline void set__identity_0(ServerIdentity_t2342208608 * value)
{
____identity_0 = value;
Il2CppCodeGenWriteBarrier((&____identity_0), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // MARSHALBYREFOBJECT_T2760389100_H
#ifndef EVIDENCE_T2008144148_H
#define EVIDENCE_T2008144148_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Security.Policy.Evidence
struct Evidence_t2008144148 : public RuntimeObject
{
public:
// System.Boolean System.Security.Policy.Evidence::_locked
bool ____locked_0;
// System.Collections.ArrayList System.Security.Policy.Evidence::hostEvidenceList
ArrayList_t2718874744 * ___hostEvidenceList_1;
// System.Collections.ArrayList System.Security.Policy.Evidence::assemblyEvidenceList
ArrayList_t2718874744 * ___assemblyEvidenceList_2;
// System.Int32 System.Security.Policy.Evidence::_hashCode
int32_t ____hashCode_3;
public:
inline static int32_t get_offset_of__locked_0() { return static_cast<int32_t>(offsetof(Evidence_t2008144148, ____locked_0)); }
inline bool get__locked_0() const { return ____locked_0; }
inline bool* get_address_of__locked_0() { return &____locked_0; }
inline void set__locked_0(bool value)
{
____locked_0 = value;
}
inline static int32_t get_offset_of_hostEvidenceList_1() { return static_cast<int32_t>(offsetof(Evidence_t2008144148, ___hostEvidenceList_1)); }
inline ArrayList_t2718874744 * get_hostEvidenceList_1() const { return ___hostEvidenceList_1; }
inline ArrayList_t2718874744 ** get_address_of_hostEvidenceList_1() { return &___hostEvidenceList_1; }
inline void set_hostEvidenceList_1(ArrayList_t2718874744 * value)
{
___hostEvidenceList_1 = value;
Il2CppCodeGenWriteBarrier((&___hostEvidenceList_1), value);
}
inline static int32_t get_offset_of_assemblyEvidenceList_2() { return static_cast<int32_t>(offsetof(Evidence_t2008144148, ___assemblyEvidenceList_2)); }
inline ArrayList_t2718874744 * get_assemblyEvidenceList_2() const { return ___assemblyEvidenceList_2; }
inline ArrayList_t2718874744 ** get_address_of_assemblyEvidenceList_2() { return &___assemblyEvidenceList_2; }
inline void set_assemblyEvidenceList_2(ArrayList_t2718874744 * value)
{
___assemblyEvidenceList_2 = value;
Il2CppCodeGenWriteBarrier((&___assemblyEvidenceList_2), value);
}
inline static int32_t get_offset_of__hashCode_3() { return static_cast<int32_t>(offsetof(Evidence_t2008144148, ____hashCode_3)); }
inline int32_t get__hashCode_3() const { return ____hashCode_3; }
inline int32_t* get_address_of__hashCode_3() { return &____hashCode_3; }
inline void set__hashCode_3(int32_t value)
{
____hashCode_3 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // EVIDENCE_T2008144148_H
#ifndef ACTIVATOR_T1841325713_H
#define ACTIVATOR_T1841325713_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Activator
struct Activator_t1841325713 : public RuntimeObject
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // ACTIVATOR_T1841325713_H
#ifndef BINDER_T2999457153_H
#define BINDER_T2999457153_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Reflection.Binder
struct Binder_t2999457153 : public RuntimeObject
{
public:
public:
};
struct Binder_t2999457153_StaticFields
{
public:
// System.Reflection.Binder System.Reflection.Binder::default_binder
Binder_t2999457153 * ___default_binder_0;
public:
inline static int32_t get_offset_of_default_binder_0() { return static_cast<int32_t>(offsetof(Binder_t2999457153_StaticFields, ___default_binder_0)); }
inline Binder_t2999457153 * get_default_binder_0() const { return ___default_binder_0; }
inline Binder_t2999457153 ** get_address_of_default_binder_0() { return &___default_binder_0; }
inline void set_default_binder_0(Binder_t2999457153 * value)
{
___default_binder_0 = value;
Il2CppCodeGenWriteBarrier((&___default_binder_0), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // BINDER_T2999457153_H
#ifndef BITARRAY_T4087883509_H
#define BITARRAY_T4087883509_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Collections.BitArray
struct BitArray_t4087883509 : public RuntimeObject
{
public:
// System.Int32[] System.Collections.BitArray::m_array
Int32U5BU5D_t385246372* ___m_array_0;
// System.Int32 System.Collections.BitArray::m_length
int32_t ___m_length_1;
// System.Int32 System.Collections.BitArray::_version
int32_t ____version_2;
public:
inline static int32_t get_offset_of_m_array_0() { return static_cast<int32_t>(offsetof(BitArray_t4087883509, ___m_array_0)); }
inline Int32U5BU5D_t385246372* get_m_array_0() const { return ___m_array_0; }
inline Int32U5BU5D_t385246372** get_address_of_m_array_0() { return &___m_array_0; }
inline void set_m_array_0(Int32U5BU5D_t385246372* value)
{
___m_array_0 = value;
Il2CppCodeGenWriteBarrier((&___m_array_0), value);
}
inline static int32_t get_offset_of_m_length_1() { return static_cast<int32_t>(offsetof(BitArray_t4087883509, ___m_length_1)); }
inline int32_t get_m_length_1() const { return ___m_length_1; }
inline int32_t* get_address_of_m_length_1() { return &___m_length_1; }
inline void set_m_length_1(int32_t value)
{
___m_length_1 = value;
}
inline static int32_t get_offset_of__version_2() { return static_cast<int32_t>(offsetof(BitArray_t4087883509, ____version_2)); }
inline int32_t get__version_2() const { return ____version_2; }
inline int32_t* get_address_of__version_2() { return &____version_2; }
inline void set__version_2(int32_t value)
{
____version_2 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // BITARRAY_T4087883509_H
#ifndef TEXTWRITER_T3478189236_H
#define TEXTWRITER_T3478189236_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.IO.TextWriter
struct TextWriter_t3478189236 : public RuntimeObject
{
public:
// System.Char[] System.IO.TextWriter::CoreNewLine
CharU5BU5D_t3528271667* ___CoreNewLine_0;
public:
inline static int32_t get_offset_of_CoreNewLine_0() { return static_cast<int32_t>(offsetof(TextWriter_t3478189236, ___CoreNewLine_0)); }
inline CharU5BU5D_t3528271667* get_CoreNewLine_0() const { return ___CoreNewLine_0; }
inline CharU5BU5D_t3528271667** get_address_of_CoreNewLine_0() { return &___CoreNewLine_0; }
inline void set_CoreNewLine_0(CharU5BU5D_t3528271667* value)
{
___CoreNewLine_0 = value;
Il2CppCodeGenWriteBarrier((&___CoreNewLine_0), value);
}
};
struct TextWriter_t3478189236_StaticFields
{
public:
// System.IO.TextWriter System.IO.TextWriter::Null
TextWriter_t3478189236 * ___Null_1;
public:
inline static int32_t get_offset_of_Null_1() { return static_cast<int32_t>(offsetof(TextWriter_t3478189236_StaticFields, ___Null_1)); }
inline TextWriter_t3478189236 * get_Null_1() const { return ___Null_1; }
inline TextWriter_t3478189236 ** get_address_of_Null_1() { return &___Null_1; }
inline void set_Null_1(TextWriter_t3478189236 * value)
{
___Null_1 = value;
Il2CppCodeGenWriteBarrier((&___Null_1), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // TEXTWRITER_T3478189236_H
#ifndef CONVERT_T2465617642_H
#define CONVERT_T2465617642_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Convert
struct Convert_t2465617642 : public RuntimeObject
{
public:
public:
};
struct Convert_t2465617642_StaticFields
{
public:
// System.Object System.Convert::DBNull
RuntimeObject * ___DBNull_0;
// System.Type[] System.Convert::conversionTable
TypeU5BU5D_t3940880105* ___conversionTable_1;
public:
inline static int32_t get_offset_of_DBNull_0() { return static_cast<int32_t>(offsetof(Convert_t2465617642_StaticFields, ___DBNull_0)); }
inline RuntimeObject * get_DBNull_0() const { return ___DBNull_0; }
inline RuntimeObject ** get_address_of_DBNull_0() { return &___DBNull_0; }
inline void set_DBNull_0(RuntimeObject * value)
{
___DBNull_0 = value;
Il2CppCodeGenWriteBarrier((&___DBNull_0), value);
}
inline static int32_t get_offset_of_conversionTable_1() { return static_cast<int32_t>(offsetof(Convert_t2465617642_StaticFields, ___conversionTable_1)); }
inline TypeU5BU5D_t3940880105* get_conversionTable_1() const { return ___conversionTable_1; }
inline TypeU5BU5D_t3940880105** get_address_of_conversionTable_1() { return &___conversionTable_1; }
inline void set_conversionTable_1(TypeU5BU5D_t3940880105* value)
{
___conversionTable_1 = value;
Il2CppCodeGenWriteBarrier((&___conversionTable_1), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // CONVERT_T2465617642_H
#ifndef CONSOLE_T3208230065_H
#define CONSOLE_T3208230065_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Console
struct Console_t3208230065 : public RuntimeObject
{
public:
public:
};
struct Console_t3208230065_StaticFields
{
public:
// System.IO.TextWriter System.Console::stdout
TextWriter_t3478189236 * ___stdout_0;
// System.IO.TextWriter System.Console::stderr
TextWriter_t3478189236 * ___stderr_1;
// System.IO.TextReader System.Console::stdin
TextReader_t283511965 * ___stdin_2;
// System.Text.Encoding System.Console::inputEncoding
Encoding_t1523322056 * ___inputEncoding_3;
// System.Text.Encoding System.Console::outputEncoding
Encoding_t1523322056 * ___outputEncoding_4;
public:
inline static int32_t get_offset_of_stdout_0() { return static_cast<int32_t>(offsetof(Console_t3208230065_StaticFields, ___stdout_0)); }
inline TextWriter_t3478189236 * get_stdout_0() const { return ___stdout_0; }
inline TextWriter_t3478189236 ** get_address_of_stdout_0() { return &___stdout_0; }
inline void set_stdout_0(TextWriter_t3478189236 * value)
{
___stdout_0 = value;
Il2CppCodeGenWriteBarrier((&___stdout_0), value);
}
inline static int32_t get_offset_of_stderr_1() { return static_cast<int32_t>(offsetof(Console_t3208230065_StaticFields, ___stderr_1)); }
inline TextWriter_t3478189236 * get_stderr_1() const { return ___stderr_1; }
inline TextWriter_t3478189236 ** get_address_of_stderr_1() { return &___stderr_1; }
inline void set_stderr_1(TextWriter_t3478189236 * value)
{
___stderr_1 = value;
Il2CppCodeGenWriteBarrier((&___stderr_1), value);
}
inline static int32_t get_offset_of_stdin_2() { return static_cast<int32_t>(offsetof(Console_t3208230065_StaticFields, ___stdin_2)); }
inline TextReader_t283511965 * get_stdin_2() const { return ___stdin_2; }
inline TextReader_t283511965 ** get_address_of_stdin_2() { return &___stdin_2; }
inline void set_stdin_2(TextReader_t283511965 * value)
{
___stdin_2 = value;
Il2CppCodeGenWriteBarrier((&___stdin_2), value);
}
inline static int32_t get_offset_of_inputEncoding_3() { return static_cast<int32_t>(offsetof(Console_t3208230065_StaticFields, ___inputEncoding_3)); }
inline Encoding_t1523322056 * get_inputEncoding_3() const { return ___inputEncoding_3; }
inline Encoding_t1523322056 ** get_address_of_inputEncoding_3() { return &___inputEncoding_3; }
inline void set_inputEncoding_3(Encoding_t1523322056 * value)
{
___inputEncoding_3 = value;
Il2CppCodeGenWriteBarrier((&___inputEncoding_3), value);
}
inline static int32_t get_offset_of_outputEncoding_4() { return static_cast<int32_t>(offsetof(Console_t3208230065_StaticFields, ___outputEncoding_4)); }
inline Encoding_t1523322056 * get_outputEncoding_4() const { return ___outputEncoding_4; }
inline Encoding_t1523322056 ** get_address_of_outputEncoding_4() { return &___outputEncoding_4; }
inline void set_outputEncoding_4(Encoding_t1523322056 * value)
{
___outputEncoding_4 = value;
Il2CppCodeGenWriteBarrier((&___outputEncoding_4), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // CONSOLE_T3208230065_H
#ifndef STREAM_T1273022909_H
#define STREAM_T1273022909_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.IO.Stream
struct Stream_t1273022909 : public RuntimeObject
{
public:
public:
};
struct Stream_t1273022909_StaticFields
{
public:
// System.IO.Stream System.IO.Stream::Null
Stream_t1273022909 * ___Null_0;
public:
inline static int32_t get_offset_of_Null_0() { return static_cast<int32_t>(offsetof(Stream_t1273022909_StaticFields, ___Null_0)); }
inline Stream_t1273022909 * get_Null_0() const { return ___Null_0; }
inline Stream_t1273022909 ** get_address_of_Null_0() { return &___Null_0; }
inline void set_Null_0(Stream_t1273022909 * value)
{
___Null_0 = value;
Il2CppCodeGenWriteBarrier((&___Null_0), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // STREAM_T1273022909_H
#ifndef DBNULL_T3725197148_H
#define DBNULL_T3725197148_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.DBNull
struct DBNull_t3725197148 : public RuntimeObject
{
public:
public:
};
struct DBNull_t3725197148_StaticFields
{
public:
// System.DBNull System.DBNull::Value
DBNull_t3725197148 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(DBNull_t3725197148_StaticFields, ___Value_0)); }
inline DBNull_t3725197148 * get_Value_0() const { return ___Value_0; }
inline DBNull_t3725197148 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(DBNull_t3725197148 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((&___Value_0), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // DBNULL_T3725197148_H
#ifndef ASYMMETRICALGORITHM_T932037087_H
#define ASYMMETRICALGORITHM_T932037087_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Security.Cryptography.AsymmetricAlgorithm
struct AsymmetricAlgorithm_t932037087 : public RuntimeObject
{
public:
// System.Int32 System.Security.Cryptography.AsymmetricAlgorithm::KeySizeValue
int32_t ___KeySizeValue_0;
// System.Security.Cryptography.KeySizes[] System.Security.Cryptography.AsymmetricAlgorithm::LegalKeySizesValue
KeySizesU5BU5D_t722666473* ___LegalKeySizesValue_1;
public:
inline static int32_t get_offset_of_KeySizeValue_0() { return static_cast<int32_t>(offsetof(AsymmetricAlgorithm_t932037087, ___KeySizeValue_0)); }
inline int32_t get_KeySizeValue_0() const { return ___KeySizeValue_0; }
inline int32_t* get_address_of_KeySizeValue_0() { return &___KeySizeValue_0; }
inline void set_KeySizeValue_0(int32_t value)
{
___KeySizeValue_0 = value;
}
inline static int32_t get_offset_of_LegalKeySizesValue_1() { return static_cast<int32_t>(offsetof(AsymmetricAlgorithm_t932037087, ___LegalKeySizesValue_1)); }
inline KeySizesU5BU5D_t722666473* get_LegalKeySizesValue_1() const { return ___LegalKeySizesValue_1; }
inline KeySizesU5BU5D_t722666473** get_address_of_LegalKeySizesValue_1() { return &___LegalKeySizesValue_1; }
inline void set_LegalKeySizesValue_1(KeySizesU5BU5D_t722666473* value)
{
___LegalKeySizesValue_1 = value;
Il2CppCodeGenWriteBarrier((&___LegalKeySizesValue_1), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // ASYMMETRICALGORITHM_T932037087_H
#ifndef EVENTARGS_T3591816995_H
#define EVENTARGS_T3591816995_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.EventArgs
struct EventArgs_t3591816995 : public RuntimeObject
{
public:
public:
};
struct EventArgs_t3591816995_StaticFields
{
public:
// System.EventArgs System.EventArgs::Empty
EventArgs_t3591816995 * ___Empty_0;
public:
inline static int32_t get_offset_of_Empty_0() { return static_cast<int32_t>(offsetof(EventArgs_t3591816995_StaticFields, ___Empty_0)); }
inline EventArgs_t3591816995 * get_Empty_0() const { return ___Empty_0; }
inline EventArgs_t3591816995 ** get_address_of_Empty_0() { return &___Empty_0; }
inline void set_Empty_0(EventArgs_t3591816995 * value)
{
___Empty_0 = value;
Il2CppCodeGenWriteBarrier((&___Empty_0), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // EVENTARGS_T3591816995_H
#ifndef NUMBERFORMATINFO_T435877138_H
#define NUMBERFORMATINFO_T435877138_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Globalization.NumberFormatInfo
struct NumberFormatInfo_t435877138 : public RuntimeObject
{
public:
// System.Boolean System.Globalization.NumberFormatInfo::isReadOnly
bool ___isReadOnly_0;
// System.String System.Globalization.NumberFormatInfo::decimalFormats
String_t* ___decimalFormats_1;
// System.String System.Globalization.NumberFormatInfo::currencyFormats
String_t* ___currencyFormats_2;
// System.String System.Globalization.NumberFormatInfo::percentFormats
String_t* ___percentFormats_3;
// System.String System.Globalization.NumberFormatInfo::digitPattern
String_t* ___digitPattern_4;
// System.String System.Globalization.NumberFormatInfo::zeroPattern
String_t* ___zeroPattern_5;
// System.Int32 System.Globalization.NumberFormatInfo::currencyDecimalDigits
int32_t ___currencyDecimalDigits_6;
// System.String System.Globalization.NumberFormatInfo::currencyDecimalSeparator
String_t* ___currencyDecimalSeparator_7;
// System.String System.Globalization.NumberFormatInfo::currencyGroupSeparator
String_t* ___currencyGroupSeparator_8;
// System.Int32[] System.Globalization.NumberFormatInfo::currencyGroupSizes
Int32U5BU5D_t385246372* ___currencyGroupSizes_9;
// System.Int32 System.Globalization.NumberFormatInfo::currencyNegativePattern
int32_t ___currencyNegativePattern_10;
// System.Int32 System.Globalization.NumberFormatInfo::currencyPositivePattern
int32_t ___currencyPositivePattern_11;
// System.String System.Globalization.NumberFormatInfo::currencySymbol
String_t* ___currencySymbol_12;
// System.String System.Globalization.NumberFormatInfo::nanSymbol
String_t* ___nanSymbol_13;
// System.String System.Globalization.NumberFormatInfo::negativeInfinitySymbol
String_t* ___negativeInfinitySymbol_14;
// System.String System.Globalization.NumberFormatInfo::negativeSign
String_t* ___negativeSign_15;
// System.Int32 System.Globalization.NumberFormatInfo::numberDecimalDigits
int32_t ___numberDecimalDigits_16;
// System.String System.Globalization.NumberFormatInfo::numberDecimalSeparator
String_t* ___numberDecimalSeparator_17;
// System.String System.Globalization.NumberFormatInfo::numberGroupSeparator
String_t* ___numberGroupSeparator_18;
// System.Int32[] System.Globalization.NumberFormatInfo::numberGroupSizes
Int32U5BU5D_t385246372* ___numberGroupSizes_19;
// System.Int32 System.Globalization.NumberFormatInfo::numberNegativePattern
int32_t ___numberNegativePattern_20;
// System.Int32 System.Globalization.NumberFormatInfo::percentDecimalDigits
int32_t ___percentDecimalDigits_21;
// System.String System.Globalization.NumberFormatInfo::percentDecimalSeparator
String_t* ___percentDecimalSeparator_22;
// System.String System.Globalization.NumberFormatInfo::percentGroupSeparator
String_t* ___percentGroupSeparator_23;
// System.Int32[] System.Globalization.NumberFormatInfo::percentGroupSizes
Int32U5BU5D_t385246372* ___percentGroupSizes_24;
// System.Int32 System.Globalization.NumberFormatInfo::percentNegativePattern
int32_t ___percentNegativePattern_25;
// System.Int32 System.Globalization.NumberFormatInfo::percentPositivePattern
int32_t ___percentPositivePattern_26;
// System.String System.Globalization.NumberFormatInfo::percentSymbol
String_t* ___percentSymbol_27;
// System.String System.Globalization.NumberFormatInfo::perMilleSymbol
String_t* ___perMilleSymbol_28;
// System.String System.Globalization.NumberFormatInfo::positiveInfinitySymbol
String_t* ___positiveInfinitySymbol_29;
// System.String System.Globalization.NumberFormatInfo::positiveSign
String_t* ___positiveSign_30;
// System.String System.Globalization.NumberFormatInfo::ansiCurrencySymbol
String_t* ___ansiCurrencySymbol_31;
// System.Int32 System.Globalization.NumberFormatInfo::m_dataItem
int32_t ___m_dataItem_32;
// System.Boolean System.Globalization.NumberFormatInfo::m_useUserOverride
bool ___m_useUserOverride_33;
// System.Boolean System.Globalization.NumberFormatInfo::validForParseAsNumber
bool ___validForParseAsNumber_34;
// System.Boolean System.Globalization.NumberFormatInfo::validForParseAsCurrency
bool ___validForParseAsCurrency_35;
// System.String[] System.Globalization.NumberFormatInfo::nativeDigits
StringU5BU5D_t1281789340* ___nativeDigits_36;
// System.Int32 System.Globalization.NumberFormatInfo::digitSubstitution
int32_t ___digitSubstitution_37;
public:
inline static int32_t get_offset_of_isReadOnly_0() { return static_cast<int32_t>(offsetof(NumberFormatInfo_t435877138, ___isReadOnly_0)); }
inline bool get_isReadOnly_0() const { return ___isReadOnly_0; }
inline bool* get_address_of_isReadOnly_0() { return &___isReadOnly_0; }
inline void set_isReadOnly_0(bool value)
{
___isReadOnly_0 = value;
}
inline static int32_t get_offset_of_decimalFormats_1() { return static_cast<int32_t>(offsetof(NumberFormatInfo_t435877138, ___decimalFormats_1)); }
inline String_t* get_decimalFormats_1() const { return ___decimalFormats_1; }
inline String_t** get_address_of_decimalFormats_1() { return &___decimalFormats_1; }
inline void set_decimalFormats_1(String_t* value)
{
___decimalFormats_1 = value;
Il2CppCodeGenWriteBarrier((&___decimalFormats_1), value);
}
inline static int32_t get_offset_of_currencyFormats_2() { return static_cast<int32_t>(offsetof(NumberFormatInfo_t435877138, ___currencyFormats_2)); }
inline String_t* get_currencyFormats_2() const { return ___currencyFormats_2; }
inline String_t** get_address_of_currencyFormats_2() { return &___currencyFormats_2; }
inline void set_currencyFormats_2(String_t* value)
{
___currencyFormats_2 = value;
Il2CppCodeGenWriteBarrier((&___currencyFormats_2), value);
}
inline static int32_t get_offset_of_percentFormats_3() { return static_cast<int32_t>(offsetof(NumberFormatInfo_t435877138, ___percentFormats_3)); }
inline String_t* get_percentFormats_3() const { return ___percentFormats_3; }
inline String_t** get_address_of_percentFormats_3() { return &___percentFormats_3; }
inline void set_percentFormats_3(String_t* value)
{
___percentFormats_3 = value;
Il2CppCodeGenWriteBarrier((&___percentFormats_3), value);
}
inline static int32_t get_offset_of_digitPattern_4() { return static_cast<int32_t>(offsetof(NumberFormatInfo_t435877138, ___digitPattern_4)); }
inline String_t* get_digitPattern_4() const { return ___digitPattern_4; }
inline String_t** get_address_of_digitPattern_4() { return &___digitPattern_4; }
inline void set_digitPattern_4(String_t* value)
{
___digitPattern_4 = value;
Il2CppCodeGenWriteBarrier((&___digitPattern_4), value);
}
inline static int32_t get_offset_of_zeroPattern_5() { return static_cast<int32_t>(offsetof(NumberFormatInfo_t435877138, ___zeroPattern_5)); }
inline String_t* get_zeroPattern_5() const { return ___zeroPattern_5; }
inline String_t** get_address_of_zeroPattern_5() { return &___zeroPattern_5; }
inline void set_zeroPattern_5(String_t* value)
{
___zeroPattern_5 = value;
Il2CppCodeGenWriteBarrier((&___zeroPattern_5), value);
}
inline static int32_t get_offset_of_currencyDecimalDigits_6() { return static_cast<int32_t>(offsetof(NumberFormatInfo_t435877138, ___currencyDecimalDigits_6)); }
inline int32_t get_currencyDecimalDigits_6() const { return ___currencyDecimalDigits_6; }
inline int32_t* get_address_of_currencyDecimalDigits_6() { return &___currencyDecimalDigits_6; }
inline void set_currencyDecimalDigits_6(int32_t value)
{
___currencyDecimalDigits_6 = value;
}
inline static int32_t get_offset_of_currencyDecimalSeparator_7() { return static_cast<int32_t>(offsetof(NumberFormatInfo_t435877138, ___currencyDecimalSeparator_7)); }
inline String_t* get_currencyDecimalSeparator_7() const { return ___currencyDecimalSeparator_7; }
inline String_t** get_address_of_currencyDecimalSeparator_7() { return &___currencyDecimalSeparator_7; }
inline void set_currencyDecimalSeparator_7(String_t* value)
{
___currencyDecimalSeparator_7 = value;
Il2CppCodeGenWriteBarrier((&___currencyDecimalSeparator_7), value);
}
inline static int32_t get_offset_of_currencyGroupSeparator_8() { return static_cast<int32_t>(offsetof(NumberFormatInfo_t435877138, ___currencyGroupSeparator_8)); }
inline String_t* get_currencyGroupSeparator_8() const { return ___currencyGroupSeparator_8; }
inline String_t** get_address_of_currencyGroupSeparator_8() { return &___currencyGroupSeparator_8; }
inline void set_currencyGroupSeparator_8(String_t* value)
{
___currencyGroupSeparator_8 = value;
Il2CppCodeGenWriteBarrier((&___currencyGroupSeparator_8), value);
}
inline static int32_t get_offset_of_currencyGroupSizes_9() { return static_cast<int32_t>(offsetof(NumberFormatInfo_t435877138, ___currencyGroupSizes_9)); }
inline Int32U5BU5D_t385246372* get_currencyGroupSizes_9() const { return ___currencyGroupSizes_9; }
inline Int32U5BU5D_t385246372** get_address_of_currencyGroupSizes_9() { return &___currencyGroupSizes_9; }
inline void set_currencyGroupSizes_9(Int32U5BU5D_t385246372* value)
{
___currencyGroupSizes_9 = value;
Il2CppCodeGenWriteBarrier((&___currencyGroupSizes_9), value);
}
inline static int32_t get_offset_of_currencyNegativePattern_10() { return static_cast<int32_t>(offsetof(NumberFormatInfo_t435877138, ___currencyNegativePattern_10)); }
inline int32_t get_currencyNegativePattern_10() const { return ___currencyNegativePattern_10; }
inline int32_t* get_address_of_currencyNegativePattern_10() { return &___currencyNegativePattern_10; }
inline void set_currencyNegativePattern_10(int32_t value)
{
___currencyNegativePattern_10 = value;
}
inline static int32_t get_offset_of_currencyPositivePattern_11() { return static_cast<int32_t>(offsetof(NumberFormatInfo_t435877138, ___currencyPositivePattern_11)); }
inline int32_t get_currencyPositivePattern_11() const { return ___currencyPositivePattern_11; }
inline int32_t* get_address_of_currencyPositivePattern_11() { return &___currencyPositivePattern_11; }
inline void set_currencyPositivePattern_11(int32_t value)
{
___currencyPositivePattern_11 = value;
}
inline static int32_t get_offset_of_currencySymbol_12() { return static_cast<int32_t>(offsetof(NumberFormatInfo_t435877138, ___currencySymbol_12)); }
inline String_t* get_currencySymbol_12() const { return ___currencySymbol_12; }
inline String_t** get_address_of_currencySymbol_12() { return &___currencySymbol_12; }
inline void set_currencySymbol_12(String_t* value)
{
___currencySymbol_12 = value;
Il2CppCodeGenWriteBarrier((&___currencySymbol_12), value);
}
inline static int32_t get_offset_of_nanSymbol_13() { return static_cast<int32_t>(offsetof(NumberFormatInfo_t435877138, ___nanSymbol_13)); }
inline String_t* get_nanSymbol_13() const { return ___nanSymbol_13; }
inline String_t** get_address_of_nanSymbol_13() { return &___nanSymbol_13; }
inline void set_nanSymbol_13(String_t* value)
{
___nanSymbol_13 = value;
Il2CppCodeGenWriteBarrier((&___nanSymbol_13), value);
}
inline static int32_t get_offset_of_negativeInfinitySymbol_14() { return static_cast<int32_t>(offsetof(NumberFormatInfo_t435877138, ___negativeInfinitySymbol_14)); }
inline String_t* get_negativeInfinitySymbol_14() const { return ___negativeInfinitySymbol_14; }
inline String_t** get_address_of_negativeInfinitySymbol_14() { return &___negativeInfinitySymbol_14; }
inline void set_negativeInfinitySymbol_14(String_t* value)
{
___negativeInfinitySymbol_14 = value;
Il2CppCodeGenWriteBarrier((&___negativeInfinitySymbol_14), value);
}
inline static int32_t get_offset_of_negativeSign_15() { return static_cast<int32_t>(offsetof(NumberFormatInfo_t435877138, ___negativeSign_15)); }
inline String_t* get_negativeSign_15() const { return ___negativeSign_15; }
inline String_t** get_address_of_negativeSign_15() { return &___negativeSign_15; }
inline void set_negativeSign_15(String_t* value)
{
___negativeSign_15 = value;
Il2CppCodeGenWriteBarrier((&___negativeSign_15), value);
}
inline static int32_t get_offset_of_numberDecimalDigits_16() { return static_cast<int32_t>(offsetof(NumberFormatInfo_t435877138, ___numberDecimalDigits_16)); }
inline int32_t get_numberDecimalDigits_16() const { return ___numberDecimalDigits_16; }
inline int32_t* get_address_of_numberDecimalDigits_16() { return &___numberDecimalDigits_16; }
inline void set_numberDecimalDigits_16(int32_t value)
{
___numberDecimalDigits_16 = value;
}
inline static int32_t get_offset_of_numberDecimalSeparator_17() { return static_cast<int32_t>(offsetof(NumberFormatInfo_t435877138, ___numberDecimalSeparator_17)); }
inline String_t* get_numberDecimalSeparator_17() const { return ___numberDecimalSeparator_17; }
inline String_t** get_address_of_numberDecimalSeparator_17() { return &___numberDecimalSeparator_17; }
inline void set_numberDecimalSeparator_17(String_t* value)
{
___numberDecimalSeparator_17 = value;
Il2CppCodeGenWriteBarrier((&___numberDecimalSeparator_17), value);
}
inline static int32_t get_offset_of_numberGroupSeparator_18() { return static_cast<int32_t>(offsetof(NumberFormatInfo_t435877138, ___numberGroupSeparator_18)); }
inline String_t* get_numberGroupSeparator_18() const { return ___numberGroupSeparator_18; }
inline String_t** get_address_of_numberGroupSeparator_18() { return &___numberGroupSeparator_18; }
inline void set_numberGroupSeparator_18(String_t* value)
{
___numberGroupSeparator_18 = value;
Il2CppCodeGenWriteBarrier((&___numberGroupSeparator_18), value);
}
inline static int32_t get_offset_of_numberGroupSizes_19() { return static_cast<int32_t>(offsetof(NumberFormatInfo_t435877138, ___numberGroupSizes_19)); }
inline Int32U5BU5D_t385246372* get_numberGroupSizes_19() const { return ___numberGroupSizes_19; }
inline Int32U5BU5D_t385246372** get_address_of_numberGroupSizes_19() { return &___numberGroupSizes_19; }
inline void set_numberGroupSizes_19(Int32U5BU5D_t385246372* value)
{
___numberGroupSizes_19 = value;
Il2CppCodeGenWriteBarrier((&___numberGroupSizes_19), value);
}
inline static int32_t get_offset_of_numberNegativePattern_20() { return static_cast<int32_t>(offsetof(NumberFormatInfo_t435877138, ___numberNegativePattern_20)); }
inline int32_t get_numberNegativePattern_20() const { return ___numberNegativePattern_20; }
inline int32_t* get_address_of_numberNegativePattern_20() { return &___numberNegativePattern_20; }
inline void set_numberNegativePattern_20(int32_t value)
{
___numberNegativePattern_20 = value;
}
inline static int32_t get_offset_of_percentDecimalDigits_21() { return static_cast<int32_t>(offsetof(NumberFormatInfo_t435877138, ___percentDecimalDigits_21)); }
inline int32_t get_percentDecimalDigits_21() const { return ___percentDecimalDigits_21; }
inline int32_t* get_address_of_percentDecimalDigits_21() { return &___percentDecimalDigits_21; }
inline void set_percentDecimalDigits_21(int32_t value)
{
___percentDecimalDigits_21 = value;
}
inline static int32_t get_offset_of_percentDecimalSeparator_22() { return static_cast<int32_t>(offsetof(NumberFormatInfo_t435877138, ___percentDecimalSeparator_22)); }
inline String_t* get_percentDecimalSeparator_22() const { return ___percentDecimalSeparator_22; }
inline String_t** get_address_of_percentDecimalSeparator_22() { return &___percentDecimalSeparator_22; }
inline void set_percentDecimalSeparator_22(String_t* value)
{
___percentDecimalSeparator_22 = value;
Il2CppCodeGenWriteBarrier((&___percentDecimalSeparator_22), value);
}
inline static int32_t get_offset_of_percentGroupSeparator_23() { return static_cast<int32_t>(offsetof(NumberFormatInfo_t435877138, ___percentGroupSeparator_23)); }
inline String_t* get_percentGroupSeparator_23() const { return ___percentGroupSeparator_23; }
inline String_t** get_address_of_percentGroupSeparator_23() { return &___percentGroupSeparator_23; }
inline void set_percentGroupSeparator_23(String_t* value)
{
___percentGroupSeparator_23 = value;
Il2CppCodeGenWriteBarrier((&___percentGroupSeparator_23), value);
}
inline static int32_t get_offset_of_percentGroupSizes_24() { return static_cast<int32_t>(offsetof(NumberFormatInfo_t435877138, ___percentGroupSizes_24)); }
inline Int32U5BU5D_t385246372* get_percentGroupSizes_24() const { return ___percentGroupSizes_24; }
inline Int32U5BU5D_t385246372** get_address_of_percentGroupSizes_24() { return &___percentGroupSizes_24; }
inline void set_percentGroupSizes_24(Int32U5BU5D_t385246372* value)
{
___percentGroupSizes_24 = value;
Il2CppCodeGenWriteBarrier((&___percentGroupSizes_24), value);
}
inline static int32_t get_offset_of_percentNegativePattern_25() { return static_cast<int32_t>(offsetof(NumberFormatInfo_t435877138, ___percentNegativePattern_25)); }
inline int32_t get_percentNegativePattern_25() const { return ___percentNegativePattern_25; }
inline int32_t* get_address_of_percentNegativePattern_25() { return &___percentNegativePattern_25; }
inline void set_percentNegativePattern_25(int32_t value)
{
___percentNegativePattern_25 = value;
}
inline static int32_t get_offset_of_percentPositivePattern_26() { return static_cast<int32_t>(offsetof(NumberFormatInfo_t435877138, ___percentPositivePattern_26)); }
inline int32_t get_percentPositivePattern_26() const { return ___percentPositivePattern_26; }
inline int32_t* get_address_of_percentPositivePattern_26() { return &___percentPositivePattern_26; }
inline void set_percentPositivePattern_26(int32_t value)
{
___percentPositivePattern_26 = value;
}
inline static int32_t get_offset_of_percentSymbol_27() { return static_cast<int32_t>(offsetof(NumberFormatInfo_t435877138, ___percentSymbol_27)); }
inline String_t* get_percentSymbol_27() const { return ___percentSymbol_27; }
inline String_t** get_address_of_percentSymbol_27() { return &___percentSymbol_27; }
inline void set_percentSymbol_27(String_t* value)
{
___percentSymbol_27 = value;
Il2CppCodeGenWriteBarrier((&___percentSymbol_27), value);
}
inline static int32_t get_offset_of_perMilleSymbol_28() { return static_cast<int32_t>(offsetof(NumberFormatInfo_t435877138, ___perMilleSymbol_28)); }
inline String_t* get_perMilleSymbol_28() const { return ___perMilleSymbol_28; }
inline String_t** get_address_of_perMilleSymbol_28() { return &___perMilleSymbol_28; }
inline void set_perMilleSymbol_28(String_t* value)
{
___perMilleSymbol_28 = value;
Il2CppCodeGenWriteBarrier((&___perMilleSymbol_28), value);
}
inline static int32_t get_offset_of_positiveInfinitySymbol_29() { return static_cast<int32_t>(offsetof(NumberFormatInfo_t435877138, ___positiveInfinitySymbol_29)); }
inline String_t* get_positiveInfinitySymbol_29() const { return ___positiveInfinitySymbol_29; }
inline String_t** get_address_of_positiveInfinitySymbol_29() { return &___positiveInfinitySymbol_29; }
inline void set_positiveInfinitySymbol_29(String_t* value)
{
___positiveInfinitySymbol_29 = value;
Il2CppCodeGenWriteBarrier((&___positiveInfinitySymbol_29), value);
}
inline static int32_t get_offset_of_positiveSign_30() { return static_cast<int32_t>(offsetof(NumberFormatInfo_t435877138, ___positiveSign_30)); }
inline String_t* get_positiveSign_30() const { return ___positiveSign_30; }
inline String_t** get_address_of_positiveSign_30() { return &___positiveSign_30; }
inline void set_positiveSign_30(String_t* value)
{
___positiveSign_30 = value;
Il2CppCodeGenWriteBarrier((&___positiveSign_30), value);
}
inline static int32_t get_offset_of_ansiCurrencySymbol_31() { return static_cast<int32_t>(offsetof(NumberFormatInfo_t435877138, ___ansiCurrencySymbol_31)); }
inline String_t* get_ansiCurrencySymbol_31() const { return ___ansiCurrencySymbol_31; }
inline String_t** get_address_of_ansiCurrencySymbol_31() { return &___ansiCurrencySymbol_31; }
inline void set_ansiCurrencySymbol_31(String_t* value)
{
___ansiCurrencySymbol_31 = value;
Il2CppCodeGenWriteBarrier((&___ansiCurrencySymbol_31), value);
}
inline static int32_t get_offset_of_m_dataItem_32() { return static_cast<int32_t>(offsetof(NumberFormatInfo_t435877138, ___m_dataItem_32)); }
inline int32_t get_m_dataItem_32() const { return ___m_dataItem_32; }
inline int32_t* get_address_of_m_dataItem_32() { return &___m_dataItem_32; }
inline void set_m_dataItem_32(int32_t value)
{
___m_dataItem_32 = value;
}
inline static int32_t get_offset_of_m_useUserOverride_33() { return static_cast<int32_t>(offsetof(NumberFormatInfo_t435877138, ___m_useUserOverride_33)); }
inline bool get_m_useUserOverride_33() const { return ___m_useUserOverride_33; }
inline bool* get_address_of_m_useUserOverride_33() { return &___m_useUserOverride_33; }
inline void set_m_useUserOverride_33(bool value)
{
___m_useUserOverride_33 = value;
}
inline static int32_t get_offset_of_validForParseAsNumber_34() { return static_cast<int32_t>(offsetof(NumberFormatInfo_t435877138, ___validForParseAsNumber_34)); }
inline bool get_validForParseAsNumber_34() const { return ___validForParseAsNumber_34; }
inline bool* get_address_of_validForParseAsNumber_34() { return &___validForParseAsNumber_34; }
inline void set_validForParseAsNumber_34(bool value)
{
___validForParseAsNumber_34 = value;
}
inline static int32_t get_offset_of_validForParseAsCurrency_35() { return static_cast<int32_t>(offsetof(NumberFormatInfo_t435877138, ___validForParseAsCurrency_35)); }
inline bool get_validForParseAsCurrency_35() const { return ___validForParseAsCurrency_35; }
inline bool* get_address_of_validForParseAsCurrency_35() { return &___validForParseAsCurrency_35; }
inline void set_validForParseAsCurrency_35(bool value)
{
___validForParseAsCurrency_35 = value;
}
inline static int32_t get_offset_of_nativeDigits_36() { return static_cast<int32_t>(offsetof(NumberFormatInfo_t435877138, ___nativeDigits_36)); }
inline StringU5BU5D_t1281789340* get_nativeDigits_36() const { return ___nativeDigits_36; }
inline StringU5BU5D_t1281789340** get_address_of_nativeDigits_36() { return &___nativeDigits_36; }
inline void set_nativeDigits_36(StringU5BU5D_t1281789340* value)
{
___nativeDigits_36 = value;
Il2CppCodeGenWriteBarrier((&___nativeDigits_36), value);
}
inline static int32_t get_offset_of_digitSubstitution_37() { return static_cast<int32_t>(offsetof(NumberFormatInfo_t435877138, ___digitSubstitution_37)); }
inline int32_t get_digitSubstitution_37() const { return ___digitSubstitution_37; }
inline int32_t* get_address_of_digitSubstitution_37() { return &___digitSubstitution_37; }
inline void set_digitSubstitution_37(int32_t value)
{
___digitSubstitution_37 = value;
}
};
struct NumberFormatInfo_t435877138_StaticFields
{
public:
// System.String[] System.Globalization.NumberFormatInfo::invariantNativeDigits
StringU5BU5D_t1281789340* ___invariantNativeDigits_38;
public:
inline static int32_t get_offset_of_invariantNativeDigits_38() { return static_cast<int32_t>(offsetof(NumberFormatInfo_t435877138_StaticFields, ___invariantNativeDigits_38)); }
inline StringU5BU5D_t1281789340* get_invariantNativeDigits_38() const { return ___invariantNativeDigits_38; }
inline StringU5BU5D_t1281789340** get_address_of_invariantNativeDigits_38() { return &___invariantNativeDigits_38; }
inline void set_invariantNativeDigits_38(StringU5BU5D_t1281789340* value)
{
___invariantNativeDigits_38 = value;
Il2CppCodeGenWriteBarrier((&___invariantNativeDigits_38), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // NUMBERFORMATINFO_T435877138_H
#ifndef VALUETYPE_T3640485471_H
#define VALUETYPE_T3640485471_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.ValueType
struct ValueType_t3640485471 : public RuntimeObject
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// Native definition for P/Invoke marshalling of System.ValueType
struct ValueType_t3640485471_marshaled_pinvoke
{
};
// Native definition for COM marshalling of System.ValueType
struct ValueType_t3640485471_marshaled_com
{
};
#endif // VALUETYPE_T3640485471_H
#ifndef ENUMERATOR_T2929709194_H
#define ENUMERATOR_T2929709194_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Collections.Stack/Enumerator
struct Enumerator_t2929709194 : public RuntimeObject
{
public:
// System.Collections.Stack System.Collections.Stack/Enumerator::stack
Stack_t2329662280 * ___stack_0;
// System.Int32 System.Collections.Stack/Enumerator::modCount
int32_t ___modCount_1;
// System.Int32 System.Collections.Stack/Enumerator::current
int32_t ___current_2;
public:
inline static int32_t get_offset_of_stack_0() { return static_cast<int32_t>(offsetof(Enumerator_t2929709194, ___stack_0)); }
inline Stack_t2329662280 * get_stack_0() const { return ___stack_0; }
inline Stack_t2329662280 ** get_address_of_stack_0() { return &___stack_0; }
inline void set_stack_0(Stack_t2329662280 * value)
{
___stack_0 = value;
Il2CppCodeGenWriteBarrier((&___stack_0), value);
}
inline static int32_t get_offset_of_modCount_1() { return static_cast<int32_t>(offsetof(Enumerator_t2929709194, ___modCount_1)); }
inline int32_t get_modCount_1() const { return ___modCount_1; }
inline int32_t* get_address_of_modCount_1() { return &___modCount_1; }
inline void set_modCount_1(int32_t value)
{
___modCount_1 = value;
}
inline static int32_t get_offset_of_current_2() { return static_cast<int32_t>(offsetof(Enumerator_t2929709194, ___current_2)); }
inline int32_t get_current_2() const { return ___current_2; }
inline int32_t* get_address_of_current_2() { return &___current_2; }
inline void set_current_2(int32_t value)
{
___current_2 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // ENUMERATOR_T2929709194_H
#ifndef COMPAREINFO_T1092934962_H
#define COMPAREINFO_T1092934962_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Globalization.CompareInfo
struct CompareInfo_t1092934962 : public RuntimeObject
{
public:
// System.Int32 System.Globalization.CompareInfo::culture
int32_t ___culture_1;
// System.String System.Globalization.CompareInfo::icu_name
String_t* ___icu_name_2;
// System.Int32 System.Globalization.CompareInfo::win32LCID
int32_t ___win32LCID_3;
// System.String System.Globalization.CompareInfo::m_name
String_t* ___m_name_4;
// Mono.Globalization.Unicode.SimpleCollator System.Globalization.CompareInfo::collator
SimpleCollator_t2877834729 * ___collator_5;
public:
inline static int32_t get_offset_of_culture_1() { return static_cast<int32_t>(offsetof(CompareInfo_t1092934962, ___culture_1)); }
inline int32_t get_culture_1() const { return ___culture_1; }
inline int32_t* get_address_of_culture_1() { return &___culture_1; }
inline void set_culture_1(int32_t value)
{
___culture_1 = value;
}
inline static int32_t get_offset_of_icu_name_2() { return static_cast<int32_t>(offsetof(CompareInfo_t1092934962, ___icu_name_2)); }
inline String_t* get_icu_name_2() const { return ___icu_name_2; }
inline String_t** get_address_of_icu_name_2() { return &___icu_name_2; }
inline void set_icu_name_2(String_t* value)
{
___icu_name_2 = value;
Il2CppCodeGenWriteBarrier((&___icu_name_2), value);
}
inline static int32_t get_offset_of_win32LCID_3() { return static_cast<int32_t>(offsetof(CompareInfo_t1092934962, ___win32LCID_3)); }
inline int32_t get_win32LCID_3() const { return ___win32LCID_3; }
inline int32_t* get_address_of_win32LCID_3() { return &___win32LCID_3; }
inline void set_win32LCID_3(int32_t value)
{
___win32LCID_3 = value;
}
inline static int32_t get_offset_of_m_name_4() { return static_cast<int32_t>(offsetof(CompareInfo_t1092934962, ___m_name_4)); }
inline String_t* get_m_name_4() const { return ___m_name_4; }
inline String_t** get_address_of_m_name_4() { return &___m_name_4; }
inline void set_m_name_4(String_t* value)
{
___m_name_4 = value;
Il2CppCodeGenWriteBarrier((&___m_name_4), value);
}
inline static int32_t get_offset_of_collator_5() { return static_cast<int32_t>(offsetof(CompareInfo_t1092934962, ___collator_5)); }
inline SimpleCollator_t2877834729 * get_collator_5() const { return ___collator_5; }
inline SimpleCollator_t2877834729 ** get_address_of_collator_5() { return &___collator_5; }
inline void set_collator_5(SimpleCollator_t2877834729 * value)
{
___collator_5 = value;
Il2CppCodeGenWriteBarrier((&___collator_5), value);
}
};
struct CompareInfo_t1092934962_StaticFields
{
public:
// System.Boolean System.Globalization.CompareInfo::useManagedCollation
bool ___useManagedCollation_0;
// System.Collections.Hashtable System.Globalization.CompareInfo::collators
Hashtable_t1853889766 * ___collators_6;
// System.Object System.Globalization.CompareInfo::monitor
RuntimeObject * ___monitor_7;
public:
inline static int32_t get_offset_of_useManagedCollation_0() { return static_cast<int32_t>(offsetof(CompareInfo_t1092934962_StaticFields, ___useManagedCollation_0)); }
inline bool get_useManagedCollation_0() const { return ___useManagedCollation_0; }
inline bool* get_address_of_useManagedCollation_0() { return &___useManagedCollation_0; }
inline void set_useManagedCollation_0(bool value)
{
___useManagedCollation_0 = value;
}
inline static int32_t get_offset_of_collators_6() { return static_cast<int32_t>(offsetof(CompareInfo_t1092934962_StaticFields, ___collators_6)); }
inline Hashtable_t1853889766 * get_collators_6() const { return ___collators_6; }
inline Hashtable_t1853889766 ** get_address_of_collators_6() { return &___collators_6; }
inline void set_collators_6(Hashtable_t1853889766 * value)
{
___collators_6 = value;
Il2CppCodeGenWriteBarrier((&___collators_6), value);
}
inline static int32_t get_offset_of_monitor_7() { return static_cast<int32_t>(offsetof(CompareInfo_t1092934962_StaticFields, ___monitor_7)); }
inline RuntimeObject * get_monitor_7() const { return ___monitor_7; }
inline RuntimeObject ** get_address_of_monitor_7() { return &___monitor_7; }
inline void set_monitor_7(RuntimeObject * value)
{
___monitor_7 = value;
Il2CppCodeGenWriteBarrier((&___monitor_7), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // COMPAREINFO_T1092934962_H
#ifndef CASEINSENSITIVEHASHCODEPROVIDER_T1962629119_H
#define CASEINSENSITIVEHASHCODEPROVIDER_T1962629119_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Collections.CaseInsensitiveHashCodeProvider
struct CaseInsensitiveHashCodeProvider_t1962629119 : public RuntimeObject
{
public:
// System.Globalization.TextInfo System.Collections.CaseInsensitiveHashCodeProvider::m_text
TextInfo_t3810425522 * ___m_text_2;
public:
inline static int32_t get_offset_of_m_text_2() { return static_cast<int32_t>(offsetof(CaseInsensitiveHashCodeProvider_t1962629119, ___m_text_2)); }
inline TextInfo_t3810425522 * get_m_text_2() const { return ___m_text_2; }
inline TextInfo_t3810425522 ** get_address_of_m_text_2() { return &___m_text_2; }
inline void set_m_text_2(TextInfo_t3810425522 * value)
{
___m_text_2 = value;
Il2CppCodeGenWriteBarrier((&___m_text_2), value);
}
};
struct CaseInsensitiveHashCodeProvider_t1962629119_StaticFields
{
public:
// System.Collections.CaseInsensitiveHashCodeProvider System.Collections.CaseInsensitiveHashCodeProvider::singletonInvariant
CaseInsensitiveHashCodeProvider_t1962629119 * ___singletonInvariant_0;
// System.Object System.Collections.CaseInsensitiveHashCodeProvider::sync
RuntimeObject * ___sync_1;
public:
inline static int32_t get_offset_of_singletonInvariant_0() { return static_cast<int32_t>(offsetof(CaseInsensitiveHashCodeProvider_t1962629119_StaticFields, ___singletonInvariant_0)); }
inline CaseInsensitiveHashCodeProvider_t1962629119 * get_singletonInvariant_0() const { return ___singletonInvariant_0; }
inline CaseInsensitiveHashCodeProvider_t1962629119 ** get_address_of_singletonInvariant_0() { return &___singletonInvariant_0; }
inline void set_singletonInvariant_0(CaseInsensitiveHashCodeProvider_t1962629119 * value)
{
___singletonInvariant_0 = value;
Il2CppCodeGenWriteBarrier((&___singletonInvariant_0), value);
}
inline static int32_t get_offset_of_sync_1() { return static_cast<int32_t>(offsetof(CaseInsensitiveHashCodeProvider_t1962629119_StaticFields, ___sync_1)); }
inline RuntimeObject * get_sync_1() const { return ___sync_1; }
inline RuntimeObject ** get_address_of_sync_1() { return &___sync_1; }
inline void set_sync_1(RuntimeObject * value)
{
___sync_1 = value;
Il2CppCodeGenWriteBarrier((&___sync_1), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // CASEINSENSITIVEHASHCODEPROVIDER_T1962629119_H
#ifndef BITARRAYENUMERATOR_T893496218_H
#define BITARRAYENUMERATOR_T893496218_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Collections.BitArray/BitArrayEnumerator
struct BitArrayEnumerator_t893496218 : public RuntimeObject
{
public:
// System.Collections.BitArray System.Collections.BitArray/BitArrayEnumerator::_bitArray
BitArray_t4087883509 * ____bitArray_0;
// System.Boolean System.Collections.BitArray/BitArrayEnumerator::_current
bool ____current_1;
// System.Int32 System.Collections.BitArray/BitArrayEnumerator::_index
int32_t ____index_2;
// System.Int32 System.Collections.BitArray/BitArrayEnumerator::_version
int32_t ____version_3;
public:
inline static int32_t get_offset_of__bitArray_0() { return static_cast<int32_t>(offsetof(BitArrayEnumerator_t893496218, ____bitArray_0)); }
inline BitArray_t4087883509 * get__bitArray_0() const { return ____bitArray_0; }
inline BitArray_t4087883509 ** get_address_of__bitArray_0() { return &____bitArray_0; }
inline void set__bitArray_0(BitArray_t4087883509 * value)
{
____bitArray_0 = value;
Il2CppCodeGenWriteBarrier((&____bitArray_0), value);
}
inline static int32_t get_offset_of__current_1() { return static_cast<int32_t>(offsetof(BitArrayEnumerator_t893496218, ____current_1)); }
inline bool get__current_1() const { return ____current_1; }
inline bool* get_address_of__current_1() { return &____current_1; }
inline void set__current_1(bool value)
{
____current_1 = value;
}
inline static int32_t get_offset_of__index_2() { return static_cast<int32_t>(offsetof(BitArrayEnumerator_t893496218, ____index_2)); }
inline int32_t get__index_2() const { return ____index_2; }
inline int32_t* get_address_of__index_2() { return &____index_2; }
inline void set__index_2(int32_t value)
{
____index_2 = value;
}
inline static int32_t get_offset_of__version_3() { return static_cast<int32_t>(offsetof(BitArrayEnumerator_t893496218, ____version_3)); }
inline int32_t get__version_3() const { return ____version_3; }
inline int32_t* get_address_of__version_3() { return &____version_3; }
inline void set__version_3(int32_t value)
{
____version_3 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // BITARRAYENUMERATOR_T893496218_H
#ifndef CASEINSENSITIVECOMPARER_T3670035800_H
#define CASEINSENSITIVECOMPARER_T3670035800_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Collections.CaseInsensitiveComparer
struct CaseInsensitiveComparer_t3670035800 : public RuntimeObject
{
public:
// System.Globalization.CultureInfo System.Collections.CaseInsensitiveComparer::culture
CultureInfo_t4157843068 * ___culture_2;
public:
inline static int32_t get_offset_of_culture_2() { return static_cast<int32_t>(offsetof(CaseInsensitiveComparer_t3670035800, ___culture_2)); }
inline CultureInfo_t4157843068 * get_culture_2() const { return ___culture_2; }
inline CultureInfo_t4157843068 ** get_address_of_culture_2() { return &___culture_2; }
inline void set_culture_2(CultureInfo_t4157843068 * value)
{
___culture_2 = value;
Il2CppCodeGenWriteBarrier((&___culture_2), value);
}
};
struct CaseInsensitiveComparer_t3670035800_StaticFields
{
public:
// System.Collections.CaseInsensitiveComparer System.Collections.CaseInsensitiveComparer::defaultComparer
CaseInsensitiveComparer_t3670035800 * ___defaultComparer_0;
// System.Collections.CaseInsensitiveComparer System.Collections.CaseInsensitiveComparer::defaultInvariantComparer
CaseInsensitiveComparer_t3670035800 * ___defaultInvariantComparer_1;
public:
inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(CaseInsensitiveComparer_t3670035800_StaticFields, ___defaultComparer_0)); }
inline CaseInsensitiveComparer_t3670035800 * get_defaultComparer_0() const { return ___defaultComparer_0; }
inline CaseInsensitiveComparer_t3670035800 ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; }
inline void set_defaultComparer_0(CaseInsensitiveComparer_t3670035800 * value)
{
___defaultComparer_0 = value;
Il2CppCodeGenWriteBarrier((&___defaultComparer_0), value);
}
inline static int32_t get_offset_of_defaultInvariantComparer_1() { return static_cast<int32_t>(offsetof(CaseInsensitiveComparer_t3670035800_StaticFields, ___defaultInvariantComparer_1)); }
inline CaseInsensitiveComparer_t3670035800 * get_defaultInvariantComparer_1() const { return ___defaultInvariantComparer_1; }
inline CaseInsensitiveComparer_t3670035800 ** get_address_of_defaultInvariantComparer_1() { return &___defaultInvariantComparer_1; }
inline void set_defaultInvariantComparer_1(CaseInsensitiveComparer_t3670035800 * value)
{
___defaultInvariantComparer_1 = value;
Il2CppCodeGenWriteBarrier((&___defaultInvariantComparer_1), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // CASEINSENSITIVECOMPARER_T3670035800_H
#ifndef COLLECTIONDEBUGGERVIEW_T390662535_H
#define COLLECTIONDEBUGGERVIEW_T390662535_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Collections.CollectionDebuggerView
struct CollectionDebuggerView_t390662535 : public RuntimeObject
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // COLLECTIONDEBUGGERVIEW_T390662535_H
#ifndef KEYMARKER_T2496412495_H
#define KEYMARKER_T2496412495_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Collections.Hashtable/KeyMarker
struct KeyMarker_t2496412495 : public RuntimeObject
{
public:
public:
};
struct KeyMarker_t2496412495_StaticFields
{
public:
// System.Collections.Hashtable/KeyMarker System.Collections.Hashtable/KeyMarker::Removed
KeyMarker_t2496412495 * ___Removed_0;
public:
inline static int32_t get_offset_of_Removed_0() { return static_cast<int32_t>(offsetof(KeyMarker_t2496412495_StaticFields, ___Removed_0)); }
inline KeyMarker_t2496412495 * get_Removed_0() const { return ___Removed_0; }
inline KeyMarker_t2496412495 ** get_address_of_Removed_0() { return &___Removed_0; }
inline void set_Removed_0(KeyMarker_t2496412495 * value)
{
___Removed_0 = value;
Il2CppCodeGenWriteBarrier((&___Removed_0), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // KEYMARKER_T2496412495_H
#ifndef SORTEDLIST_T2427694641_H
#define SORTEDLIST_T2427694641_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Collections.SortedList
struct SortedList_t2427694641 : public RuntimeObject
{
public:
// System.Int32 System.Collections.SortedList::inUse
int32_t ___inUse_1;
// System.Int32 System.Collections.SortedList::modificationCount
int32_t ___modificationCount_2;
// System.Collections.SortedList/Slot[] System.Collections.SortedList::table
SlotU5BU5D_t227397015* ___table_3;
// System.Collections.IComparer System.Collections.SortedList::comparer
RuntimeObject* ___comparer_4;
// System.Int32 System.Collections.SortedList::defaultCapacity
int32_t ___defaultCapacity_5;
public:
inline static int32_t get_offset_of_inUse_1() { return static_cast<int32_t>(offsetof(SortedList_t2427694641, ___inUse_1)); }
inline int32_t get_inUse_1() const { return ___inUse_1; }
inline int32_t* get_address_of_inUse_1() { return &___inUse_1; }
inline void set_inUse_1(int32_t value)
{
___inUse_1 = value;
}
inline static int32_t get_offset_of_modificationCount_2() { return static_cast<int32_t>(offsetof(SortedList_t2427694641, ___modificationCount_2)); }
inline int32_t get_modificationCount_2() const { return ___modificationCount_2; }
inline int32_t* get_address_of_modificationCount_2() { return &___modificationCount_2; }
inline void set_modificationCount_2(int32_t value)
{
___modificationCount_2 = value;
}
inline static int32_t get_offset_of_table_3() { return static_cast<int32_t>(offsetof(SortedList_t2427694641, ___table_3)); }
inline SlotU5BU5D_t227397015* get_table_3() const { return ___table_3; }
inline SlotU5BU5D_t227397015** get_address_of_table_3() { return &___table_3; }
inline void set_table_3(SlotU5BU5D_t227397015* value)
{
___table_3 = value;
Il2CppCodeGenWriteBarrier((&___table_3), value);
}
inline static int32_t get_offset_of_comparer_4() { return static_cast<int32_t>(offsetof(SortedList_t2427694641, ___comparer_4)); }
inline RuntimeObject* get_comparer_4() const { return ___comparer_4; }
inline RuntimeObject** get_address_of_comparer_4() { return &___comparer_4; }
inline void set_comparer_4(RuntimeObject* value)
{
___comparer_4 = value;
Il2CppCodeGenWriteBarrier((&___comparer_4), value);
}
inline static int32_t get_offset_of_defaultCapacity_5() { return static_cast<int32_t>(offsetof(SortedList_t2427694641, ___defaultCapacity_5)); }
inline int32_t get_defaultCapacity_5() const { return ___defaultCapacity_5; }
inline int32_t* get_address_of_defaultCapacity_5() { return &___defaultCapacity_5; }
inline void set_defaultCapacity_5(int32_t value)
{
___defaultCapacity_5 = value;
}
};
struct SortedList_t2427694641_StaticFields
{
public:
// System.Int32 System.Collections.SortedList::INITIAL_SIZE
int32_t ___INITIAL_SIZE_0;
public:
inline static int32_t get_offset_of_INITIAL_SIZE_0() { return static_cast<int32_t>(offsetof(SortedList_t2427694641_StaticFields, ___INITIAL_SIZE_0)); }
inline int32_t get_INITIAL_SIZE_0() const { return ___INITIAL_SIZE_0; }
inline int32_t* get_address_of_INITIAL_SIZE_0() { return &___INITIAL_SIZE_0; }
inline void set_INITIAL_SIZE_0(int32_t value)
{
___INITIAL_SIZE_0 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // SORTEDLIST_T2427694641_H
#ifndef HASHKEYS_T1568156503_H
#define HASHKEYS_T1568156503_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Collections.Hashtable/HashKeys
struct HashKeys_t1568156503 : public RuntimeObject
{
public:
// System.Collections.Hashtable System.Collections.Hashtable/HashKeys::host
Hashtable_t1853889766 * ___host_0;
public:
inline static int32_t get_offset_of_host_0() { return static_cast<int32_t>(offsetof(HashKeys_t1568156503, ___host_0)); }
inline Hashtable_t1853889766 * get_host_0() const { return ___host_0; }
inline Hashtable_t1853889766 ** get_address_of_host_0() { return &___host_0; }
inline void set_host_0(Hashtable_t1853889766 * value)
{
___host_0 = value;
Il2CppCodeGenWriteBarrier((&___host_0), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // HASHKEYS_T1568156503_H
#ifndef HASHVALUES_T618387445_H
#define HASHVALUES_T618387445_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Collections.Hashtable/HashValues
struct HashValues_t618387445 : public RuntimeObject
{
public:
// System.Collections.Hashtable System.Collections.Hashtable/HashValues::host
Hashtable_t1853889766 * ___host_0;
public:
inline static int32_t get_offset_of_host_0() { return static_cast<int32_t>(offsetof(HashValues_t618387445, ___host_0)); }
inline Hashtable_t1853889766 * get_host_0() const { return ___host_0; }
inline Hashtable_t1853889766 ** get_address_of_host_0() { return &___host_0; }
inline void set_host_0(Hashtable_t1853889766 * value)
{
___host_0 = value;
Il2CppCodeGenWriteBarrier((&___host_0), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // HASHVALUES_T618387445_H
#ifndef SECURITYELEMENT_T1046076091_H
#define SECURITYELEMENT_T1046076091_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Security.SecurityElement
struct SecurityElement_t1046076091 : public RuntimeObject
{
public:
// System.String System.Security.SecurityElement::text
String_t* ___text_0;
// System.String System.Security.SecurityElement::tag
String_t* ___tag_1;
// System.Collections.ArrayList System.Security.SecurityElement::attributes
ArrayList_t2718874744 * ___attributes_2;
// System.Collections.ArrayList System.Security.SecurityElement::children
ArrayList_t2718874744 * ___children_3;
public:
inline static int32_t get_offset_of_text_0() { return static_cast<int32_t>(offsetof(SecurityElement_t1046076091, ___text_0)); }
inline String_t* get_text_0() const { return ___text_0; }
inline String_t** get_address_of_text_0() { return &___text_0; }
inline void set_text_0(String_t* value)
{
___text_0 = value;
Il2CppCodeGenWriteBarrier((&___text_0), value);
}
inline static int32_t get_offset_of_tag_1() { return static_cast<int32_t>(offsetof(SecurityElement_t1046076091, ___tag_1)); }
inline String_t* get_tag_1() const { return ___tag_1; }
inline String_t** get_address_of_tag_1() { return &___tag_1; }
inline void set_tag_1(String_t* value)
{
___tag_1 = value;
Il2CppCodeGenWriteBarrier((&___tag_1), value);
}
inline static int32_t get_offset_of_attributes_2() { return static_cast<int32_t>(offsetof(SecurityElement_t1046076091, ___attributes_2)); }
inline ArrayList_t2718874744 * get_attributes_2() const { return ___attributes_2; }
inline ArrayList_t2718874744 ** get_address_of_attributes_2() { return &___attributes_2; }
inline void set_attributes_2(ArrayList_t2718874744 * value)
{
___attributes_2 = value;
Il2CppCodeGenWriteBarrier((&___attributes_2), value);
}
inline static int32_t get_offset_of_children_3() { return static_cast<int32_t>(offsetof(SecurityElement_t1046076091, ___children_3)); }
inline ArrayList_t2718874744 * get_children_3() const { return ___children_3; }
inline ArrayList_t2718874744 ** get_address_of_children_3() { return &___children_3; }
inline void set_children_3(ArrayList_t2718874744 * value)
{
___children_3 = value;
Il2CppCodeGenWriteBarrier((&___children_3), value);
}
};
struct SecurityElement_t1046076091_StaticFields
{
public:
// System.Char[] System.Security.SecurityElement::invalid_tag_chars
CharU5BU5D_t3528271667* ___invalid_tag_chars_4;
// System.Char[] System.Security.SecurityElement::invalid_text_chars
CharU5BU5D_t3528271667* ___invalid_text_chars_5;
// System.Char[] System.Security.SecurityElement::invalid_attr_name_chars
CharU5BU5D_t3528271667* ___invalid_attr_name_chars_6;
// System.Char[] System.Security.SecurityElement::invalid_attr_value_chars
CharU5BU5D_t3528271667* ___invalid_attr_value_chars_7;
// System.Char[] System.Security.SecurityElement::invalid_chars
CharU5BU5D_t3528271667* ___invalid_chars_8;
public:
inline static int32_t get_offset_of_invalid_tag_chars_4() { return static_cast<int32_t>(offsetof(SecurityElement_t1046076091_StaticFields, ___invalid_tag_chars_4)); }
inline CharU5BU5D_t3528271667* get_invalid_tag_chars_4() const { return ___invalid_tag_chars_4; }
inline CharU5BU5D_t3528271667** get_address_of_invalid_tag_chars_4() { return &___invalid_tag_chars_4; }
inline void set_invalid_tag_chars_4(CharU5BU5D_t3528271667* value)
{
___invalid_tag_chars_4 = value;
Il2CppCodeGenWriteBarrier((&___invalid_tag_chars_4), value);
}
inline static int32_t get_offset_of_invalid_text_chars_5() { return static_cast<int32_t>(offsetof(SecurityElement_t1046076091_StaticFields, ___invalid_text_chars_5)); }
inline CharU5BU5D_t3528271667* get_invalid_text_chars_5() const { return ___invalid_text_chars_5; }
inline CharU5BU5D_t3528271667** get_address_of_invalid_text_chars_5() { return &___invalid_text_chars_5; }
inline void set_invalid_text_chars_5(CharU5BU5D_t3528271667* value)
{
___invalid_text_chars_5 = value;
Il2CppCodeGenWriteBarrier((&___invalid_text_chars_5), value);
}
inline static int32_t get_offset_of_invalid_attr_name_chars_6() { return static_cast<int32_t>(offsetof(SecurityElement_t1046076091_StaticFields, ___invalid_attr_name_chars_6)); }
inline CharU5BU5D_t3528271667* get_invalid_attr_name_chars_6() const { return ___invalid_attr_name_chars_6; }
inline CharU5BU5D_t3528271667** get_address_of_invalid_attr_name_chars_6() { return &___invalid_attr_name_chars_6; }
inline void set_invalid_attr_name_chars_6(CharU5BU5D_t3528271667* value)
{
___invalid_attr_name_chars_6 = value;
Il2CppCodeGenWriteBarrier((&___invalid_attr_name_chars_6), value);
}
inline static int32_t get_offset_of_invalid_attr_value_chars_7() { return static_cast<int32_t>(offsetof(SecurityElement_t1046076091_StaticFields, ___invalid_attr_value_chars_7)); }
inline CharU5BU5D_t3528271667* get_invalid_attr_value_chars_7() const { return ___invalid_attr_value_chars_7; }
inline CharU5BU5D_t3528271667** get_address_of_invalid_attr_value_chars_7() { return &___invalid_attr_value_chars_7; }
inline void set_invalid_attr_value_chars_7(CharU5BU5D_t3528271667* value)
{
___invalid_attr_value_chars_7 = value;
Il2CppCodeGenWriteBarrier((&___invalid_attr_value_chars_7), value);
}
inline static int32_t get_offset_of_invalid_chars_8() { return static_cast<int32_t>(offsetof(SecurityElement_t1046076091_StaticFields, ___invalid_chars_8)); }
inline CharU5BU5D_t3528271667* get_invalid_chars_8() const { return ___invalid_chars_8; }
inline CharU5BU5D_t3528271667** get_address_of_invalid_chars_8() { return &___invalid_chars_8; }
inline void set_invalid_chars_8(CharU5BU5D_t3528271667* value)
{
___invalid_chars_8 = value;
Il2CppCodeGenWriteBarrier((&___invalid_chars_8), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // SECURITYELEMENT_T1046076091_H
#ifndef STRING_T_H
#define STRING_T_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.String
struct String_t : public RuntimeObject
{
public:
// System.Int32 System.String::length
int32_t ___length_0;
// System.Char System.String::start_char
Il2CppChar ___start_char_1;
public:
inline static int32_t get_offset_of_length_0() { return static_cast<int32_t>(offsetof(String_t, ___length_0)); }
inline int32_t get_length_0() const { return ___length_0; }
inline int32_t* get_address_of_length_0() { return &___length_0; }
inline void set_length_0(int32_t value)
{
___length_0 = value;
}
inline static int32_t get_offset_of_start_char_1() { return static_cast<int32_t>(offsetof(String_t, ___start_char_1)); }
inline Il2CppChar get_start_char_1() const { return ___start_char_1; }
inline Il2CppChar* get_address_of_start_char_1() { return &___start_char_1; }
inline void set_start_char_1(Il2CppChar value)
{
___start_char_1 = value;
}
};
struct String_t_StaticFields
{
public:
// System.String System.String::Empty
String_t* ___Empty_2;
// System.Char[] System.String::WhiteChars
CharU5BU5D_t3528271667* ___WhiteChars_3;
public:
inline static int32_t get_offset_of_Empty_2() { return static_cast<int32_t>(offsetof(String_t_StaticFields, ___Empty_2)); }
inline String_t* get_Empty_2() const { return ___Empty_2; }
inline String_t** get_address_of_Empty_2() { return &___Empty_2; }
inline void set_Empty_2(String_t* value)
{
___Empty_2 = value;
Il2CppCodeGenWriteBarrier((&___Empty_2), value);
}
inline static int32_t get_offset_of_WhiteChars_3() { return static_cast<int32_t>(offsetof(String_t_StaticFields, ___WhiteChars_3)); }
inline CharU5BU5D_t3528271667* get_WhiteChars_3() const { return ___WhiteChars_3; }
inline CharU5BU5D_t3528271667** get_address_of_WhiteChars_3() { return &___WhiteChars_3; }
inline void set_WhiteChars_3(CharU5BU5D_t3528271667* value)
{
___WhiteChars_3 = value;
Il2CppCodeGenWriteBarrier((&___WhiteChars_3), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // STRING_T_H
#ifndef STRINGBUILDER_T_H
#define STRINGBUILDER_T_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Text.StringBuilder
struct StringBuilder_t : public RuntimeObject
{
public:
// System.Int32 System.Text.StringBuilder::_length
int32_t ____length_1;
// System.String System.Text.StringBuilder::_str
String_t* ____str_2;
// System.String System.Text.StringBuilder::_cached_str
String_t* ____cached_str_3;
// System.Int32 System.Text.StringBuilder::_maxCapacity
int32_t ____maxCapacity_4;
public:
inline static int32_t get_offset_of__length_1() { return static_cast<int32_t>(offsetof(StringBuilder_t, ____length_1)); }
inline int32_t get__length_1() const { return ____length_1; }
inline int32_t* get_address_of__length_1() { return &____length_1; }
inline void set__length_1(int32_t value)
{
____length_1 = value;
}
inline static int32_t get_offset_of__str_2() { return static_cast<int32_t>(offsetof(StringBuilder_t, ____str_2)); }
inline String_t* get__str_2() const { return ____str_2; }
inline String_t** get_address_of__str_2() { return &____str_2; }
inline void set__str_2(String_t* value)
{
____str_2 = value;
Il2CppCodeGenWriteBarrier((&____str_2), value);
}
inline static int32_t get_offset_of__cached_str_3() { return static_cast<int32_t>(offsetof(StringBuilder_t, ____cached_str_3)); }
inline String_t* get__cached_str_3() const { return ____cached_str_3; }
inline String_t** get_address_of__cached_str_3() { return &____cached_str_3; }
inline void set__cached_str_3(String_t* value)
{
____cached_str_3 = value;
Il2CppCodeGenWriteBarrier((&____cached_str_3), value);
}
inline static int32_t get_offset_of__maxCapacity_4() { return static_cast<int32_t>(offsetof(StringBuilder_t, ____maxCapacity_4)); }
inline int32_t get__maxCapacity_4() const { return ____maxCapacity_4; }
inline int32_t* get_address_of__maxCapacity_4() { return &____maxCapacity_4; }
inline void set__maxCapacity_4(int32_t value)
{
____maxCapacity_4 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // STRINGBUILDER_T_H
#ifndef X509CERTIFICATEENUMERATOR_T3515934697_H
#define X509CERTIFICATEENUMERATOR_T3515934697_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Mono.Security.X509.X509CertificateCollection/X509CertificateEnumerator
struct X509CertificateEnumerator_t3515934697 : public RuntimeObject
{
public:
// System.Collections.IEnumerator Mono.Security.X509.X509CertificateCollection/X509CertificateEnumerator::enumerator
RuntimeObject* ___enumerator_0;
public:
inline static int32_t get_offset_of_enumerator_0() { return static_cast<int32_t>(offsetof(X509CertificateEnumerator_t3515934697, ___enumerator_0)); }
inline RuntimeObject* get_enumerator_0() const { return ___enumerator_0; }
inline RuntimeObject** get_address_of_enumerator_0() { return &___enumerator_0; }
inline void set_enumerator_0(RuntimeObject* value)
{
___enumerator_0 = value;
Il2CppCodeGenWriteBarrier((&___enumerator_0), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // X509CERTIFICATEENUMERATOR_T3515934697_H
#ifndef CULTUREINFO_T4157843068_H
#define CULTUREINFO_T4157843068_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Globalization.CultureInfo
struct CultureInfo_t4157843068 : public RuntimeObject
{
public:
// System.Boolean System.Globalization.CultureInfo::m_isReadOnly
bool ___m_isReadOnly_7;
// System.Int32 System.Globalization.CultureInfo::cultureID
int32_t ___cultureID_8;
// System.Int32 System.Globalization.CultureInfo::parent_lcid
int32_t ___parent_lcid_9;
// System.Int32 System.Globalization.CultureInfo::specific_lcid
int32_t ___specific_lcid_10;
// System.Int32 System.Globalization.CultureInfo::datetime_index
int32_t ___datetime_index_11;
// System.Int32 System.Globalization.CultureInfo::number_index
int32_t ___number_index_12;
// System.Boolean System.Globalization.CultureInfo::m_useUserOverride
bool ___m_useUserOverride_13;
// System.Globalization.NumberFormatInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::numInfo
NumberFormatInfo_t435877138 * ___numInfo_14;
// System.Globalization.DateTimeFormatInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::dateTimeInfo
DateTimeFormatInfo_t2405853701 * ___dateTimeInfo_15;
// System.Globalization.TextInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::textInfo
TextInfo_t3810425522 * ___textInfo_16;
// System.String System.Globalization.CultureInfo::m_name
String_t* ___m_name_17;
// System.String System.Globalization.CultureInfo::displayname
String_t* ___displayname_18;
// System.String System.Globalization.CultureInfo::englishname
String_t* ___englishname_19;
// System.String System.Globalization.CultureInfo::nativename
String_t* ___nativename_20;
// System.String System.Globalization.CultureInfo::iso3lang
String_t* ___iso3lang_21;
// System.String System.Globalization.CultureInfo::iso2lang
String_t* ___iso2lang_22;
// System.String System.Globalization.CultureInfo::icu_name
String_t* ___icu_name_23;
// System.String System.Globalization.CultureInfo::win3lang
String_t* ___win3lang_24;
// System.String System.Globalization.CultureInfo::territory
String_t* ___territory_25;
// System.Globalization.CompareInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::compareInfo
CompareInfo_t1092934962 * ___compareInfo_26;
// System.Int32* System.Globalization.CultureInfo::calendar_data
int32_t* ___calendar_data_27;
// System.Void* System.Globalization.CultureInfo::textinfo_data
void* ___textinfo_data_28;
// System.Globalization.Calendar[] System.Globalization.CultureInfo::optional_calendars
CalendarU5BU5D_t3985046076* ___optional_calendars_29;
// System.Globalization.CultureInfo System.Globalization.CultureInfo::parent_culture
CultureInfo_t4157843068 * ___parent_culture_30;
// System.Int32 System.Globalization.CultureInfo::m_dataItem
int32_t ___m_dataItem_31;
// System.Globalization.Calendar System.Globalization.CultureInfo::calendar
Calendar_t1661121569 * ___calendar_32;
// System.Boolean System.Globalization.CultureInfo::constructed
bool ___constructed_33;
// System.Byte[] System.Globalization.CultureInfo::cached_serialized_form
ByteU5BU5D_t4116647657* ___cached_serialized_form_34;
public:
inline static int32_t get_offset_of_m_isReadOnly_7() { return static_cast<int32_t>(offsetof(CultureInfo_t4157843068, ___m_isReadOnly_7)); }
inline bool get_m_isReadOnly_7() const { return ___m_isReadOnly_7; }
inline bool* get_address_of_m_isReadOnly_7() { return &___m_isReadOnly_7; }
inline void set_m_isReadOnly_7(bool value)
{
___m_isReadOnly_7 = value;
}
inline static int32_t get_offset_of_cultureID_8() { return static_cast<int32_t>(offsetof(CultureInfo_t4157843068, ___cultureID_8)); }
inline int32_t get_cultureID_8() const { return ___cultureID_8; }
inline int32_t* get_address_of_cultureID_8() { return &___cultureID_8; }
inline void set_cultureID_8(int32_t value)
{
___cultureID_8 = value;
}
inline static int32_t get_offset_of_parent_lcid_9() { return static_cast<int32_t>(offsetof(CultureInfo_t4157843068, ___parent_lcid_9)); }
inline int32_t get_parent_lcid_9() const { return ___parent_lcid_9; }
inline int32_t* get_address_of_parent_lcid_9() { return &___parent_lcid_9; }
inline void set_parent_lcid_9(int32_t value)
{
___parent_lcid_9 = value;
}
inline static int32_t get_offset_of_specific_lcid_10() { return static_cast<int32_t>(offsetof(CultureInfo_t4157843068, ___specific_lcid_10)); }
inline int32_t get_specific_lcid_10() const { return ___specific_lcid_10; }
inline int32_t* get_address_of_specific_lcid_10() { return &___specific_lcid_10; }
inline void set_specific_lcid_10(int32_t value)
{
___specific_lcid_10 = value;
}
inline static int32_t get_offset_of_datetime_index_11() { return static_cast<int32_t>(offsetof(CultureInfo_t4157843068, ___datetime_index_11)); }
inline int32_t get_datetime_index_11() const { return ___datetime_index_11; }
inline int32_t* get_address_of_datetime_index_11() { return &___datetime_index_11; }
inline void set_datetime_index_11(int32_t value)
{
___datetime_index_11 = value;
}
inline static int32_t get_offset_of_number_index_12() { return static_cast<int32_t>(offsetof(CultureInfo_t4157843068, ___number_index_12)); }
inline int32_t get_number_index_12() const { return ___number_index_12; }
inline int32_t* get_address_of_number_index_12() { return &___number_index_12; }
inline void set_number_index_12(int32_t value)
{
___number_index_12 = value;
}
inline static int32_t get_offset_of_m_useUserOverride_13() { return static_cast<int32_t>(offsetof(CultureInfo_t4157843068, ___m_useUserOverride_13)); }
inline bool get_m_useUserOverride_13() const { return ___m_useUserOverride_13; }
inline bool* get_address_of_m_useUserOverride_13() { return &___m_useUserOverride_13; }
inline void set_m_useUserOverride_13(bool value)
{
___m_useUserOverride_13 = value;
}
inline static int32_t get_offset_of_numInfo_14() { return static_cast<int32_t>(offsetof(CultureInfo_t4157843068, ___numInfo_14)); }
inline NumberFormatInfo_t435877138 * get_numInfo_14() const { return ___numInfo_14; }
inline NumberFormatInfo_t435877138 ** get_address_of_numInfo_14() { return &___numInfo_14; }
inline void set_numInfo_14(NumberFormatInfo_t435877138 * value)
{
___numInfo_14 = value;
Il2CppCodeGenWriteBarrier((&___numInfo_14), value);
}
inline static int32_t get_offset_of_dateTimeInfo_15() { return static_cast<int32_t>(offsetof(CultureInfo_t4157843068, ___dateTimeInfo_15)); }
inline DateTimeFormatInfo_t2405853701 * get_dateTimeInfo_15() const { return ___dateTimeInfo_15; }
inline DateTimeFormatInfo_t2405853701 ** get_address_of_dateTimeInfo_15() { return &___dateTimeInfo_15; }
inline void set_dateTimeInfo_15(DateTimeFormatInfo_t2405853701 * value)
{
___dateTimeInfo_15 = value;
Il2CppCodeGenWriteBarrier((&___dateTimeInfo_15), value);
}
inline static int32_t get_offset_of_textInfo_16() { return static_cast<int32_t>(offsetof(CultureInfo_t4157843068, ___textInfo_16)); }
inline TextInfo_t3810425522 * get_textInfo_16() const { return ___textInfo_16; }
inline TextInfo_t3810425522 ** get_address_of_textInfo_16() { return &___textInfo_16; }
inline void set_textInfo_16(TextInfo_t3810425522 * value)
{
___textInfo_16 = value;
Il2CppCodeGenWriteBarrier((&___textInfo_16), value);
}
inline static int32_t get_offset_of_m_name_17() { return static_cast<int32_t>(offsetof(CultureInfo_t4157843068, ___m_name_17)); }
inline String_t* get_m_name_17() const { return ___m_name_17; }
inline String_t** get_address_of_m_name_17() { return &___m_name_17; }
inline void set_m_name_17(String_t* value)
{
___m_name_17 = value;
Il2CppCodeGenWriteBarrier((&___m_name_17), value);
}
inline static int32_t get_offset_of_displayname_18() { return static_cast<int32_t>(offsetof(CultureInfo_t4157843068, ___displayname_18)); }
inline String_t* get_displayname_18() const { return ___displayname_18; }
inline String_t** get_address_of_displayname_18() { return &___displayname_18; }
inline void set_displayname_18(String_t* value)
{
___displayname_18 = value;
Il2CppCodeGenWriteBarrier((&___displayname_18), value);
}
inline static int32_t get_offset_of_englishname_19() { return static_cast<int32_t>(offsetof(CultureInfo_t4157843068, ___englishname_19)); }
inline String_t* get_englishname_19() const { return ___englishname_19; }
inline String_t** get_address_of_englishname_19() { return &___englishname_19; }
inline void set_englishname_19(String_t* value)
{
___englishname_19 = value;
Il2CppCodeGenWriteBarrier((&___englishname_19), value);
}
inline static int32_t get_offset_of_nativename_20() { return static_cast<int32_t>(offsetof(CultureInfo_t4157843068, ___nativename_20)); }
inline String_t* get_nativename_20() const { return ___nativename_20; }
inline String_t** get_address_of_nativename_20() { return &___nativename_20; }
inline void set_nativename_20(String_t* value)
{
___nativename_20 = value;
Il2CppCodeGenWriteBarrier((&___nativename_20), value);
}
inline static int32_t get_offset_of_iso3lang_21() { return static_cast<int32_t>(offsetof(CultureInfo_t4157843068, ___iso3lang_21)); }
inline String_t* get_iso3lang_21() const { return ___iso3lang_21; }
inline String_t** get_address_of_iso3lang_21() { return &___iso3lang_21; }
inline void set_iso3lang_21(String_t* value)
{
___iso3lang_21 = value;
Il2CppCodeGenWriteBarrier((&___iso3lang_21), value);
}
inline static int32_t get_offset_of_iso2lang_22() { return static_cast<int32_t>(offsetof(CultureInfo_t4157843068, ___iso2lang_22)); }
inline String_t* get_iso2lang_22() const { return ___iso2lang_22; }
inline String_t** get_address_of_iso2lang_22() { return &___iso2lang_22; }
inline void set_iso2lang_22(String_t* value)
{
___iso2lang_22 = value;
Il2CppCodeGenWriteBarrier((&___iso2lang_22), value);
}
inline static int32_t get_offset_of_icu_name_23() { return static_cast<int32_t>(offsetof(CultureInfo_t4157843068, ___icu_name_23)); }
inline String_t* get_icu_name_23() const { return ___icu_name_23; }
inline String_t** get_address_of_icu_name_23() { return &___icu_name_23; }
inline void set_icu_name_23(String_t* value)
{
___icu_name_23 = value;
Il2CppCodeGenWriteBarrier((&___icu_name_23), value);
}
inline static int32_t get_offset_of_win3lang_24() { return static_cast<int32_t>(offsetof(CultureInfo_t4157843068, ___win3lang_24)); }
inline String_t* get_win3lang_24() const { return ___win3lang_24; }
inline String_t** get_address_of_win3lang_24() { return &___win3lang_24; }
inline void set_win3lang_24(String_t* value)
{
___win3lang_24 = value;
Il2CppCodeGenWriteBarrier((&___win3lang_24), value);
}
inline static int32_t get_offset_of_territory_25() { return static_cast<int32_t>(offsetof(CultureInfo_t4157843068, ___territory_25)); }
inline String_t* get_territory_25() const { return ___territory_25; }
inline String_t** get_address_of_territory_25() { return &___territory_25; }
inline void set_territory_25(String_t* value)
{
___territory_25 = value;
Il2CppCodeGenWriteBarrier((&___territory_25), value);
}
inline static int32_t get_offset_of_compareInfo_26() { return static_cast<int32_t>(offsetof(CultureInfo_t4157843068, ___compareInfo_26)); }
inline CompareInfo_t1092934962 * get_compareInfo_26() const { return ___compareInfo_26; }
inline CompareInfo_t1092934962 ** get_address_of_compareInfo_26() { return &___compareInfo_26; }
inline void set_compareInfo_26(CompareInfo_t1092934962 * value)
{
___compareInfo_26 = value;
Il2CppCodeGenWriteBarrier((&___compareInfo_26), value);
}
inline static int32_t get_offset_of_calendar_data_27() { return static_cast<int32_t>(offsetof(CultureInfo_t4157843068, ___calendar_data_27)); }
inline int32_t* get_calendar_data_27() const { return ___calendar_data_27; }
inline int32_t** get_address_of_calendar_data_27() { return &___calendar_data_27; }
inline void set_calendar_data_27(int32_t* value)
{
___calendar_data_27 = value;
}
inline static int32_t get_offset_of_textinfo_data_28() { return static_cast<int32_t>(offsetof(CultureInfo_t4157843068, ___textinfo_data_28)); }
inline void* get_textinfo_data_28() const { return ___textinfo_data_28; }
inline void** get_address_of_textinfo_data_28() { return &___textinfo_data_28; }
inline void set_textinfo_data_28(void* value)
{
___textinfo_data_28 = value;
}
inline static int32_t get_offset_of_optional_calendars_29() { return static_cast<int32_t>(offsetof(CultureInfo_t4157843068, ___optional_calendars_29)); }
inline CalendarU5BU5D_t3985046076* get_optional_calendars_29() const { return ___optional_calendars_29; }
inline CalendarU5BU5D_t3985046076** get_address_of_optional_calendars_29() { return &___optional_calendars_29; }
inline void set_optional_calendars_29(CalendarU5BU5D_t3985046076* value)
{
___optional_calendars_29 = value;
Il2CppCodeGenWriteBarrier((&___optional_calendars_29), value);
}
inline static int32_t get_offset_of_parent_culture_30() { return static_cast<int32_t>(offsetof(CultureInfo_t4157843068, ___parent_culture_30)); }
inline CultureInfo_t4157843068 * get_parent_culture_30() const { return ___parent_culture_30; }
inline CultureInfo_t4157843068 ** get_address_of_parent_culture_30() { return &___parent_culture_30; }
inline void set_parent_culture_30(CultureInfo_t4157843068 * value)
{
___parent_culture_30 = value;
Il2CppCodeGenWriteBarrier((&___parent_culture_30), value);
}
inline static int32_t get_offset_of_m_dataItem_31() { return static_cast<int32_t>(offsetof(CultureInfo_t4157843068, ___m_dataItem_31)); }
inline int32_t get_m_dataItem_31() const { return ___m_dataItem_31; }
inline int32_t* get_address_of_m_dataItem_31() { return &___m_dataItem_31; }
inline void set_m_dataItem_31(int32_t value)
{
___m_dataItem_31 = value;
}
inline static int32_t get_offset_of_calendar_32() { return static_cast<int32_t>(offsetof(CultureInfo_t4157843068, ___calendar_32)); }
inline Calendar_t1661121569 * get_calendar_32() const { return ___calendar_32; }
inline Calendar_t1661121569 ** get_address_of_calendar_32() { return &___calendar_32; }
inline void set_calendar_32(Calendar_t1661121569 * value)
{
___calendar_32 = value;
Il2CppCodeGenWriteBarrier((&___calendar_32), value);
}
inline static int32_t get_offset_of_constructed_33() { return static_cast<int32_t>(offsetof(CultureInfo_t4157843068, ___constructed_33)); }
inline bool get_constructed_33() const { return ___constructed_33; }
inline bool* get_address_of_constructed_33() { return &___constructed_33; }
inline void set_constructed_33(bool value)
{
___constructed_33 = value;
}
inline static int32_t get_offset_of_cached_serialized_form_34() { return static_cast<int32_t>(offsetof(CultureInfo_t4157843068, ___cached_serialized_form_34)); }
inline ByteU5BU5D_t4116647657* get_cached_serialized_form_34() const { return ___cached_serialized_form_34; }
inline ByteU5BU5D_t4116647657** get_address_of_cached_serialized_form_34() { return &___cached_serialized_form_34; }
inline void set_cached_serialized_form_34(ByteU5BU5D_t4116647657* value)
{
___cached_serialized_form_34 = value;
Il2CppCodeGenWriteBarrier((&___cached_serialized_form_34), value);
}
};
struct CultureInfo_t4157843068_StaticFields
{
public:
// System.Globalization.CultureInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::invariant_culture_info
CultureInfo_t4157843068 * ___invariant_culture_info_4;
// System.Object System.Globalization.CultureInfo::shared_table_lock
RuntimeObject * ___shared_table_lock_5;
// System.Int32 System.Globalization.CultureInfo::BootstrapCultureID
int32_t ___BootstrapCultureID_6;
// System.String System.Globalization.CultureInfo::MSG_READONLY
String_t* ___MSG_READONLY_35;
// System.Collections.Hashtable System.Globalization.CultureInfo::shared_by_number
Hashtable_t1853889766 * ___shared_by_number_36;
// System.Collections.Hashtable System.Globalization.CultureInfo::shared_by_name
Hashtable_t1853889766 * ___shared_by_name_37;
// System.Collections.Generic.Dictionary`2<System.String,System.Int32> System.Globalization.CultureInfo::<>f__switch$map19
Dictionary_2_t2736202052 * ___U3CU3Ef__switchU24map19_38;
// System.Collections.Generic.Dictionary`2<System.String,System.Int32> System.Globalization.CultureInfo::<>f__switch$map1A
Dictionary_2_t2736202052 * ___U3CU3Ef__switchU24map1A_39;
public:
inline static int32_t get_offset_of_invariant_culture_info_4() { return static_cast<int32_t>(offsetof(CultureInfo_t4157843068_StaticFields, ___invariant_culture_info_4)); }
inline CultureInfo_t4157843068 * get_invariant_culture_info_4() const { return ___invariant_culture_info_4; }
inline CultureInfo_t4157843068 ** get_address_of_invariant_culture_info_4() { return &___invariant_culture_info_4; }
inline void set_invariant_culture_info_4(CultureInfo_t4157843068 * value)
{
___invariant_culture_info_4 = value;
Il2CppCodeGenWriteBarrier((&___invariant_culture_info_4), value);
}
inline static int32_t get_offset_of_shared_table_lock_5() { return static_cast<int32_t>(offsetof(CultureInfo_t4157843068_StaticFields, ___shared_table_lock_5)); }
inline RuntimeObject * get_shared_table_lock_5() const { return ___shared_table_lock_5; }
inline RuntimeObject ** get_address_of_shared_table_lock_5() { return &___shared_table_lock_5; }
inline void set_shared_table_lock_5(RuntimeObject * value)
{
___shared_table_lock_5 = value;
Il2CppCodeGenWriteBarrier((&___shared_table_lock_5), value);
}
inline static int32_t get_offset_of_BootstrapCultureID_6() { return static_cast<int32_t>(offsetof(CultureInfo_t4157843068_StaticFields, ___BootstrapCultureID_6)); }
inline int32_t get_BootstrapCultureID_6() const { return ___BootstrapCultureID_6; }
inline int32_t* get_address_of_BootstrapCultureID_6() { return &___BootstrapCultureID_6; }
inline void set_BootstrapCultureID_6(int32_t value)
{
___BootstrapCultureID_6 = value;
}
inline static int32_t get_offset_of_MSG_READONLY_35() { return static_cast<int32_t>(offsetof(CultureInfo_t4157843068_StaticFields, ___MSG_READONLY_35)); }
inline String_t* get_MSG_READONLY_35() const { return ___MSG_READONLY_35; }
inline String_t** get_address_of_MSG_READONLY_35() { return &___MSG_READONLY_35; }
inline void set_MSG_READONLY_35(String_t* value)
{
___MSG_READONLY_35 = value;
Il2CppCodeGenWriteBarrier((&___MSG_READONLY_35), value);
}
inline static int32_t get_offset_of_shared_by_number_36() { return static_cast<int32_t>(offsetof(CultureInfo_t4157843068_StaticFields, ___shared_by_number_36)); }
inline Hashtable_t1853889766 * get_shared_by_number_36() const { return ___shared_by_number_36; }
inline Hashtable_t1853889766 ** get_address_of_shared_by_number_36() { return &___shared_by_number_36; }
inline void set_shared_by_number_36(Hashtable_t1853889766 * value)
{
___shared_by_number_36 = value;
Il2CppCodeGenWriteBarrier((&___shared_by_number_36), value);
}
inline static int32_t get_offset_of_shared_by_name_37() { return static_cast<int32_t>(offsetof(CultureInfo_t4157843068_StaticFields, ___shared_by_name_37)); }
inline Hashtable_t1853889766 * get_shared_by_name_37() const { return ___shared_by_name_37; }
inline Hashtable_t1853889766 ** get_address_of_shared_by_name_37() { return &___shared_by_name_37; }
inline void set_shared_by_name_37(Hashtable_t1853889766 * value)
{
___shared_by_name_37 = value;
Il2CppCodeGenWriteBarrier((&___shared_by_name_37), value);
}
inline static int32_t get_offset_of_U3CU3Ef__switchU24map19_38() { return static_cast<int32_t>(offsetof(CultureInfo_t4157843068_StaticFields, ___U3CU3Ef__switchU24map19_38)); }
inline Dictionary_2_t2736202052 * get_U3CU3Ef__switchU24map19_38() const { return ___U3CU3Ef__switchU24map19_38; }
inline Dictionary_2_t2736202052 ** get_address_of_U3CU3Ef__switchU24map19_38() { return &___U3CU3Ef__switchU24map19_38; }
inline void set_U3CU3Ef__switchU24map19_38(Dictionary_2_t2736202052 * value)
{
___U3CU3Ef__switchU24map19_38 = value;
Il2CppCodeGenWriteBarrier((&___U3CU3Ef__switchU24map19_38), value);
}
inline static int32_t get_offset_of_U3CU3Ef__switchU24map1A_39() { return static_cast<int32_t>(offsetof(CultureInfo_t4157843068_StaticFields, ___U3CU3Ef__switchU24map1A_39)); }
inline Dictionary_2_t2736202052 * get_U3CU3Ef__switchU24map1A_39() const { return ___U3CU3Ef__switchU24map1A_39; }
inline Dictionary_2_t2736202052 ** get_address_of_U3CU3Ef__switchU24map1A_39() { return &___U3CU3Ef__switchU24map1A_39; }
inline void set_U3CU3Ef__switchU24map1A_39(Dictionary_2_t2736202052 * value)
{
___U3CU3Ef__switchU24map1A_39 = value;
Il2CppCodeGenWriteBarrier((&___U3CU3Ef__switchU24map1A_39), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // CULTUREINFO_T4157843068_H
#ifndef EXCEPTION_T_H
#define EXCEPTION_T_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Exception
struct Exception_t : public RuntimeObject
{
public:
// System.IntPtr[] System.Exception::trace_ips
IntPtrU5BU5D_t4013366056* ___trace_ips_0;
// System.Exception System.Exception::inner_exception
Exception_t * ___inner_exception_1;
// System.String System.Exception::message
String_t* ___message_2;
// System.String System.Exception::help_link
String_t* ___help_link_3;
// System.String System.Exception::class_name
String_t* ___class_name_4;
// System.String System.Exception::stack_trace
String_t* ___stack_trace_5;
// System.String System.Exception::_remoteStackTraceString
String_t* ____remoteStackTraceString_6;
// System.Int32 System.Exception::remote_stack_index
int32_t ___remote_stack_index_7;
// System.Int32 System.Exception::hresult
int32_t ___hresult_8;
// System.String System.Exception::source
String_t* ___source_9;
// System.Collections.IDictionary System.Exception::_data
RuntimeObject* ____data_10;
public:
inline static int32_t get_offset_of_trace_ips_0() { return static_cast<int32_t>(offsetof(Exception_t, ___trace_ips_0)); }
inline IntPtrU5BU5D_t4013366056* get_trace_ips_0() const { return ___trace_ips_0; }
inline IntPtrU5BU5D_t4013366056** get_address_of_trace_ips_0() { return &___trace_ips_0; }
inline void set_trace_ips_0(IntPtrU5BU5D_t4013366056* value)
{
___trace_ips_0 = value;
Il2CppCodeGenWriteBarrier((&___trace_ips_0), value);
}
inline static int32_t get_offset_of_inner_exception_1() { return static_cast<int32_t>(offsetof(Exception_t, ___inner_exception_1)); }
inline Exception_t * get_inner_exception_1() const { return ___inner_exception_1; }
inline Exception_t ** get_address_of_inner_exception_1() { return &___inner_exception_1; }
inline void set_inner_exception_1(Exception_t * value)
{
___inner_exception_1 = value;
Il2CppCodeGenWriteBarrier((&___inner_exception_1), value);
}
inline static int32_t get_offset_of_message_2() { return static_cast<int32_t>(offsetof(Exception_t, ___message_2)); }
inline String_t* get_message_2() const { return ___message_2; }
inline String_t** get_address_of_message_2() { return &___message_2; }
inline void set_message_2(String_t* value)
{
___message_2 = value;
Il2CppCodeGenWriteBarrier((&___message_2), value);
}
inline static int32_t get_offset_of_help_link_3() { return static_cast<int32_t>(offsetof(Exception_t, ___help_link_3)); }
inline String_t* get_help_link_3() const { return ___help_link_3; }
inline String_t** get_address_of_help_link_3() { return &___help_link_3; }
inline void set_help_link_3(String_t* value)
{
___help_link_3 = value;
Il2CppCodeGenWriteBarrier((&___help_link_3), value);
}
inline static int32_t get_offset_of_class_name_4() { return static_cast<int32_t>(offsetof(Exception_t, ___class_name_4)); }
inline String_t* get_class_name_4() const { return ___class_name_4; }
inline String_t** get_address_of_class_name_4() { return &___class_name_4; }
inline void set_class_name_4(String_t* value)
{
___class_name_4 = value;
Il2CppCodeGenWriteBarrier((&___class_name_4), value);
}
inline static int32_t get_offset_of_stack_trace_5() { return static_cast<int32_t>(offsetof(Exception_t, ___stack_trace_5)); }
inline String_t* get_stack_trace_5() const { return ___stack_trace_5; }
inline String_t** get_address_of_stack_trace_5() { return &___stack_trace_5; }
inline void set_stack_trace_5(String_t* value)
{
___stack_trace_5 = value;
Il2CppCodeGenWriteBarrier((&___stack_trace_5), value);
}
inline static int32_t get_offset_of__remoteStackTraceString_6() { return static_cast<int32_t>(offsetof(Exception_t, ____remoteStackTraceString_6)); }
inline String_t* get__remoteStackTraceString_6() const { return ____remoteStackTraceString_6; }
inline String_t** get_address_of__remoteStackTraceString_6() { return &____remoteStackTraceString_6; }
inline void set__remoteStackTraceString_6(String_t* value)
{
____remoteStackTraceString_6 = value;
Il2CppCodeGenWriteBarrier((&____remoteStackTraceString_6), value);
}
inline static int32_t get_offset_of_remote_stack_index_7() { return static_cast<int32_t>(offsetof(Exception_t, ___remote_stack_index_7)); }
inline int32_t get_remote_stack_index_7() const { return ___remote_stack_index_7; }
inline int32_t* get_address_of_remote_stack_index_7() { return &___remote_stack_index_7; }
inline void set_remote_stack_index_7(int32_t value)
{
___remote_stack_index_7 = value;
}
inline static int32_t get_offset_of_hresult_8() { return static_cast<int32_t>(offsetof(Exception_t, ___hresult_8)); }
inline int32_t get_hresult_8() const { return ___hresult_8; }
inline int32_t* get_address_of_hresult_8() { return &___hresult_8; }
inline void set_hresult_8(int32_t value)
{
___hresult_8 = value;
}
inline static int32_t get_offset_of_source_9() { return static_cast<int32_t>(offsetof(Exception_t, ___source_9)); }
inline String_t* get_source_9() const { return ___source_9; }
inline String_t** get_address_of_source_9() { return &___source_9; }
inline void set_source_9(String_t* value)
{
___source_9 = value;
Il2CppCodeGenWriteBarrier((&___source_9), value);
}
inline static int32_t get_offset_of__data_10() { return static_cast<int32_t>(offsetof(Exception_t, ____data_10)); }
inline RuntimeObject* get__data_10() const { return ____data_10; }
inline RuntimeObject** get_address_of__data_10() { return &____data_10; }
inline void set__data_10(RuntimeObject* value)
{
____data_10 = value;
Il2CppCodeGenWriteBarrier((&____data_10), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // EXCEPTION_T_H
#ifndef X509EXTENSION_T3173393652_H
#define X509EXTENSION_T3173393652_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Mono.Security.X509.X509Extension
struct X509Extension_t3173393652 : public RuntimeObject
{
public:
// System.String Mono.Security.X509.X509Extension::extnOid
String_t* ___extnOid_0;
// System.Boolean Mono.Security.X509.X509Extension::extnCritical
bool ___extnCritical_1;
// Mono.Security.ASN1 Mono.Security.X509.X509Extension::extnValue
ASN1_t2114160832 * ___extnValue_2;
public:
inline static int32_t get_offset_of_extnOid_0() { return static_cast<int32_t>(offsetof(X509Extension_t3173393652, ___extnOid_0)); }
inline String_t* get_extnOid_0() const { return ___extnOid_0; }
inline String_t** get_address_of_extnOid_0() { return &___extnOid_0; }
inline void set_extnOid_0(String_t* value)
{
___extnOid_0 = value;
Il2CppCodeGenWriteBarrier((&___extnOid_0), value);
}
inline static int32_t get_offset_of_extnCritical_1() { return static_cast<int32_t>(offsetof(X509Extension_t3173393652, ___extnCritical_1)); }
inline bool get_extnCritical_1() const { return ___extnCritical_1; }
inline bool* get_address_of_extnCritical_1() { return &___extnCritical_1; }
inline void set_extnCritical_1(bool value)
{
___extnCritical_1 = value;
}
inline static int32_t get_offset_of_extnValue_2() { return static_cast<int32_t>(offsetof(X509Extension_t3173393652, ___extnValue_2)); }
inline ASN1_t2114160832 * get_extnValue_2() const { return ___extnValue_2; }
inline ASN1_t2114160832 ** get_address_of_extnValue_2() { return &___extnValue_2; }
inline void set_extnValue_2(ASN1_t2114160832 * value)
{
___extnValue_2 = value;
Il2CppCodeGenWriteBarrier((&___extnValue_2), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // X509EXTENSION_T3173393652_H
#ifndef ARRAYLIST_T2718874744_H
#define ARRAYLIST_T2718874744_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Collections.ArrayList
struct ArrayList_t2718874744 : public RuntimeObject
{
public:
// System.Int32 System.Collections.ArrayList::_size
int32_t ____size_1;
// System.Object[] System.Collections.ArrayList::_items
ObjectU5BU5D_t2843939325* ____items_2;
// System.Int32 System.Collections.ArrayList::_version
int32_t ____version_3;
public:
inline static int32_t get_offset_of__size_1() { return static_cast<int32_t>(offsetof(ArrayList_t2718874744, ____size_1)); }
inline int32_t get__size_1() const { return ____size_1; }
inline int32_t* get_address_of__size_1() { return &____size_1; }
inline void set__size_1(int32_t value)
{
____size_1 = value;
}
inline static int32_t get_offset_of__items_2() { return static_cast<int32_t>(offsetof(ArrayList_t2718874744, ____items_2)); }
inline ObjectU5BU5D_t2843939325* get__items_2() const { return ____items_2; }
inline ObjectU5BU5D_t2843939325** get_address_of__items_2() { return &____items_2; }
inline void set__items_2(ObjectU5BU5D_t2843939325* value)
{
____items_2 = value;
Il2CppCodeGenWriteBarrier((&____items_2), value);
}
inline static int32_t get_offset_of__version_3() { return static_cast<int32_t>(offsetof(ArrayList_t2718874744, ____version_3)); }
inline int32_t get__version_3() const { return ____version_3; }
inline int32_t* get_address_of__version_3() { return &____version_3; }
inline void set__version_3(int32_t value)
{
____version_3 = value;
}
};
struct ArrayList_t2718874744_StaticFields
{
public:
// System.Object[] System.Collections.ArrayList::EmptyArray
ObjectU5BU5D_t2843939325* ___EmptyArray_4;
public:
inline static int32_t get_offset_of_EmptyArray_4() { return static_cast<int32_t>(offsetof(ArrayList_t2718874744_StaticFields, ___EmptyArray_4)); }
inline ObjectU5BU5D_t2843939325* get_EmptyArray_4() const { return ___EmptyArray_4; }
inline ObjectU5BU5D_t2843939325** get_address_of_EmptyArray_4() { return &___EmptyArray_4; }
inline void set_EmptyArray_4(ObjectU5BU5D_t2843939325* value)
{
___EmptyArray_4 = value;
Il2CppCodeGenWriteBarrier((&___EmptyArray_4), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // ARRAYLIST_T2718874744_H
#ifndef SAFEBAG_T3961248199_H
#define SAFEBAG_T3961248199_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Mono.Security.X509.SafeBag
struct SafeBag_t3961248199 : public RuntimeObject
{
public:
// System.String Mono.Security.X509.SafeBag::_bagOID
String_t* ____bagOID_0;
// Mono.Security.ASN1 Mono.Security.X509.SafeBag::_asn1
ASN1_t2114160832 * ____asn1_1;
public:
inline static int32_t get_offset_of__bagOID_0() { return static_cast<int32_t>(offsetof(SafeBag_t3961248199, ____bagOID_0)); }
inline String_t* get__bagOID_0() const { return ____bagOID_0; }
inline String_t** get_address_of__bagOID_0() { return &____bagOID_0; }
inline void set__bagOID_0(String_t* value)
{
____bagOID_0 = value;
Il2CppCodeGenWriteBarrier((&____bagOID_0), value);
}
inline static int32_t get_offset_of__asn1_1() { return static_cast<int32_t>(offsetof(SafeBag_t3961248199, ____asn1_1)); }
inline ASN1_t2114160832 * get__asn1_1() const { return ____asn1_1; }
inline ASN1_t2114160832 ** get_address_of__asn1_1() { return &____asn1_1; }
inline void set__asn1_1(ASN1_t2114160832 * value)
{
____asn1_1 = value;
Il2CppCodeGenWriteBarrier((&____asn1_1), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // SAFEBAG_T3961248199_H
#ifndef HASHALGORITHM_T1432317219_H
#define HASHALGORITHM_T1432317219_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Security.Cryptography.HashAlgorithm
struct HashAlgorithm_t1432317219 : public RuntimeObject
{
public:
// System.Byte[] System.Security.Cryptography.HashAlgorithm::HashValue
ByteU5BU5D_t4116647657* ___HashValue_0;
// System.Int32 System.Security.Cryptography.HashAlgorithm::HashSizeValue
int32_t ___HashSizeValue_1;
// System.Int32 System.Security.Cryptography.HashAlgorithm::State
int32_t ___State_2;
// System.Boolean System.Security.Cryptography.HashAlgorithm::disposed
bool ___disposed_3;
public:
inline static int32_t get_offset_of_HashValue_0() { return static_cast<int32_t>(offsetof(HashAlgorithm_t1432317219, ___HashValue_0)); }
inline ByteU5BU5D_t4116647657* get_HashValue_0() const { return ___HashValue_0; }
inline ByteU5BU5D_t4116647657** get_address_of_HashValue_0() { return &___HashValue_0; }
inline void set_HashValue_0(ByteU5BU5D_t4116647657* value)
{
___HashValue_0 = value;
Il2CppCodeGenWriteBarrier((&___HashValue_0), value);
}
inline static int32_t get_offset_of_HashSizeValue_1() { return static_cast<int32_t>(offsetof(HashAlgorithm_t1432317219, ___HashSizeValue_1)); }
inline int32_t get_HashSizeValue_1() const { return ___HashSizeValue_1; }
inline int32_t* get_address_of_HashSizeValue_1() { return &___HashSizeValue_1; }
inline void set_HashSizeValue_1(int32_t value)
{
___HashSizeValue_1 = value;
}
inline static int32_t get_offset_of_State_2() { return static_cast<int32_t>(offsetof(HashAlgorithm_t1432317219, ___State_2)); }
inline int32_t get_State_2() const { return ___State_2; }
inline int32_t* get_address_of_State_2() { return &___State_2; }
inline void set_State_2(int32_t value)
{
___State_2 = value;
}
inline static int32_t get_offset_of_disposed_3() { return static_cast<int32_t>(offsetof(HashAlgorithm_t1432317219, ___disposed_3)); }
inline bool get_disposed_3() const { return ___disposed_3; }
inline bool* get_address_of_disposed_3() { return &___disposed_3; }
inline void set_disposed_3(bool value)
{
___disposed_3 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // HASHALGORITHM_T1432317219_H
#ifndef X501_T1758824425_H
#define X501_T1758824425_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Mono.Security.X509.X501
struct X501_t1758824425 : public RuntimeObject
{
public:
public:
};
struct X501_t1758824425_StaticFields
{
public:
// System.Byte[] Mono.Security.X509.X501::countryName
ByteU5BU5D_t4116647657* ___countryName_0;
// System.Byte[] Mono.Security.X509.X501::organizationName
ByteU5BU5D_t4116647657* ___organizationName_1;
// System.Byte[] Mono.Security.X509.X501::organizationalUnitName
ByteU5BU5D_t4116647657* ___organizationalUnitName_2;
// System.Byte[] Mono.Security.X509.X501::commonName
ByteU5BU5D_t4116647657* ___commonName_3;
// System.Byte[] Mono.Security.X509.X501::localityName
ByteU5BU5D_t4116647657* ___localityName_4;
// System.Byte[] Mono.Security.X509.X501::stateOrProvinceName
ByteU5BU5D_t4116647657* ___stateOrProvinceName_5;
// System.Byte[] Mono.Security.X509.X501::streetAddress
ByteU5BU5D_t4116647657* ___streetAddress_6;
// System.Byte[] Mono.Security.X509.X501::domainComponent
ByteU5BU5D_t4116647657* ___domainComponent_7;
// System.Byte[] Mono.Security.X509.X501::userid
ByteU5BU5D_t4116647657* ___userid_8;
// System.Byte[] Mono.Security.X509.X501::email
ByteU5BU5D_t4116647657* ___email_9;
// System.Byte[] Mono.Security.X509.X501::dnQualifier
ByteU5BU5D_t4116647657* ___dnQualifier_10;
// System.Byte[] Mono.Security.X509.X501::title
ByteU5BU5D_t4116647657* ___title_11;
// System.Byte[] Mono.Security.X509.X501::surname
ByteU5BU5D_t4116647657* ___surname_12;
// System.Byte[] Mono.Security.X509.X501::givenName
ByteU5BU5D_t4116647657* ___givenName_13;
// System.Byte[] Mono.Security.X509.X501::initial
ByteU5BU5D_t4116647657* ___initial_14;
public:
inline static int32_t get_offset_of_countryName_0() { return static_cast<int32_t>(offsetof(X501_t1758824425_StaticFields, ___countryName_0)); }
inline ByteU5BU5D_t4116647657* get_countryName_0() const { return ___countryName_0; }
inline ByteU5BU5D_t4116647657** get_address_of_countryName_0() { return &___countryName_0; }
inline void set_countryName_0(ByteU5BU5D_t4116647657* value)
{
___countryName_0 = value;
Il2CppCodeGenWriteBarrier((&___countryName_0), value);
}
inline static int32_t get_offset_of_organizationName_1() { return static_cast<int32_t>(offsetof(X501_t1758824425_StaticFields, ___organizationName_1)); }
inline ByteU5BU5D_t4116647657* get_organizationName_1() const { return ___organizationName_1; }
inline ByteU5BU5D_t4116647657** get_address_of_organizationName_1() { return &___organizationName_1; }
inline void set_organizationName_1(ByteU5BU5D_t4116647657* value)
{
___organizationName_1 = value;
Il2CppCodeGenWriteBarrier((&___organizationName_1), value);
}
inline static int32_t get_offset_of_organizationalUnitName_2() { return static_cast<int32_t>(offsetof(X501_t1758824425_StaticFields, ___organizationalUnitName_2)); }
inline ByteU5BU5D_t4116647657* get_organizationalUnitName_2() const { return ___organizationalUnitName_2; }
inline ByteU5BU5D_t4116647657** get_address_of_organizationalUnitName_2() { return &___organizationalUnitName_2; }
inline void set_organizationalUnitName_2(ByteU5BU5D_t4116647657* value)
{
___organizationalUnitName_2 = value;
Il2CppCodeGenWriteBarrier((&___organizationalUnitName_2), value);
}
inline static int32_t get_offset_of_commonName_3() { return static_cast<int32_t>(offsetof(X501_t1758824425_StaticFields, ___commonName_3)); }
inline ByteU5BU5D_t4116647657* get_commonName_3() const { return ___commonName_3; }
inline ByteU5BU5D_t4116647657** get_address_of_commonName_3() { return &___commonName_3; }
inline void set_commonName_3(ByteU5BU5D_t4116647657* value)
{
___commonName_3 = value;
Il2CppCodeGenWriteBarrier((&___commonName_3), value);
}
inline static int32_t get_offset_of_localityName_4() { return static_cast<int32_t>(offsetof(X501_t1758824425_StaticFields, ___localityName_4)); }
inline ByteU5BU5D_t4116647657* get_localityName_4() const { return ___localityName_4; }
inline ByteU5BU5D_t4116647657** get_address_of_localityName_4() { return &___localityName_4; }
inline void set_localityName_4(ByteU5BU5D_t4116647657* value)
{
___localityName_4 = value;
Il2CppCodeGenWriteBarrier((&___localityName_4), value);
}
inline static int32_t get_offset_of_stateOrProvinceName_5() { return static_cast<int32_t>(offsetof(X501_t1758824425_StaticFields, ___stateOrProvinceName_5)); }
inline ByteU5BU5D_t4116647657* get_stateOrProvinceName_5() const { return ___stateOrProvinceName_5; }
inline ByteU5BU5D_t4116647657** get_address_of_stateOrProvinceName_5() { return &___stateOrProvinceName_5; }
inline void set_stateOrProvinceName_5(ByteU5BU5D_t4116647657* value)
{
___stateOrProvinceName_5 = value;
Il2CppCodeGenWriteBarrier((&___stateOrProvinceName_5), value);
}
inline static int32_t get_offset_of_streetAddress_6() { return static_cast<int32_t>(offsetof(X501_t1758824425_StaticFields, ___streetAddress_6)); }
inline ByteU5BU5D_t4116647657* get_streetAddress_6() const { return ___streetAddress_6; }
inline ByteU5BU5D_t4116647657** get_address_of_streetAddress_6() { return &___streetAddress_6; }
inline void set_streetAddress_6(ByteU5BU5D_t4116647657* value)
{
___streetAddress_6 = value;
Il2CppCodeGenWriteBarrier((&___streetAddress_6), value);
}
inline static int32_t get_offset_of_domainComponent_7() { return static_cast<int32_t>(offsetof(X501_t1758824425_StaticFields, ___domainComponent_7)); }
inline ByteU5BU5D_t4116647657* get_domainComponent_7() const { return ___domainComponent_7; }
inline ByteU5BU5D_t4116647657** get_address_of_domainComponent_7() { return &___domainComponent_7; }
inline void set_domainComponent_7(ByteU5BU5D_t4116647657* value)
{
___domainComponent_7 = value;
Il2CppCodeGenWriteBarrier((&___domainComponent_7), value);
}
inline static int32_t get_offset_of_userid_8() { return static_cast<int32_t>(offsetof(X501_t1758824425_StaticFields, ___userid_8)); }
inline ByteU5BU5D_t4116647657* get_userid_8() const { return ___userid_8; }
inline ByteU5BU5D_t4116647657** get_address_of_userid_8() { return &___userid_8; }
inline void set_userid_8(ByteU5BU5D_t4116647657* value)
{
___userid_8 = value;
Il2CppCodeGenWriteBarrier((&___userid_8), value);
}
inline static int32_t get_offset_of_email_9() { return static_cast<int32_t>(offsetof(X501_t1758824425_StaticFields, ___email_9)); }
inline ByteU5BU5D_t4116647657* get_email_9() const { return ___email_9; }
inline ByteU5BU5D_t4116647657** get_address_of_email_9() { return &___email_9; }
inline void set_email_9(ByteU5BU5D_t4116647657* value)
{
___email_9 = value;
Il2CppCodeGenWriteBarrier((&___email_9), value);
}
inline static int32_t get_offset_of_dnQualifier_10() { return static_cast<int32_t>(offsetof(X501_t1758824425_StaticFields, ___dnQualifier_10)); }
inline ByteU5BU5D_t4116647657* get_dnQualifier_10() const { return ___dnQualifier_10; }
inline ByteU5BU5D_t4116647657** get_address_of_dnQualifier_10() { return &___dnQualifier_10; }
inline void set_dnQualifier_10(ByteU5BU5D_t4116647657* value)
{
___dnQualifier_10 = value;
Il2CppCodeGenWriteBarrier((&___dnQualifier_10), value);
}
inline static int32_t get_offset_of_title_11() { return static_cast<int32_t>(offsetof(X501_t1758824425_StaticFields, ___title_11)); }
inline ByteU5BU5D_t4116647657* get_title_11() const { return ___title_11; }
inline ByteU5BU5D_t4116647657** get_address_of_title_11() { return &___title_11; }
inline void set_title_11(ByteU5BU5D_t4116647657* value)
{
___title_11 = value;
Il2CppCodeGenWriteBarrier((&___title_11), value);
}
inline static int32_t get_offset_of_surname_12() { return static_cast<int32_t>(offsetof(X501_t1758824425_StaticFields, ___surname_12)); }
inline ByteU5BU5D_t4116647657* get_surname_12() const { return ___surname_12; }
inline ByteU5BU5D_t4116647657** get_address_of_surname_12() { return &___surname_12; }
inline void set_surname_12(ByteU5BU5D_t4116647657* value)
{
___surname_12 = value;
Il2CppCodeGenWriteBarrier((&___surname_12), value);
}
inline static int32_t get_offset_of_givenName_13() { return static_cast<int32_t>(offsetof(X501_t1758824425_StaticFields, ___givenName_13)); }
inline ByteU5BU5D_t4116647657* get_givenName_13() const { return ___givenName_13; }
inline ByteU5BU5D_t4116647657** get_address_of_givenName_13() { return &___givenName_13; }
inline void set_givenName_13(ByteU5BU5D_t4116647657* value)
{
___givenName_13 = value;
Il2CppCodeGenWriteBarrier((&___givenName_13), value);
}
inline static int32_t get_offset_of_initial_14() { return static_cast<int32_t>(offsetof(X501_t1758824425_StaticFields, ___initial_14)); }
inline ByteU5BU5D_t4116647657* get_initial_14() const { return ___initial_14; }
inline ByteU5BU5D_t4116647657** get_address_of_initial_14() { return &___initial_14; }
inline void set_initial_14(ByteU5BU5D_t4116647657* value)
{
___initial_14 = value;
Il2CppCodeGenWriteBarrier((&___initial_14), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // X501_T1758824425_H
#ifndef ASN1_T2114160832_H
#define ASN1_T2114160832_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Mono.Security.ASN1
struct ASN1_t2114160832 : public RuntimeObject
{
public:
// System.Byte Mono.Security.ASN1::m_nTag
uint8_t ___m_nTag_0;
// System.Byte[] Mono.Security.ASN1::m_aValue
ByteU5BU5D_t4116647657* ___m_aValue_1;
// System.Collections.ArrayList Mono.Security.ASN1::elist
ArrayList_t2718874744 * ___elist_2;
public:
inline static int32_t get_offset_of_m_nTag_0() { return static_cast<int32_t>(offsetof(ASN1_t2114160832, ___m_nTag_0)); }
inline uint8_t get_m_nTag_0() const { return ___m_nTag_0; }
inline uint8_t* get_address_of_m_nTag_0() { return &___m_nTag_0; }
inline void set_m_nTag_0(uint8_t value)
{
___m_nTag_0 = value;
}
inline static int32_t get_offset_of_m_aValue_1() { return static_cast<int32_t>(offsetof(ASN1_t2114160832, ___m_aValue_1)); }
inline ByteU5BU5D_t4116647657* get_m_aValue_1() const { return ___m_aValue_1; }
inline ByteU5BU5D_t4116647657** get_address_of_m_aValue_1() { return &___m_aValue_1; }
inline void set_m_aValue_1(ByteU5BU5D_t4116647657* value)
{
___m_aValue_1 = value;
Il2CppCodeGenWriteBarrier((&___m_aValue_1), value);
}
inline static int32_t get_offset_of_elist_2() { return static_cast<int32_t>(offsetof(ASN1_t2114160832, ___elist_2)); }
inline ArrayList_t2718874744 * get_elist_2() const { return ___elist_2; }
inline ArrayList_t2718874744 ** get_address_of_elist_2() { return &___elist_2; }
inline void set_elist_2(ArrayList_t2718874744 * value)
{
___elist_2 = value;
Il2CppCodeGenWriteBarrier((&___elist_2), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // ASN1_T2114160832_H
#ifndef COLLECTIONBASE_T2727926298_H
#define COLLECTIONBASE_T2727926298_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Collections.CollectionBase
struct CollectionBase_t2727926298 : public RuntimeObject
{
public:
// System.Collections.ArrayList System.Collections.CollectionBase::list
ArrayList_t2718874744 * ___list_0;
public:
inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(CollectionBase_t2727926298, ___list_0)); }
inline ArrayList_t2718874744 * get_list_0() const { return ___list_0; }
inline ArrayList_t2718874744 ** get_address_of_list_0() { return &___list_0; }
inline void set_list_0(ArrayList_t2718874744 * value)
{
___list_0 = value;
Il2CppCodeGenWriteBarrier((&___list_0), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // COLLECTIONBASE_T2727926298_H
#ifndef TEXTREADER_T283511965_H
#define TEXTREADER_T283511965_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.IO.TextReader
struct TextReader_t283511965 : public RuntimeObject
{
public:
public:
};
struct TextReader_t283511965_StaticFields
{
public:
// System.IO.TextReader System.IO.TextReader::Null
TextReader_t283511965 * ___Null_0;
public:
inline static int32_t get_offset_of_Null_0() { return static_cast<int32_t>(offsetof(TextReader_t283511965_StaticFields, ___Null_0)); }
inline TextReader_t283511965 * get_Null_0() const { return ___Null_0; }
inline TextReader_t283511965 ** get_address_of_Null_0() { return &___Null_0; }
inline void set_Null_0(TextReader_t283511965 * value)
{
___Null_0 = value;
Il2CppCodeGenWriteBarrier((&___Null_0), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // TEXTREADER_T283511965_H
#ifndef DERIVEBYTES_T1492915135_H
#define DERIVEBYTES_T1492915135_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Mono.Security.X509.PKCS12/DeriveBytes
struct DeriveBytes_t1492915135 : public RuntimeObject
{
public:
// System.String Mono.Security.X509.PKCS12/DeriveBytes::_hashName
String_t* ____hashName_3;
// System.Int32 Mono.Security.X509.PKCS12/DeriveBytes::_iterations
int32_t ____iterations_4;
// System.Byte[] Mono.Security.X509.PKCS12/DeriveBytes::_password
ByteU5BU5D_t4116647657* ____password_5;
// System.Byte[] Mono.Security.X509.PKCS12/DeriveBytes::_salt
ByteU5BU5D_t4116647657* ____salt_6;
public:
inline static int32_t get_offset_of__hashName_3() { return static_cast<int32_t>(offsetof(DeriveBytes_t1492915135, ____hashName_3)); }
inline String_t* get__hashName_3() const { return ____hashName_3; }
inline String_t** get_address_of__hashName_3() { return &____hashName_3; }
inline void set__hashName_3(String_t* value)
{
____hashName_3 = value;
Il2CppCodeGenWriteBarrier((&____hashName_3), value);
}
inline static int32_t get_offset_of__iterations_4() { return static_cast<int32_t>(offsetof(DeriveBytes_t1492915135, ____iterations_4)); }
inline int32_t get__iterations_4() const { return ____iterations_4; }
inline int32_t* get_address_of__iterations_4() { return &____iterations_4; }
inline void set__iterations_4(int32_t value)
{
____iterations_4 = value;
}
inline static int32_t get_offset_of__password_5() { return static_cast<int32_t>(offsetof(DeriveBytes_t1492915135, ____password_5)); }
inline ByteU5BU5D_t4116647657* get__password_5() const { return ____password_5; }
inline ByteU5BU5D_t4116647657** get_address_of__password_5() { return &____password_5; }
inline void set__password_5(ByteU5BU5D_t4116647657* value)
{
____password_5 = value;
Il2CppCodeGenWriteBarrier((&____password_5), value);
}
inline static int32_t get_offset_of__salt_6() { return static_cast<int32_t>(offsetof(DeriveBytes_t1492915135, ____salt_6)); }
inline ByteU5BU5D_t4116647657* get__salt_6() const { return ____salt_6; }
inline ByteU5BU5D_t4116647657** get_address_of__salt_6() { return &____salt_6; }
inline void set__salt_6(ByteU5BU5D_t4116647657* value)
{
____salt_6 = value;
Il2CppCodeGenWriteBarrier((&____salt_6), value);
}
};
struct DeriveBytes_t1492915135_StaticFields
{
public:
// System.Byte[] Mono.Security.X509.PKCS12/DeriveBytes::keyDiversifier
ByteU5BU5D_t4116647657* ___keyDiversifier_0;
// System.Byte[] Mono.Security.X509.PKCS12/DeriveBytes::ivDiversifier
ByteU5BU5D_t4116647657* ___ivDiversifier_1;
// System.Byte[] Mono.Security.X509.PKCS12/DeriveBytes::macDiversifier
ByteU5BU5D_t4116647657* ___macDiversifier_2;
public:
inline static int32_t get_offset_of_keyDiversifier_0() { return static_cast<int32_t>(offsetof(DeriveBytes_t1492915135_StaticFields, ___keyDiversifier_0)); }
inline ByteU5BU5D_t4116647657* get_keyDiversifier_0() const { return ___keyDiversifier_0; }
inline ByteU5BU5D_t4116647657** get_address_of_keyDiversifier_0() { return &___keyDiversifier_0; }
inline void set_keyDiversifier_0(ByteU5BU5D_t4116647657* value)
{
___keyDiversifier_0 = value;
Il2CppCodeGenWriteBarrier((&___keyDiversifier_0), value);
}
inline static int32_t get_offset_of_ivDiversifier_1() { return static_cast<int32_t>(offsetof(DeriveBytes_t1492915135_StaticFields, ___ivDiversifier_1)); }
inline ByteU5BU5D_t4116647657* get_ivDiversifier_1() const { return ___ivDiversifier_1; }
inline ByteU5BU5D_t4116647657** get_address_of_ivDiversifier_1() { return &___ivDiversifier_1; }
inline void set_ivDiversifier_1(ByteU5BU5D_t4116647657* value)
{
___ivDiversifier_1 = value;
Il2CppCodeGenWriteBarrier((&___ivDiversifier_1), value);
}
inline static int32_t get_offset_of_macDiversifier_2() { return static_cast<int32_t>(offsetof(DeriveBytes_t1492915135_StaticFields, ___macDiversifier_2)); }
inline ByteU5BU5D_t4116647657* get_macDiversifier_2() const { return ___macDiversifier_2; }
inline ByteU5BU5D_t4116647657** get_address_of_macDiversifier_2() { return &___macDiversifier_2; }
inline void set_macDiversifier_2(ByteU5BU5D_t4116647657* value)
{
___macDiversifier_2 = value;
Il2CppCodeGenWriteBarrier((&___macDiversifier_2), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // DERIVEBYTES_T1492915135_H
struct Il2CppArrayBounds;
#ifndef RUNTIMEARRAY_H
#define RUNTIMEARRAY_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Array
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // RUNTIMEARRAY_H
#ifndef STACK_T2329662280_H
#define STACK_T2329662280_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Collections.Stack
struct Stack_t2329662280 : public RuntimeObject
{
public:
// System.Object[] System.Collections.Stack::contents
ObjectU5BU5D_t2843939325* ___contents_0;
// System.Int32 System.Collections.Stack::current
int32_t ___current_1;
// System.Int32 System.Collections.Stack::count
int32_t ___count_2;
// System.Int32 System.Collections.Stack::capacity
int32_t ___capacity_3;
// System.Int32 System.Collections.Stack::modCount
int32_t ___modCount_4;
public:
inline static int32_t get_offset_of_contents_0() { return static_cast<int32_t>(offsetof(Stack_t2329662280, ___contents_0)); }
inline ObjectU5BU5D_t2843939325* get_contents_0() const { return ___contents_0; }
inline ObjectU5BU5D_t2843939325** get_address_of_contents_0() { return &___contents_0; }
inline void set_contents_0(ObjectU5BU5D_t2843939325* value)
{
___contents_0 = value;
Il2CppCodeGenWriteBarrier((&___contents_0), value);
}
inline static int32_t get_offset_of_current_1() { return static_cast<int32_t>(offsetof(Stack_t2329662280, ___current_1)); }
inline int32_t get_current_1() const { return ___current_1; }
inline int32_t* get_address_of_current_1() { return &___current_1; }
inline void set_current_1(int32_t value)
{
___current_1 = value;
}
inline static int32_t get_offset_of_count_2() { return static_cast<int32_t>(offsetof(Stack_t2329662280, ___count_2)); }
inline int32_t get_count_2() const { return ___count_2; }
inline int32_t* get_address_of_count_2() { return &___count_2; }
inline void set_count_2(int32_t value)
{
___count_2 = value;
}
inline static int32_t get_offset_of_capacity_3() { return static_cast<int32_t>(offsetof(Stack_t2329662280, ___capacity_3)); }
inline int32_t get_capacity_3() const { return ___capacity_3; }
inline int32_t* get_address_of_capacity_3() { return &___capacity_3; }
inline void set_capacity_3(int32_t value)
{
___capacity_3 = value;
}
inline static int32_t get_offset_of_modCount_4() { return static_cast<int32_t>(offsetof(Stack_t2329662280, ___modCount_4)); }
inline int32_t get_modCount_4() const { return ___modCount_4; }
inline int32_t* get_address_of_modCount_4() { return &___modCount_4; }
inline void set_modCount_4(int32_t value)
{
___modCount_4 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // STACK_T2329662280_H
#ifndef SMALLXMLPARSER_T973787839_H
#define SMALLXMLPARSER_T973787839_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Mono.Xml.SmallXmlParser
struct SmallXmlParser_t973787839 : public RuntimeObject
{
public:
// Mono.Xml.SmallXmlParser/IContentHandler Mono.Xml.SmallXmlParser::handler
RuntimeObject* ___handler_0;
// System.IO.TextReader Mono.Xml.SmallXmlParser::reader
TextReader_t283511965 * ___reader_1;
// System.Collections.Stack Mono.Xml.SmallXmlParser::elementNames
Stack_t2329662280 * ___elementNames_2;
// System.Collections.Stack Mono.Xml.SmallXmlParser::xmlSpaces
Stack_t2329662280 * ___xmlSpaces_3;
// System.String Mono.Xml.SmallXmlParser::xmlSpace
String_t* ___xmlSpace_4;
// System.Text.StringBuilder Mono.Xml.SmallXmlParser::buffer
StringBuilder_t * ___buffer_5;
// System.Char[] Mono.Xml.SmallXmlParser::nameBuffer
CharU5BU5D_t3528271667* ___nameBuffer_6;
// System.Boolean Mono.Xml.SmallXmlParser::isWhitespace
bool ___isWhitespace_7;
// Mono.Xml.SmallXmlParser/AttrListImpl Mono.Xml.SmallXmlParser::attributes
AttrListImpl_t567962447 * ___attributes_8;
// System.Int32 Mono.Xml.SmallXmlParser::line
int32_t ___line_9;
// System.Int32 Mono.Xml.SmallXmlParser::column
int32_t ___column_10;
// System.Boolean Mono.Xml.SmallXmlParser::resetColumn
bool ___resetColumn_11;
public:
inline static int32_t get_offset_of_handler_0() { return static_cast<int32_t>(offsetof(SmallXmlParser_t973787839, ___handler_0)); }
inline RuntimeObject* get_handler_0() const { return ___handler_0; }
inline RuntimeObject** get_address_of_handler_0() { return &___handler_0; }
inline void set_handler_0(RuntimeObject* value)
{
___handler_0 = value;
Il2CppCodeGenWriteBarrier((&___handler_0), value);
}
inline static int32_t get_offset_of_reader_1() { return static_cast<int32_t>(offsetof(SmallXmlParser_t973787839, ___reader_1)); }
inline TextReader_t283511965 * get_reader_1() const { return ___reader_1; }
inline TextReader_t283511965 ** get_address_of_reader_1() { return &___reader_1; }
inline void set_reader_1(TextReader_t283511965 * value)
{
___reader_1 = value;
Il2CppCodeGenWriteBarrier((&___reader_1), value);
}
inline static int32_t get_offset_of_elementNames_2() { return static_cast<int32_t>(offsetof(SmallXmlParser_t973787839, ___elementNames_2)); }
inline Stack_t2329662280 * get_elementNames_2() const { return ___elementNames_2; }
inline Stack_t2329662280 ** get_address_of_elementNames_2() { return &___elementNames_2; }
inline void set_elementNames_2(Stack_t2329662280 * value)
{
___elementNames_2 = value;
Il2CppCodeGenWriteBarrier((&___elementNames_2), value);
}
inline static int32_t get_offset_of_xmlSpaces_3() { return static_cast<int32_t>(offsetof(SmallXmlParser_t973787839, ___xmlSpaces_3)); }
inline Stack_t2329662280 * get_xmlSpaces_3() const { return ___xmlSpaces_3; }
inline Stack_t2329662280 ** get_address_of_xmlSpaces_3() { return &___xmlSpaces_3; }
inline void set_xmlSpaces_3(Stack_t2329662280 * value)
{
___xmlSpaces_3 = value;
Il2CppCodeGenWriteBarrier((&___xmlSpaces_3), value);
}
inline static int32_t get_offset_of_xmlSpace_4() { return static_cast<int32_t>(offsetof(SmallXmlParser_t973787839, ___xmlSpace_4)); }
inline String_t* get_xmlSpace_4() const { return ___xmlSpace_4; }
inline String_t** get_address_of_xmlSpace_4() { return &___xmlSpace_4; }
inline void set_xmlSpace_4(String_t* value)
{
___xmlSpace_4 = value;
Il2CppCodeGenWriteBarrier((&___xmlSpace_4), value);
}
inline static int32_t get_offset_of_buffer_5() { return static_cast<int32_t>(offsetof(SmallXmlParser_t973787839, ___buffer_5)); }
inline StringBuilder_t * get_buffer_5() const { return ___buffer_5; }
inline StringBuilder_t ** get_address_of_buffer_5() { return &___buffer_5; }
inline void set_buffer_5(StringBuilder_t * value)
{
___buffer_5 = value;
Il2CppCodeGenWriteBarrier((&___buffer_5), value);
}
inline static int32_t get_offset_of_nameBuffer_6() { return static_cast<int32_t>(offsetof(SmallXmlParser_t973787839, ___nameBuffer_6)); }
inline CharU5BU5D_t3528271667* get_nameBuffer_6() const { return ___nameBuffer_6; }
inline CharU5BU5D_t3528271667** get_address_of_nameBuffer_6() { return &___nameBuffer_6; }
inline void set_nameBuffer_6(CharU5BU5D_t3528271667* value)
{
___nameBuffer_6 = value;
Il2CppCodeGenWriteBarrier((&___nameBuffer_6), value);
}
inline static int32_t get_offset_of_isWhitespace_7() { return static_cast<int32_t>(offsetof(SmallXmlParser_t973787839, ___isWhitespace_7)); }
inline bool get_isWhitespace_7() const { return ___isWhitespace_7; }
inline bool* get_address_of_isWhitespace_7() { return &___isWhitespace_7; }
inline void set_isWhitespace_7(bool value)
{
___isWhitespace_7 = value;
}
inline static int32_t get_offset_of_attributes_8() { return static_cast<int32_t>(offsetof(SmallXmlParser_t973787839, ___attributes_8)); }
inline AttrListImpl_t567962447 * get_attributes_8() const { return ___attributes_8; }
inline AttrListImpl_t567962447 ** get_address_of_attributes_8() { return &___attributes_8; }
inline void set_attributes_8(AttrListImpl_t567962447 * value)
{
___attributes_8 = value;
Il2CppCodeGenWriteBarrier((&___attributes_8), value);
}
inline static int32_t get_offset_of_line_9() { return static_cast<int32_t>(offsetof(SmallXmlParser_t973787839, ___line_9)); }
inline int32_t get_line_9() const { return ___line_9; }
inline int32_t* get_address_of_line_9() { return &___line_9; }
inline void set_line_9(int32_t value)
{
___line_9 = value;
}
inline static int32_t get_offset_of_column_10() { return static_cast<int32_t>(offsetof(SmallXmlParser_t973787839, ___column_10)); }
inline int32_t get_column_10() const { return ___column_10; }
inline int32_t* get_address_of_column_10() { return &___column_10; }
inline void set_column_10(int32_t value)
{
___column_10 = value;
}
inline static int32_t get_offset_of_resetColumn_11() { return static_cast<int32_t>(offsetof(SmallXmlParser_t973787839, ___resetColumn_11)); }
inline bool get_resetColumn_11() const { return ___resetColumn_11; }
inline bool* get_address_of_resetColumn_11() { return &___resetColumn_11; }
inline void set_resetColumn_11(bool value)
{
___resetColumn_11 = value;
}
};
struct SmallXmlParser_t973787839_StaticFields
{
public:
// System.Collections.Generic.Dictionary`2<System.String,System.Int32> Mono.Xml.SmallXmlParser::<>f__switch$map18
Dictionary_2_t2736202052 * ___U3CU3Ef__switchU24map18_12;
public:
inline static int32_t get_offset_of_U3CU3Ef__switchU24map18_12() { return static_cast<int32_t>(offsetof(SmallXmlParser_t973787839_StaticFields, ___U3CU3Ef__switchU24map18_12)); }
inline Dictionary_2_t2736202052 * get_U3CU3Ef__switchU24map18_12() const { return ___U3CU3Ef__switchU24map18_12; }
inline Dictionary_2_t2736202052 ** get_address_of_U3CU3Ef__switchU24map18_12() { return &___U3CU3Ef__switchU24map18_12; }
inline void set_U3CU3Ef__switchU24map18_12(Dictionary_2_t2736202052 * value)
{
___U3CU3Ef__switchU24map18_12 = value;
Il2CppCodeGenWriteBarrier((&___U3CU3Ef__switchU24map18_12), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // SMALLXMLPARSER_T973787839_H
#ifndef ENCODING_T1523322056_H
#define ENCODING_T1523322056_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Text.Encoding
struct Encoding_t1523322056 : public RuntimeObject
{
public:
// System.Int32 System.Text.Encoding::codePage
int32_t ___codePage_0;
// System.Int32 System.Text.Encoding::windows_code_page
int32_t ___windows_code_page_1;
// System.Boolean System.Text.Encoding::is_readonly
bool ___is_readonly_2;
// System.Text.DecoderFallback System.Text.Encoding::decoder_fallback
DecoderFallback_t3123823036 * ___decoder_fallback_3;
// System.Text.EncoderFallback System.Text.Encoding::encoder_fallback
EncoderFallback_t1188251036 * ___encoder_fallback_4;
// System.String System.Text.Encoding::body_name
String_t* ___body_name_8;
// System.String System.Text.Encoding::encoding_name
String_t* ___encoding_name_9;
// System.String System.Text.Encoding::header_name
String_t* ___header_name_10;
// System.Boolean System.Text.Encoding::is_mail_news_display
bool ___is_mail_news_display_11;
// System.Boolean System.Text.Encoding::is_mail_news_save
bool ___is_mail_news_save_12;
// System.Boolean System.Text.Encoding::is_browser_save
bool ___is_browser_save_13;
// System.Boolean System.Text.Encoding::is_browser_display
bool ___is_browser_display_14;
// System.String System.Text.Encoding::web_name
String_t* ___web_name_15;
public:
inline static int32_t get_offset_of_codePage_0() { return static_cast<int32_t>(offsetof(Encoding_t1523322056, ___codePage_0)); }
inline int32_t get_codePage_0() const { return ___codePage_0; }
inline int32_t* get_address_of_codePage_0() { return &___codePage_0; }
inline void set_codePage_0(int32_t value)
{
___codePage_0 = value;
}
inline static int32_t get_offset_of_windows_code_page_1() { return static_cast<int32_t>(offsetof(Encoding_t1523322056, ___windows_code_page_1)); }
inline int32_t get_windows_code_page_1() const { return ___windows_code_page_1; }
inline int32_t* get_address_of_windows_code_page_1() { return &___windows_code_page_1; }
inline void set_windows_code_page_1(int32_t value)
{
___windows_code_page_1 = value;
}
inline static int32_t get_offset_of_is_readonly_2() { return static_cast<int32_t>(offsetof(Encoding_t1523322056, ___is_readonly_2)); }
inline bool get_is_readonly_2() const { return ___is_readonly_2; }
inline bool* get_address_of_is_readonly_2() { return &___is_readonly_2; }
inline void set_is_readonly_2(bool value)
{
___is_readonly_2 = value;
}
inline static int32_t get_offset_of_decoder_fallback_3() { return static_cast<int32_t>(offsetof(Encoding_t1523322056, ___decoder_fallback_3)); }
inline DecoderFallback_t3123823036 * get_decoder_fallback_3() const { return ___decoder_fallback_3; }
inline DecoderFallback_t3123823036 ** get_address_of_decoder_fallback_3() { return &___decoder_fallback_3; }
inline void set_decoder_fallback_3(DecoderFallback_t3123823036 * value)
{
___decoder_fallback_3 = value;
Il2CppCodeGenWriteBarrier((&___decoder_fallback_3), value);
}
inline static int32_t get_offset_of_encoder_fallback_4() { return static_cast<int32_t>(offsetof(Encoding_t1523322056, ___encoder_fallback_4)); }
inline EncoderFallback_t1188251036 * get_encoder_fallback_4() const { return ___encoder_fallback_4; }
inline EncoderFallback_t1188251036 ** get_address_of_encoder_fallback_4() { return &___encoder_fallback_4; }
inline void set_encoder_fallback_4(EncoderFallback_t1188251036 * value)
{
___encoder_fallback_4 = value;
Il2CppCodeGenWriteBarrier((&___encoder_fallback_4), value);
}
inline static int32_t get_offset_of_body_name_8() { return static_cast<int32_t>(offsetof(Encoding_t1523322056, ___body_name_8)); }
inline String_t* get_body_name_8() const { return ___body_name_8; }
inline String_t** get_address_of_body_name_8() { return &___body_name_8; }
inline void set_body_name_8(String_t* value)
{
___body_name_8 = value;
Il2CppCodeGenWriteBarrier((&___body_name_8), value);
}
inline static int32_t get_offset_of_encoding_name_9() { return static_cast<int32_t>(offsetof(Encoding_t1523322056, ___encoding_name_9)); }
inline String_t* get_encoding_name_9() const { return ___encoding_name_9; }
inline String_t** get_address_of_encoding_name_9() { return &___encoding_name_9; }
inline void set_encoding_name_9(String_t* value)
{
___encoding_name_9 = value;
Il2CppCodeGenWriteBarrier((&___encoding_name_9), value);
}
inline static int32_t get_offset_of_header_name_10() { return static_cast<int32_t>(offsetof(Encoding_t1523322056, ___header_name_10)); }
inline String_t* get_header_name_10() const { return ___header_name_10; }
inline String_t** get_address_of_header_name_10() { return &___header_name_10; }
inline void set_header_name_10(String_t* value)
{
___header_name_10 = value;
Il2CppCodeGenWriteBarrier((&___header_name_10), value);
}
inline static int32_t get_offset_of_is_mail_news_display_11() { return static_cast<int32_t>(offsetof(Encoding_t1523322056, ___is_mail_news_display_11)); }
inline bool get_is_mail_news_display_11() const { return ___is_mail_news_display_11; }
inline bool* get_address_of_is_mail_news_display_11() { return &___is_mail_news_display_11; }
inline void set_is_mail_news_display_11(bool value)
{
___is_mail_news_display_11 = value;
}
inline static int32_t get_offset_of_is_mail_news_save_12() { return static_cast<int32_t>(offsetof(Encoding_t1523322056, ___is_mail_news_save_12)); }
inline bool get_is_mail_news_save_12() const { return ___is_mail_news_save_12; }
inline bool* get_address_of_is_mail_news_save_12() { return &___is_mail_news_save_12; }
inline void set_is_mail_news_save_12(bool value)
{
___is_mail_news_save_12 = value;
}
inline static int32_t get_offset_of_is_browser_save_13() { return static_cast<int32_t>(offsetof(Encoding_t1523322056, ___is_browser_save_13)); }
inline bool get_is_browser_save_13() const { return ___is_browser_save_13; }
inline bool* get_address_of_is_browser_save_13() { return &___is_browser_save_13; }
inline void set_is_browser_save_13(bool value)
{
___is_browser_save_13 = value;
}
inline static int32_t get_offset_of_is_browser_display_14() { return static_cast<int32_t>(offsetof(Encoding_t1523322056, ___is_browser_display_14)); }
inline bool get_is_browser_display_14() const { return ___is_browser_display_14; }
inline bool* get_address_of_is_browser_display_14() { return &___is_browser_display_14; }
inline void set_is_browser_display_14(bool value)
{
___is_browser_display_14 = value;
}
inline static int32_t get_offset_of_web_name_15() { return static_cast<int32_t>(offsetof(Encoding_t1523322056, ___web_name_15)); }
inline String_t* get_web_name_15() const { return ___web_name_15; }
inline String_t** get_address_of_web_name_15() { return &___web_name_15; }
inline void set_web_name_15(String_t* value)
{
___web_name_15 = value;
Il2CppCodeGenWriteBarrier((&___web_name_15), value);
}
};
struct Encoding_t1523322056_StaticFields
{
public:
// System.Reflection.Assembly System.Text.Encoding::i18nAssembly
Assembly_t * ___i18nAssembly_5;
// System.Boolean System.Text.Encoding::i18nDisabled
bool ___i18nDisabled_6;
// System.Object[] System.Text.Encoding::encodings
ObjectU5BU5D_t2843939325* ___encodings_7;
// System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::asciiEncoding
Encoding_t1523322056 * ___asciiEncoding_16;
// System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::bigEndianEncoding
Encoding_t1523322056 * ___bigEndianEncoding_17;
// System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::defaultEncoding
Encoding_t1523322056 * ___defaultEncoding_18;
// System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::utf7Encoding
Encoding_t1523322056 * ___utf7Encoding_19;
// System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::utf8EncodingWithMarkers
Encoding_t1523322056 * ___utf8EncodingWithMarkers_20;
// System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::utf8EncodingWithoutMarkers
Encoding_t1523322056 * ___utf8EncodingWithoutMarkers_21;
// System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::unicodeEncoding
Encoding_t1523322056 * ___unicodeEncoding_22;
// System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::isoLatin1Encoding
Encoding_t1523322056 * ___isoLatin1Encoding_23;
// System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::utf8EncodingUnsafe
Encoding_t1523322056 * ___utf8EncodingUnsafe_24;
// System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::utf32Encoding
Encoding_t1523322056 * ___utf32Encoding_25;
// System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::bigEndianUTF32Encoding
Encoding_t1523322056 * ___bigEndianUTF32Encoding_26;
// System.Object System.Text.Encoding::lockobj
RuntimeObject * ___lockobj_27;
public:
inline static int32_t get_offset_of_i18nAssembly_5() { return static_cast<int32_t>(offsetof(Encoding_t1523322056_StaticFields, ___i18nAssembly_5)); }
inline Assembly_t * get_i18nAssembly_5() const { return ___i18nAssembly_5; }
inline Assembly_t ** get_address_of_i18nAssembly_5() { return &___i18nAssembly_5; }
inline void set_i18nAssembly_5(Assembly_t * value)
{
___i18nAssembly_5 = value;
Il2CppCodeGenWriteBarrier((&___i18nAssembly_5), value);
}
inline static int32_t get_offset_of_i18nDisabled_6() { return static_cast<int32_t>(offsetof(Encoding_t1523322056_StaticFields, ___i18nDisabled_6)); }
inline bool get_i18nDisabled_6() const { return ___i18nDisabled_6; }
inline bool* get_address_of_i18nDisabled_6() { return &___i18nDisabled_6; }
inline void set_i18nDisabled_6(bool value)
{
___i18nDisabled_6 = value;
}
inline static int32_t get_offset_of_encodings_7() { return static_cast<int32_t>(offsetof(Encoding_t1523322056_StaticFields, ___encodings_7)); }
inline ObjectU5BU5D_t2843939325* get_encodings_7() const { return ___encodings_7; }
inline ObjectU5BU5D_t2843939325** get_address_of_encodings_7() { return &___encodings_7; }
inline void set_encodings_7(ObjectU5BU5D_t2843939325* value)
{
___encodings_7 = value;
Il2CppCodeGenWriteBarrier((&___encodings_7), value);
}
inline static int32_t get_offset_of_asciiEncoding_16() { return static_cast<int32_t>(offsetof(Encoding_t1523322056_StaticFields, ___asciiEncoding_16)); }
inline Encoding_t1523322056 * get_asciiEncoding_16() const { return ___asciiEncoding_16; }
inline Encoding_t1523322056 ** get_address_of_asciiEncoding_16() { return &___asciiEncoding_16; }
inline void set_asciiEncoding_16(Encoding_t1523322056 * value)
{
___asciiEncoding_16 = value;
Il2CppCodeGenWriteBarrier((&___asciiEncoding_16), value);
}
inline static int32_t get_offset_of_bigEndianEncoding_17() { return static_cast<int32_t>(offsetof(Encoding_t1523322056_StaticFields, ___bigEndianEncoding_17)); }
inline Encoding_t1523322056 * get_bigEndianEncoding_17() const { return ___bigEndianEncoding_17; }
inline Encoding_t1523322056 ** get_address_of_bigEndianEncoding_17() { return &___bigEndianEncoding_17; }
inline void set_bigEndianEncoding_17(Encoding_t1523322056 * value)
{
___bigEndianEncoding_17 = value;
Il2CppCodeGenWriteBarrier((&___bigEndianEncoding_17), value);
}
inline static int32_t get_offset_of_defaultEncoding_18() { return static_cast<int32_t>(offsetof(Encoding_t1523322056_StaticFields, ___defaultEncoding_18)); }
inline Encoding_t1523322056 * get_defaultEncoding_18() const { return ___defaultEncoding_18; }
inline Encoding_t1523322056 ** get_address_of_defaultEncoding_18() { return &___defaultEncoding_18; }
inline void set_defaultEncoding_18(Encoding_t1523322056 * value)
{
___defaultEncoding_18 = value;
Il2CppCodeGenWriteBarrier((&___defaultEncoding_18), value);
}
inline static int32_t get_offset_of_utf7Encoding_19() { return static_cast<int32_t>(offsetof(Encoding_t1523322056_StaticFields, ___utf7Encoding_19)); }
inline Encoding_t1523322056 * get_utf7Encoding_19() const { return ___utf7Encoding_19; }
inline Encoding_t1523322056 ** get_address_of_utf7Encoding_19() { return &___utf7Encoding_19; }
inline void set_utf7Encoding_19(Encoding_t1523322056 * value)
{
___utf7Encoding_19 = value;
Il2CppCodeGenWriteBarrier((&___utf7Encoding_19), value);
}
inline static int32_t get_offset_of_utf8EncodingWithMarkers_20() { return static_cast<int32_t>(offsetof(Encoding_t1523322056_StaticFields, ___utf8EncodingWithMarkers_20)); }
inline Encoding_t1523322056 * get_utf8EncodingWithMarkers_20() const { return ___utf8EncodingWithMarkers_20; }
inline Encoding_t1523322056 ** get_address_of_utf8EncodingWithMarkers_20() { return &___utf8EncodingWithMarkers_20; }
inline void set_utf8EncodingWithMarkers_20(Encoding_t1523322056 * value)
{
___utf8EncodingWithMarkers_20 = value;
Il2CppCodeGenWriteBarrier((&___utf8EncodingWithMarkers_20), value);
}
inline static int32_t get_offset_of_utf8EncodingWithoutMarkers_21() { return static_cast<int32_t>(offsetof(Encoding_t1523322056_StaticFields, ___utf8EncodingWithoutMarkers_21)); }
inline Encoding_t1523322056 * get_utf8EncodingWithoutMarkers_21() const { return ___utf8EncodingWithoutMarkers_21; }
inline Encoding_t1523322056 ** get_address_of_utf8EncodingWithoutMarkers_21() { return &___utf8EncodingWithoutMarkers_21; }
inline void set_utf8EncodingWithoutMarkers_21(Encoding_t1523322056 * value)
{
___utf8EncodingWithoutMarkers_21 = value;
Il2CppCodeGenWriteBarrier((&___utf8EncodingWithoutMarkers_21), value);
}
inline static int32_t get_offset_of_unicodeEncoding_22() { return static_cast<int32_t>(offsetof(Encoding_t1523322056_StaticFields, ___unicodeEncoding_22)); }
inline Encoding_t1523322056 * get_unicodeEncoding_22() const { return ___unicodeEncoding_22; }
inline Encoding_t1523322056 ** get_address_of_unicodeEncoding_22() { return &___unicodeEncoding_22; }
inline void set_unicodeEncoding_22(Encoding_t1523322056 * value)
{
___unicodeEncoding_22 = value;
Il2CppCodeGenWriteBarrier((&___unicodeEncoding_22), value);
}
inline static int32_t get_offset_of_isoLatin1Encoding_23() { return static_cast<int32_t>(offsetof(Encoding_t1523322056_StaticFields, ___isoLatin1Encoding_23)); }
inline Encoding_t1523322056 * get_isoLatin1Encoding_23() const { return ___isoLatin1Encoding_23; }
inline Encoding_t1523322056 ** get_address_of_isoLatin1Encoding_23() { return &___isoLatin1Encoding_23; }
inline void set_isoLatin1Encoding_23(Encoding_t1523322056 * value)
{
___isoLatin1Encoding_23 = value;
Il2CppCodeGenWriteBarrier((&___isoLatin1Encoding_23), value);
}
inline static int32_t get_offset_of_utf8EncodingUnsafe_24() { return static_cast<int32_t>(offsetof(Encoding_t1523322056_StaticFields, ___utf8EncodingUnsafe_24)); }
inline Encoding_t1523322056 * get_utf8EncodingUnsafe_24() const { return ___utf8EncodingUnsafe_24; }
inline Encoding_t1523322056 ** get_address_of_utf8EncodingUnsafe_24() { return &___utf8EncodingUnsafe_24; }
inline void set_utf8EncodingUnsafe_24(Encoding_t1523322056 * value)
{
___utf8EncodingUnsafe_24 = value;
Il2CppCodeGenWriteBarrier((&___utf8EncodingUnsafe_24), value);
}
inline static int32_t get_offset_of_utf32Encoding_25() { return static_cast<int32_t>(offsetof(Encoding_t1523322056_StaticFields, ___utf32Encoding_25)); }
inline Encoding_t1523322056 * get_utf32Encoding_25() const { return ___utf32Encoding_25; }
inline Encoding_t1523322056 ** get_address_of_utf32Encoding_25() { return &___utf32Encoding_25; }
inline void set_utf32Encoding_25(Encoding_t1523322056 * value)
{
___utf32Encoding_25 = value;
Il2CppCodeGenWriteBarrier((&___utf32Encoding_25), value);
}
inline static int32_t get_offset_of_bigEndianUTF32Encoding_26() { return static_cast<int32_t>(offsetof(Encoding_t1523322056_StaticFields, ___bigEndianUTF32Encoding_26)); }
inline Encoding_t1523322056 * get_bigEndianUTF32Encoding_26() const { return ___bigEndianUTF32Encoding_26; }
inline Encoding_t1523322056 ** get_address_of_bigEndianUTF32Encoding_26() { return &___bigEndianUTF32Encoding_26; }
inline void set_bigEndianUTF32Encoding_26(Encoding_t1523322056 * value)
{
___bigEndianUTF32Encoding_26 = value;
Il2CppCodeGenWriteBarrier((&___bigEndianUTF32Encoding_26), value);
}
inline static int32_t get_offset_of_lockobj_27() { return static_cast<int32_t>(offsetof(Encoding_t1523322056_StaticFields, ___lockobj_27)); }
inline RuntimeObject * get_lockobj_27() const { return ___lockobj_27; }
inline RuntimeObject ** get_address_of_lockobj_27() { return &___lockobj_27; }
inline void set_lockobj_27(RuntimeObject * value)
{
___lockobj_27 = value;
Il2CppCodeGenWriteBarrier((&___lockobj_27), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // ENCODING_T1523322056_H
#ifndef U24ARRAYTYPEU24136_T1950429485_H
#define U24ARRAYTYPEU24136_T1950429485_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// <PrivateImplementationDetails>/$ArrayType$136
struct U24ArrayTypeU24136_t1950429485
{
public:
union
{
struct
{
union
{
};
};
uint8_t U24ArrayTypeU24136_t1950429485__padding[136];
};
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // U24ARRAYTYPEU24136_T1950429485_H
#ifndef INT16_T2552820387_H
#define INT16_T2552820387_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Int16
struct Int16_t2552820387
{
public:
// System.Int16 System.Int16::m_value
int16_t ___m_value_0;
public:
inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Int16_t2552820387, ___m_value_0)); }
inline int16_t get_m_value_0() const { return ___m_value_0; }
inline int16_t* get_address_of_m_value_0() { return &___m_value_0; }
inline void set_m_value_0(int16_t value)
{
___m_value_0 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // INT16_T2552820387_H
#ifndef U24ARRAYTYPEU2412_T2490092596_H
#define U24ARRAYTYPEU2412_T2490092596_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// <PrivateImplementationDetails>/$ArrayType$12
struct U24ArrayTypeU2412_t2490092596
{
public:
union
{
struct
{
union
{
};
};
uint8_t U24ArrayTypeU2412_t2490092596__padding[12];
};
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // U24ARRAYTYPEU2412_T2490092596_H
#ifndef INT32_T2950945753_H
#define INT32_T2950945753_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Int32
struct Int32_t2950945753
{
public:
// System.Int32 System.Int32::m_value
int32_t ___m_value_2;
public:
inline static int32_t get_offset_of_m_value_2() { return static_cast<int32_t>(offsetof(Int32_t2950945753, ___m_value_2)); }
inline int32_t get_m_value_2() const { return ___m_value_2; }
inline int32_t* get_address_of_m_value_2() { return &___m_value_2; }
inline void set_m_value_2(int32_t value)
{
___m_value_2 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // INT32_T2950945753_H
#ifndef X509EXTENSIONCOLLECTION_T609554708_H
#define X509EXTENSIONCOLLECTION_T609554708_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Mono.Security.X509.X509ExtensionCollection
struct X509ExtensionCollection_t609554708 : public CollectionBase_t2727926298
{
public:
// System.Boolean Mono.Security.X509.X509ExtensionCollection::readOnly
bool ___readOnly_1;
public:
inline static int32_t get_offset_of_readOnly_1() { return static_cast<int32_t>(offsetof(X509ExtensionCollection_t609554708, ___readOnly_1)); }
inline bool get_readOnly_1() const { return ___readOnly_1; }
inline bool* get_address_of_readOnly_1() { return &___readOnly_1; }
inline void set_readOnly_1(bool value)
{
___readOnly_1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // X509EXTENSIONCOLLECTION_T609554708_H
#ifndef SLOT_T384495010_H
#define SLOT_T384495010_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Collections.SortedList/Slot
struct Slot_t384495010
{
public:
// System.Object System.Collections.SortedList/Slot::key
RuntimeObject * ___key_0;
// System.Object System.Collections.SortedList/Slot::value
RuntimeObject * ___value_1;
public:
inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(Slot_t384495010, ___key_0)); }
inline RuntimeObject * get_key_0() const { return ___key_0; }
inline RuntimeObject ** get_address_of_key_0() { return &___key_0; }
inline void set_key_0(RuntimeObject * value)
{
___key_0 = value;
Il2CppCodeGenWriteBarrier((&___key_0), value);
}
inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(Slot_t384495010, ___value_1)); }
inline RuntimeObject * get_value_1() const { return ___value_1; }
inline RuntimeObject ** get_address_of_value_1() { return &___value_1; }
inline void set_value_1(RuntimeObject * value)
{
___value_1 = value;
Il2CppCodeGenWriteBarrier((&___value_1), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// Native definition for P/Invoke marshalling of System.Collections.SortedList/Slot
struct Slot_t384495010_marshaled_pinvoke
{
Il2CppIUnknown* ___key_0;
Il2CppIUnknown* ___value_1;
};
// Native definition for COM marshalling of System.Collections.SortedList/Slot
struct Slot_t384495010_marshaled_com
{
Il2CppIUnknown* ___key_0;
Il2CppIUnknown* ___value_1;
};
#endif // SLOT_T384495010_H
#ifndef SYNCHASHTABLE_T3569774773_H
#define SYNCHASHTABLE_T3569774773_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Collections.Hashtable/SyncHashtable
struct SyncHashtable_t3569774773 : public Hashtable_t1853889766
{
public:
// System.Collections.Hashtable System.Collections.Hashtable/SyncHashtable::host
Hashtable_t1853889766 * ___host_14;
public:
inline static int32_t get_offset_of_host_14() { return static_cast<int32_t>(offsetof(SyncHashtable_t3569774773, ___host_14)); }
inline Hashtable_t1853889766 * get_host_14() const { return ___host_14; }
inline Hashtable_t1853889766 ** get_address_of_host_14() { return &___host_14; }
inline void set_host_14(Hashtable_t1853889766 * value)
{
___host_14 = value;
Il2CppCodeGenWriteBarrier((&___host_14), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // SYNCHASHTABLE_T3569774773_H
#ifndef DECIMAL_T2948259380_H
#define DECIMAL_T2948259380_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Decimal
struct Decimal_t2948259380
{
public:
// System.UInt32 System.Decimal::flags
uint32_t ___flags_5;
// System.UInt32 System.Decimal::hi
uint32_t ___hi_6;
// System.UInt32 System.Decimal::lo
uint32_t ___lo_7;
// System.UInt32 System.Decimal::mid
uint32_t ___mid_8;
public:
inline static int32_t get_offset_of_flags_5() { return static_cast<int32_t>(offsetof(Decimal_t2948259380, ___flags_5)); }
inline uint32_t get_flags_5() const { return ___flags_5; }
inline uint32_t* get_address_of_flags_5() { return &___flags_5; }
inline void set_flags_5(uint32_t value)
{
___flags_5 = value;
}
inline static int32_t get_offset_of_hi_6() { return static_cast<int32_t>(offsetof(Decimal_t2948259380, ___hi_6)); }
inline uint32_t get_hi_6() const { return ___hi_6; }
inline uint32_t* get_address_of_hi_6() { return &___hi_6; }
inline void set_hi_6(uint32_t value)
{
___hi_6 = value;
}
inline static int32_t get_offset_of_lo_7() { return static_cast<int32_t>(offsetof(Decimal_t2948259380, ___lo_7)); }
inline uint32_t get_lo_7() const { return ___lo_7; }
inline uint32_t* get_address_of_lo_7() { return &___lo_7; }
inline void set_lo_7(uint32_t value)
{
___lo_7 = value;
}
inline static int32_t get_offset_of_mid_8() { return static_cast<int32_t>(offsetof(Decimal_t2948259380, ___mid_8)); }
inline uint32_t get_mid_8() const { return ___mid_8; }
inline uint32_t* get_address_of_mid_8() { return &___mid_8; }
inline void set_mid_8(uint32_t value)
{
___mid_8 = value;
}
};
struct Decimal_t2948259380_StaticFields
{
public:
// System.Decimal System.Decimal::MinValue
Decimal_t2948259380 ___MinValue_0;
// System.Decimal System.Decimal::MaxValue
Decimal_t2948259380 ___MaxValue_1;
// System.Decimal System.Decimal::MinusOne
Decimal_t2948259380 ___MinusOne_2;
// System.Decimal System.Decimal::One
Decimal_t2948259380 ___One_3;
// System.Decimal System.Decimal::MaxValueDiv10
Decimal_t2948259380 ___MaxValueDiv10_4;
public:
inline static int32_t get_offset_of_MinValue_0() { return static_cast<int32_t>(offsetof(Decimal_t2948259380_StaticFields, ___MinValue_0)); }
inline Decimal_t2948259380 get_MinValue_0() const { return ___MinValue_0; }
inline Decimal_t2948259380 * get_address_of_MinValue_0() { return &___MinValue_0; }
inline void set_MinValue_0(Decimal_t2948259380 value)
{
___MinValue_0 = value;
}
inline static int32_t get_offset_of_MaxValue_1() { return static_cast<int32_t>(offsetof(Decimal_t2948259380_StaticFields, ___MaxValue_1)); }
inline Decimal_t2948259380 get_MaxValue_1() const { return ___MaxValue_1; }
inline Decimal_t2948259380 * get_address_of_MaxValue_1() { return &___MaxValue_1; }
inline void set_MaxValue_1(Decimal_t2948259380 value)
{
___MaxValue_1 = value;
}
inline static int32_t get_offset_of_MinusOne_2() { return static_cast<int32_t>(offsetof(Decimal_t2948259380_StaticFields, ___MinusOne_2)); }
inline Decimal_t2948259380 get_MinusOne_2() const { return ___MinusOne_2; }
inline Decimal_t2948259380 * get_address_of_MinusOne_2() { return &___MinusOne_2; }
inline void set_MinusOne_2(Decimal_t2948259380 value)
{
___MinusOne_2 = value;
}
inline static int32_t get_offset_of_One_3() { return static_cast<int32_t>(offsetof(Decimal_t2948259380_StaticFields, ___One_3)); }
inline Decimal_t2948259380 get_One_3() const { return ___One_3; }
inline Decimal_t2948259380 * get_address_of_One_3() { return &___One_3; }
inline void set_One_3(Decimal_t2948259380 value)
{
___One_3 = value;
}
inline static int32_t get_offset_of_MaxValueDiv10_4() { return static_cast<int32_t>(offsetof(Decimal_t2948259380_StaticFields, ___MaxValueDiv10_4)); }
inline Decimal_t2948259380 get_MaxValueDiv10_4() const { return ___MaxValueDiv10_4; }
inline Decimal_t2948259380 * get_address_of_MaxValueDiv10_4() { return &___MaxValueDiv10_4; }
inline void set_MaxValueDiv10_4(Decimal_t2948259380 value)
{
___MaxValueDiv10_4 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // DECIMAL_T2948259380_H
#ifndef ARRAYLISTWRAPPER_T240606758_H
#define ARRAYLISTWRAPPER_T240606758_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Collections.ArrayList/ArrayListWrapper
struct ArrayListWrapper_t240606758 : public ArrayList_t2718874744
{
public:
// System.Collections.ArrayList System.Collections.ArrayList/ArrayListWrapper::m_InnerArrayList
ArrayList_t2718874744 * ___m_InnerArrayList_5;
public:
inline static int32_t get_offset_of_m_InnerArrayList_5() { return static_cast<int32_t>(offsetof(ArrayListWrapper_t240606758, ___m_InnerArrayList_5)); }
inline ArrayList_t2718874744 * get_m_InnerArrayList_5() const { return ___m_InnerArrayList_5; }
inline ArrayList_t2718874744 ** get_address_of_m_InnerArrayList_5() { return &___m_InnerArrayList_5; }
inline void set_m_InnerArrayList_5(ArrayList_t2718874744 * value)
{
___m_InnerArrayList_5 = value;
Il2CppCodeGenWriteBarrier((&___m_InnerArrayList_5), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // ARRAYLISTWRAPPER_T240606758_H
#ifndef U24ARRAYTYPEU2416_T3254766644_H
#define U24ARRAYTYPEU2416_T3254766644_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// <PrivateImplementationDetails>/$ArrayType$16
struct U24ArrayTypeU2416_t3254766644
{
public:
union
{
struct
{
union
{
};
};
uint8_t U24ArrayTypeU2416_t3254766644__padding[16];
};
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // U24ARRAYTYPEU2416_T3254766644_H
#ifndef SINGLE_T1397266774_H
#define SINGLE_T1397266774_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Single
struct Single_t1397266774
{
public:
// System.Single System.Single::m_value
float ___m_value_7;
public:
inline static int32_t get_offset_of_m_value_7() { return static_cast<int32_t>(offsetof(Single_t1397266774, ___m_value_7)); }
inline float get_m_value_7() const { return ___m_value_7; }
inline float* get_address_of_m_value_7() { return &___m_value_7; }
inline void set_m_value_7(float value)
{
___m_value_7 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // SINGLE_T1397266774_H
#ifndef CLSCOMPLIANTATTRIBUTE_T999444765_H
#define CLSCOMPLIANTATTRIBUTE_T999444765_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.CLSCompliantAttribute
struct CLSCompliantAttribute_t999444765 : public Attribute_t861562559
{
public:
// System.Boolean System.CLSCompliantAttribute::is_compliant
bool ___is_compliant_0;
public:
inline static int32_t get_offset_of_is_compliant_0() { return static_cast<int32_t>(offsetof(CLSCompliantAttribute_t999444765, ___is_compliant_0)); }
inline bool get_is_compliant_0() const { return ___is_compliant_0; }
inline bool* get_address_of_is_compliant_0() { return &___is_compliant_0; }
inline void set_is_compliant_0(bool value)
{
___is_compliant_0 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // CLSCOMPLIANTATTRIBUTE_T999444765_H
#ifndef UINT64_T4134040092_H
#define UINT64_T4134040092_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.UInt64
struct UInt64_t4134040092
{
public:
// System.UInt64 System.UInt64::m_value
uint64_t ___m_value_0;
public:
inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(UInt64_t4134040092, ___m_value_0)); }
inline uint64_t get_m_value_0() const { return ___m_value_0; }
inline uint64_t* get_address_of_m_value_0() { return &___m_value_0; }
inline void set_m_value_0(uint64_t value)
{
___m_value_0 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // UINT64_T4134040092_H
#ifndef UINT16_T2177724958_H
#define UINT16_T2177724958_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.UInt16
struct UInt16_t2177724958
{
public:
// System.UInt16 System.UInt16::m_value
uint16_t ___m_value_2;
public:
inline static int32_t get_offset_of_m_value_2() { return static_cast<int32_t>(offsetof(UInt16_t2177724958, ___m_value_2)); }
inline uint16_t get_m_value_2() const { return ___m_value_2; }
inline uint16_t* get_address_of_m_value_2() { return &___m_value_2; }
inline void set_m_value_2(uint16_t value)
{
___m_value_2 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // UINT16_T2177724958_H
#ifndef LINK_T544317964_H
#define LINK_T544317964_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Collections.Generic.Link
struct Link_t544317964
{
public:
// System.Int32 System.Collections.Generic.Link::HashCode
int32_t ___HashCode_0;
// System.Int32 System.Collections.Generic.Link::Next
int32_t ___Next_1;
public:
inline static int32_t get_offset_of_HashCode_0() { return static_cast<int32_t>(offsetof(Link_t544317964, ___HashCode_0)); }
inline int32_t get_HashCode_0() const { return ___HashCode_0; }
inline int32_t* get_address_of_HashCode_0() { return &___HashCode_0; }
inline void set_HashCode_0(int32_t value)
{
___HashCode_0 = value;
}
inline static int32_t get_offset_of_Next_1() { return static_cast<int32_t>(offsetof(Link_t544317964, ___Next_1)); }
inline int32_t get_Next_1() const { return ___Next_1; }
inline int32_t* get_address_of_Next_1() { return &___Next_1; }
inline void set_Next_1(int32_t value)
{
___Next_1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // LINK_T544317964_H
#ifndef SLOT_T3975888750_H
#define SLOT_T3975888750_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Collections.Hashtable/Slot
struct Slot_t3975888750
{
public:
// System.Object System.Collections.Hashtable/Slot::key
RuntimeObject * ___key_0;
// System.Object System.Collections.Hashtable/Slot::value
RuntimeObject * ___value_1;
public:
inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(Slot_t3975888750, ___key_0)); }
inline RuntimeObject * get_key_0() const { return ___key_0; }
inline RuntimeObject ** get_address_of_key_0() { return &___key_0; }
inline void set_key_0(RuntimeObject * value)
{
___key_0 = value;
Il2CppCodeGenWriteBarrier((&___key_0), value);
}
inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(Slot_t3975888750, ___value_1)); }
inline RuntimeObject * get_value_1() const { return ___value_1; }
inline RuntimeObject ** get_address_of_value_1() { return &___value_1; }
inline void set_value_1(RuntimeObject * value)
{
___value_1 = value;
Il2CppCodeGenWriteBarrier((&___value_1), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// Native definition for P/Invoke marshalling of System.Collections.Hashtable/Slot
struct Slot_t3975888750_marshaled_pinvoke
{
Il2CppIUnknown* ___key_0;
Il2CppIUnknown* ___value_1;
};
// Native definition for COM marshalling of System.Collections.Hashtable/Slot
struct Slot_t3975888750_marshaled_com
{
Il2CppIUnknown* ___key_0;
Il2CppIUnknown* ___value_1;
};
#endif // SLOT_T3975888750_H
#ifndef SBYTE_T1669577662_H
#define SBYTE_T1669577662_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.SByte
struct SByte_t1669577662
{
public:
// System.SByte System.SByte::m_value
int8_t ___m_value_0;
public:
inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(SByte_t1669577662, ___m_value_0)); }
inline int8_t get_m_value_0() const { return ___m_value_0; }
inline int8_t* get_address_of_m_value_0() { return &___m_value_0; }
inline void set_m_value_0(int8_t value)
{
___m_value_0 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // SBYTE_T1669577662_H
#ifndef CHAR_T3634460470_H
#define CHAR_T3634460470_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Char
struct Char_t3634460470
{
public:
// System.Char System.Char::m_value
Il2CppChar ___m_value_2;
public:
inline static int32_t get_offset_of_m_value_2() { return static_cast<int32_t>(offsetof(Char_t3634460470, ___m_value_2)); }
inline Il2CppChar get_m_value_2() const { return ___m_value_2; }
inline Il2CppChar* get_address_of_m_value_2() { return &___m_value_2; }
inline void set_m_value_2(Il2CppChar value)
{
___m_value_2 = value;
}
};
struct Char_t3634460470_StaticFields
{
public:
// System.Byte* System.Char::category_data
uint8_t* ___category_data_3;
// System.Byte* System.Char::numeric_data
uint8_t* ___numeric_data_4;
// System.Double* System.Char::numeric_data_values
double* ___numeric_data_values_5;
// System.UInt16* System.Char::to_lower_data_low
uint16_t* ___to_lower_data_low_6;
// System.UInt16* System.Char::to_lower_data_high
uint16_t* ___to_lower_data_high_7;
// System.UInt16* System.Char::to_upper_data_low
uint16_t* ___to_upper_data_low_8;
// System.UInt16* System.Char::to_upper_data_high
uint16_t* ___to_upper_data_high_9;
public:
inline static int32_t get_offset_of_category_data_3() { return static_cast<int32_t>(offsetof(Char_t3634460470_StaticFields, ___category_data_3)); }
inline uint8_t* get_category_data_3() const { return ___category_data_3; }
inline uint8_t** get_address_of_category_data_3() { return &___category_data_3; }
inline void set_category_data_3(uint8_t* value)
{
___category_data_3 = value;
}
inline static int32_t get_offset_of_numeric_data_4() { return static_cast<int32_t>(offsetof(Char_t3634460470_StaticFields, ___numeric_data_4)); }
inline uint8_t* get_numeric_data_4() const { return ___numeric_data_4; }
inline uint8_t** get_address_of_numeric_data_4() { return &___numeric_data_4; }
inline void set_numeric_data_4(uint8_t* value)
{
___numeric_data_4 = value;
}
inline static int32_t get_offset_of_numeric_data_values_5() { return static_cast<int32_t>(offsetof(Char_t3634460470_StaticFields, ___numeric_data_values_5)); }
inline double* get_numeric_data_values_5() const { return ___numeric_data_values_5; }
inline double** get_address_of_numeric_data_values_5() { return &___numeric_data_values_5; }
inline void set_numeric_data_values_5(double* value)
{
___numeric_data_values_5 = value;
}
inline static int32_t get_offset_of_to_lower_data_low_6() { return static_cast<int32_t>(offsetof(Char_t3634460470_StaticFields, ___to_lower_data_low_6)); }
inline uint16_t* get_to_lower_data_low_6() const { return ___to_lower_data_low_6; }
inline uint16_t** get_address_of_to_lower_data_low_6() { return &___to_lower_data_low_6; }
inline void set_to_lower_data_low_6(uint16_t* value)
{
___to_lower_data_low_6 = value;
}
inline static int32_t get_offset_of_to_lower_data_high_7() { return static_cast<int32_t>(offsetof(Char_t3634460470_StaticFields, ___to_lower_data_high_7)); }
inline uint16_t* get_to_lower_data_high_7() const { return ___to_lower_data_high_7; }
inline uint16_t** get_address_of_to_lower_data_high_7() { return &___to_lower_data_high_7; }
inline void set_to_lower_data_high_7(uint16_t* value)
{
___to_lower_data_high_7 = value;
}
inline static int32_t get_offset_of_to_upper_data_low_8() { return static_cast<int32_t>(offsetof(Char_t3634460470_StaticFields, ___to_upper_data_low_8)); }
inline uint16_t* get_to_upper_data_low_8() const { return ___to_upper_data_low_8; }
inline uint16_t** get_address_of_to_upper_data_low_8() { return &___to_upper_data_low_8; }
inline void set_to_upper_data_low_8(uint16_t* value)
{
___to_upper_data_low_8 = value;
}
inline static int32_t get_offset_of_to_upper_data_high_9() { return static_cast<int32_t>(offsetof(Char_t3634460470_StaticFields, ___to_upper_data_high_9)); }
inline uint16_t* get_to_upper_data_high_9() const { return ___to_upper_data_high_9; }
inline uint16_t** get_address_of_to_upper_data_high_9() { return &___to_upper_data_high_9; }
inline void set_to_upper_data_high_9(uint16_t* value)
{
___to_upper_data_high_9 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // CHAR_T3634460470_H
#ifndef BOOLEAN_T97287965_H
#define BOOLEAN_T97287965_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Boolean
struct Boolean_t97287965
{
public:
// System.Boolean System.Boolean::m_value
bool ___m_value_2;
public:
inline static int32_t get_offset_of_m_value_2() { return static_cast<int32_t>(offsetof(Boolean_t97287965, ___m_value_2)); }
inline bool get_m_value_2() const { return ___m_value_2; }
inline bool* get_address_of_m_value_2() { return &___m_value_2; }
inline void set_m_value_2(bool value)
{
___m_value_2 = value;
}
};
struct Boolean_t97287965_StaticFields
{
public:
// System.String System.Boolean::FalseString
String_t* ___FalseString_0;
// System.String System.Boolean::TrueString
String_t* ___TrueString_1;
public:
inline static int32_t get_offset_of_FalseString_0() { return static_cast<int32_t>(offsetof(Boolean_t97287965_StaticFields, ___FalseString_0)); }
inline String_t* get_FalseString_0() const { return ___FalseString_0; }
inline String_t** get_address_of_FalseString_0() { return &___FalseString_0; }
inline void set_FalseString_0(String_t* value)
{
___FalseString_0 = value;
Il2CppCodeGenWriteBarrier((&___FalseString_0), value);
}
inline static int32_t get_offset_of_TrueString_1() { return static_cast<int32_t>(offsetof(Boolean_t97287965_StaticFields, ___TrueString_1)); }
inline String_t* get_TrueString_1() const { return ___TrueString_1; }
inline String_t** get_address_of_TrueString_1() { return &___TrueString_1; }
inline void set_TrueString_1(String_t* value)
{
___TrueString_1 = value;
Il2CppCodeGenWriteBarrier((&___TrueString_1), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // BOOLEAN_T97287965_H
#ifndef DICTIONARYENTRY_T3123975638_H
#define DICTIONARYENTRY_T3123975638_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Collections.DictionaryEntry
struct DictionaryEntry_t3123975638
{
public:
// System.Object System.Collections.DictionaryEntry::_key
RuntimeObject * ____key_0;
// System.Object System.Collections.DictionaryEntry::_value
RuntimeObject * ____value_1;
public:
inline static int32_t get_offset_of__key_0() { return static_cast<int32_t>(offsetof(DictionaryEntry_t3123975638, ____key_0)); }
inline RuntimeObject * get__key_0() const { return ____key_0; }
inline RuntimeObject ** get_address_of__key_0() { return &____key_0; }
inline void set__key_0(RuntimeObject * value)
{
____key_0 = value;
Il2CppCodeGenWriteBarrier((&____key_0), value);
}
inline static int32_t get_offset_of__value_1() { return static_cast<int32_t>(offsetof(DictionaryEntry_t3123975638, ____value_1)); }
inline RuntimeObject * get__value_1() const { return ____value_1; }
inline RuntimeObject ** get_address_of__value_1() { return &____value_1; }
inline void set__value_1(RuntimeObject * value)
{
____value_1 = value;
Il2CppCodeGenWriteBarrier((&____value_1), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// Native definition for P/Invoke marshalling of System.Collections.DictionaryEntry
struct DictionaryEntry_t3123975638_marshaled_pinvoke
{
Il2CppIUnknown* ____key_0;
Il2CppIUnknown* ____value_1;
};
// Native definition for COM marshalling of System.Collections.DictionaryEntry
struct DictionaryEntry_t3123975638_marshaled_com
{
Il2CppIUnknown* ____key_0;
Il2CppIUnknown* ____value_1;
};
#endif // DICTIONARYENTRY_T3123975638_H
#ifndef U24ARRAYTYPEU24120_T4289081651_H
#define U24ARRAYTYPEU24120_T4289081651_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// <PrivateImplementationDetails>/$ArrayType$120
struct U24ArrayTypeU24120_t4289081651
{
public:
union
{
struct
{
union
{
};
};
uint8_t U24ArrayTypeU24120_t4289081651__padding[120];
};
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // U24ARRAYTYPEU24120_T4289081651_H
#ifndef U24ARRAYTYPEU241024_T3907531057_H
#define U24ARRAYTYPEU241024_T3907531057_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// <PrivateImplementationDetails>/$ArrayType$1024
struct U24ArrayTypeU241024_t3907531057
{
public:
union
{
struct
{
union
{
};
};
uint8_t U24ArrayTypeU241024_t3907531057__padding[1024];
};
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // U24ARRAYTYPEU241024_T3907531057_H
#ifndef U24ARRAYTYPEU24640_T2298765680_H
#define U24ARRAYTYPEU24640_T2298765680_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// <PrivateImplementationDetails>/$ArrayType$640
struct U24ArrayTypeU24640_t2298765680
{
public:
union
{
struct
{
union
{
};
};
uint8_t U24ArrayTypeU24640_t2298765680__padding[640];
};
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // U24ARRAYTYPEU24640_T2298765680_H
#ifndef U24ARRAYTYPEU24256_T1929481982_H
#define U24ARRAYTYPEU24256_T1929481982_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// <PrivateImplementationDetails>/$ArrayType$256
struct U24ArrayTypeU24256_t1929481982
{
public:
union
{
struct
{
union
{
};
};
uint8_t U24ArrayTypeU24256_t1929481982__padding[256];
};
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // U24ARRAYTYPEU24256_T1929481982_H
#ifndef U24ARRAYTYPEU24124_T4289081647_H
#define U24ARRAYTYPEU24124_T4289081647_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// <PrivateImplementationDetails>/$ArrayType$124
struct U24ArrayTypeU24124_t4289081647
{
public:
union
{
struct
{
union
{
};
};
uint8_t U24ArrayTypeU24124_t4289081647__padding[124];
};
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // U24ARRAYTYPEU24124_T4289081647_H
#ifndef U24ARRAYTYPEU2496_T2898536284_H
#define U24ARRAYTYPEU2496_T2898536284_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// <PrivateImplementationDetails>/$ArrayType$96
struct U24ArrayTypeU2496_t2898536284
{
public:
union
{
struct
{
union
{
};
};
uint8_t U24ArrayTypeU2496_t2898536284__padding[96];
};
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // U24ARRAYTYPEU2496_T2898536284_H
#ifndef U24ARRAYTYPEU242048_T3505032960_H
#define U24ARRAYTYPEU242048_T3505032960_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// <PrivateImplementationDetails>/$ArrayType$2048
struct U24ArrayTypeU242048_t3505032960
{
public:
union
{
struct
{
union
{
};
};
uint8_t U24ArrayTypeU242048_t3505032960__padding[2048];
};
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // U24ARRAYTYPEU242048_T3505032960_H
#ifndef UINTPTR_T_H
#define UINTPTR_T_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.UIntPtr
struct UIntPtr_t
{
public:
// System.Void* System.UIntPtr::_pointer
void* ____pointer_1;
public:
inline static int32_t get_offset_of__pointer_1() { return static_cast<int32_t>(offsetof(UIntPtr_t, ____pointer_1)); }
inline void* get__pointer_1() const { return ____pointer_1; }
inline void** get_address_of__pointer_1() { return &____pointer_1; }
inline void set__pointer_1(void* value)
{
____pointer_1 = value;
}
};
struct UIntPtr_t_StaticFields
{
public:
// System.UIntPtr System.UIntPtr::Zero
uintptr_t ___Zero_0;
public:
inline static int32_t get_offset_of_Zero_0() { return static_cast<int32_t>(offsetof(UIntPtr_t_StaticFields, ___Zero_0)); }
inline uintptr_t get_Zero_0() const { return ___Zero_0; }
inline uintptr_t* get_address_of_Zero_0() { return &___Zero_0; }
inline void set_Zero_0(uintptr_t value)
{
___Zero_0 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // UINTPTR_T_H
#ifndef DATA_T2225474377_H
#define DATA_T2225474377_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Globalization.TextInfo/Data
struct Data_t2225474377
{
public:
// System.Int32 System.Globalization.TextInfo/Data::ansi
int32_t ___ansi_0;
// System.Int32 System.Globalization.TextInfo/Data::ebcdic
int32_t ___ebcdic_1;
// System.Int32 System.Globalization.TextInfo/Data::mac
int32_t ___mac_2;
// System.Int32 System.Globalization.TextInfo/Data::oem
int32_t ___oem_3;
// System.Byte System.Globalization.TextInfo/Data::list_sep
uint8_t ___list_sep_4;
public:
inline static int32_t get_offset_of_ansi_0() { return static_cast<int32_t>(offsetof(Data_t2225474377, ___ansi_0)); }
inline int32_t get_ansi_0() const { return ___ansi_0; }
inline int32_t* get_address_of_ansi_0() { return &___ansi_0; }
inline void set_ansi_0(int32_t value)
{
___ansi_0 = value;
}
inline static int32_t get_offset_of_ebcdic_1() { return static_cast<int32_t>(offsetof(Data_t2225474377, ___ebcdic_1)); }
inline int32_t get_ebcdic_1() const { return ___ebcdic_1; }
inline int32_t* get_address_of_ebcdic_1() { return &___ebcdic_1; }
inline void set_ebcdic_1(int32_t value)
{
___ebcdic_1 = value;
}
inline static int32_t get_offset_of_mac_2() { return static_cast<int32_t>(offsetof(Data_t2225474377, ___mac_2)); }
inline int32_t get_mac_2() const { return ___mac_2; }
inline int32_t* get_address_of_mac_2() { return &___mac_2; }
inline void set_mac_2(int32_t value)
{
___mac_2 = value;
}
inline static int32_t get_offset_of_oem_3() { return static_cast<int32_t>(offsetof(Data_t2225474377, ___oem_3)); }
inline int32_t get_oem_3() const { return ___oem_3; }
inline int32_t* get_address_of_oem_3() { return &___oem_3; }
inline void set_oem_3(int32_t value)
{
___oem_3 = value;
}
inline static int32_t get_offset_of_list_sep_4() { return static_cast<int32_t>(offsetof(Data_t2225474377, ___list_sep_4)); }
inline uint8_t get_list_sep_4() const { return ___list_sep_4; }
inline uint8_t* get_address_of_list_sep_4() { return &___list_sep_4; }
inline void set_list_sep_4(uint8_t value)
{
___list_sep_4 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // DATA_T2225474377_H
#ifndef STREAMREADER_T4009935899_H
#define STREAMREADER_T4009935899_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.IO.StreamReader
struct StreamReader_t4009935899 : public TextReader_t283511965
{
public:
// System.Byte[] System.IO.StreamReader::input_buffer
ByteU5BU5D_t4116647657* ___input_buffer_1;
// System.Char[] System.IO.StreamReader::decoded_buffer
CharU5BU5D_t3528271667* ___decoded_buffer_2;
// System.Int32 System.IO.StreamReader::decoded_count
int32_t ___decoded_count_3;
// System.Int32 System.IO.StreamReader::pos
int32_t ___pos_4;
// System.Int32 System.IO.StreamReader::buffer_size
int32_t ___buffer_size_5;
// System.Int32 System.IO.StreamReader::do_checks
int32_t ___do_checks_6;
// System.Text.Encoding System.IO.StreamReader::encoding
Encoding_t1523322056 * ___encoding_7;
// System.Text.Decoder System.IO.StreamReader::decoder
Decoder_t2204182725 * ___decoder_8;
// System.IO.Stream System.IO.StreamReader::base_stream
Stream_t1273022909 * ___base_stream_9;
// System.Boolean System.IO.StreamReader::mayBlock
bool ___mayBlock_10;
// System.Text.StringBuilder System.IO.StreamReader::line_builder
StringBuilder_t * ___line_builder_11;
// System.Boolean System.IO.StreamReader::foundCR
bool ___foundCR_13;
public:
inline static int32_t get_offset_of_input_buffer_1() { return static_cast<int32_t>(offsetof(StreamReader_t4009935899, ___input_buffer_1)); }
inline ByteU5BU5D_t4116647657* get_input_buffer_1() const { return ___input_buffer_1; }
inline ByteU5BU5D_t4116647657** get_address_of_input_buffer_1() { return &___input_buffer_1; }
inline void set_input_buffer_1(ByteU5BU5D_t4116647657* value)
{
___input_buffer_1 = value;
Il2CppCodeGenWriteBarrier((&___input_buffer_1), value);
}
inline static int32_t get_offset_of_decoded_buffer_2() { return static_cast<int32_t>(offsetof(StreamReader_t4009935899, ___decoded_buffer_2)); }
inline CharU5BU5D_t3528271667* get_decoded_buffer_2() const { return ___decoded_buffer_2; }
inline CharU5BU5D_t3528271667** get_address_of_decoded_buffer_2() { return &___decoded_buffer_2; }
inline void set_decoded_buffer_2(CharU5BU5D_t3528271667* value)
{
___decoded_buffer_2 = value;
Il2CppCodeGenWriteBarrier((&___decoded_buffer_2), value);
}
inline static int32_t get_offset_of_decoded_count_3() { return static_cast<int32_t>(offsetof(StreamReader_t4009935899, ___decoded_count_3)); }
inline int32_t get_decoded_count_3() const { return ___decoded_count_3; }
inline int32_t* get_address_of_decoded_count_3() { return &___decoded_count_3; }
inline void set_decoded_count_3(int32_t value)
{
___decoded_count_3 = value;
}
inline static int32_t get_offset_of_pos_4() { return static_cast<int32_t>(offsetof(StreamReader_t4009935899, ___pos_4)); }
inline int32_t get_pos_4() const { return ___pos_4; }
inline int32_t* get_address_of_pos_4() { return &___pos_4; }
inline void set_pos_4(int32_t value)
{
___pos_4 = value;
}
inline static int32_t get_offset_of_buffer_size_5() { return static_cast<int32_t>(offsetof(StreamReader_t4009935899, ___buffer_size_5)); }
inline int32_t get_buffer_size_5() const { return ___buffer_size_5; }
inline int32_t* get_address_of_buffer_size_5() { return &___buffer_size_5; }
inline void set_buffer_size_5(int32_t value)
{
___buffer_size_5 = value;
}
inline static int32_t get_offset_of_do_checks_6() { return static_cast<int32_t>(offsetof(StreamReader_t4009935899, ___do_checks_6)); }
inline int32_t get_do_checks_6() const { return ___do_checks_6; }
inline int32_t* get_address_of_do_checks_6() { return &___do_checks_6; }
inline void set_do_checks_6(int32_t value)
{
___do_checks_6 = value;
}
inline static int32_t get_offset_of_encoding_7() { return static_cast<int32_t>(offsetof(StreamReader_t4009935899, ___encoding_7)); }
inline Encoding_t1523322056 * get_encoding_7() const { return ___encoding_7; }
inline Encoding_t1523322056 ** get_address_of_encoding_7() { return &___encoding_7; }
inline void set_encoding_7(Encoding_t1523322056 * value)
{
___encoding_7 = value;
Il2CppCodeGenWriteBarrier((&___encoding_7), value);
}
inline static int32_t get_offset_of_decoder_8() { return static_cast<int32_t>(offsetof(StreamReader_t4009935899, ___decoder_8)); }
inline Decoder_t2204182725 * get_decoder_8() const { return ___decoder_8; }
inline Decoder_t2204182725 ** get_address_of_decoder_8() { return &___decoder_8; }
inline void set_decoder_8(Decoder_t2204182725 * value)
{
___decoder_8 = value;
Il2CppCodeGenWriteBarrier((&___decoder_8), value);
}
inline static int32_t get_offset_of_base_stream_9() { return static_cast<int32_t>(offsetof(StreamReader_t4009935899, ___base_stream_9)); }
inline Stream_t1273022909 * get_base_stream_9() const { return ___base_stream_9; }
inline Stream_t1273022909 ** get_address_of_base_stream_9() { return &___base_stream_9; }
inline void set_base_stream_9(Stream_t1273022909 * value)
{
___base_stream_9 = value;
Il2CppCodeGenWriteBarrier((&___base_stream_9), value);
}
inline static int32_t get_offset_of_mayBlock_10() { return static_cast<int32_t>(offsetof(StreamReader_t4009935899, ___mayBlock_10)); }
inline bool get_mayBlock_10() const { return ___mayBlock_10; }
inline bool* get_address_of_mayBlock_10() { return &___mayBlock_10; }
inline void set_mayBlock_10(bool value)
{
___mayBlock_10 = value;
}
inline static int32_t get_offset_of_line_builder_11() { return static_cast<int32_t>(offsetof(StreamReader_t4009935899, ___line_builder_11)); }
inline StringBuilder_t * get_line_builder_11() const { return ___line_builder_11; }
inline StringBuilder_t ** get_address_of_line_builder_11() { return &___line_builder_11; }
inline void set_line_builder_11(StringBuilder_t * value)
{
___line_builder_11 = value;
Il2CppCodeGenWriteBarrier((&___line_builder_11), value);
}
inline static int32_t get_offset_of_foundCR_13() { return static_cast<int32_t>(offsetof(StreamReader_t4009935899, ___foundCR_13)); }
inline bool get_foundCR_13() const { return ___foundCR_13; }
inline bool* get_address_of_foundCR_13() { return &___foundCR_13; }
inline void set_foundCR_13(bool value)
{
___foundCR_13 = value;
}
};
struct StreamReader_t4009935899_StaticFields
{
public:
// System.IO.StreamReader System.IO.StreamReader::Null
StreamReader_t4009935899 * ___Null_12;
public:
inline static int32_t get_offset_of_Null_12() { return static_cast<int32_t>(offsetof(StreamReader_t4009935899_StaticFields, ___Null_12)); }
inline StreamReader_t4009935899 * get_Null_12() const { return ___Null_12; }
inline StreamReader_t4009935899 ** get_address_of_Null_12() { return &___Null_12; }
inline void set_Null_12(StreamReader_t4009935899 * value)
{
___Null_12 = value;
Il2CppCodeGenWriteBarrier((&___Null_12), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // STREAMREADER_T4009935899_H
#ifndef ENUM_T4135868527_H
#define ENUM_T4135868527_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Enum
struct Enum_t4135868527 : public ValueType_t3640485471
{
public:
public:
};
struct Enum_t4135868527_StaticFields
{
public:
// System.Char[] System.Enum::split_char
CharU5BU5D_t3528271667* ___split_char_0;
public:
inline static int32_t get_offset_of_split_char_0() { return static_cast<int32_t>(offsetof(Enum_t4135868527_StaticFields, ___split_char_0)); }
inline CharU5BU5D_t3528271667* get_split_char_0() const { return ___split_char_0; }
inline CharU5BU5D_t3528271667** get_address_of_split_char_0() { return &___split_char_0; }
inline void set_split_char_0(CharU5BU5D_t3528271667* value)
{
___split_char_0 = value;
Il2CppCodeGenWriteBarrier((&___split_char_0), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// Native definition for P/Invoke marshalling of System.Enum
struct Enum_t4135868527_marshaled_pinvoke
{
};
// Native definition for COM marshalling of System.Enum
struct Enum_t4135868527_marshaled_com
{
};
#endif // ENUM_T4135868527_H
#ifndef U24ARRAYTYPEU24128_T4289081659_H
#define U24ARRAYTYPEU24128_T4289081659_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// <PrivateImplementationDetails>/$ArrayType$128
struct U24ArrayTypeU24128_t4289081659
{
public:
union
{
struct
{
union
{
};
};
uint8_t U24ArrayTypeU24128_t4289081659__padding[128];
};
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // U24ARRAYTYPEU24128_T4289081659_H
#ifndef U24ARRAYTYPEU2452_T520724128_H
#define U24ARRAYTYPEU2452_T520724128_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// <PrivateImplementationDetails>/$ArrayType$52
struct U24ArrayTypeU2452_t520724128
{
public:
union
{
struct
{
union
{
};
};
uint8_t U24ArrayTypeU2452_t520724128__padding[52];
};
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // U24ARRAYTYPEU2452_T520724128_H
#ifndef TIMESPAN_T881159249_H
#define TIMESPAN_T881159249_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.TimeSpan
struct TimeSpan_t881159249
{
public:
// System.Int64 System.TimeSpan::_ticks
int64_t ____ticks_3;
public:
inline static int32_t get_offset_of__ticks_3() { return static_cast<int32_t>(offsetof(TimeSpan_t881159249, ____ticks_3)); }
inline int64_t get__ticks_3() const { return ____ticks_3; }
inline int64_t* get_address_of__ticks_3() { return &____ticks_3; }
inline void set__ticks_3(int64_t value)
{
____ticks_3 = value;
}
};
struct TimeSpan_t881159249_StaticFields
{
public:
// System.TimeSpan System.TimeSpan::MaxValue
TimeSpan_t881159249 ___MaxValue_0;
// System.TimeSpan System.TimeSpan::MinValue
TimeSpan_t881159249 ___MinValue_1;
// System.TimeSpan System.TimeSpan::Zero
TimeSpan_t881159249 ___Zero_2;
public:
inline static int32_t get_offset_of_MaxValue_0() { return static_cast<int32_t>(offsetof(TimeSpan_t881159249_StaticFields, ___MaxValue_0)); }
inline TimeSpan_t881159249 get_MaxValue_0() const { return ___MaxValue_0; }
inline TimeSpan_t881159249 * get_address_of_MaxValue_0() { return &___MaxValue_0; }
inline void set_MaxValue_0(TimeSpan_t881159249 value)
{
___MaxValue_0 = value;
}
inline static int32_t get_offset_of_MinValue_1() { return static_cast<int32_t>(offsetof(TimeSpan_t881159249_StaticFields, ___MinValue_1)); }
inline TimeSpan_t881159249 get_MinValue_1() const { return ___MinValue_1; }
inline TimeSpan_t881159249 * get_address_of_MinValue_1() { return &___MinValue_1; }
inline void set_MinValue_1(TimeSpan_t881159249 value)
{
___MinValue_1 = value;
}
inline static int32_t get_offset_of_Zero_2() { return static_cast<int32_t>(offsetof(TimeSpan_t881159249_StaticFields, ___Zero_2)); }
inline TimeSpan_t881159249 get_Zero_2() const { return ___Zero_2; }
inline TimeSpan_t881159249 * get_address_of_Zero_2() { return &___Zero_2; }
inline void set_Zero_2(TimeSpan_t881159249 value)
{
___Zero_2 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // TIMESPAN_T881159249_H
#ifndef U24ARRAYTYPEU248_T3244137463_H
#define U24ARRAYTYPEU248_T3244137463_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// <PrivateImplementationDetails>/$ArrayType$8
struct U24ArrayTypeU248_t3244137463
{
public:
union
{
struct
{
union
{
};
};
uint8_t U24ArrayTypeU248_t3244137463__padding[8];
};
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // U24ARRAYTYPEU248_T3244137463_H
#ifndef BYTE_T1134296376_H
#define BYTE_T1134296376_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Byte
struct Byte_t1134296376
{
public:
// System.Byte System.Byte::m_value
uint8_t ___m_value_2;
public:
inline static int32_t get_offset_of_m_value_2() { return static_cast<int32_t>(offsetof(Byte_t1134296376, ___m_value_2)); }
inline uint8_t get_m_value_2() const { return ___m_value_2; }
inline uint8_t* get_address_of_m_value_2() { return &___m_value_2; }
inline void set_m_value_2(uint8_t value)
{
___m_value_2 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // BYTE_T1134296376_H
#ifndef ASCIIENCODING_T3446586211_H
#define ASCIIENCODING_T3446586211_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Text.ASCIIEncoding
struct ASCIIEncoding_t3446586211 : public Encoding_t1523322056
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // ASCIIENCODING_T3446586211_H
#ifndef VOID_T1185182177_H
#define VOID_T1185182177_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void
struct Void_t1185182177
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // VOID_T1185182177_H
#ifndef CONTEXTBOUNDOBJECT_T1394786030_H
#define CONTEXTBOUNDOBJECT_T1394786030_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.ContextBoundObject
struct ContextBoundObject_t1394786030 : public MarshalByRefObject_t2760389100
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // CONTEXTBOUNDOBJECT_T1394786030_H
#ifndef U24ARRAYTYPEU2464_T499776625_H
#define U24ARRAYTYPEU2464_T499776625_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// <PrivateImplementationDetails>/$ArrayType$64
struct U24ArrayTypeU2464_t499776625
{
public:
union
{
struct
{
union
{
};
};
uint8_t U24ArrayTypeU2464_t499776625__padding[64];
};
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // U24ARRAYTYPEU2464_T499776625_H
#ifndef STREAMWRITER_T1266378904_H
#define STREAMWRITER_T1266378904_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.IO.StreamWriter
struct StreamWriter_t1266378904 : public TextWriter_t3478189236
{
public:
// System.Text.Encoding System.IO.StreamWriter::internalEncoding
Encoding_t1523322056 * ___internalEncoding_2;
// System.IO.Stream System.IO.StreamWriter::internalStream
Stream_t1273022909 * ___internalStream_3;
// System.Boolean System.IO.StreamWriter::iflush
bool ___iflush_4;
// System.Byte[] System.IO.StreamWriter::byte_buf
ByteU5BU5D_t4116647657* ___byte_buf_5;
// System.Int32 System.IO.StreamWriter::byte_pos
int32_t ___byte_pos_6;
// System.Char[] System.IO.StreamWriter::decode_buf
CharU5BU5D_t3528271667* ___decode_buf_7;
// System.Int32 System.IO.StreamWriter::decode_pos
int32_t ___decode_pos_8;
// System.Boolean System.IO.StreamWriter::DisposedAlready
bool ___DisposedAlready_9;
// System.Boolean System.IO.StreamWriter::preamble_done
bool ___preamble_done_10;
public:
inline static int32_t get_offset_of_internalEncoding_2() { return static_cast<int32_t>(offsetof(StreamWriter_t1266378904, ___internalEncoding_2)); }
inline Encoding_t1523322056 * get_internalEncoding_2() const { return ___internalEncoding_2; }
inline Encoding_t1523322056 ** get_address_of_internalEncoding_2() { return &___internalEncoding_2; }
inline void set_internalEncoding_2(Encoding_t1523322056 * value)
{
___internalEncoding_2 = value;
Il2CppCodeGenWriteBarrier((&___internalEncoding_2), value);
}
inline static int32_t get_offset_of_internalStream_3() { return static_cast<int32_t>(offsetof(StreamWriter_t1266378904, ___internalStream_3)); }
inline Stream_t1273022909 * get_internalStream_3() const { return ___internalStream_3; }
inline Stream_t1273022909 ** get_address_of_internalStream_3() { return &___internalStream_3; }
inline void set_internalStream_3(Stream_t1273022909 * value)
{
___internalStream_3 = value;
Il2CppCodeGenWriteBarrier((&___internalStream_3), value);
}
inline static int32_t get_offset_of_iflush_4() { return static_cast<int32_t>(offsetof(StreamWriter_t1266378904, ___iflush_4)); }
inline bool get_iflush_4() const { return ___iflush_4; }
inline bool* get_address_of_iflush_4() { return &___iflush_4; }
inline void set_iflush_4(bool value)
{
___iflush_4 = value;
}
inline static int32_t get_offset_of_byte_buf_5() { return static_cast<int32_t>(offsetof(StreamWriter_t1266378904, ___byte_buf_5)); }
inline ByteU5BU5D_t4116647657* get_byte_buf_5() const { return ___byte_buf_5; }
inline ByteU5BU5D_t4116647657** get_address_of_byte_buf_5() { return &___byte_buf_5; }
inline void set_byte_buf_5(ByteU5BU5D_t4116647657* value)
{
___byte_buf_5 = value;
Il2CppCodeGenWriteBarrier((&___byte_buf_5), value);
}
inline static int32_t get_offset_of_byte_pos_6() { return static_cast<int32_t>(offsetof(StreamWriter_t1266378904, ___byte_pos_6)); }
inline int32_t get_byte_pos_6() const { return ___byte_pos_6; }
inline int32_t* get_address_of_byte_pos_6() { return &___byte_pos_6; }
inline void set_byte_pos_6(int32_t value)
{
___byte_pos_6 = value;
}
inline static int32_t get_offset_of_decode_buf_7() { return static_cast<int32_t>(offsetof(StreamWriter_t1266378904, ___decode_buf_7)); }
inline CharU5BU5D_t3528271667* get_decode_buf_7() const { return ___decode_buf_7; }
inline CharU5BU5D_t3528271667** get_address_of_decode_buf_7() { return &___decode_buf_7; }
inline void set_decode_buf_7(CharU5BU5D_t3528271667* value)
{
___decode_buf_7 = value;
Il2CppCodeGenWriteBarrier((&___decode_buf_7), value);
}
inline static int32_t get_offset_of_decode_pos_8() { return static_cast<int32_t>(offsetof(StreamWriter_t1266378904, ___decode_pos_8)); }
inline int32_t get_decode_pos_8() const { return ___decode_pos_8; }
inline int32_t* get_address_of_decode_pos_8() { return &___decode_pos_8; }
inline void set_decode_pos_8(int32_t value)
{
___decode_pos_8 = value;
}
inline static int32_t get_offset_of_DisposedAlready_9() { return static_cast<int32_t>(offsetof(StreamWriter_t1266378904, ___DisposedAlready_9)); }
inline bool get_DisposedAlready_9() const { return ___DisposedAlready_9; }
inline bool* get_address_of_DisposedAlready_9() { return &___DisposedAlready_9; }
inline void set_DisposedAlready_9(bool value)
{
___DisposedAlready_9 = value;
}
inline static int32_t get_offset_of_preamble_done_10() { return static_cast<int32_t>(offsetof(StreamWriter_t1266378904, ___preamble_done_10)); }
inline bool get_preamble_done_10() const { return ___preamble_done_10; }
inline bool* get_address_of_preamble_done_10() { return &___preamble_done_10; }
inline void set_preamble_done_10(bool value)
{
___preamble_done_10 = value;
}
};
struct StreamWriter_t1266378904_StaticFields
{
public:
// System.IO.StreamWriter System.IO.StreamWriter::Null
StreamWriter_t1266378904 * ___Null_11;
public:
inline static int32_t get_offset_of_Null_11() { return static_cast<int32_t>(offsetof(StreamWriter_t1266378904_StaticFields, ___Null_11)); }
inline StreamWriter_t1266378904 * get_Null_11() const { return ___Null_11; }
inline StreamWriter_t1266378904 ** get_address_of_Null_11() { return &___Null_11; }
inline void set_Null_11(StreamWriter_t1266378904 * value)
{
___Null_11 = value;
Il2CppCodeGenWriteBarrier((&___Null_11), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // STREAMWRITER_T1266378904_H
#ifndef NULLSTREAM_T1684893697_H
#define NULLSTREAM_T1684893697_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.IO.NullStream
struct NullStream_t1684893697 : public Stream_t1273022909
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // NULLSTREAM_T1684893697_H
#ifndef U24ARRAYTYPEU2432_T3652892010_H
#define U24ARRAYTYPEU2432_T3652892010_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// <PrivateImplementationDetails>/$ArrayType$32
struct U24ArrayTypeU2432_t3652892010
{
public:
union
{
struct
{
union
{
};
};
uint8_t U24ArrayTypeU2432_t3652892010__padding[32];
};
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // U24ARRAYTYPEU2432_T3652892010_H
#ifndef U24ARRAYTYPEU2448_T1337922363_H
#define U24ARRAYTYPEU2448_T1337922363_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// <PrivateImplementationDetails>/$ArrayType$48
struct U24ArrayTypeU2448_t1337922363
{
public:
union
{
struct
{
union
{
};
};
uint8_t U24ArrayTypeU2448_t1337922363__padding[48];
};
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // U24ARRAYTYPEU2448_T1337922363_H
#ifndef U24ARRAYTYPEU2472_T1683523542_H
#define U24ARRAYTYPEU2472_T1683523542_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// <PrivateImplementationDetails>/$ArrayType$72
struct U24ArrayTypeU2472_t1683523542
{
public:
union
{
struct
{
union
{
};
};
uint8_t U24ArrayTypeU2472_t1683523542__padding[72];
};
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // U24ARRAYTYPEU2472_T1683523542_H
#ifndef U24ARRAYTYPEU2420_T1704471045_H
#define U24ARRAYTYPEU2420_T1704471045_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// <PrivateImplementationDetails>/$ArrayType$20
struct U24ArrayTypeU2420_t1704471045
{
public:
union
{
struct
{
union
{
};
};
uint8_t U24ArrayTypeU2420_t1704471045__padding[20];
};
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // U24ARRAYTYPEU2420_T1704471045_H
#ifndef U24ARRAYTYPEU2456_T1285398176_H
#define U24ARRAYTYPEU2456_T1285398176_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// <PrivateImplementationDetails>/$ArrayType$56
struct U24ArrayTypeU2456_t1285398176
{
public:
union
{
struct
{
union
{
};
};
uint8_t U24ArrayTypeU2456_t1285398176__padding[56];
};
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // U24ARRAYTYPEU2456_T1285398176_H
#ifndef U24ARRAYTYPEU2424_T2469145093_H
#define U24ARRAYTYPEU2424_T2469145093_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// <PrivateImplementationDetails>/$ArrayType$24
struct U24ArrayTypeU2424_t2469145093
{
public:
union
{
struct
{
union
{
};
};
uint8_t U24ArrayTypeU2424_t2469145093__padding[24];
};
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // U24ARRAYTYPEU2424_T2469145093_H
#ifndef U24ARRAYTYPEU243132_T2732071528_H
#define U24ARRAYTYPEU243132_T2732071528_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// <PrivateImplementationDetails>/$ArrayType$3132
struct U24ArrayTypeU243132_t2732071528
{
public:
union
{
struct
{
union
{
};
};
uint8_t U24ArrayTypeU243132_t2732071528__padding[3132];
};
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // U24ARRAYTYPEU243132_T2732071528_H
#ifndef SECURITYPARSER_T4124480077_H
#define SECURITYPARSER_T4124480077_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Mono.Xml.SecurityParser
struct SecurityParser_t4124480077 : public SmallXmlParser_t973787839
{
public:
// System.Security.SecurityElement Mono.Xml.SecurityParser::root
SecurityElement_t1046076091 * ___root_13;
// System.Security.SecurityElement Mono.Xml.SecurityParser::current
SecurityElement_t1046076091 * ___current_14;
// System.Collections.Stack Mono.Xml.SecurityParser::stack
Stack_t2329662280 * ___stack_15;
public:
inline static int32_t get_offset_of_root_13() { return static_cast<int32_t>(offsetof(SecurityParser_t4124480077, ___root_13)); }
inline SecurityElement_t1046076091 * get_root_13() const { return ___root_13; }
inline SecurityElement_t1046076091 ** get_address_of_root_13() { return &___root_13; }
inline void set_root_13(SecurityElement_t1046076091 * value)
{
___root_13 = value;
Il2CppCodeGenWriteBarrier((&___root_13), value);
}
inline static int32_t get_offset_of_current_14() { return static_cast<int32_t>(offsetof(SecurityParser_t4124480077, ___current_14)); }
inline SecurityElement_t1046076091 * get_current_14() const { return ___current_14; }
inline SecurityElement_t1046076091 ** get_address_of_current_14() { return &___current_14; }
inline void set_current_14(SecurityElement_t1046076091 * value)
{
___current_14 = value;
Il2CppCodeGenWriteBarrier((&___current_14), value);
}
inline static int32_t get_offset_of_stack_15() { return static_cast<int32_t>(offsetof(SecurityParser_t4124480077, ___stack_15)); }
inline Stack_t2329662280 * get_stack_15() const { return ___stack_15; }
inline Stack_t2329662280 ** get_address_of_stack_15() { return &___stack_15; }
inline void set_stack_15(Stack_t2329662280 * value)
{
___stack_15 = value;
Il2CppCodeGenWriteBarrier((&___stack_15), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // SECURITYPARSER_T4124480077_H
#ifndef DOUBLE_T594665363_H
#define DOUBLE_T594665363_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Double
struct Double_t594665363
{
public:
// System.Double System.Double::m_value
double ___m_value_13;
public:
inline static int32_t get_offset_of_m_value_13() { return static_cast<int32_t>(offsetof(Double_t594665363, ___m_value_13)); }
inline double get_m_value_13() const { return ___m_value_13; }
inline double* get_address_of_m_value_13() { return &___m_value_13; }
inline void set_m_value_13(double value)
{
___m_value_13 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // DOUBLE_T594665363_H
#ifndef RESOLVEEVENTARGS_T1779456501_H
#define RESOLVEEVENTARGS_T1779456501_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.ResolveEventArgs
struct ResolveEventArgs_t1779456501 : public EventArgs_t3591816995
{
public:
// System.String System.ResolveEventArgs::m_Name
String_t* ___m_Name_1;
public:
inline static int32_t get_offset_of_m_Name_1() { return static_cast<int32_t>(offsetof(ResolveEventArgs_t1779456501, ___m_Name_1)); }
inline String_t* get_m_Name_1() const { return ___m_Name_1; }
inline String_t** get_address_of_m_Name_1() { return &___m_Name_1; }
inline void set_m_Name_1(String_t* value)
{
___m_Name_1 = value;
Il2CppCodeGenWriteBarrier((&___m_Name_1), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // RESOLVEEVENTARGS_T1779456501_H
#ifndef GUID_T_H
#define GUID_T_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Guid
struct Guid_t
{
public:
// System.Int32 System.Guid::_a
int32_t ____a_0;
// System.Int16 System.Guid::_b
int16_t ____b_1;
// System.Int16 System.Guid::_c
int16_t ____c_2;
// System.Byte System.Guid::_d
uint8_t ____d_3;
// System.Byte System.Guid::_e
uint8_t ____e_4;
// System.Byte System.Guid::_f
uint8_t ____f_5;
// System.Byte System.Guid::_g
uint8_t ____g_6;
// System.Byte System.Guid::_h
uint8_t ____h_7;
// System.Byte System.Guid::_i
uint8_t ____i_8;
// System.Byte System.Guid::_j
uint8_t ____j_9;
// System.Byte System.Guid::_k
uint8_t ____k_10;
public:
inline static int32_t get_offset_of__a_0() { return static_cast<int32_t>(offsetof(Guid_t, ____a_0)); }
inline int32_t get__a_0() const { return ____a_0; }
inline int32_t* get_address_of__a_0() { return &____a_0; }
inline void set__a_0(int32_t value)
{
____a_0 = value;
}
inline static int32_t get_offset_of__b_1() { return static_cast<int32_t>(offsetof(Guid_t, ____b_1)); }
inline int16_t get__b_1() const { return ____b_1; }
inline int16_t* get_address_of__b_1() { return &____b_1; }
inline void set__b_1(int16_t value)
{
____b_1 = value;
}
inline static int32_t get_offset_of__c_2() { return static_cast<int32_t>(offsetof(Guid_t, ____c_2)); }
inline int16_t get__c_2() const { return ____c_2; }
inline int16_t* get_address_of__c_2() { return &____c_2; }
inline void set__c_2(int16_t value)
{
____c_2 = value;
}
inline static int32_t get_offset_of__d_3() { return static_cast<int32_t>(offsetof(Guid_t, ____d_3)); }
inline uint8_t get__d_3() const { return ____d_3; }
inline uint8_t* get_address_of__d_3() { return &____d_3; }
inline void set__d_3(uint8_t value)
{
____d_3 = value;
}
inline static int32_t get_offset_of__e_4() { return static_cast<int32_t>(offsetof(Guid_t, ____e_4)); }
inline uint8_t get__e_4() const { return ____e_4; }
inline uint8_t* get_address_of__e_4() { return &____e_4; }
inline void set__e_4(uint8_t value)
{
____e_4 = value;
}
inline static int32_t get_offset_of__f_5() { return static_cast<int32_t>(offsetof(Guid_t, ____f_5)); }
inline uint8_t get__f_5() const { return ____f_5; }
inline uint8_t* get_address_of__f_5() { return &____f_5; }
inline void set__f_5(uint8_t value)
{
____f_5 = value;
}
inline static int32_t get_offset_of__g_6() { return static_cast<int32_t>(offsetof(Guid_t, ____g_6)); }
inline uint8_t get__g_6() const { return ____g_6; }
inline uint8_t* get_address_of__g_6() { return &____g_6; }
inline void set__g_6(uint8_t value)
{
____g_6 = value;
}
inline static int32_t get_offset_of__h_7() { return static_cast<int32_t>(offsetof(Guid_t, ____h_7)); }
inline uint8_t get__h_7() const { return ____h_7; }
inline uint8_t* get_address_of__h_7() { return &____h_7; }
inline void set__h_7(uint8_t value)
{
____h_7 = value;
}
inline static int32_t get_offset_of__i_8() { return static_cast<int32_t>(offsetof(Guid_t, ____i_8)); }
inline uint8_t get__i_8() const { return ____i_8; }
inline uint8_t* get_address_of__i_8() { return &____i_8; }
inline void set__i_8(uint8_t value)
{
____i_8 = value;
}
inline static int32_t get_offset_of__j_9() { return static_cast<int32_t>(offsetof(Guid_t, ____j_9)); }
inline uint8_t get__j_9() const { return ____j_9; }
inline uint8_t* get_address_of__j_9() { return &____j_9; }
inline void set__j_9(uint8_t value)
{
____j_9 = value;
}
inline static int32_t get_offset_of__k_10() { return static_cast<int32_t>(offsetof(Guid_t, ____k_10)); }
inline uint8_t get__k_10() const { return ____k_10; }
inline uint8_t* get_address_of__k_10() { return &____k_10; }
inline void set__k_10(uint8_t value)
{
____k_10 = value;
}
};
struct Guid_t_StaticFields
{
public:
// System.Guid System.Guid::Empty
Guid_t ___Empty_11;
// System.Object System.Guid::_rngAccess
RuntimeObject * ____rngAccess_12;
// System.Security.Cryptography.RandomNumberGenerator System.Guid::_rng
RandomNumberGenerator_t386037858 * ____rng_13;
public:
inline static int32_t get_offset_of_Empty_11() { return static_cast<int32_t>(offsetof(Guid_t_StaticFields, ___Empty_11)); }
inline Guid_t get_Empty_11() const { return ___Empty_11; }
inline Guid_t * get_address_of_Empty_11() { return &___Empty_11; }
inline void set_Empty_11(Guid_t value)
{
___Empty_11 = value;
}
inline static int32_t get_offset_of__rngAccess_12() { return static_cast<int32_t>(offsetof(Guid_t_StaticFields, ____rngAccess_12)); }
inline RuntimeObject * get__rngAccess_12() const { return ____rngAccess_12; }
inline RuntimeObject ** get_address_of__rngAccess_12() { return &____rngAccess_12; }
inline void set__rngAccess_12(RuntimeObject * value)
{
____rngAccess_12 = value;
Il2CppCodeGenWriteBarrier((&____rngAccess_12), value);
}
inline static int32_t get_offset_of__rng_13() { return static_cast<int32_t>(offsetof(Guid_t_StaticFields, ____rng_13)); }
inline RandomNumberGenerator_t386037858 * get__rng_13() const { return ____rng_13; }
inline RandomNumberGenerator_t386037858 ** get_address_of__rng_13() { return &____rng_13; }
inline void set__rng_13(RandomNumberGenerator_t386037858 * value)
{
____rng_13 = value;
Il2CppCodeGenWriteBarrier((&____rng_13), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // GUID_T_H
#ifndef ASSEMBLYLOADEVENTARGS_T2792010465_H
#define ASSEMBLYLOADEVENTARGS_T2792010465_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.AssemblyLoadEventArgs
struct AssemblyLoadEventArgs_t2792010465 : public EventArgs_t3591816995
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // ASSEMBLYLOADEVENTARGS_T2792010465_H
#ifndef UINT32_T2560061978_H
#define UINT32_T2560061978_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.UInt32
struct UInt32_t2560061978
{
public:
// System.UInt32 System.UInt32::m_value
uint32_t ___m_value_0;
public:
inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(UInt32_t2560061978, ___m_value_0)); }
inline uint32_t get_m_value_0() const { return ___m_value_0; }
inline uint32_t* get_address_of_m_value_0() { return &___m_value_0; }
inline void set_m_value_0(uint32_t value)
{
___m_value_0 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // UINT32_T2560061978_H
#ifndef __IL2CPPCOMDELEGATE_T1102178620_H
#define __IL2CPPCOMDELEGATE_T1102178620_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.__Il2CppComDelegate
struct __Il2CppComDelegate_t1102178620 : public Il2CppComObject
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // __IL2CPPCOMDELEGATE_T1102178620_H
#ifndef INTPTR_T_H
#define INTPTR_T_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.IntPtr
struct IntPtr_t
{
public:
// System.Void* System.IntPtr::m_value
void* ___m_value_0;
public:
inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(IntPtr_t, ___m_value_0)); }
inline void* get_m_value_0() const { return ___m_value_0; }
inline void** get_address_of_m_value_0() { return &___m_value_0; }
inline void set_m_value_0(void* value)
{
___m_value_0 = value;
}
};
struct IntPtr_t_StaticFields
{
public:
// System.IntPtr System.IntPtr::Zero
intptr_t ___Zero_1;
public:
inline static int32_t get_offset_of_Zero_1() { return static_cast<int32_t>(offsetof(IntPtr_t_StaticFields, ___Zero_1)); }
inline intptr_t get_Zero_1() const { return ___Zero_1; }
inline intptr_t* get_address_of_Zero_1() { return &___Zero_1; }
inline void set_Zero_1(intptr_t value)
{
___Zero_1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // INTPTR_T_H
#ifndef APPDOMAINMANAGER_T1420869192_H
#define APPDOMAINMANAGER_T1420869192_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.AppDomainManager
struct AppDomainManager_t1420869192 : public MarshalByRefObject_t2760389100
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // APPDOMAINMANAGER_T1420869192_H
#ifndef APPLICATIONEXCEPTION_T2339761290_H
#define APPLICATIONEXCEPTION_T2339761290_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.ApplicationException
struct ApplicationException_t2339761290 : public Exception_t
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // APPLICATIONEXCEPTION_T2339761290_H
#ifndef SYSTEMEXCEPTION_T176217640_H
#define SYSTEMEXCEPTION_T176217640_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.SystemException
struct SystemException_t176217640 : public Exception_t
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // SYSTEMEXCEPTION_T176217640_H
#ifndef X509CERTIFICATECOLLECTION_T1542168549_H
#define X509CERTIFICATECOLLECTION_T1542168549_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Mono.Security.X509.X509CertificateCollection
struct X509CertificateCollection_t1542168549 : public CollectionBase_t2727926298
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // X509CERTIFICATECOLLECTION_T1542168549_H
#ifndef INT64_T3736567304_H
#define INT64_T3736567304_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Int64
struct Int64_t3736567304
{
public:
// System.Int64 System.Int64::m_value
int64_t ___m_value_0;
public:
inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Int64_t3736567304, ___m_value_0)); }
inline int64_t get_m_value_0() const { return ___m_value_0; }
inline int64_t* get_address_of_m_value_0() { return &___m_value_0; }
inline void set_m_value_0(int64_t value)
{
___m_value_0 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // INT64_T3736567304_H
#ifndef METHODBASE_T_H
#define METHODBASE_T_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Reflection.MethodBase
struct MethodBase_t : public MemberInfo_t
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // METHODBASE_T_H
#ifndef DSAPARAMETERS_T1885824122_H
#define DSAPARAMETERS_T1885824122_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Security.Cryptography.DSAParameters
struct DSAParameters_t1885824122
{
public:
// System.Int32 System.Security.Cryptography.DSAParameters::Counter
int32_t ___Counter_0;
// System.Byte[] System.Security.Cryptography.DSAParameters::G
ByteU5BU5D_t4116647657* ___G_1;
// System.Byte[] System.Security.Cryptography.DSAParameters::J
ByteU5BU5D_t4116647657* ___J_2;
// System.Byte[] System.Security.Cryptography.DSAParameters::P
ByteU5BU5D_t4116647657* ___P_3;
// System.Byte[] System.Security.Cryptography.DSAParameters::Q
ByteU5BU5D_t4116647657* ___Q_4;
// System.Byte[] System.Security.Cryptography.DSAParameters::Seed
ByteU5BU5D_t4116647657* ___Seed_5;
// System.Byte[] System.Security.Cryptography.DSAParameters::X
ByteU5BU5D_t4116647657* ___X_6;
// System.Byte[] System.Security.Cryptography.DSAParameters::Y
ByteU5BU5D_t4116647657* ___Y_7;
public:
inline static int32_t get_offset_of_Counter_0() { return static_cast<int32_t>(offsetof(DSAParameters_t1885824122, ___Counter_0)); }
inline int32_t get_Counter_0() const { return ___Counter_0; }
inline int32_t* get_address_of_Counter_0() { return &___Counter_0; }
inline void set_Counter_0(int32_t value)
{
___Counter_0 = value;
}
inline static int32_t get_offset_of_G_1() { return static_cast<int32_t>(offsetof(DSAParameters_t1885824122, ___G_1)); }
inline ByteU5BU5D_t4116647657* get_G_1() const { return ___G_1; }
inline ByteU5BU5D_t4116647657** get_address_of_G_1() { return &___G_1; }
inline void set_G_1(ByteU5BU5D_t4116647657* value)
{
___G_1 = value;
Il2CppCodeGenWriteBarrier((&___G_1), value);
}
inline static int32_t get_offset_of_J_2() { return static_cast<int32_t>(offsetof(DSAParameters_t1885824122, ___J_2)); }
inline ByteU5BU5D_t4116647657* get_J_2() const { return ___J_2; }
inline ByteU5BU5D_t4116647657** get_address_of_J_2() { return &___J_2; }
inline void set_J_2(ByteU5BU5D_t4116647657* value)
{
___J_2 = value;
Il2CppCodeGenWriteBarrier((&___J_2), value);
}
inline static int32_t get_offset_of_P_3() { return static_cast<int32_t>(offsetof(DSAParameters_t1885824122, ___P_3)); }
inline ByteU5BU5D_t4116647657* get_P_3() const { return ___P_3; }
inline ByteU5BU5D_t4116647657** get_address_of_P_3() { return &___P_3; }
inline void set_P_3(ByteU5BU5D_t4116647657* value)
{
___P_3 = value;
Il2CppCodeGenWriteBarrier((&___P_3), value);
}
inline static int32_t get_offset_of_Q_4() { return static_cast<int32_t>(offsetof(DSAParameters_t1885824122, ___Q_4)); }
inline ByteU5BU5D_t4116647657* get_Q_4() const { return ___Q_4; }
inline ByteU5BU5D_t4116647657** get_address_of_Q_4() { return &___Q_4; }
inline void set_Q_4(ByteU5BU5D_t4116647657* value)
{
___Q_4 = value;
Il2CppCodeGenWriteBarrier((&___Q_4), value);
}
inline static int32_t get_offset_of_Seed_5() { return static_cast<int32_t>(offsetof(DSAParameters_t1885824122, ___Seed_5)); }
inline ByteU5BU5D_t4116647657* get_Seed_5() const { return ___Seed_5; }
inline ByteU5BU5D_t4116647657** get_address_of_Seed_5() { return &___Seed_5; }
inline void set_Seed_5(ByteU5BU5D_t4116647657* value)
{
___Seed_5 = value;
Il2CppCodeGenWriteBarrier((&___Seed_5), value);
}
inline static int32_t get_offset_of_X_6() { return static_cast<int32_t>(offsetof(DSAParameters_t1885824122, ___X_6)); }
inline ByteU5BU5D_t4116647657* get_X_6() const { return ___X_6; }
inline ByteU5BU5D_t4116647657** get_address_of_X_6() { return &___X_6; }
inline void set_X_6(ByteU5BU5D_t4116647657* value)
{
___X_6 = value;
Il2CppCodeGenWriteBarrier((&___X_6), value);
}
inline static int32_t get_offset_of_Y_7() { return static_cast<int32_t>(offsetof(DSAParameters_t1885824122, ___Y_7)); }
inline ByteU5BU5D_t4116647657* get_Y_7() const { return ___Y_7; }
inline ByteU5BU5D_t4116647657** get_address_of_Y_7() { return &___Y_7; }
inline void set_Y_7(ByteU5BU5D_t4116647657* value)
{
___Y_7 = value;
Il2CppCodeGenWriteBarrier((&___Y_7), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// Native definition for P/Invoke marshalling of System.Security.Cryptography.DSAParameters
struct DSAParameters_t1885824122_marshaled_pinvoke
{
int32_t ___Counter_0;
uint8_t* ___G_1;
uint8_t* ___J_2;
uint8_t* ___P_3;
uint8_t* ___Q_4;
uint8_t* ___Seed_5;
uint8_t* ___X_6;
uint8_t* ___Y_7;
};
// Native definition for COM marshalling of System.Security.Cryptography.DSAParameters
struct DSAParameters_t1885824122_marshaled_com
{
int32_t ___Counter_0;
uint8_t* ___G_1;
uint8_t* ___J_2;
uint8_t* ___P_3;
uint8_t* ___Q_4;
uint8_t* ___Seed_5;
uint8_t* ___X_6;
uint8_t* ___Y_7;
};
#endif // DSAPARAMETERS_T1885824122_H
#ifndef DSA_T2386879874_H
#define DSA_T2386879874_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Security.Cryptography.DSA
struct DSA_t2386879874 : public AsymmetricAlgorithm_t932037087
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // DSA_T2386879874_H
#ifndef STRINGREADER_T3465604688_H
#define STRINGREADER_T3465604688_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.IO.StringReader
struct StringReader_t3465604688 : public TextReader_t283511965
{
public:
// System.String System.IO.StringReader::source
String_t* ___source_1;
// System.Int32 System.IO.StringReader::nextChar
int32_t ___nextChar_2;
// System.Int32 System.IO.StringReader::sourceLength
int32_t ___sourceLength_3;
public:
inline static int32_t get_offset_of_source_1() { return static_cast<int32_t>(offsetof(StringReader_t3465604688, ___source_1)); }
inline String_t* get_source_1() const { return ___source_1; }
inline String_t** get_address_of_source_1() { return &___source_1; }
inline void set_source_1(String_t* value)
{
___source_1 = value;
Il2CppCodeGenWriteBarrier((&___source_1), value);
}
inline static int32_t get_offset_of_nextChar_2() { return static_cast<int32_t>(offsetof(StringReader_t3465604688, ___nextChar_2)); }
inline int32_t get_nextChar_2() const { return ___nextChar_2; }
inline int32_t* get_address_of_nextChar_2() { return &___nextChar_2; }
inline void set_nextChar_2(int32_t value)
{
___nextChar_2 = value;
}
inline static int32_t get_offset_of_sourceLength_3() { return static_cast<int32_t>(offsetof(StringReader_t3465604688, ___sourceLength_3)); }
inline int32_t get_sourceLength_3() const { return ___sourceLength_3; }
inline int32_t* get_address_of_sourceLength_3() { return &___sourceLength_3; }
inline void set_sourceLength_3(int32_t value)
{
___sourceLength_3 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // STRINGREADER_T3465604688_H
#ifndef PARAMETERMODIFIER_T1461694466_H
#define PARAMETERMODIFIER_T1461694466_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Reflection.ParameterModifier
struct ParameterModifier_t1461694466
{
public:
// System.Boolean[] System.Reflection.ParameterModifier::_byref
BooleanU5BU5D_t2897418192* ____byref_0;
public:
inline static int32_t get_offset_of__byref_0() { return static_cast<int32_t>(offsetof(ParameterModifier_t1461694466, ____byref_0)); }
inline BooleanU5BU5D_t2897418192* get__byref_0() const { return ____byref_0; }
inline BooleanU5BU5D_t2897418192** get_address_of__byref_0() { return &____byref_0; }
inline void set__byref_0(BooleanU5BU5D_t2897418192* value)
{
____byref_0 = value;
Il2CppCodeGenWriteBarrier((&____byref_0), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// Native definition for P/Invoke marshalling of System.Reflection.ParameterModifier
struct ParameterModifier_t1461694466_marshaled_pinvoke
{
int32_t* ____byref_0;
};
// Native definition for COM marshalling of System.Reflection.ParameterModifier
struct ParameterModifier_t1461694466_marshaled_com
{
int32_t* ____byref_0;
};
#endif // PARAMETERMODIFIER_T1461694466_H
#ifndef CONTEXT_T3285446944_H
#define CONTEXT_T3285446944_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Runtime.Remoting.Contexts.Context
struct Context_t3285446944 : public RuntimeObject
{
public:
// System.Int32 System.Runtime.Remoting.Contexts.Context::domain_id
int32_t ___domain_id_0;
// System.Int32 System.Runtime.Remoting.Contexts.Context::context_id
int32_t ___context_id_1;
// System.UIntPtr System.Runtime.Remoting.Contexts.Context::static_data
uintptr_t ___static_data_2;
// System.Runtime.Remoting.Messaging.IMessageSink System.Runtime.Remoting.Contexts.Context::server_context_sink_chain
RuntimeObject* ___server_context_sink_chain_4;
// System.Runtime.Remoting.Messaging.IMessageSink System.Runtime.Remoting.Contexts.Context::client_context_sink_chain
RuntimeObject* ___client_context_sink_chain_5;
// System.Object[] System.Runtime.Remoting.Contexts.Context::datastore
ObjectU5BU5D_t2843939325* ___datastore_6;
// System.Collections.ArrayList System.Runtime.Remoting.Contexts.Context::context_properties
ArrayList_t2718874744 * ___context_properties_7;
// System.Boolean System.Runtime.Remoting.Contexts.Context::frozen
bool ___frozen_8;
// System.Runtime.Remoting.Contexts.DynamicPropertyCollection System.Runtime.Remoting.Contexts.Context::context_dynamic_properties
DynamicPropertyCollection_t652373272 * ___context_dynamic_properties_12;
// System.Runtime.Remoting.Contexts.ContextCallbackObject System.Runtime.Remoting.Contexts.Context::callback_object
ContextCallbackObject_t2292721408 * ___callback_object_13;
public:
inline static int32_t get_offset_of_domain_id_0() { return static_cast<int32_t>(offsetof(Context_t3285446944, ___domain_id_0)); }
inline int32_t get_domain_id_0() const { return ___domain_id_0; }
inline int32_t* get_address_of_domain_id_0() { return &___domain_id_0; }
inline void set_domain_id_0(int32_t value)
{
___domain_id_0 = value;
}
inline static int32_t get_offset_of_context_id_1() { return static_cast<int32_t>(offsetof(Context_t3285446944, ___context_id_1)); }
inline int32_t get_context_id_1() const { return ___context_id_1; }
inline int32_t* get_address_of_context_id_1() { return &___context_id_1; }
inline void set_context_id_1(int32_t value)
{
___context_id_1 = value;
}
inline static int32_t get_offset_of_static_data_2() { return static_cast<int32_t>(offsetof(Context_t3285446944, ___static_data_2)); }
inline uintptr_t get_static_data_2() const { return ___static_data_2; }
inline uintptr_t* get_address_of_static_data_2() { return &___static_data_2; }
inline void set_static_data_2(uintptr_t value)
{
___static_data_2 = value;
}
inline static int32_t get_offset_of_server_context_sink_chain_4() { return static_cast<int32_t>(offsetof(Context_t3285446944, ___server_context_sink_chain_4)); }
inline RuntimeObject* get_server_context_sink_chain_4() const { return ___server_context_sink_chain_4; }
inline RuntimeObject** get_address_of_server_context_sink_chain_4() { return &___server_context_sink_chain_4; }
inline void set_server_context_sink_chain_4(RuntimeObject* value)
{
___server_context_sink_chain_4 = value;
Il2CppCodeGenWriteBarrier((&___server_context_sink_chain_4), value);
}
inline static int32_t get_offset_of_client_context_sink_chain_5() { return static_cast<int32_t>(offsetof(Context_t3285446944, ___client_context_sink_chain_5)); }
inline RuntimeObject* get_client_context_sink_chain_5() const { return ___client_context_sink_chain_5; }
inline RuntimeObject** get_address_of_client_context_sink_chain_5() { return &___client_context_sink_chain_5; }
inline void set_client_context_sink_chain_5(RuntimeObject* value)
{
___client_context_sink_chain_5 = value;
Il2CppCodeGenWriteBarrier((&___client_context_sink_chain_5), value);
}
inline static int32_t get_offset_of_datastore_6() { return static_cast<int32_t>(offsetof(Context_t3285446944, ___datastore_6)); }
inline ObjectU5BU5D_t2843939325* get_datastore_6() const { return ___datastore_6; }
inline ObjectU5BU5D_t2843939325** get_address_of_datastore_6() { return &___datastore_6; }
inline void set_datastore_6(ObjectU5BU5D_t2843939325* value)
{
___datastore_6 = value;
Il2CppCodeGenWriteBarrier((&___datastore_6), value);
}
inline static int32_t get_offset_of_context_properties_7() { return static_cast<int32_t>(offsetof(Context_t3285446944, ___context_properties_7)); }
inline ArrayList_t2718874744 * get_context_properties_7() const { return ___context_properties_7; }
inline ArrayList_t2718874744 ** get_address_of_context_properties_7() { return &___context_properties_7; }
inline void set_context_properties_7(ArrayList_t2718874744 * value)
{
___context_properties_7 = value;
Il2CppCodeGenWriteBarrier((&___context_properties_7), value);
}
inline static int32_t get_offset_of_frozen_8() { return static_cast<int32_t>(offsetof(Context_t3285446944, ___frozen_8)); }
inline bool get_frozen_8() const { return ___frozen_8; }
inline bool* get_address_of_frozen_8() { return &___frozen_8; }
inline void set_frozen_8(bool value)
{
___frozen_8 = value;
}
inline static int32_t get_offset_of_context_dynamic_properties_12() { return static_cast<int32_t>(offsetof(Context_t3285446944, ___context_dynamic_properties_12)); }
inline DynamicPropertyCollection_t652373272 * get_context_dynamic_properties_12() const { return ___context_dynamic_properties_12; }
inline DynamicPropertyCollection_t652373272 ** get_address_of_context_dynamic_properties_12() { return &___context_dynamic_properties_12; }
inline void set_context_dynamic_properties_12(DynamicPropertyCollection_t652373272 * value)
{
___context_dynamic_properties_12 = value;
Il2CppCodeGenWriteBarrier((&___context_dynamic_properties_12), value);
}
inline static int32_t get_offset_of_callback_object_13() { return static_cast<int32_t>(offsetof(Context_t3285446944, ___callback_object_13)); }
inline ContextCallbackObject_t2292721408 * get_callback_object_13() const { return ___callback_object_13; }
inline ContextCallbackObject_t2292721408 ** get_address_of_callback_object_13() { return &___callback_object_13; }
inline void set_callback_object_13(ContextCallbackObject_t2292721408 * value)
{
___callback_object_13 = value;
Il2CppCodeGenWriteBarrier((&___callback_object_13), value);
}
};
struct Context_t3285446944_StaticFields
{
public:
// System.Runtime.Remoting.Messaging.IMessageSink System.Runtime.Remoting.Contexts.Context::default_server_context_sink
RuntimeObject* ___default_server_context_sink_3;
// System.Int32 System.Runtime.Remoting.Contexts.Context::global_count
int32_t ___global_count_9;
// System.Collections.Hashtable System.Runtime.Remoting.Contexts.Context::namedSlots
Hashtable_t1853889766 * ___namedSlots_10;
// System.Runtime.Remoting.Contexts.DynamicPropertyCollection System.Runtime.Remoting.Contexts.Context::global_dynamic_properties
DynamicPropertyCollection_t652373272 * ___global_dynamic_properties_11;
public:
inline static int32_t get_offset_of_default_server_context_sink_3() { return static_cast<int32_t>(offsetof(Context_t3285446944_StaticFields, ___default_server_context_sink_3)); }
inline RuntimeObject* get_default_server_context_sink_3() const { return ___default_server_context_sink_3; }
inline RuntimeObject** get_address_of_default_server_context_sink_3() { return &___default_server_context_sink_3; }
inline void set_default_server_context_sink_3(RuntimeObject* value)
{
___default_server_context_sink_3 = value;
Il2CppCodeGenWriteBarrier((&___default_server_context_sink_3), value);
}
inline static int32_t get_offset_of_global_count_9() { return static_cast<int32_t>(offsetof(Context_t3285446944_StaticFields, ___global_count_9)); }
inline int32_t get_global_count_9() const { return ___global_count_9; }
inline int32_t* get_address_of_global_count_9() { return &___global_count_9; }
inline void set_global_count_9(int32_t value)
{
___global_count_9 = value;
}
inline static int32_t get_offset_of_namedSlots_10() { return static_cast<int32_t>(offsetof(Context_t3285446944_StaticFields, ___namedSlots_10)); }
inline Hashtable_t1853889766 * get_namedSlots_10() const { return ___namedSlots_10; }
inline Hashtable_t1853889766 ** get_address_of_namedSlots_10() { return &___namedSlots_10; }
inline void set_namedSlots_10(Hashtable_t1853889766 * value)
{
___namedSlots_10 = value;
Il2CppCodeGenWriteBarrier((&___namedSlots_10), value);
}
inline static int32_t get_offset_of_global_dynamic_properties_11() { return static_cast<int32_t>(offsetof(Context_t3285446944_StaticFields, ___global_dynamic_properties_11)); }
inline DynamicPropertyCollection_t652373272 * get_global_dynamic_properties_11() const { return ___global_dynamic_properties_11; }
inline DynamicPropertyCollection_t652373272 ** get_address_of_global_dynamic_properties_11() { return &___global_dynamic_properties_11; }
inline void set_global_dynamic_properties_11(DynamicPropertyCollection_t652373272 * value)
{
___global_dynamic_properties_11 = value;
Il2CppCodeGenWriteBarrier((&___global_dynamic_properties_11), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // CONTEXT_T3285446944_H
#ifndef UNEXCEPTIONALSTREAMWRITER_T2539306459_H
#define UNEXCEPTIONALSTREAMWRITER_T2539306459_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.IO.UnexceptionalStreamWriter
struct UnexceptionalStreamWriter_t2539306459 : public StreamWriter_t1266378904
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // UNEXCEPTIONALSTREAMWRITER_T2539306459_H
#ifndef ASSEMBLYVERSIONCOMPATIBILITY_T766556580_H
#define ASSEMBLYVERSIONCOMPATIBILITY_T766556580_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Configuration.Assemblies.AssemblyVersionCompatibility
struct AssemblyVersionCompatibility_t766556580
{
public:
// System.Int32 System.Configuration.Assemblies.AssemblyVersionCompatibility::value__
int32_t ___value___1;
public:
inline static int32_t get_offset_of_value___1() { return static_cast<int32_t>(offsetof(AssemblyVersionCompatibility_t766556580, ___value___1)); }
inline int32_t get_value___1() const { return ___value___1; }
inline int32_t* get_address_of_value___1() { return &___value___1; }
inline void set_value___1(int32_t value)
{
___value___1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // ASSEMBLYVERSIONCOMPATIBILITY_T766556580_H
#ifndef NOTSUPPORTEDEXCEPTION_T1314879016_H
#define NOTSUPPORTEDEXCEPTION_T1314879016_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.NotSupportedException
struct NotSupportedException_t1314879016 : public SystemException_t176217640
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // NOTSUPPORTEDEXCEPTION_T1314879016_H
#ifndef ASSEMBLYHASHALGORITHM_T1216504064_H
#define ASSEMBLYHASHALGORITHM_T1216504064_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Configuration.Assemblies.AssemblyHashAlgorithm
struct AssemblyHashAlgorithm_t1216504064
{
public:
// System.Int32 System.Configuration.Assemblies.AssemblyHashAlgorithm::value__
int32_t ___value___1;
public:
inline static int32_t get_offset_of_value___1() { return static_cast<int32_t>(offsetof(AssemblyHashAlgorithm_t1216504064, ___value___1)); }
inline int32_t get_value___1() const { return ___value___1; }
inline int32_t* get_address_of_value___1() { return &___value___1; }
inline void set_value___1(int32_t value)
{
___value___1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // ASSEMBLYHASHALGORITHM_T1216504064_H
#ifndef MEMBERACCESSEXCEPTION_T1734467078_H
#define MEMBERACCESSEXCEPTION_T1734467078_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.MemberAccessException
struct MemberAccessException_t1734467078 : public SystemException_t176217640
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // MEMBERACCESSEXCEPTION_T1734467078_H
#ifndef PRINCIPALPOLICY_T1761212333_H
#define PRINCIPALPOLICY_T1761212333_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Security.Principal.PrincipalPolicy
struct PrincipalPolicy_t1761212333
{
public:
// System.Int32 System.Security.Principal.PrincipalPolicy::value__
int32_t ___value___1;
public:
inline static int32_t get_offset_of_value___1() { return static_cast<int32_t>(offsetof(PrincipalPolicy_t1761212333, ___value___1)); }
inline int32_t get_value___1() const { return ___value___1; }
inline int32_t* get_address_of_value___1() { return &___value___1; }
inline void set_value___1(int32_t value)
{
___value___1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // PRINCIPALPOLICY_T1761212333_H
#ifndef ENUMERATORMODE_T3719608883_H
#define ENUMERATORMODE_T3719608883_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Collections.SortedList/EnumeratorMode
struct EnumeratorMode_t3719608883
{
public:
// System.Int32 System.Collections.SortedList/EnumeratorMode::value__
int32_t ___value___1;
public:
inline static int32_t get_offset_of_value___1() { return static_cast<int32_t>(offsetof(EnumeratorMode_t3719608883, ___value___1)); }
inline int32_t get_value___1() const { return ___value___1; }
inline int32_t* get_address_of_value___1() { return &___value___1; }
inline void set_value___1(int32_t value)
{
___value___1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // ENUMERATORMODE_T3719608883_H
#ifndef STREAMINGCONTEXTSTATES_T3580100459_H
#define STREAMINGCONTEXTSTATES_T3580100459_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Runtime.Serialization.StreamingContextStates
struct StreamingContextStates_t3580100459
{
public:
// System.Int32 System.Runtime.Serialization.StreamingContextStates::value__
int32_t ___value___1;
public:
inline static int32_t get_offset_of_value___1() { return static_cast<int32_t>(offsetof(StreamingContextStates_t3580100459, ___value___1)); }
inline int32_t get_value___1() const { return ___value___1; }
inline int32_t* get_address_of_value___1() { return &___value___1; }
inline void set_value___1(int32_t value)
{
___value___1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // STREAMINGCONTEXTSTATES_T3580100459_H
#ifndef UNEXCEPTIONALSTREAMREADER_T2154476246_H
#define UNEXCEPTIONALSTREAMREADER_T2154476246_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.IO.UnexceptionalStreamReader
struct UnexceptionalStreamReader_t2154476246 : public StreamReader_t4009935899
{
public:
public:
};
struct UnexceptionalStreamReader_t2154476246_StaticFields
{
public:
// System.Boolean[] System.IO.UnexceptionalStreamReader::newline
BooleanU5BU5D_t2897418192* ___newline_14;
// System.Char System.IO.UnexceptionalStreamReader::newlineChar
Il2CppChar ___newlineChar_15;
public:
inline static int32_t get_offset_of_newline_14() { return static_cast<int32_t>(offsetof(UnexceptionalStreamReader_t2154476246_StaticFields, ___newline_14)); }
inline BooleanU5BU5D_t2897418192* get_newline_14() const { return ___newline_14; }
inline BooleanU5BU5D_t2897418192** get_address_of_newline_14() { return &___newline_14; }
inline void set_newline_14(BooleanU5BU5D_t2897418192* value)
{
___newline_14 = value;
Il2CppCodeGenWriteBarrier((&___newline_14), value);
}
inline static int32_t get_offset_of_newlineChar_15() { return static_cast<int32_t>(offsetof(UnexceptionalStreamReader_t2154476246_StaticFields, ___newlineChar_15)); }
inline Il2CppChar get_newlineChar_15() const { return ___newlineChar_15; }
inline Il2CppChar* get_address_of_newlineChar_15() { return &___newlineChar_15; }
inline void set_newlineChar_15(Il2CppChar value)
{
___newlineChar_15 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // UNEXCEPTIONALSTREAMREADER_T2154476246_H
#ifndef BINDINGFLAGS_T2721792723_H
#define BINDINGFLAGS_T2721792723_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Reflection.BindingFlags
struct BindingFlags_t2721792723
{
public:
// System.Int32 System.Reflection.BindingFlags::value__
int32_t ___value___1;
public:
inline static int32_t get_offset_of_value___1() { return static_cast<int32_t>(offsetof(BindingFlags_t2721792723, ___value___1)); }
inline int32_t get_value___1() const { return ___value___1; }
inline int32_t* get_address_of_value___1() { return &___value___1; }
inline void set_value___1(int32_t value)
{
___value___1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // BINDINGFLAGS_T2721792723_H
#ifndef CONSTRUCTORINFO_T5769829_H
#define CONSTRUCTORINFO_T5769829_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Reflection.ConstructorInfo
struct ConstructorInfo_t5769829 : public MethodBase_t
{
public:
public:
};
struct ConstructorInfo_t5769829_StaticFields
{
public:
// System.String System.Reflection.ConstructorInfo::ConstructorName
String_t* ___ConstructorName_0;
// System.String System.Reflection.ConstructorInfo::TypeConstructorName
String_t* ___TypeConstructorName_1;
public:
inline static int32_t get_offset_of_ConstructorName_0() { return static_cast<int32_t>(offsetof(ConstructorInfo_t5769829_StaticFields, ___ConstructorName_0)); }
inline String_t* get_ConstructorName_0() const { return ___ConstructorName_0; }
inline String_t** get_address_of_ConstructorName_0() { return &___ConstructorName_0; }
inline void set_ConstructorName_0(String_t* value)
{
___ConstructorName_0 = value;
Il2CppCodeGenWriteBarrier((&___ConstructorName_0), value);
}
inline static int32_t get_offset_of_TypeConstructorName_1() { return static_cast<int32_t>(offsetof(ConstructorInfo_t5769829_StaticFields, ___TypeConstructorName_1)); }
inline String_t* get_TypeConstructorName_1() const { return ___TypeConstructorName_1; }
inline String_t** get_address_of_TypeConstructorName_1() { return &___TypeConstructorName_1; }
inline void set_TypeConstructorName_1(String_t* value)
{
___TypeConstructorName_1 = value;
Il2CppCodeGenWriteBarrier((&___TypeConstructorName_1), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // CONSTRUCTORINFO_T5769829_H
#ifndef CALLINGCONVENTIONS_T2253234531_H
#define CALLINGCONVENTIONS_T2253234531_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Reflection.CallingConventions
struct CallingConventions_t2253234531
{
public:
// System.Int32 System.Reflection.CallingConventions::value__
int32_t ___value___1;
public:
inline static int32_t get_offset_of_value___1() { return static_cast<int32_t>(offsetof(CallingConventions_t2253234531, ___value___1)); }
inline int32_t get_value___1() const { return ___value___1; }
inline int32_t* get_address_of_value___1() { return &___value___1; }
inline void set_value___1(int32_t value)
{
___value___1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // CALLINGCONVENTIONS_T2253234531_H
#ifndef ASSEMBLY_T_H
#define ASSEMBLY_T_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Reflection.Assembly
struct Assembly_t : public RuntimeObject
{
public:
// System.IntPtr System.Reflection.Assembly::_mono_assembly
intptr_t ____mono_assembly_0;
// System.Reflection.Assembly/ResolveEventHolder System.Reflection.Assembly::resolve_event_holder
ResolveEventHolder_t2120639521 * ___resolve_event_holder_1;
// System.Security.Policy.Evidence System.Reflection.Assembly::_evidence
Evidence_t2008144148 * ____evidence_2;
// System.Security.PermissionSet System.Reflection.Assembly::_minimum
PermissionSet_t223948603 * ____minimum_3;
// System.Security.PermissionSet System.Reflection.Assembly::_optional
PermissionSet_t223948603 * ____optional_4;
// System.Security.PermissionSet System.Reflection.Assembly::_refuse
PermissionSet_t223948603 * ____refuse_5;
// System.Security.PermissionSet System.Reflection.Assembly::_granted
PermissionSet_t223948603 * ____granted_6;
// System.Security.PermissionSet System.Reflection.Assembly::_denied
PermissionSet_t223948603 * ____denied_7;
// System.Boolean System.Reflection.Assembly::fromByteArray
bool ___fromByteArray_8;
// System.String System.Reflection.Assembly::assemblyName
String_t* ___assemblyName_9;
public:
inline static int32_t get_offset_of__mono_assembly_0() { return static_cast<int32_t>(offsetof(Assembly_t, ____mono_assembly_0)); }
inline intptr_t get__mono_assembly_0() const { return ____mono_assembly_0; }
inline intptr_t* get_address_of__mono_assembly_0() { return &____mono_assembly_0; }
inline void set__mono_assembly_0(intptr_t value)
{
____mono_assembly_0 = value;
}
inline static int32_t get_offset_of_resolve_event_holder_1() { return static_cast<int32_t>(offsetof(Assembly_t, ___resolve_event_holder_1)); }
inline ResolveEventHolder_t2120639521 * get_resolve_event_holder_1() const { return ___resolve_event_holder_1; }
inline ResolveEventHolder_t2120639521 ** get_address_of_resolve_event_holder_1() { return &___resolve_event_holder_1; }
inline void set_resolve_event_holder_1(ResolveEventHolder_t2120639521 * value)
{
___resolve_event_holder_1 = value;
Il2CppCodeGenWriteBarrier((&___resolve_event_holder_1), value);
}
inline static int32_t get_offset_of__evidence_2() { return static_cast<int32_t>(offsetof(Assembly_t, ____evidence_2)); }
inline Evidence_t2008144148 * get__evidence_2() const { return ____evidence_2; }
inline Evidence_t2008144148 ** get_address_of__evidence_2() { return &____evidence_2; }
inline void set__evidence_2(Evidence_t2008144148 * value)
{
____evidence_2 = value;
Il2CppCodeGenWriteBarrier((&____evidence_2), value);
}
inline static int32_t get_offset_of__minimum_3() { return static_cast<int32_t>(offsetof(Assembly_t, ____minimum_3)); }
inline PermissionSet_t223948603 * get__minimum_3() const { return ____minimum_3; }
inline PermissionSet_t223948603 ** get_address_of__minimum_3() { return &____minimum_3; }
inline void set__minimum_3(PermissionSet_t223948603 * value)
{
____minimum_3 = value;
Il2CppCodeGenWriteBarrier((&____minimum_3), value);
}
inline static int32_t get_offset_of__optional_4() { return static_cast<int32_t>(offsetof(Assembly_t, ____optional_4)); }
inline PermissionSet_t223948603 * get__optional_4() const { return ____optional_4; }
inline PermissionSet_t223948603 ** get_address_of__optional_4() { return &____optional_4; }
inline void set__optional_4(PermissionSet_t223948603 * value)
{
____optional_4 = value;
Il2CppCodeGenWriteBarrier((&____optional_4), value);
}
inline static int32_t get_offset_of__refuse_5() { return static_cast<int32_t>(offsetof(Assembly_t, ____refuse_5)); }
inline PermissionSet_t223948603 * get__refuse_5() const { return ____refuse_5; }
inline PermissionSet_t223948603 ** get_address_of__refuse_5() { return &____refuse_5; }
inline void set__refuse_5(PermissionSet_t223948603 * value)
{
____refuse_5 = value;
Il2CppCodeGenWriteBarrier((&____refuse_5), value);
}
inline static int32_t get_offset_of__granted_6() { return static_cast<int32_t>(offsetof(Assembly_t, ____granted_6)); }
inline PermissionSet_t223948603 * get__granted_6() const { return ____granted_6; }
inline PermissionSet_t223948603 ** get_address_of__granted_6() { return &____granted_6; }
inline void set__granted_6(PermissionSet_t223948603 * value)
{
____granted_6 = value;
Il2CppCodeGenWriteBarrier((&____granted_6), value);
}
inline static int32_t get_offset_of__denied_7() { return static_cast<int32_t>(offsetof(Assembly_t, ____denied_7)); }
inline PermissionSet_t223948603 * get__denied_7() const { return ____denied_7; }
inline PermissionSet_t223948603 ** get_address_of__denied_7() { return &____denied_7; }
inline void set__denied_7(PermissionSet_t223948603 * value)
{
____denied_7 = value;
Il2CppCodeGenWriteBarrier((&____denied_7), value);
}
inline static int32_t get_offset_of_fromByteArray_8() { return static_cast<int32_t>(offsetof(Assembly_t, ___fromByteArray_8)); }
inline bool get_fromByteArray_8() const { return ___fromByteArray_8; }
inline bool* get_address_of_fromByteArray_8() { return &___fromByteArray_8; }
inline void set_fromByteArray_8(bool value)
{
___fromByteArray_8 = value;
}
inline static int32_t get_offset_of_assemblyName_9() { return static_cast<int32_t>(offsetof(Assembly_t, ___assemblyName_9)); }
inline String_t* get_assemblyName_9() const { return ___assemblyName_9; }
inline String_t** get_address_of_assemblyName_9() { return &___assemblyName_9; }
inline void set_assemblyName_9(String_t* value)
{
___assemblyName_9 = value;
Il2CppCodeGenWriteBarrier((&___assemblyName_9), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // ASSEMBLY_T_H
#ifndef ARGUMENTEXCEPTION_T132251570_H
#define ARGUMENTEXCEPTION_T132251570_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.ArgumentException
struct ArgumentException_t132251570 : public SystemException_t176217640
{
public:
// System.String System.ArgumentException::param_name
String_t* ___param_name_12;
public:
inline static int32_t get_offset_of_param_name_12() { return static_cast<int32_t>(offsetof(ArgumentException_t132251570, ___param_name_12)); }
inline String_t* get_param_name_12() const { return ___param_name_12; }
inline String_t** get_address_of_param_name_12() { return &___param_name_12; }
inline void set_param_name_12(String_t* value)
{
___param_name_12 = value;
Il2CppCodeGenWriteBarrier((&___param_name_12), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // ARGUMENTEXCEPTION_T132251570_H
#ifndef RUNTIMEFIELDHANDLE_T1871169219_H
#define RUNTIMEFIELDHANDLE_T1871169219_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.RuntimeFieldHandle
struct RuntimeFieldHandle_t1871169219
{
public:
// System.IntPtr System.RuntimeFieldHandle::value
intptr_t ___value_0;
public:
inline static int32_t get_offset_of_value_0() { return static_cast<int32_t>(offsetof(RuntimeFieldHandle_t1871169219, ___value_0)); }
inline intptr_t get_value_0() const { return ___value_0; }
inline intptr_t* get_address_of_value_0() { return &___value_0; }
inline void set_value_0(intptr_t value)
{
___value_0 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // RUNTIMEFIELDHANDLE_T1871169219_H
#ifndef DATETIMEKIND_T3468814247_H
#define DATETIMEKIND_T3468814247_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.DateTimeKind
struct DateTimeKind_t3468814247
{
public:
// System.Int32 System.DateTimeKind::value__
int32_t ___value___1;
public:
inline static int32_t get_offset_of_value___1() { return static_cast<int32_t>(offsetof(DateTimeKind_t3468814247, ___value___1)); }
inline int32_t get_value___1() const { return ___value___1; }
inline int32_t* get_address_of_value___1() { return &___value___1; }
inline void set_value___1(int32_t value)
{
___value___1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // DATETIMEKIND_T3468814247_H
#ifndef IOEXCEPTION_T4088381929_H
#define IOEXCEPTION_T4088381929_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.IO.IOException
struct IOException_t4088381929 : public SystemException_t176217640
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // IOEXCEPTION_T4088381929_H
#ifndef FILEACCESS_T1659085276_H
#define FILEACCESS_T1659085276_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.IO.FileAccess
struct FileAccess_t1659085276
{
public:
// System.Int32 System.IO.FileAccess::value__
int32_t ___value___1;
public:
inline static int32_t get_offset_of_value___1() { return static_cast<int32_t>(offsetof(FileAccess_t1659085276, ___value___1)); }
inline int32_t get_value___1() const { return ___value___1; }
inline int32_t* get_address_of_value___1() { return &___value___1; }
inline void set_value___1(int32_t value)
{
___value___1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // FILEACCESS_T1659085276_H
#ifndef DELEGATE_T1188392813_H
#define DELEGATE_T1188392813_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Delegate
struct Delegate_t1188392813 : public RuntimeObject
{
public:
// System.IntPtr System.Delegate::method_ptr
Il2CppMethodPointer ___method_ptr_0;
// System.IntPtr System.Delegate::invoke_impl
intptr_t ___invoke_impl_1;
// System.Object System.Delegate::m_target
RuntimeObject * ___m_target_2;
// System.IntPtr System.Delegate::method
intptr_t ___method_3;
// System.IntPtr System.Delegate::delegate_trampoline
intptr_t ___delegate_trampoline_4;
// System.IntPtr System.Delegate::method_code
intptr_t ___method_code_5;
// System.Reflection.MethodInfo System.Delegate::method_info
MethodInfo_t * ___method_info_6;
// System.Reflection.MethodInfo System.Delegate::original_method_info
MethodInfo_t * ___original_method_info_7;
// System.DelegateData System.Delegate::data
DelegateData_t1677132599 * ___data_8;
public:
inline static int32_t get_offset_of_method_ptr_0() { return static_cast<int32_t>(offsetof(Delegate_t1188392813, ___method_ptr_0)); }
inline Il2CppMethodPointer get_method_ptr_0() const { return ___method_ptr_0; }
inline Il2CppMethodPointer* get_address_of_method_ptr_0() { return &___method_ptr_0; }
inline void set_method_ptr_0(Il2CppMethodPointer value)
{
___method_ptr_0 = value;
}
inline static int32_t get_offset_of_invoke_impl_1() { return static_cast<int32_t>(offsetof(Delegate_t1188392813, ___invoke_impl_1)); }
inline intptr_t get_invoke_impl_1() const { return ___invoke_impl_1; }
inline intptr_t* get_address_of_invoke_impl_1() { return &___invoke_impl_1; }
inline void set_invoke_impl_1(intptr_t value)
{
___invoke_impl_1 = value;
}
inline static int32_t get_offset_of_m_target_2() { return static_cast<int32_t>(offsetof(Delegate_t1188392813, ___m_target_2)); }
inline RuntimeObject * get_m_target_2() const { return ___m_target_2; }
inline RuntimeObject ** get_address_of_m_target_2() { return &___m_target_2; }
inline void set_m_target_2(RuntimeObject * value)
{
___m_target_2 = value;
Il2CppCodeGenWriteBarrier((&___m_target_2), value);
}
inline static int32_t get_offset_of_method_3() { return static_cast<int32_t>(offsetof(Delegate_t1188392813, ___method_3)); }
inline intptr_t get_method_3() const { return ___method_3; }
inline intptr_t* get_address_of_method_3() { return &___method_3; }
inline void set_method_3(intptr_t value)
{
___method_3 = value;
}
inline static int32_t get_offset_of_delegate_trampoline_4() { return static_cast<int32_t>(offsetof(Delegate_t1188392813, ___delegate_trampoline_4)); }
inline intptr_t get_delegate_trampoline_4() const { return ___delegate_trampoline_4; }
inline intptr_t* get_address_of_delegate_trampoline_4() { return &___delegate_trampoline_4; }
inline void set_delegate_trampoline_4(intptr_t value)
{
___delegate_trampoline_4 = value;
}
inline static int32_t get_offset_of_method_code_5() { return static_cast<int32_t>(offsetof(Delegate_t1188392813, ___method_code_5)); }
inline intptr_t get_method_code_5() const { return ___method_code_5; }
inline intptr_t* get_address_of_method_code_5() { return &___method_code_5; }
inline void set_method_code_5(intptr_t value)
{
___method_code_5 = value;
}
inline static int32_t get_offset_of_method_info_6() { return static_cast<int32_t>(offsetof(Delegate_t1188392813, ___method_info_6)); }
inline MethodInfo_t * get_method_info_6() const { return ___method_info_6; }
inline MethodInfo_t ** get_address_of_method_info_6() { return &___method_info_6; }
inline void set_method_info_6(MethodInfo_t * value)
{
___method_info_6 = value;
Il2CppCodeGenWriteBarrier((&___method_info_6), value);
}
inline static int32_t get_offset_of_original_method_info_7() { return static_cast<int32_t>(offsetof(Delegate_t1188392813, ___original_method_info_7)); }
inline MethodInfo_t * get_original_method_info_7() const { return ___original_method_info_7; }
inline MethodInfo_t ** get_address_of_original_method_info_7() { return &___original_method_info_7; }
inline void set_original_method_info_7(MethodInfo_t * value)
{
___original_method_info_7 = value;
Il2CppCodeGenWriteBarrier((&___original_method_info_7), value);
}
inline static int32_t get_offset_of_data_8() { return static_cast<int32_t>(offsetof(Delegate_t1188392813, ___data_8)); }
inline DelegateData_t1677132599 * get_data_8() const { return ___data_8; }
inline DelegateData_t1677132599 ** get_address_of_data_8() { return &___data_8; }
inline void set_data_8(DelegateData_t1677132599 * value)
{
___data_8 = value;
Il2CppCodeGenWriteBarrier((&___data_8), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // DELEGATE_T1188392813_H
#ifndef U3CPRIVATEIMPLEMENTATIONDETAILSU3E_T3057255361_H
#define U3CPRIVATEIMPLEMENTATIONDETAILSU3E_T3057255361_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// <PrivateImplementationDetails>
struct U3CPrivateImplementationDetailsU3E_t3057255361 : public RuntimeObject
{
public:
public:
};
struct U3CPrivateImplementationDetailsU3E_t3057255361_StaticFields
{
public:
// <PrivateImplementationDetails>/$ArrayType$56 <PrivateImplementationDetails>::$$field-0
U24ArrayTypeU2456_t1285398176 ___U24U24fieldU2D0_0;
// <PrivateImplementationDetails>/$ArrayType$24 <PrivateImplementationDetails>::$$field-1
U24ArrayTypeU2424_t2469145093 ___U24U24fieldU2D1_1;
// <PrivateImplementationDetails>/$ArrayType$24 <PrivateImplementationDetails>::$$field-2
U24ArrayTypeU2424_t2469145093 ___U24U24fieldU2D2_2;
// <PrivateImplementationDetails>/$ArrayType$24 <PrivateImplementationDetails>::$$field-3
U24ArrayTypeU2424_t2469145093 ___U24U24fieldU2D3_3;
// <PrivateImplementationDetails>/$ArrayType$24 <PrivateImplementationDetails>::$$field-4
U24ArrayTypeU2424_t2469145093 ___U24U24fieldU2D4_4;
// <PrivateImplementationDetails>/$ArrayType$16 <PrivateImplementationDetails>::$$field-5
U24ArrayTypeU2416_t3254766644 ___U24U24fieldU2D5_5;
// <PrivateImplementationDetails>/$ArrayType$16 <PrivateImplementationDetails>::$$field-6
U24ArrayTypeU2416_t3254766644 ___U24U24fieldU2D6_6;
// <PrivateImplementationDetails>/$ArrayType$3132 <PrivateImplementationDetails>::$$field-15
U24ArrayTypeU243132_t2732071528 ___U24U24fieldU2D15_7;
// <PrivateImplementationDetails>/$ArrayType$20 <PrivateImplementationDetails>::$$field-16
U24ArrayTypeU2420_t1704471045 ___U24U24fieldU2D16_8;
// <PrivateImplementationDetails>/$ArrayType$32 <PrivateImplementationDetails>::$$field-17
U24ArrayTypeU2432_t3652892010 ___U24U24fieldU2D17_9;
// <PrivateImplementationDetails>/$ArrayType$48 <PrivateImplementationDetails>::$$field-18
U24ArrayTypeU2448_t1337922363 ___U24U24fieldU2D18_10;
// <PrivateImplementationDetails>/$ArrayType$64 <PrivateImplementationDetails>::$$field-19
U24ArrayTypeU2464_t499776625 ___U24U24fieldU2D19_11;
// <PrivateImplementationDetails>/$ArrayType$64 <PrivateImplementationDetails>::$$field-20
U24ArrayTypeU2464_t499776625 ___U24U24fieldU2D20_12;
// <PrivateImplementationDetails>/$ArrayType$64 <PrivateImplementationDetails>::$$field-21
U24ArrayTypeU2464_t499776625 ___U24U24fieldU2D21_13;
// <PrivateImplementationDetails>/$ArrayType$64 <PrivateImplementationDetails>::$$field-22
U24ArrayTypeU2464_t499776625 ___U24U24fieldU2D22_14;
// <PrivateImplementationDetails>/$ArrayType$12 <PrivateImplementationDetails>::$$field-23
U24ArrayTypeU2412_t2490092596 ___U24U24fieldU2D23_15;
// <PrivateImplementationDetails>/$ArrayType$12 <PrivateImplementationDetails>::$$field-24
U24ArrayTypeU2412_t2490092596 ___U24U24fieldU2D24_16;
// <PrivateImplementationDetails>/$ArrayType$12 <PrivateImplementationDetails>::$$field-25
U24ArrayTypeU2412_t2490092596 ___U24U24fieldU2D25_17;
// <PrivateImplementationDetails>/$ArrayType$16 <PrivateImplementationDetails>::$$field-26
U24ArrayTypeU2416_t3254766644 ___U24U24fieldU2D26_18;
// <PrivateImplementationDetails>/$ArrayType$136 <PrivateImplementationDetails>::$$field-27
U24ArrayTypeU24136_t1950429485 ___U24U24fieldU2D27_19;
// <PrivateImplementationDetails>/$ArrayType$72 <PrivateImplementationDetails>::$$field-30
U24ArrayTypeU2472_t1683523542 ___U24U24fieldU2D30_20;
// <PrivateImplementationDetails>/$ArrayType$8 <PrivateImplementationDetails>::$$field-31
U24ArrayTypeU248_t3244137463 ___U24U24fieldU2D31_21;
// <PrivateImplementationDetails>/$ArrayType$20 <PrivateImplementationDetails>::$$field-32
U24ArrayTypeU2420_t1704471045 ___U24U24fieldU2D32_22;
// <PrivateImplementationDetails>/$ArrayType$64 <PrivateImplementationDetails>::$$field-33
U24ArrayTypeU2464_t499776625 ___U24U24fieldU2D33_23;
// <PrivateImplementationDetails>/$ArrayType$124 <PrivateImplementationDetails>::$$field-34
U24ArrayTypeU24124_t4289081647 ___U24U24fieldU2D34_24;
// <PrivateImplementationDetails>/$ArrayType$32 <PrivateImplementationDetails>::$$field-35
U24ArrayTypeU2432_t3652892010 ___U24U24fieldU2D35_25;
// <PrivateImplementationDetails>/$ArrayType$96 <PrivateImplementationDetails>::$$field-36
U24ArrayTypeU2496_t2898536284 ___U24U24fieldU2D36_26;
// <PrivateImplementationDetails>/$ArrayType$2048 <PrivateImplementationDetails>::$$field-37
U24ArrayTypeU242048_t3505032960 ___U24U24fieldU2D37_27;
// <PrivateImplementationDetails>/$ArrayType$56 <PrivateImplementationDetails>::$$field-38
U24ArrayTypeU2456_t1285398176 ___U24U24fieldU2D38_28;
// <PrivateImplementationDetails>/$ArrayType$16 <PrivateImplementationDetails>::$$field-39
U24ArrayTypeU2416_t3254766644 ___U24U24fieldU2D39_29;
// <PrivateImplementationDetails>/$ArrayType$48 <PrivateImplementationDetails>::$$field-40
U24ArrayTypeU2448_t1337922363 ___U24U24fieldU2D40_30;
// <PrivateImplementationDetails>/$ArrayType$2048 <PrivateImplementationDetails>::$$field-41
U24ArrayTypeU242048_t3505032960 ___U24U24fieldU2D41_31;
// <PrivateImplementationDetails>/$ArrayType$2048 <PrivateImplementationDetails>::$$field-42
U24ArrayTypeU242048_t3505032960 ___U24U24fieldU2D42_32;
// <PrivateImplementationDetails>/$ArrayType$256 <PrivateImplementationDetails>::$$field-43
U24ArrayTypeU24256_t1929481982 ___U24U24fieldU2D43_33;
// <PrivateImplementationDetails>/$ArrayType$256 <PrivateImplementationDetails>::$$field-44
U24ArrayTypeU24256_t1929481982 ___U24U24fieldU2D44_34;
// <PrivateImplementationDetails>/$ArrayType$120 <PrivateImplementationDetails>::$$field-45
U24ArrayTypeU24120_t4289081651 ___U24U24fieldU2D45_35;
// <PrivateImplementationDetails>/$ArrayType$256 <PrivateImplementationDetails>::$$field-46
U24ArrayTypeU24256_t1929481982 ___U24U24fieldU2D46_36;
// <PrivateImplementationDetails>/$ArrayType$256 <PrivateImplementationDetails>::$$field-47
U24ArrayTypeU24256_t1929481982 ___U24U24fieldU2D47_37;
// <PrivateImplementationDetails>/$ArrayType$1024 <PrivateImplementationDetails>::$$field-48
U24ArrayTypeU241024_t3907531057 ___U24U24fieldU2D48_38;
// <PrivateImplementationDetails>/$ArrayType$1024 <PrivateImplementationDetails>::$$field-49
U24ArrayTypeU241024_t3907531057 ___U24U24fieldU2D49_39;
// <PrivateImplementationDetails>/$ArrayType$1024 <PrivateImplementationDetails>::$$field-50
U24ArrayTypeU241024_t3907531057 ___U24U24fieldU2D50_40;
// <PrivateImplementationDetails>/$ArrayType$1024 <PrivateImplementationDetails>::$$field-51
U24ArrayTypeU241024_t3907531057 ___U24U24fieldU2D51_41;
// <PrivateImplementationDetails>/$ArrayType$1024 <PrivateImplementationDetails>::$$field-52
U24ArrayTypeU241024_t3907531057 ___U24U24fieldU2D52_42;
// <PrivateImplementationDetails>/$ArrayType$1024 <PrivateImplementationDetails>::$$field-53
U24ArrayTypeU241024_t3907531057 ___U24U24fieldU2D53_43;
// <PrivateImplementationDetails>/$ArrayType$1024 <PrivateImplementationDetails>::$$field-54
U24ArrayTypeU241024_t3907531057 ___U24U24fieldU2D54_44;
// <PrivateImplementationDetails>/$ArrayType$1024 <PrivateImplementationDetails>::$$field-55
U24ArrayTypeU241024_t3907531057 ___U24U24fieldU2D55_45;
// <PrivateImplementationDetails>/$ArrayType$256 <PrivateImplementationDetails>::$$field-56
U24ArrayTypeU24256_t1929481982 ___U24U24fieldU2D56_46;
// <PrivateImplementationDetails>/$ArrayType$640 <PrivateImplementationDetails>::$$field-57
U24ArrayTypeU24640_t2298765680 ___U24U24fieldU2D57_47;
// <PrivateImplementationDetails>/$ArrayType$12 <PrivateImplementationDetails>::$$field-60
U24ArrayTypeU2412_t2490092596 ___U24U24fieldU2D60_48;
// <PrivateImplementationDetails>/$ArrayType$128 <PrivateImplementationDetails>::$$field-62
U24ArrayTypeU24128_t4289081659 ___U24U24fieldU2D62_49;
// <PrivateImplementationDetails>/$ArrayType$256 <PrivateImplementationDetails>::$$field-63
U24ArrayTypeU24256_t1929481982 ___U24U24fieldU2D63_50;
// <PrivateImplementationDetails>/$ArrayType$52 <PrivateImplementationDetails>::$$field-64
U24ArrayTypeU2452_t520724128 ___U24U24fieldU2D64_51;
// <PrivateImplementationDetails>/$ArrayType$52 <PrivateImplementationDetails>::$$field-65
U24ArrayTypeU2452_t520724128 ___U24U24fieldU2D65_52;
public:
inline static int32_t get_offset_of_U24U24fieldU2D0_0() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t3057255361_StaticFields, ___U24U24fieldU2D0_0)); }
inline U24ArrayTypeU2456_t1285398176 get_U24U24fieldU2D0_0() const { return ___U24U24fieldU2D0_0; }
inline U24ArrayTypeU2456_t1285398176 * get_address_of_U24U24fieldU2D0_0() { return &___U24U24fieldU2D0_0; }
inline void set_U24U24fieldU2D0_0(U24ArrayTypeU2456_t1285398176 value)
{
___U24U24fieldU2D0_0 = value;
}
inline static int32_t get_offset_of_U24U24fieldU2D1_1() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t3057255361_StaticFields, ___U24U24fieldU2D1_1)); }
inline U24ArrayTypeU2424_t2469145093 get_U24U24fieldU2D1_1() const { return ___U24U24fieldU2D1_1; }
inline U24ArrayTypeU2424_t2469145093 * get_address_of_U24U24fieldU2D1_1() { return &___U24U24fieldU2D1_1; }
inline void set_U24U24fieldU2D1_1(U24ArrayTypeU2424_t2469145093 value)
{
___U24U24fieldU2D1_1 = value;
}
inline static int32_t get_offset_of_U24U24fieldU2D2_2() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t3057255361_StaticFields, ___U24U24fieldU2D2_2)); }
inline U24ArrayTypeU2424_t2469145093 get_U24U24fieldU2D2_2() const { return ___U24U24fieldU2D2_2; }
inline U24ArrayTypeU2424_t2469145093 * get_address_of_U24U24fieldU2D2_2() { return &___U24U24fieldU2D2_2; }
inline void set_U24U24fieldU2D2_2(U24ArrayTypeU2424_t2469145093 value)
{
___U24U24fieldU2D2_2 = value;
}
inline static int32_t get_offset_of_U24U24fieldU2D3_3() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t3057255361_StaticFields, ___U24U24fieldU2D3_3)); }
inline U24ArrayTypeU2424_t2469145093 get_U24U24fieldU2D3_3() const { return ___U24U24fieldU2D3_3; }
inline U24ArrayTypeU2424_t2469145093 * get_address_of_U24U24fieldU2D3_3() { return &___U24U24fieldU2D3_3; }
inline void set_U24U24fieldU2D3_3(U24ArrayTypeU2424_t2469145093 value)
{
___U24U24fieldU2D3_3 = value;
}
inline static int32_t get_offset_of_U24U24fieldU2D4_4() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t3057255361_StaticFields, ___U24U24fieldU2D4_4)); }
inline U24ArrayTypeU2424_t2469145093 get_U24U24fieldU2D4_4() const { return ___U24U24fieldU2D4_4; }
inline U24ArrayTypeU2424_t2469145093 * get_address_of_U24U24fieldU2D4_4() { return &___U24U24fieldU2D4_4; }
inline void set_U24U24fieldU2D4_4(U24ArrayTypeU2424_t2469145093 value)
{
___U24U24fieldU2D4_4 = value;
}
inline static int32_t get_offset_of_U24U24fieldU2D5_5() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t3057255361_StaticFields, ___U24U24fieldU2D5_5)); }
inline U24ArrayTypeU2416_t3254766644 get_U24U24fieldU2D5_5() const { return ___U24U24fieldU2D5_5; }
inline U24ArrayTypeU2416_t3254766644 * get_address_of_U24U24fieldU2D5_5() { return &___U24U24fieldU2D5_5; }
inline void set_U24U24fieldU2D5_5(U24ArrayTypeU2416_t3254766644 value)
{
___U24U24fieldU2D5_5 = value;
}
inline static int32_t get_offset_of_U24U24fieldU2D6_6() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t3057255361_StaticFields, ___U24U24fieldU2D6_6)); }
inline U24ArrayTypeU2416_t3254766644 get_U24U24fieldU2D6_6() const { return ___U24U24fieldU2D6_6; }
inline U24ArrayTypeU2416_t3254766644 * get_address_of_U24U24fieldU2D6_6() { return &___U24U24fieldU2D6_6; }
inline void set_U24U24fieldU2D6_6(U24ArrayTypeU2416_t3254766644 value)
{
___U24U24fieldU2D6_6 = value;
}
inline static int32_t get_offset_of_U24U24fieldU2D15_7() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t3057255361_StaticFields, ___U24U24fieldU2D15_7)); }
inline U24ArrayTypeU243132_t2732071528 get_U24U24fieldU2D15_7() const { return ___U24U24fieldU2D15_7; }
inline U24ArrayTypeU243132_t2732071528 * get_address_of_U24U24fieldU2D15_7() { return &___U24U24fieldU2D15_7; }
inline void set_U24U24fieldU2D15_7(U24ArrayTypeU243132_t2732071528 value)
{
___U24U24fieldU2D15_7 = value;
}
inline static int32_t get_offset_of_U24U24fieldU2D16_8() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t3057255361_StaticFields, ___U24U24fieldU2D16_8)); }
inline U24ArrayTypeU2420_t1704471045 get_U24U24fieldU2D16_8() const { return ___U24U24fieldU2D16_8; }
inline U24ArrayTypeU2420_t1704471045 * get_address_of_U24U24fieldU2D16_8() { return &___U24U24fieldU2D16_8; }
inline void set_U24U24fieldU2D16_8(U24ArrayTypeU2420_t1704471045 value)
{
___U24U24fieldU2D16_8 = value;
}
inline static int32_t get_offset_of_U24U24fieldU2D17_9() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t3057255361_StaticFields, ___U24U24fieldU2D17_9)); }
inline U24ArrayTypeU2432_t3652892010 get_U24U24fieldU2D17_9() const { return ___U24U24fieldU2D17_9; }
inline U24ArrayTypeU2432_t3652892010 * get_address_of_U24U24fieldU2D17_9() { return &___U24U24fieldU2D17_9; }
inline void set_U24U24fieldU2D17_9(U24ArrayTypeU2432_t3652892010 value)
{
___U24U24fieldU2D17_9 = value;
}
inline static int32_t get_offset_of_U24U24fieldU2D18_10() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t3057255361_StaticFields, ___U24U24fieldU2D18_10)); }
inline U24ArrayTypeU2448_t1337922363 get_U24U24fieldU2D18_10() const { return ___U24U24fieldU2D18_10; }
inline U24ArrayTypeU2448_t1337922363 * get_address_of_U24U24fieldU2D18_10() { return &___U24U24fieldU2D18_10; }
inline void set_U24U24fieldU2D18_10(U24ArrayTypeU2448_t1337922363 value)
{
___U24U24fieldU2D18_10 = value;
}
inline static int32_t get_offset_of_U24U24fieldU2D19_11() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t3057255361_StaticFields, ___U24U24fieldU2D19_11)); }
inline U24ArrayTypeU2464_t499776625 get_U24U24fieldU2D19_11() const { return ___U24U24fieldU2D19_11; }
inline U24ArrayTypeU2464_t499776625 * get_address_of_U24U24fieldU2D19_11() { return &___U24U24fieldU2D19_11; }
inline void set_U24U24fieldU2D19_11(U24ArrayTypeU2464_t499776625 value)
{
___U24U24fieldU2D19_11 = value;
}
inline static int32_t get_offset_of_U24U24fieldU2D20_12() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t3057255361_StaticFields, ___U24U24fieldU2D20_12)); }
inline U24ArrayTypeU2464_t499776625 get_U24U24fieldU2D20_12() const { return ___U24U24fieldU2D20_12; }
inline U24ArrayTypeU2464_t499776625 * get_address_of_U24U24fieldU2D20_12() { return &___U24U24fieldU2D20_12; }
inline void set_U24U24fieldU2D20_12(U24ArrayTypeU2464_t499776625 value)
{
___U24U24fieldU2D20_12 = value;
}
inline static int32_t get_offset_of_U24U24fieldU2D21_13() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t3057255361_StaticFields, ___U24U24fieldU2D21_13)); }
inline U24ArrayTypeU2464_t499776625 get_U24U24fieldU2D21_13() const { return ___U24U24fieldU2D21_13; }
inline U24ArrayTypeU2464_t499776625 * get_address_of_U24U24fieldU2D21_13() { return &___U24U24fieldU2D21_13; }
inline void set_U24U24fieldU2D21_13(U24ArrayTypeU2464_t499776625 value)
{
___U24U24fieldU2D21_13 = value;
}
inline static int32_t get_offset_of_U24U24fieldU2D22_14() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t3057255361_StaticFields, ___U24U24fieldU2D22_14)); }
inline U24ArrayTypeU2464_t499776625 get_U24U24fieldU2D22_14() const { return ___U24U24fieldU2D22_14; }
inline U24ArrayTypeU2464_t499776625 * get_address_of_U24U24fieldU2D22_14() { return &___U24U24fieldU2D22_14; }
inline void set_U24U24fieldU2D22_14(U24ArrayTypeU2464_t499776625 value)
{
___U24U24fieldU2D22_14 = value;
}
inline static int32_t get_offset_of_U24U24fieldU2D23_15() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t3057255361_StaticFields, ___U24U24fieldU2D23_15)); }
inline U24ArrayTypeU2412_t2490092596 get_U24U24fieldU2D23_15() const { return ___U24U24fieldU2D23_15; }
inline U24ArrayTypeU2412_t2490092596 * get_address_of_U24U24fieldU2D23_15() { return &___U24U24fieldU2D23_15; }
inline void set_U24U24fieldU2D23_15(U24ArrayTypeU2412_t2490092596 value)
{
___U24U24fieldU2D23_15 = value;
}
inline static int32_t get_offset_of_U24U24fieldU2D24_16() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t3057255361_StaticFields, ___U24U24fieldU2D24_16)); }
inline U24ArrayTypeU2412_t2490092596 get_U24U24fieldU2D24_16() const { return ___U24U24fieldU2D24_16; }
inline U24ArrayTypeU2412_t2490092596 * get_address_of_U24U24fieldU2D24_16() { return &___U24U24fieldU2D24_16; }
inline void set_U24U24fieldU2D24_16(U24ArrayTypeU2412_t2490092596 value)
{
___U24U24fieldU2D24_16 = value;
}
inline static int32_t get_offset_of_U24U24fieldU2D25_17() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t3057255361_StaticFields, ___U24U24fieldU2D25_17)); }
inline U24ArrayTypeU2412_t2490092596 get_U24U24fieldU2D25_17() const { return ___U24U24fieldU2D25_17; }
inline U24ArrayTypeU2412_t2490092596 * get_address_of_U24U24fieldU2D25_17() { return &___U24U24fieldU2D25_17; }
inline void set_U24U24fieldU2D25_17(U24ArrayTypeU2412_t2490092596 value)
{
___U24U24fieldU2D25_17 = value;
}
inline static int32_t get_offset_of_U24U24fieldU2D26_18() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t3057255361_StaticFields, ___U24U24fieldU2D26_18)); }
inline U24ArrayTypeU2416_t3254766644 get_U24U24fieldU2D26_18() const { return ___U24U24fieldU2D26_18; }
inline U24ArrayTypeU2416_t3254766644 * get_address_of_U24U24fieldU2D26_18() { return &___U24U24fieldU2D26_18; }
inline void set_U24U24fieldU2D26_18(U24ArrayTypeU2416_t3254766644 value)
{
___U24U24fieldU2D26_18 = value;
}
inline static int32_t get_offset_of_U24U24fieldU2D27_19() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t3057255361_StaticFields, ___U24U24fieldU2D27_19)); }
inline U24ArrayTypeU24136_t1950429485 get_U24U24fieldU2D27_19() const { return ___U24U24fieldU2D27_19; }
inline U24ArrayTypeU24136_t1950429485 * get_address_of_U24U24fieldU2D27_19() { return &___U24U24fieldU2D27_19; }
inline void set_U24U24fieldU2D27_19(U24ArrayTypeU24136_t1950429485 value)
{
___U24U24fieldU2D27_19 = value;
}
inline static int32_t get_offset_of_U24U24fieldU2D30_20() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t3057255361_StaticFields, ___U24U24fieldU2D30_20)); }
inline U24ArrayTypeU2472_t1683523542 get_U24U24fieldU2D30_20() const { return ___U24U24fieldU2D30_20; }
inline U24ArrayTypeU2472_t1683523542 * get_address_of_U24U24fieldU2D30_20() { return &___U24U24fieldU2D30_20; }
inline void set_U24U24fieldU2D30_20(U24ArrayTypeU2472_t1683523542 value)
{
___U24U24fieldU2D30_20 = value;
}
inline static int32_t get_offset_of_U24U24fieldU2D31_21() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t3057255361_StaticFields, ___U24U24fieldU2D31_21)); }
inline U24ArrayTypeU248_t3244137463 get_U24U24fieldU2D31_21() const { return ___U24U24fieldU2D31_21; }
inline U24ArrayTypeU248_t3244137463 * get_address_of_U24U24fieldU2D31_21() { return &___U24U24fieldU2D31_21; }
inline void set_U24U24fieldU2D31_21(U24ArrayTypeU248_t3244137463 value)
{
___U24U24fieldU2D31_21 = value;
}
inline static int32_t get_offset_of_U24U24fieldU2D32_22() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t3057255361_StaticFields, ___U24U24fieldU2D32_22)); }
inline U24ArrayTypeU2420_t1704471045 get_U24U24fieldU2D32_22() const { return ___U24U24fieldU2D32_22; }
inline U24ArrayTypeU2420_t1704471045 * get_address_of_U24U24fieldU2D32_22() { return &___U24U24fieldU2D32_22; }
inline void set_U24U24fieldU2D32_22(U24ArrayTypeU2420_t1704471045 value)
{
___U24U24fieldU2D32_22 = value;
}
inline static int32_t get_offset_of_U24U24fieldU2D33_23() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t3057255361_StaticFields, ___U24U24fieldU2D33_23)); }
inline U24ArrayTypeU2464_t499776625 get_U24U24fieldU2D33_23() const { return ___U24U24fieldU2D33_23; }
inline U24ArrayTypeU2464_t499776625 * get_address_of_U24U24fieldU2D33_23() { return &___U24U24fieldU2D33_23; }
inline void set_U24U24fieldU2D33_23(U24ArrayTypeU2464_t499776625 value)
{
___U24U24fieldU2D33_23 = value;
}
inline static int32_t get_offset_of_U24U24fieldU2D34_24() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t3057255361_StaticFields, ___U24U24fieldU2D34_24)); }
inline U24ArrayTypeU24124_t4289081647 get_U24U24fieldU2D34_24() const { return ___U24U24fieldU2D34_24; }
inline U24ArrayTypeU24124_t4289081647 * get_address_of_U24U24fieldU2D34_24() { return &___U24U24fieldU2D34_24; }
inline void set_U24U24fieldU2D34_24(U24ArrayTypeU24124_t4289081647 value)
{
___U24U24fieldU2D34_24 = value;
}
inline static int32_t get_offset_of_U24U24fieldU2D35_25() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t3057255361_StaticFields, ___U24U24fieldU2D35_25)); }
inline U24ArrayTypeU2432_t3652892010 get_U24U24fieldU2D35_25() const { return ___U24U24fieldU2D35_25; }
inline U24ArrayTypeU2432_t3652892010 * get_address_of_U24U24fieldU2D35_25() { return &___U24U24fieldU2D35_25; }
inline void set_U24U24fieldU2D35_25(U24ArrayTypeU2432_t3652892010 value)
{
___U24U24fieldU2D35_25 = value;
}
inline static int32_t get_offset_of_U24U24fieldU2D36_26() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t3057255361_StaticFields, ___U24U24fieldU2D36_26)); }
inline U24ArrayTypeU2496_t2898536284 get_U24U24fieldU2D36_26() const { return ___U24U24fieldU2D36_26; }
inline U24ArrayTypeU2496_t2898536284 * get_address_of_U24U24fieldU2D36_26() { return &___U24U24fieldU2D36_26; }
inline void set_U24U24fieldU2D36_26(U24ArrayTypeU2496_t2898536284 value)
{
___U24U24fieldU2D36_26 = value;
}
inline static int32_t get_offset_of_U24U24fieldU2D37_27() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t3057255361_StaticFields, ___U24U24fieldU2D37_27)); }
inline U24ArrayTypeU242048_t3505032960 get_U24U24fieldU2D37_27() const { return ___U24U24fieldU2D37_27; }
inline U24ArrayTypeU242048_t3505032960 * get_address_of_U24U24fieldU2D37_27() { return &___U24U24fieldU2D37_27; }
inline void set_U24U24fieldU2D37_27(U24ArrayTypeU242048_t3505032960 value)
{
___U24U24fieldU2D37_27 = value;
}
inline static int32_t get_offset_of_U24U24fieldU2D38_28() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t3057255361_StaticFields, ___U24U24fieldU2D38_28)); }
inline U24ArrayTypeU2456_t1285398176 get_U24U24fieldU2D38_28() const { return ___U24U24fieldU2D38_28; }
inline U24ArrayTypeU2456_t1285398176 * get_address_of_U24U24fieldU2D38_28() { return &___U24U24fieldU2D38_28; }
inline void set_U24U24fieldU2D38_28(U24ArrayTypeU2456_t1285398176 value)
{
___U24U24fieldU2D38_28 = value;
}
inline static int32_t get_offset_of_U24U24fieldU2D39_29() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t3057255361_StaticFields, ___U24U24fieldU2D39_29)); }
inline U24ArrayTypeU2416_t3254766644 get_U24U24fieldU2D39_29() const { return ___U24U24fieldU2D39_29; }
inline U24ArrayTypeU2416_t3254766644 * get_address_of_U24U24fieldU2D39_29() { return &___U24U24fieldU2D39_29; }
inline void set_U24U24fieldU2D39_29(U24ArrayTypeU2416_t3254766644 value)
{
___U24U24fieldU2D39_29 = value;
}
inline static int32_t get_offset_of_U24U24fieldU2D40_30() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t3057255361_StaticFields, ___U24U24fieldU2D40_30)); }
inline U24ArrayTypeU2448_t1337922363 get_U24U24fieldU2D40_30() const { return ___U24U24fieldU2D40_30; }
inline U24ArrayTypeU2448_t1337922363 * get_address_of_U24U24fieldU2D40_30() { return &___U24U24fieldU2D40_30; }
inline void set_U24U24fieldU2D40_30(U24ArrayTypeU2448_t1337922363 value)
{
___U24U24fieldU2D40_30 = value;
}
inline static int32_t get_offset_of_U24U24fieldU2D41_31() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t3057255361_StaticFields, ___U24U24fieldU2D41_31)); }
inline U24ArrayTypeU242048_t3505032960 get_U24U24fieldU2D41_31() const { return ___U24U24fieldU2D41_31; }
inline U24ArrayTypeU242048_t3505032960 * get_address_of_U24U24fieldU2D41_31() { return &___U24U24fieldU2D41_31; }
inline void set_U24U24fieldU2D41_31(U24ArrayTypeU242048_t3505032960 value)
{
___U24U24fieldU2D41_31 = value;
}
inline static int32_t get_offset_of_U24U24fieldU2D42_32() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t3057255361_StaticFields, ___U24U24fieldU2D42_32)); }
inline U24ArrayTypeU242048_t3505032960 get_U24U24fieldU2D42_32() const { return ___U24U24fieldU2D42_32; }
inline U24ArrayTypeU242048_t3505032960 * get_address_of_U24U24fieldU2D42_32() { return &___U24U24fieldU2D42_32; }
inline void set_U24U24fieldU2D42_32(U24ArrayTypeU242048_t3505032960 value)
{
___U24U24fieldU2D42_32 = value;
}
inline static int32_t get_offset_of_U24U24fieldU2D43_33() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t3057255361_StaticFields, ___U24U24fieldU2D43_33)); }
inline U24ArrayTypeU24256_t1929481982 get_U24U24fieldU2D43_33() const { return ___U24U24fieldU2D43_33; }
inline U24ArrayTypeU24256_t1929481982 * get_address_of_U24U24fieldU2D43_33() { return &___U24U24fieldU2D43_33; }
inline void set_U24U24fieldU2D43_33(U24ArrayTypeU24256_t1929481982 value)
{
___U24U24fieldU2D43_33 = value;
}
inline static int32_t get_offset_of_U24U24fieldU2D44_34() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t3057255361_StaticFields, ___U24U24fieldU2D44_34)); }
inline U24ArrayTypeU24256_t1929481982 get_U24U24fieldU2D44_34() const { return ___U24U24fieldU2D44_34; }
inline U24ArrayTypeU24256_t1929481982 * get_address_of_U24U24fieldU2D44_34() { return &___U24U24fieldU2D44_34; }
inline void set_U24U24fieldU2D44_34(U24ArrayTypeU24256_t1929481982 value)
{
___U24U24fieldU2D44_34 = value;
}
inline static int32_t get_offset_of_U24U24fieldU2D45_35() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t3057255361_StaticFields, ___U24U24fieldU2D45_35)); }
inline U24ArrayTypeU24120_t4289081651 get_U24U24fieldU2D45_35() const { return ___U24U24fieldU2D45_35; }
inline U24ArrayTypeU24120_t4289081651 * get_address_of_U24U24fieldU2D45_35() { return &___U24U24fieldU2D45_35; }
inline void set_U24U24fieldU2D45_35(U24ArrayTypeU24120_t4289081651 value)
{
___U24U24fieldU2D45_35 = value;
}
inline static int32_t get_offset_of_U24U24fieldU2D46_36() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t3057255361_StaticFields, ___U24U24fieldU2D46_36)); }
inline U24ArrayTypeU24256_t1929481982 get_U24U24fieldU2D46_36() const { return ___U24U24fieldU2D46_36; }
inline U24ArrayTypeU24256_t1929481982 * get_address_of_U24U24fieldU2D46_36() { return &___U24U24fieldU2D46_36; }
inline void set_U24U24fieldU2D46_36(U24ArrayTypeU24256_t1929481982 value)
{
___U24U24fieldU2D46_36 = value;
}
inline static int32_t get_offset_of_U24U24fieldU2D47_37() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t3057255361_StaticFields, ___U24U24fieldU2D47_37)); }
inline U24ArrayTypeU24256_t1929481982 get_U24U24fieldU2D47_37() const { return ___U24U24fieldU2D47_37; }
inline U24ArrayTypeU24256_t1929481982 * get_address_of_U24U24fieldU2D47_37() { return &___U24U24fieldU2D47_37; }
inline void set_U24U24fieldU2D47_37(U24ArrayTypeU24256_t1929481982 value)
{
___U24U24fieldU2D47_37 = value;
}
inline static int32_t get_offset_of_U24U24fieldU2D48_38() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t3057255361_StaticFields, ___U24U24fieldU2D48_38)); }
inline U24ArrayTypeU241024_t3907531057 get_U24U24fieldU2D48_38() const { return ___U24U24fieldU2D48_38; }
inline U24ArrayTypeU241024_t3907531057 * get_address_of_U24U24fieldU2D48_38() { return &___U24U24fieldU2D48_38; }
inline void set_U24U24fieldU2D48_38(U24ArrayTypeU241024_t3907531057 value)
{
___U24U24fieldU2D48_38 = value;
}
inline static int32_t get_offset_of_U24U24fieldU2D49_39() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t3057255361_StaticFields, ___U24U24fieldU2D49_39)); }
inline U24ArrayTypeU241024_t3907531057 get_U24U24fieldU2D49_39() const { return ___U24U24fieldU2D49_39; }
inline U24ArrayTypeU241024_t3907531057 * get_address_of_U24U24fieldU2D49_39() { return &___U24U24fieldU2D49_39; }
inline void set_U24U24fieldU2D49_39(U24ArrayTypeU241024_t3907531057 value)
{
___U24U24fieldU2D49_39 = value;
}
inline static int32_t get_offset_of_U24U24fieldU2D50_40() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t3057255361_StaticFields, ___U24U24fieldU2D50_40)); }
inline U24ArrayTypeU241024_t3907531057 get_U24U24fieldU2D50_40() const { return ___U24U24fieldU2D50_40; }
inline U24ArrayTypeU241024_t3907531057 * get_address_of_U24U24fieldU2D50_40() { return &___U24U24fieldU2D50_40; }
inline void set_U24U24fieldU2D50_40(U24ArrayTypeU241024_t3907531057 value)
{
___U24U24fieldU2D50_40 = value;
}
inline static int32_t get_offset_of_U24U24fieldU2D51_41() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t3057255361_StaticFields, ___U24U24fieldU2D51_41)); }
inline U24ArrayTypeU241024_t3907531057 get_U24U24fieldU2D51_41() const { return ___U24U24fieldU2D51_41; }
inline U24ArrayTypeU241024_t3907531057 * get_address_of_U24U24fieldU2D51_41() { return &___U24U24fieldU2D51_41; }
inline void set_U24U24fieldU2D51_41(U24ArrayTypeU241024_t3907531057 value)
{
___U24U24fieldU2D51_41 = value;
}
inline static int32_t get_offset_of_U24U24fieldU2D52_42() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t3057255361_StaticFields, ___U24U24fieldU2D52_42)); }
inline U24ArrayTypeU241024_t3907531057 get_U24U24fieldU2D52_42() const { return ___U24U24fieldU2D52_42; }
inline U24ArrayTypeU241024_t3907531057 * get_address_of_U24U24fieldU2D52_42() { return &___U24U24fieldU2D52_42; }
inline void set_U24U24fieldU2D52_42(U24ArrayTypeU241024_t3907531057 value)
{
___U24U24fieldU2D52_42 = value;
}
inline static int32_t get_offset_of_U24U24fieldU2D53_43() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t3057255361_StaticFields, ___U24U24fieldU2D53_43)); }
inline U24ArrayTypeU241024_t3907531057 get_U24U24fieldU2D53_43() const { return ___U24U24fieldU2D53_43; }
inline U24ArrayTypeU241024_t3907531057 * get_address_of_U24U24fieldU2D53_43() { return &___U24U24fieldU2D53_43; }
inline void set_U24U24fieldU2D53_43(U24ArrayTypeU241024_t3907531057 value)
{
___U24U24fieldU2D53_43 = value;
}
inline static int32_t get_offset_of_U24U24fieldU2D54_44() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t3057255361_StaticFields, ___U24U24fieldU2D54_44)); }
inline U24ArrayTypeU241024_t3907531057 get_U24U24fieldU2D54_44() const { return ___U24U24fieldU2D54_44; }
inline U24ArrayTypeU241024_t3907531057 * get_address_of_U24U24fieldU2D54_44() { return &___U24U24fieldU2D54_44; }
inline void set_U24U24fieldU2D54_44(U24ArrayTypeU241024_t3907531057 value)
{
___U24U24fieldU2D54_44 = value;
}
inline static int32_t get_offset_of_U24U24fieldU2D55_45() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t3057255361_StaticFields, ___U24U24fieldU2D55_45)); }
inline U24ArrayTypeU241024_t3907531057 get_U24U24fieldU2D55_45() const { return ___U24U24fieldU2D55_45; }
inline U24ArrayTypeU241024_t3907531057 * get_address_of_U24U24fieldU2D55_45() { return &___U24U24fieldU2D55_45; }
inline void set_U24U24fieldU2D55_45(U24ArrayTypeU241024_t3907531057 value)
{
___U24U24fieldU2D55_45 = value;
}
inline static int32_t get_offset_of_U24U24fieldU2D56_46() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t3057255361_StaticFields, ___U24U24fieldU2D56_46)); }
inline U24ArrayTypeU24256_t1929481982 get_U24U24fieldU2D56_46() const { return ___U24U24fieldU2D56_46; }
inline U24ArrayTypeU24256_t1929481982 * get_address_of_U24U24fieldU2D56_46() { return &___U24U24fieldU2D56_46; }
inline void set_U24U24fieldU2D56_46(U24ArrayTypeU24256_t1929481982 value)
{
___U24U24fieldU2D56_46 = value;
}
inline static int32_t get_offset_of_U24U24fieldU2D57_47() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t3057255361_StaticFields, ___U24U24fieldU2D57_47)); }
inline U24ArrayTypeU24640_t2298765680 get_U24U24fieldU2D57_47() const { return ___U24U24fieldU2D57_47; }
inline U24ArrayTypeU24640_t2298765680 * get_address_of_U24U24fieldU2D57_47() { return &___U24U24fieldU2D57_47; }
inline void set_U24U24fieldU2D57_47(U24ArrayTypeU24640_t2298765680 value)
{
___U24U24fieldU2D57_47 = value;
}
inline static int32_t get_offset_of_U24U24fieldU2D60_48() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t3057255361_StaticFields, ___U24U24fieldU2D60_48)); }
inline U24ArrayTypeU2412_t2490092596 get_U24U24fieldU2D60_48() const { return ___U24U24fieldU2D60_48; }
inline U24ArrayTypeU2412_t2490092596 * get_address_of_U24U24fieldU2D60_48() { return &___U24U24fieldU2D60_48; }
inline void set_U24U24fieldU2D60_48(U24ArrayTypeU2412_t2490092596 value)
{
___U24U24fieldU2D60_48 = value;
}
inline static int32_t get_offset_of_U24U24fieldU2D62_49() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t3057255361_StaticFields, ___U24U24fieldU2D62_49)); }
inline U24ArrayTypeU24128_t4289081659 get_U24U24fieldU2D62_49() const { return ___U24U24fieldU2D62_49; }
inline U24ArrayTypeU24128_t4289081659 * get_address_of_U24U24fieldU2D62_49() { return &___U24U24fieldU2D62_49; }
inline void set_U24U24fieldU2D62_49(U24ArrayTypeU24128_t4289081659 value)
{
___U24U24fieldU2D62_49 = value;
}
inline static int32_t get_offset_of_U24U24fieldU2D63_50() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t3057255361_StaticFields, ___U24U24fieldU2D63_50)); }
inline U24ArrayTypeU24256_t1929481982 get_U24U24fieldU2D63_50() const { return ___U24U24fieldU2D63_50; }
inline U24ArrayTypeU24256_t1929481982 * get_address_of_U24U24fieldU2D63_50() { return &___U24U24fieldU2D63_50; }
inline void set_U24U24fieldU2D63_50(U24ArrayTypeU24256_t1929481982 value)
{
___U24U24fieldU2D63_50 = value;
}
inline static int32_t get_offset_of_U24U24fieldU2D64_51() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t3057255361_StaticFields, ___U24U24fieldU2D64_51)); }
inline U24ArrayTypeU2452_t520724128 get_U24U24fieldU2D64_51() const { return ___U24U24fieldU2D64_51; }
inline U24ArrayTypeU2452_t520724128 * get_address_of_U24U24fieldU2D64_51() { return &___U24U24fieldU2D64_51; }
inline void set_U24U24fieldU2D64_51(U24ArrayTypeU2452_t520724128 value)
{
___U24U24fieldU2D64_51 = value;
}
inline static int32_t get_offset_of_U24U24fieldU2D65_52() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t3057255361_StaticFields, ___U24U24fieldU2D65_52)); }
inline U24ArrayTypeU2452_t520724128 get_U24U24fieldU2D65_52() const { return ___U24U24fieldU2D65_52; }
inline U24ArrayTypeU2452_t520724128 * get_address_of_U24U24fieldU2D65_52() { return &___U24U24fieldU2D65_52; }
inline void set_U24U24fieldU2D65_52(U24ArrayTypeU2452_t520724128 value)
{
___U24U24fieldU2D65_52 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // U3CPRIVATEIMPLEMENTATIONDETAILSU3E_T3057255361_H
#ifndef ACCESSVIOLATIONEXCEPTION_T339633883_H
#define ACCESSVIOLATIONEXCEPTION_T339633883_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.AccessViolationException
struct AccessViolationException_t339633883 : public SystemException_t176217640
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // ACCESSVIOLATIONEXCEPTION_T339633883_H
#ifndef SYNCHRONIZEDARRAYLISTWRAPPER_T2283757095_H
#define SYNCHRONIZEDARRAYLISTWRAPPER_T2283757095_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Collections.ArrayList/SynchronizedArrayListWrapper
struct SynchronizedArrayListWrapper_t2283757095 : public ArrayListWrapper_t240606758
{
public:
// System.Object System.Collections.ArrayList/SynchronizedArrayListWrapper::m_SyncRoot
RuntimeObject * ___m_SyncRoot_6;
public:
inline static int32_t get_offset_of_m_SyncRoot_6() { return static_cast<int32_t>(offsetof(SynchronizedArrayListWrapper_t2283757095, ___m_SyncRoot_6)); }
inline RuntimeObject * get_m_SyncRoot_6() const { return ___m_SyncRoot_6; }
inline RuntimeObject ** get_address_of_m_SyncRoot_6() { return &___m_SyncRoot_6; }
inline void set_m_SyncRoot_6(RuntimeObject * value)
{
___m_SyncRoot_6 = value;
Il2CppCodeGenWriteBarrier((&___m_SyncRoot_6), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // SYNCHRONIZEDARRAYLISTWRAPPER_T2283757095_H
#ifndef LOADEROPTIMIZATION_T1484956347_H
#define LOADEROPTIMIZATION_T1484956347_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.LoaderOptimization
struct LoaderOptimization_t1484956347
{
public:
// System.Int32 System.LoaderOptimization::value__
int32_t ___value___1;
public:
inline static int32_t get_offset_of_value___1() { return static_cast<int32_t>(offsetof(LoaderOptimization_t1484956347, ___value___1)); }
inline int32_t get_value___1() const { return ___value___1; }
inline int32_t* get_address_of_value___1() { return &___value___1; }
inline void set_value___1(int32_t value)
{
___value___1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // LOADEROPTIMIZATION_T1484956347_H
#ifndef TEXTINFO_T3810425522_H
#define TEXTINFO_T3810425522_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Globalization.TextInfo
struct TextInfo_t3810425522 : public RuntimeObject
{
public:
// System.String System.Globalization.TextInfo::m_listSeparator
String_t* ___m_listSeparator_0;
// System.Boolean System.Globalization.TextInfo::m_isReadOnly
bool ___m_isReadOnly_1;
// System.String System.Globalization.TextInfo::customCultureName
String_t* ___customCultureName_2;
// System.Int32 System.Globalization.TextInfo::m_nDataItem
int32_t ___m_nDataItem_3;
// System.Boolean System.Globalization.TextInfo::m_useUserOverride
bool ___m_useUserOverride_4;
// System.Int32 System.Globalization.TextInfo::m_win32LangID
int32_t ___m_win32LangID_5;
// System.Globalization.CultureInfo System.Globalization.TextInfo::ci
CultureInfo_t4157843068 * ___ci_6;
// System.Boolean System.Globalization.TextInfo::handleDotI
bool ___handleDotI_7;
// System.Globalization.TextInfo/Data System.Globalization.TextInfo::data
Data_t2225474377 ___data_8;
public:
inline static int32_t get_offset_of_m_listSeparator_0() { return static_cast<int32_t>(offsetof(TextInfo_t3810425522, ___m_listSeparator_0)); }
inline String_t* get_m_listSeparator_0() const { return ___m_listSeparator_0; }
inline String_t** get_address_of_m_listSeparator_0() { return &___m_listSeparator_0; }
inline void set_m_listSeparator_0(String_t* value)
{
___m_listSeparator_0 = value;
Il2CppCodeGenWriteBarrier((&___m_listSeparator_0), value);
}
inline static int32_t get_offset_of_m_isReadOnly_1() { return static_cast<int32_t>(offsetof(TextInfo_t3810425522, ___m_isReadOnly_1)); }
inline bool get_m_isReadOnly_1() const { return ___m_isReadOnly_1; }
inline bool* get_address_of_m_isReadOnly_1() { return &___m_isReadOnly_1; }
inline void set_m_isReadOnly_1(bool value)
{
___m_isReadOnly_1 = value;
}
inline static int32_t get_offset_of_customCultureName_2() { return static_cast<int32_t>(offsetof(TextInfo_t3810425522, ___customCultureName_2)); }
inline String_t* get_customCultureName_2() const { return ___customCultureName_2; }
inline String_t** get_address_of_customCultureName_2() { return &___customCultureName_2; }
inline void set_customCultureName_2(String_t* value)
{
___customCultureName_2 = value;
Il2CppCodeGenWriteBarrier((&___customCultureName_2), value);
}
inline static int32_t get_offset_of_m_nDataItem_3() { return static_cast<int32_t>(offsetof(TextInfo_t3810425522, ___m_nDataItem_3)); }
inline int32_t get_m_nDataItem_3() const { return ___m_nDataItem_3; }
inline int32_t* get_address_of_m_nDataItem_3() { return &___m_nDataItem_3; }
inline void set_m_nDataItem_3(int32_t value)
{
___m_nDataItem_3 = value;
}
inline static int32_t get_offset_of_m_useUserOverride_4() { return static_cast<int32_t>(offsetof(TextInfo_t3810425522, ___m_useUserOverride_4)); }
inline bool get_m_useUserOverride_4() const { return ___m_useUserOverride_4; }
inline bool* get_address_of_m_useUserOverride_4() { return &___m_useUserOverride_4; }
inline void set_m_useUserOverride_4(bool value)
{
___m_useUserOverride_4 = value;
}
inline static int32_t get_offset_of_m_win32LangID_5() { return static_cast<int32_t>(offsetof(TextInfo_t3810425522, ___m_win32LangID_5)); }
inline int32_t get_m_win32LangID_5() const { return ___m_win32LangID_5; }
inline int32_t* get_address_of_m_win32LangID_5() { return &___m_win32LangID_5; }
inline void set_m_win32LangID_5(int32_t value)
{
___m_win32LangID_5 = value;
}
inline static int32_t get_offset_of_ci_6() { return static_cast<int32_t>(offsetof(TextInfo_t3810425522, ___ci_6)); }
inline CultureInfo_t4157843068 * get_ci_6() const { return ___ci_6; }
inline CultureInfo_t4157843068 ** get_address_of_ci_6() { return &___ci_6; }
inline void set_ci_6(CultureInfo_t4157843068 * value)
{
___ci_6 = value;
Il2CppCodeGenWriteBarrier((&___ci_6), value);
}
inline static int32_t get_offset_of_handleDotI_7() { return static_cast<int32_t>(offsetof(TextInfo_t3810425522, ___handleDotI_7)); }
inline bool get_handleDotI_7() const { return ___handleDotI_7; }
inline bool* get_address_of_handleDotI_7() { return &___handleDotI_7; }
inline void set_handleDotI_7(bool value)
{
___handleDotI_7 = value;
}
inline static int32_t get_offset_of_data_8() { return static_cast<int32_t>(offsetof(TextInfo_t3810425522, ___data_8)); }
inline Data_t2225474377 get_data_8() const { return ___data_8; }
inline Data_t2225474377 * get_address_of_data_8() { return &___data_8; }
inline void set_data_8(Data_t2225474377 value)
{
___data_8 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // TEXTINFO_T3810425522_H
#ifndef CRYPTOGRAPHICEXCEPTION_T248831461_H
#define CRYPTOGRAPHICEXCEPTION_T248831461_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Security.Cryptography.CryptographicException
struct CryptographicException_t248831461 : public SystemException_t176217640
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // CRYPTOGRAPHICEXCEPTION_T248831461_H
#ifndef TYPEATTRIBUTES_T113483779_H
#define TYPEATTRIBUTES_T113483779_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Reflection.TypeAttributes
struct TypeAttributes_t113483779
{
public:
// System.Int32 System.Reflection.TypeAttributes::value__
int32_t ___value___1;
public:
inline static int32_t get_offset_of_value___1() { return static_cast<int32_t>(offsetof(TypeAttributes_t113483779, ___value___1)); }
inline int32_t get_value___1() const { return ___value___1; }
inline int32_t* get_address_of_value___1() { return &___value___1; }
inline void set_value___1(int32_t value)
{
___value___1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // TYPEATTRIBUTES_T113483779_H
#ifndef ARRAYTYPEMISMATCHEXCEPTION_T2342549375_H
#define ARRAYTYPEMISMATCHEXCEPTION_T2342549375_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.ArrayTypeMismatchException
struct ArrayTypeMismatchException_t2342549375 : public SystemException_t176217640
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // ARRAYTYPEMISMATCHEXCEPTION_T2342549375_H
#ifndef FIXEDSIZEARRAYLISTWRAPPER_T220909481_H
#define FIXEDSIZEARRAYLISTWRAPPER_T220909481_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Collections.ArrayList/FixedSizeArrayListWrapper
struct FixedSizeArrayListWrapper_t220909481 : public ArrayListWrapper_t240606758
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // FIXEDSIZEARRAYLISTWRAPPER_T220909481_H
#ifndef PACKINGSIZE_T2976435189_H
#define PACKINGSIZE_T2976435189_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Reflection.Emit.PackingSize
struct PackingSize_t2976435189
{
public:
// System.Int32 System.Reflection.Emit.PackingSize::value__
int32_t ___value___1;
public:
inline static int32_t get_offset_of_value___1() { return static_cast<int32_t>(offsetof(PackingSize_t2976435189, ___value___1)); }
inline int32_t get_value___1() const { return ___value___1; }
inline int32_t* get_address_of_value___1() { return &___value___1; }
inline void set_value___1(int32_t value)
{
___value___1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // PACKINGSIZE_T2976435189_H
#ifndef DATETIMEFORMATFLAGS_T1884407083_H
#define DATETIMEFORMATFLAGS_T1884407083_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Globalization.DateTimeFormatFlags
struct DateTimeFormatFlags_t1884407083
{
public:
// System.Int32 System.Globalization.DateTimeFormatFlags::value__
int32_t ___value___1;
public:
inline static int32_t get_offset_of_value___1() { return static_cast<int32_t>(offsetof(DateTimeFormatFlags_t1884407083, ___value___1)); }
inline int32_t get_value___1() const { return ___value___1; }
inline int32_t* get_address_of_value___1() { return &___value___1; }
inline void set_value___1(int32_t value)
{
___value___1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // DATETIMEFORMATFLAGS_T1884407083_H
#ifndef FORMATEXCEPTION_T154580423_H
#define FORMATEXCEPTION_T154580423_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.FormatException
struct FormatException_t154580423 : public SystemException_t176217640
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // FORMATEXCEPTION_T154580423_H
#ifndef ATTRIBUTETARGETS_T1784037988_H
#define ATTRIBUTETARGETS_T1784037988_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.AttributeTargets
struct AttributeTargets_t1784037988
{
public:
// System.Int32 System.AttributeTargets::value__
int32_t ___value___1;
public:
inline static int32_t get_offset_of_value___1() { return static_cast<int32_t>(offsetof(AttributeTargets_t1784037988, ___value___1)); }
inline int32_t get_value___1() const { return ___value___1; }
inline int32_t* get_address_of_value___1() { return &___value___1; }
inline void set_value___1(int32_t value)
{
___value___1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // ATTRIBUTETARGETS_T1784037988_H
#ifndef MEMBERTYPES_T3790569052_H
#define MEMBERTYPES_T3790569052_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Reflection.MemberTypes
struct MemberTypes_t3790569052
{
public:
// System.Int32 System.Reflection.MemberTypes::value__
int32_t ___value___1;
public:
inline static int32_t get_offset_of_value___1() { return static_cast<int32_t>(offsetof(MemberTypes_t3790569052, ___value___1)); }
inline int32_t get_value___1() const { return ___value___1; }
inline int32_t* get_address_of_value___1() { return &___value___1; }
inline void set_value___1(int32_t value)
{
___value___1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // MEMBERTYPES_T3790569052_H
#ifndef NUMBERSTYLES_T617258130_H
#define NUMBERSTYLES_T617258130_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Globalization.NumberStyles
struct NumberStyles_t617258130
{
public:
// System.Int32 System.Globalization.NumberStyles::value__
int32_t ___value___1;
public:
inline static int32_t get_offset_of_value___1() { return static_cast<int32_t>(offsetof(NumberStyles_t617258130, ___value___1)); }
inline int32_t get_value___1() const { return ___value___1; }
inline int32_t* get_address_of_value___1() { return &___value___1; }
inline void set_value___1(int32_t value)
{
___value___1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // NUMBERSTYLES_T617258130_H
#ifndef PARAMETERATTRIBUTES_T1826424051_H
#define PARAMETERATTRIBUTES_T1826424051_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Reflection.ParameterAttributes
struct ParameterAttributes_t1826424051
{
public:
// System.Int32 System.Reflection.ParameterAttributes::value__
int32_t ___value___1;
public:
inline static int32_t get_offset_of_value___1() { return static_cast<int32_t>(offsetof(ParameterAttributes_t1826424051, ___value___1)); }
inline int32_t get_value___1() const { return ___value___1; }
inline int32_t* get_address_of_value___1() { return &___value___1; }
inline void set_value___1(int32_t value)
{
___value___1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // PARAMETERATTRIBUTES_T1826424051_H
#ifndef TYPECODE_T2987224087_H
#define TYPECODE_T2987224087_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.TypeCode
struct TypeCode_t2987224087
{
public:
// System.Int32 System.TypeCode::value__
int32_t ___value___1;
public:
inline static int32_t get_offset_of_value___1() { return static_cast<int32_t>(offsetof(TypeCode_t2987224087, ___value___1)); }
inline int32_t get_value___1() const { return ___value___1; }
inline int32_t* get_address_of_value___1() { return &___value___1; }
inline void set_value___1(int32_t value)
{
___value___1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // TYPECODE_T2987224087_H
#ifndef SMALLXMLPARSEREXCEPTION_T1329648272_H
#define SMALLXMLPARSEREXCEPTION_T1329648272_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Mono.Xml.SmallXmlParserException
struct SmallXmlParserException_t1329648272 : public SystemException_t176217640
{
public:
// System.Int32 Mono.Xml.SmallXmlParserException::line
int32_t ___line_11;
// System.Int32 Mono.Xml.SmallXmlParserException::column
int32_t ___column_12;
public:
inline static int32_t get_offset_of_line_11() { return static_cast<int32_t>(offsetof(SmallXmlParserException_t1329648272, ___line_11)); }
inline int32_t get_line_11() const { return ___line_11; }
inline int32_t* get_address_of_line_11() { return &___line_11; }
inline void set_line_11(int32_t value)
{
___line_11 = value;
}
inline static int32_t get_offset_of_column_12() { return static_cast<int32_t>(offsetof(SmallXmlParserException_t1329648272, ___column_12)); }
inline int32_t get_column_12() const { return ___column_12; }
inline int32_t* get_address_of_column_12() { return &___column_12; }
inline void set_column_12(int32_t value)
{
___column_12 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // SMALLXMLPARSEREXCEPTION_T1329648272_H
#ifndef UNICODECATEGORY_T3356078642_H
#define UNICODECATEGORY_T3356078642_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Globalization.UnicodeCategory
struct UnicodeCategory_t3356078642
{
public:
// System.Int32 System.Globalization.UnicodeCategory::value__
int32_t ___value___1;
public:
inline static int32_t get_offset_of_value___1() { return static_cast<int32_t>(offsetof(UnicodeCategory_t3356078642, ___value___1)); }
inline int32_t get_value___1() const { return ___value___1; }
inline int32_t* get_address_of_value___1() { return &___value___1; }
inline void set_value___1(int32_t value)
{
___value___1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // UNICODECATEGORY_T3356078642_H
#ifndef ENUMERATORMODE_T1442366820_H
#define ENUMERATORMODE_T1442366820_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Collections.Hashtable/EnumeratorMode
struct EnumeratorMode_t1442366820
{
public:
// System.Int32 System.Collections.Hashtable/EnumeratorMode::value__
int32_t ___value___1;
public:
inline static int32_t get_offset_of_value___1() { return static_cast<int32_t>(offsetof(EnumeratorMode_t1442366820, ___value___1)); }
inline int32_t get_value___1() const { return ___value___1; }
inline int32_t* get_address_of_value___1() { return &___value___1; }
inline void set_value___1(int32_t value)
{
___value___1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // ENUMERATORMODE_T1442366820_H
#ifndef ARGITERATOR_T539591376_H
#define ARGITERATOR_T539591376_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.ArgIterator
struct ArgIterator_t539591376
{
public:
// System.IntPtr System.ArgIterator::sig
intptr_t ___sig_0;
// System.IntPtr System.ArgIterator::args
intptr_t ___args_1;
// System.Int32 System.ArgIterator::next_arg
int32_t ___next_arg_2;
// System.Int32 System.ArgIterator::num_args
int32_t ___num_args_3;
public:
inline static int32_t get_offset_of_sig_0() { return static_cast<int32_t>(offsetof(ArgIterator_t539591376, ___sig_0)); }
inline intptr_t get_sig_0() const { return ___sig_0; }
inline intptr_t* get_address_of_sig_0() { return &___sig_0; }
inline void set_sig_0(intptr_t value)
{
___sig_0 = value;
}
inline static int32_t get_offset_of_args_1() { return static_cast<int32_t>(offsetof(ArgIterator_t539591376, ___args_1)); }
inline intptr_t get_args_1() const { return ___args_1; }
inline intptr_t* get_address_of_args_1() { return &___args_1; }
inline void set_args_1(intptr_t value)
{
___args_1 = value;
}
inline static int32_t get_offset_of_next_arg_2() { return static_cast<int32_t>(offsetof(ArgIterator_t539591376, ___next_arg_2)); }
inline int32_t get_next_arg_2() const { return ___next_arg_2; }
inline int32_t* get_address_of_next_arg_2() { return &___next_arg_2; }
inline void set_next_arg_2(int32_t value)
{
___next_arg_2 = value;
}
inline static int32_t get_offset_of_num_args_3() { return static_cast<int32_t>(offsetof(ArgIterator_t539591376, ___num_args_3)); }
inline int32_t get_num_args_3() const { return ___num_args_3; }
inline int32_t* get_address_of_num_args_3() { return &___num_args_3; }
inline void set_num_args_3(int32_t value)
{
___num_args_3 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // ARGITERATOR_T539591376_H
#ifndef INDEXOUTOFRANGEEXCEPTION_T1578797820_H
#define INDEXOUTOFRANGEEXCEPTION_T1578797820_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.IndexOutOfRangeException
struct IndexOutOfRangeException_t1578797820 : public SystemException_t176217640
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // INDEXOUTOFRANGEEXCEPTION_T1578797820_H
#ifndef SERIALIZATIONEXCEPTION_T3941511869_H
#define SERIALIZATIONEXCEPTION_T3941511869_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Runtime.Serialization.SerializationException
struct SerializationException_t3941511869 : public SystemException_t176217640
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // SERIALIZATIONEXCEPTION_T3941511869_H
#ifndef RUNTIMETYPEHANDLE_T3027515415_H
#define RUNTIMETYPEHANDLE_T3027515415_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.RuntimeTypeHandle
struct RuntimeTypeHandle_t3027515415
{
public:
// System.IntPtr System.RuntimeTypeHandle::value
intptr_t ___value_0;
public:
inline static int32_t get_offset_of_value_0() { return static_cast<int32_t>(offsetof(RuntimeTypeHandle_t3027515415, ___value_0)); }
inline intptr_t get_value_0() const { return ___value_0; }
inline intptr_t* get_address_of_value_0() { return &___value_0; }
inline void set_value_0(intptr_t value)
{
___value_0 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // RUNTIMETYPEHANDLE_T3027515415_H
#ifndef ARITHMETICEXCEPTION_T4283546778_H
#define ARITHMETICEXCEPTION_T4283546778_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.ArithmeticException
struct ArithmeticException_t4283546778 : public SystemException_t176217640
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // ARITHMETICEXCEPTION_T4283546778_H
#ifndef INVALIDOPERATIONEXCEPTION_T56020091_H
#define INVALIDOPERATIONEXCEPTION_T56020091_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.InvalidOperationException
struct InvalidOperationException_t56020091 : public SystemException_t176217640
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // INVALIDOPERATIONEXCEPTION_T56020091_H
#ifndef COMPAREOPTIONS_T4130014775_H
#define COMPAREOPTIONS_T4130014775_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Globalization.CompareOptions
struct CompareOptions_t4130014775
{
public:
// System.Int32 System.Globalization.CompareOptions::value__
int32_t ___value___1;
public:
inline static int32_t get_offset_of_value___1() { return static_cast<int32_t>(offsetof(CompareOptions_t4130014775, ___value___1)); }
inline int32_t get_value___1() const { return ___value___1; }
inline int32_t* get_address_of_value___1() { return &___value___1; }
inline void set_value___1(int32_t value)
{
___value___1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // COMPAREOPTIONS_T4130014775_H
#ifndef INVALIDCASTEXCEPTION_T3927145244_H
#define INVALIDCASTEXCEPTION_T3927145244_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.InvalidCastException
struct InvalidCastException_t3927145244 : public SystemException_t176217640
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // INVALIDCASTEXCEPTION_T3927145244_H
#ifndef TYPELOADEXCEPTION_T3707937253_H
#define TYPELOADEXCEPTION_T3707937253_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.TypeLoadException
struct TypeLoadException_t3707937253 : public SystemException_t176217640
{
public:
// System.String System.TypeLoadException::className
String_t* ___className_12;
// System.String System.TypeLoadException::assemblyName
String_t* ___assemblyName_13;
public:
inline static int32_t get_offset_of_className_12() { return static_cast<int32_t>(offsetof(TypeLoadException_t3707937253, ___className_12)); }
inline String_t* get_className_12() const { return ___className_12; }
inline String_t** get_address_of_className_12() { return &___className_12; }
inline void set_className_12(String_t* value)
{
___className_12 = value;
Il2CppCodeGenWriteBarrier((&___className_12), value);
}
inline static int32_t get_offset_of_assemblyName_13() { return static_cast<int32_t>(offsetof(TypeLoadException_t3707937253, ___assemblyName_13)); }
inline String_t* get_assemblyName_13() const { return ___assemblyName_13; }
inline String_t** get_address_of_assemblyName_13() { return &___assemblyName_13; }
inline void set_assemblyName_13(String_t* value)
{
___assemblyName_13 = value;
Il2CppCodeGenWriteBarrier((&___assemblyName_13), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // TYPELOADEXCEPTION_T3707937253_H
#ifndef RANKEXCEPTION_T3812021567_H
#define RANKEXCEPTION_T3812021567_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.RankException
struct RankException_t3812021567 : public SystemException_t176217640
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // RANKEXCEPTION_T3812021567_H
#ifndef DSACRYPTOSERVICEPROVIDER_T3992668923_H
#define DSACRYPTOSERVICEPROVIDER_T3992668923_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Security.Cryptography.DSACryptoServiceProvider
struct DSACryptoServiceProvider_t3992668923 : public DSA_t2386879874
{
public:
// Mono.Security.Cryptography.KeyPairPersistence System.Security.Cryptography.DSACryptoServiceProvider::store
KeyPairPersistence_t2094547461 * ___store_2;
// System.Boolean System.Security.Cryptography.DSACryptoServiceProvider::persistKey
bool ___persistKey_3;
// System.Boolean System.Security.Cryptography.DSACryptoServiceProvider::persisted
bool ___persisted_4;
// System.Boolean System.Security.Cryptography.DSACryptoServiceProvider::privateKeyExportable
bool ___privateKeyExportable_5;
// System.Boolean System.Security.Cryptography.DSACryptoServiceProvider::m_disposed
bool ___m_disposed_6;
// Mono.Security.Cryptography.DSAManaged System.Security.Cryptography.DSACryptoServiceProvider::dsa
DSAManaged_t2800260182 * ___dsa_7;
public:
inline static int32_t get_offset_of_store_2() { return static_cast<int32_t>(offsetof(DSACryptoServiceProvider_t3992668923, ___store_2)); }
inline KeyPairPersistence_t2094547461 * get_store_2() const { return ___store_2; }
inline KeyPairPersistence_t2094547461 ** get_address_of_store_2() { return &___store_2; }
inline void set_store_2(KeyPairPersistence_t2094547461 * value)
{
___store_2 = value;
Il2CppCodeGenWriteBarrier((&___store_2), value);
}
inline static int32_t get_offset_of_persistKey_3() { return static_cast<int32_t>(offsetof(DSACryptoServiceProvider_t3992668923, ___persistKey_3)); }
inline bool get_persistKey_3() const { return ___persistKey_3; }
inline bool* get_address_of_persistKey_3() { return &___persistKey_3; }
inline void set_persistKey_3(bool value)
{
___persistKey_3 = value;
}
inline static int32_t get_offset_of_persisted_4() { return static_cast<int32_t>(offsetof(DSACryptoServiceProvider_t3992668923, ___persisted_4)); }
inline bool get_persisted_4() const { return ___persisted_4; }
inline bool* get_address_of_persisted_4() { return &___persisted_4; }
inline void set_persisted_4(bool value)
{
___persisted_4 = value;
}
inline static int32_t get_offset_of_privateKeyExportable_5() { return static_cast<int32_t>(offsetof(DSACryptoServiceProvider_t3992668923, ___privateKeyExportable_5)); }
inline bool get_privateKeyExportable_5() const { return ___privateKeyExportable_5; }
inline bool* get_address_of_privateKeyExportable_5() { return &___privateKeyExportable_5; }
inline void set_privateKeyExportable_5(bool value)
{
___privateKeyExportable_5 = value;
}
inline static int32_t get_offset_of_m_disposed_6() { return static_cast<int32_t>(offsetof(DSACryptoServiceProvider_t3992668923, ___m_disposed_6)); }
inline bool get_m_disposed_6() const { return ___m_disposed_6; }
inline bool* get_address_of_m_disposed_6() { return &___m_disposed_6; }
inline void set_m_disposed_6(bool value)
{
___m_disposed_6 = value;
}
inline static int32_t get_offset_of_dsa_7() { return static_cast<int32_t>(offsetof(DSACryptoServiceProvider_t3992668923, ___dsa_7)); }
inline DSAManaged_t2800260182 * get_dsa_7() const { return ___dsa_7; }
inline DSAManaged_t2800260182 ** get_address_of_dsa_7() { return &___dsa_7; }
inline void set_dsa_7(DSAManaged_t2800260182 * value)
{
___dsa_7 = value;
Il2CppCodeGenWriteBarrier((&___dsa_7), value);
}
};
struct DSACryptoServiceProvider_t3992668923_StaticFields
{
public:
// System.Boolean System.Security.Cryptography.DSACryptoServiceProvider::useMachineKeyStore
bool ___useMachineKeyStore_8;
public:
inline static int32_t get_offset_of_useMachineKeyStore_8() { return static_cast<int32_t>(offsetof(DSACryptoServiceProvider_t3992668923_StaticFields, ___useMachineKeyStore_8)); }
inline bool get_useMachineKeyStore_8() const { return ___useMachineKeyStore_8; }
inline bool* get_address_of_useMachineKeyStore_8() { return &___useMachineKeyStore_8; }
inline void set_useMachineKeyStore_8(bool value)
{
___useMachineKeyStore_8 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // DSACRYPTOSERVICEPROVIDER_T3992668923_H
#ifndef KEYNOTFOUNDEXCEPTION_T2292407383_H
#define KEYNOTFOUNDEXCEPTION_T2292407383_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Collections.Generic.KeyNotFoundException
struct KeyNotFoundException_t2292407383 : public SystemException_t176217640
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // KEYNOTFOUNDEXCEPTION_T2292407383_H
#ifndef STREAMINGCONTEXT_T3711869237_H
#define STREAMINGCONTEXT_T3711869237_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Runtime.Serialization.StreamingContext
struct StreamingContext_t3711869237
{
public:
// System.Runtime.Serialization.StreamingContextStates System.Runtime.Serialization.StreamingContext::state
int32_t ___state_0;
// System.Object System.Runtime.Serialization.StreamingContext::additional
RuntimeObject * ___additional_1;
public:
inline static int32_t get_offset_of_state_0() { return static_cast<int32_t>(offsetof(StreamingContext_t3711869237, ___state_0)); }
inline int32_t get_state_0() const { return ___state_0; }
inline int32_t* get_address_of_state_0() { return &___state_0; }
inline void set_state_0(int32_t value)
{
___state_0 = value;
}
inline static int32_t get_offset_of_additional_1() { return static_cast<int32_t>(offsetof(StreamingContext_t3711869237, ___additional_1)); }
inline RuntimeObject * get_additional_1() const { return ___additional_1; }
inline RuntimeObject ** get_address_of_additional_1() { return &___additional_1; }
inline void set_additional_1(RuntimeObject * value)
{
___additional_1 = value;
Il2CppCodeGenWriteBarrier((&___additional_1), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// Native definition for P/Invoke marshalling of System.Runtime.Serialization.StreamingContext
struct StreamingContext_t3711869237_marshaled_pinvoke
{
int32_t ___state_0;
Il2CppIUnknown* ___additional_1;
};
// Native definition for COM marshalling of System.Runtime.Serialization.StreamingContext
struct StreamingContext_t3711869237_marshaled_com
{
int32_t ___state_0;
Il2CppIUnknown* ___additional_1;
};
#endif // STREAMINGCONTEXT_T3711869237_H
#ifndef TYPE_T_H
#define TYPE_T_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Type
struct Type_t : public MemberInfo_t
{
public:
// System.RuntimeTypeHandle System.Type::_impl
RuntimeTypeHandle_t3027515415 ____impl_1;
public:
inline static int32_t get_offset_of__impl_1() { return static_cast<int32_t>(offsetof(Type_t, ____impl_1)); }
inline RuntimeTypeHandle_t3027515415 get__impl_1() const { return ____impl_1; }
inline RuntimeTypeHandle_t3027515415 * get_address_of__impl_1() { return &____impl_1; }
inline void set__impl_1(RuntimeTypeHandle_t3027515415 value)
{
____impl_1 = value;
}
};
struct Type_t_StaticFields
{
public:
// System.Char System.Type::Delimiter
Il2CppChar ___Delimiter_2;
// System.Type[] System.Type::EmptyTypes
TypeU5BU5D_t3940880105* ___EmptyTypes_3;
// System.Reflection.MemberFilter System.Type::FilterAttribute
MemberFilter_t426314064 * ___FilterAttribute_4;
// System.Reflection.MemberFilter System.Type::FilterName
MemberFilter_t426314064 * ___FilterName_5;
// System.Reflection.MemberFilter System.Type::FilterNameIgnoreCase
MemberFilter_t426314064 * ___FilterNameIgnoreCase_6;
// System.Object System.Type::Missing
RuntimeObject * ___Missing_7;
public:
inline static int32_t get_offset_of_Delimiter_2() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___Delimiter_2)); }
inline Il2CppChar get_Delimiter_2() const { return ___Delimiter_2; }
inline Il2CppChar* get_address_of_Delimiter_2() { return &___Delimiter_2; }
inline void set_Delimiter_2(Il2CppChar value)
{
___Delimiter_2 = value;
}
inline static int32_t get_offset_of_EmptyTypes_3() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___EmptyTypes_3)); }
inline TypeU5BU5D_t3940880105* get_EmptyTypes_3() const { return ___EmptyTypes_3; }
inline TypeU5BU5D_t3940880105** get_address_of_EmptyTypes_3() { return &___EmptyTypes_3; }
inline void set_EmptyTypes_3(TypeU5BU5D_t3940880105* value)
{
___EmptyTypes_3 = value;
Il2CppCodeGenWriteBarrier((&___EmptyTypes_3), value);
}
inline static int32_t get_offset_of_FilterAttribute_4() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___FilterAttribute_4)); }
inline MemberFilter_t426314064 * get_FilterAttribute_4() const { return ___FilterAttribute_4; }
inline MemberFilter_t426314064 ** get_address_of_FilterAttribute_4() { return &___FilterAttribute_4; }
inline void set_FilterAttribute_4(MemberFilter_t426314064 * value)
{
___FilterAttribute_4 = value;
Il2CppCodeGenWriteBarrier((&___FilterAttribute_4), value);
}
inline static int32_t get_offset_of_FilterName_5() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___FilterName_5)); }
inline MemberFilter_t426314064 * get_FilterName_5() const { return ___FilterName_5; }
inline MemberFilter_t426314064 ** get_address_of_FilterName_5() { return &___FilterName_5; }
inline void set_FilterName_5(MemberFilter_t426314064 * value)
{
___FilterName_5 = value;
Il2CppCodeGenWriteBarrier((&___FilterName_5), value);
}
inline static int32_t get_offset_of_FilterNameIgnoreCase_6() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___FilterNameIgnoreCase_6)); }
inline MemberFilter_t426314064 * get_FilterNameIgnoreCase_6() const { return ___FilterNameIgnoreCase_6; }
inline MemberFilter_t426314064 ** get_address_of_FilterNameIgnoreCase_6() { return &___FilterNameIgnoreCase_6; }
inline void set_FilterNameIgnoreCase_6(MemberFilter_t426314064 * value)
{
___FilterNameIgnoreCase_6 = value;
Il2CppCodeGenWriteBarrier((&___FilterNameIgnoreCase_6), value);
}
inline static int32_t get_offset_of_Missing_7() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___Missing_7)); }
inline RuntimeObject * get_Missing_7() const { return ___Missing_7; }
inline RuntimeObject ** get_address_of_Missing_7() { return &___Missing_7; }
inline void set_Missing_7(RuntimeObject * value)
{
___Missing_7 = value;
Il2CppCodeGenWriteBarrier((&___Missing_7), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // TYPE_T_H
#ifndef MISSINGMEMBEREXCEPTION_T1385081665_H
#define MISSINGMEMBEREXCEPTION_T1385081665_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.MissingMemberException
struct MissingMemberException_t1385081665 : public MemberAccessException_t1734467078
{
public:
// System.String System.MissingMemberException::ClassName
String_t* ___ClassName_11;
// System.String System.MissingMemberException::MemberName
String_t* ___MemberName_12;
// System.Byte[] System.MissingMemberException::Signature
ByteU5BU5D_t4116647657* ___Signature_13;
public:
inline static int32_t get_offset_of_ClassName_11() { return static_cast<int32_t>(offsetof(MissingMemberException_t1385081665, ___ClassName_11)); }
inline String_t* get_ClassName_11() const { return ___ClassName_11; }
inline String_t** get_address_of_ClassName_11() { return &___ClassName_11; }
inline void set_ClassName_11(String_t* value)
{
___ClassName_11 = value;
Il2CppCodeGenWriteBarrier((&___ClassName_11), value);
}
inline static int32_t get_offset_of_MemberName_12() { return static_cast<int32_t>(offsetof(MissingMemberException_t1385081665, ___MemberName_12)); }
inline String_t* get_MemberName_12() const { return ___MemberName_12; }
inline String_t** get_address_of_MemberName_12() { return &___MemberName_12; }
inline void set_MemberName_12(String_t* value)
{
___MemberName_12 = value;
Il2CppCodeGenWriteBarrier((&___MemberName_12), value);
}
inline static int32_t get_offset_of_Signature_13() { return static_cast<int32_t>(offsetof(MissingMemberException_t1385081665, ___Signature_13)); }
inline ByteU5BU5D_t4116647657* get_Signature_13() const { return ___Signature_13; }
inline ByteU5BU5D_t4116647657** get_address_of_Signature_13() { return &___Signature_13; }
inline void set_Signature_13(ByteU5BU5D_t4116647657* value)
{
___Signature_13 = value;
Il2CppCodeGenWriteBarrier((&___Signature_13), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // MISSINGMEMBEREXCEPTION_T1385081665_H
#ifndef ATTRIBUTEUSAGEATTRIBUTE_T290877318_H
#define ATTRIBUTEUSAGEATTRIBUTE_T290877318_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.AttributeUsageAttribute
struct AttributeUsageAttribute_t290877318 : public Attribute_t861562559
{
public:
// System.AttributeTargets System.AttributeUsageAttribute::valid_on
int32_t ___valid_on_0;
// System.Boolean System.AttributeUsageAttribute::allow_multiple
bool ___allow_multiple_1;
// System.Boolean System.AttributeUsageAttribute::inherited
bool ___inherited_2;
public:
inline static int32_t get_offset_of_valid_on_0() { return static_cast<int32_t>(offsetof(AttributeUsageAttribute_t290877318, ___valid_on_0)); }
inline int32_t get_valid_on_0() const { return ___valid_on_0; }
inline int32_t* get_address_of_valid_on_0() { return &___valid_on_0; }
inline void set_valid_on_0(int32_t value)
{
___valid_on_0 = value;
}
inline static int32_t get_offset_of_allow_multiple_1() { return static_cast<int32_t>(offsetof(AttributeUsageAttribute_t290877318, ___allow_multiple_1)); }
inline bool get_allow_multiple_1() const { return ___allow_multiple_1; }
inline bool* get_address_of_allow_multiple_1() { return &___allow_multiple_1; }
inline void set_allow_multiple_1(bool value)
{
___allow_multiple_1 = value;
}
inline static int32_t get_offset_of_inherited_2() { return static_cast<int32_t>(offsetof(AttributeUsageAttribute_t290877318, ___inherited_2)); }
inline bool get_inherited_2() const { return ___inherited_2; }
inline bool* get_address_of_inherited_2() { return &___inherited_2; }
inline void set_inherited_2(bool value)
{
___inherited_2 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // ATTRIBUTEUSAGEATTRIBUTE_T290877318_H
#ifndef OVERFLOWEXCEPTION_T2020128637_H
#define OVERFLOWEXCEPTION_T2020128637_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.OverflowException
struct OverflowException_t2020128637 : public ArithmeticException_t4283546778
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // OVERFLOWEXCEPTION_T2020128637_H
#ifndef READONLYARRAYLISTWRAPPER_T3401315650_H
#define READONLYARRAYLISTWRAPPER_T3401315650_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Collections.ArrayList/ReadOnlyArrayListWrapper
struct ReadOnlyArrayListWrapper_t3401315650 : public FixedSizeArrayListWrapper_t220909481
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // READONLYARRAYLISTWRAPPER_T3401315650_H
#ifndef MULTICASTDELEGATE_T_H
#define MULTICASTDELEGATE_T_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.MulticastDelegate
struct MulticastDelegate_t : public Delegate_t1188392813
{
public:
// System.MulticastDelegate System.MulticastDelegate::prev
MulticastDelegate_t * ___prev_9;
// System.MulticastDelegate System.MulticastDelegate::kpm_next
MulticastDelegate_t * ___kpm_next_10;
public:
inline static int32_t get_offset_of_prev_9() { return static_cast<int32_t>(offsetof(MulticastDelegate_t, ___prev_9)); }
inline MulticastDelegate_t * get_prev_9() const { return ___prev_9; }
inline MulticastDelegate_t ** get_address_of_prev_9() { return &___prev_9; }
inline void set_prev_9(MulticastDelegate_t * value)
{
___prev_9 = value;
Il2CppCodeGenWriteBarrier((&___prev_9), value);
}
inline static int32_t get_offset_of_kpm_next_10() { return static_cast<int32_t>(offsetof(MulticastDelegate_t, ___kpm_next_10)); }
inline MulticastDelegate_t * get_kpm_next_10() const { return ___kpm_next_10; }
inline MulticastDelegate_t ** get_address_of_kpm_next_10() { return &___kpm_next_10; }
inline void set_kpm_next_10(MulticastDelegate_t * value)
{
___kpm_next_10 = value;
Il2CppCodeGenWriteBarrier((&___kpm_next_10), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // MULTICASTDELEGATE_T_H
#ifndef ARGUMENTOUTOFRANGEEXCEPTION_T777629997_H
#define ARGUMENTOUTOFRANGEEXCEPTION_T777629997_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.ArgumentOutOfRangeException
struct ArgumentOutOfRangeException_t777629997 : public ArgumentException_t132251570
{
public:
// System.Object System.ArgumentOutOfRangeException::actual_value
RuntimeObject * ___actual_value_13;
public:
inline static int32_t get_offset_of_actual_value_13() { return static_cast<int32_t>(offsetof(ArgumentOutOfRangeException_t777629997, ___actual_value_13)); }
inline RuntimeObject * get_actual_value_13() const { return ___actual_value_13; }
inline RuntimeObject ** get_address_of_actual_value_13() { return &___actual_value_13; }
inline void set_actual_value_13(RuntimeObject * value)
{
___actual_value_13 = value;
Il2CppCodeGenWriteBarrier((&___actual_value_13), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // ARGUMENTOUTOFRANGEEXCEPTION_T777629997_H
#ifndef ENUMERATOR_T661358686_H
#define ENUMERATOR_T661358686_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Collections.Hashtable/Enumerator
struct Enumerator_t661358686 : public RuntimeObject
{
public:
// System.Collections.Hashtable System.Collections.Hashtable/Enumerator::host
Hashtable_t1853889766 * ___host_0;
// System.Int32 System.Collections.Hashtable/Enumerator::stamp
int32_t ___stamp_1;
// System.Int32 System.Collections.Hashtable/Enumerator::pos
int32_t ___pos_2;
// System.Int32 System.Collections.Hashtable/Enumerator::size
int32_t ___size_3;
// System.Collections.Hashtable/EnumeratorMode System.Collections.Hashtable/Enumerator::mode
int32_t ___mode_4;
// System.Object System.Collections.Hashtable/Enumerator::currentKey
RuntimeObject * ___currentKey_5;
// System.Object System.Collections.Hashtable/Enumerator::currentValue
RuntimeObject * ___currentValue_6;
public:
inline static int32_t get_offset_of_host_0() { return static_cast<int32_t>(offsetof(Enumerator_t661358686, ___host_0)); }
inline Hashtable_t1853889766 * get_host_0() const { return ___host_0; }
inline Hashtable_t1853889766 ** get_address_of_host_0() { return &___host_0; }
inline void set_host_0(Hashtable_t1853889766 * value)
{
___host_0 = value;
Il2CppCodeGenWriteBarrier((&___host_0), value);
}
inline static int32_t get_offset_of_stamp_1() { return static_cast<int32_t>(offsetof(Enumerator_t661358686, ___stamp_1)); }
inline int32_t get_stamp_1() const { return ___stamp_1; }
inline int32_t* get_address_of_stamp_1() { return &___stamp_1; }
inline void set_stamp_1(int32_t value)
{
___stamp_1 = value;
}
inline static int32_t get_offset_of_pos_2() { return static_cast<int32_t>(offsetof(Enumerator_t661358686, ___pos_2)); }
inline int32_t get_pos_2() const { return ___pos_2; }
inline int32_t* get_address_of_pos_2() { return &___pos_2; }
inline void set_pos_2(int32_t value)
{
___pos_2 = value;
}
inline static int32_t get_offset_of_size_3() { return static_cast<int32_t>(offsetof(Enumerator_t661358686, ___size_3)); }
inline int32_t get_size_3() const { return ___size_3; }
inline int32_t* get_address_of_size_3() { return &___size_3; }
inline void set_size_3(int32_t value)
{
___size_3 = value;
}
inline static int32_t get_offset_of_mode_4() { return static_cast<int32_t>(offsetof(Enumerator_t661358686, ___mode_4)); }
inline int32_t get_mode_4() const { return ___mode_4; }
inline int32_t* get_address_of_mode_4() { return &___mode_4; }
inline void set_mode_4(int32_t value)
{
___mode_4 = value;
}
inline static int32_t get_offset_of_currentKey_5() { return static_cast<int32_t>(offsetof(Enumerator_t661358686, ___currentKey_5)); }
inline RuntimeObject * get_currentKey_5() const { return ___currentKey_5; }
inline RuntimeObject ** get_address_of_currentKey_5() { return &___currentKey_5; }
inline void set_currentKey_5(RuntimeObject * value)
{
___currentKey_5 = value;
Il2CppCodeGenWriteBarrier((&___currentKey_5), value);
}
inline static int32_t get_offset_of_currentValue_6() { return static_cast<int32_t>(offsetof(Enumerator_t661358686, ___currentValue_6)); }
inline RuntimeObject * get_currentValue_6() const { return ___currentValue_6; }
inline RuntimeObject ** get_address_of_currentValue_6() { return &___currentValue_6; }
inline void set_currentValue_6(RuntimeObject * value)
{
___currentValue_6 = value;
Il2CppCodeGenWriteBarrier((&___currentValue_6), value);
}
};
struct Enumerator_t661358686_StaticFields
{
public:
// System.String System.Collections.Hashtable/Enumerator::xstr
String_t* ___xstr_7;
public:
inline static int32_t get_offset_of_xstr_7() { return static_cast<int32_t>(offsetof(Enumerator_t661358686_StaticFields, ___xstr_7)); }
inline String_t* get_xstr_7() const { return ___xstr_7; }
inline String_t** get_address_of_xstr_7() { return &___xstr_7; }
inline void set_xstr_7(String_t* value)
{
___xstr_7 = value;
Il2CppCodeGenWriteBarrier((&___xstr_7), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // ENUMERATOR_T661358686_H
#ifndef APPDOMAINSETUP_T123196401_H
#define APPDOMAINSETUP_T123196401_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.AppDomainSetup
struct AppDomainSetup_t123196401 : public RuntimeObject
{
public:
// System.String System.AppDomainSetup::application_base
String_t* ___application_base_0;
// System.String System.AppDomainSetup::application_name
String_t* ___application_name_1;
// System.String System.AppDomainSetup::cache_path
String_t* ___cache_path_2;
// System.String System.AppDomainSetup::configuration_file
String_t* ___configuration_file_3;
// System.String System.AppDomainSetup::dynamic_base
String_t* ___dynamic_base_4;
// System.String System.AppDomainSetup::license_file
String_t* ___license_file_5;
// System.String System.AppDomainSetup::private_bin_path
String_t* ___private_bin_path_6;
// System.String System.AppDomainSetup::private_bin_path_probe
String_t* ___private_bin_path_probe_7;
// System.String System.AppDomainSetup::shadow_copy_directories
String_t* ___shadow_copy_directories_8;
// System.String System.AppDomainSetup::shadow_copy_files
String_t* ___shadow_copy_files_9;
// System.Boolean System.AppDomainSetup::publisher_policy
bool ___publisher_policy_10;
// System.Boolean System.AppDomainSetup::path_changed
bool ___path_changed_11;
// System.LoaderOptimization System.AppDomainSetup::loader_optimization
int32_t ___loader_optimization_12;
// System.Boolean System.AppDomainSetup::disallow_binding_redirects
bool ___disallow_binding_redirects_13;
// System.Boolean System.AppDomainSetup::disallow_code_downloads
bool ___disallow_code_downloads_14;
// System.Runtime.Hosting.ActivationArguments System.AppDomainSetup::_activationArguments
ActivationArguments_t4219999170 * ____activationArguments_15;
// System.AppDomainInitializer System.AppDomainSetup::domain_initializer
AppDomainInitializer_t682969308 * ___domain_initializer_16;
// System.Security.Policy.ApplicationTrust System.AppDomainSetup::application_trust
ApplicationTrust_t3270368423 * ___application_trust_17;
// System.String[] System.AppDomainSetup::domain_initializer_args
StringU5BU5D_t1281789340* ___domain_initializer_args_18;
// System.Security.SecurityElement System.AppDomainSetup::application_trust_xml
SecurityElement_t1046076091 * ___application_trust_xml_19;
// System.Boolean System.AppDomainSetup::disallow_appbase_probe
bool ___disallow_appbase_probe_20;
// System.Byte[] System.AppDomainSetup::configuration_bytes
ByteU5BU5D_t4116647657* ___configuration_bytes_21;
public:
inline static int32_t get_offset_of_application_base_0() { return static_cast<int32_t>(offsetof(AppDomainSetup_t123196401, ___application_base_0)); }
inline String_t* get_application_base_0() const { return ___application_base_0; }
inline String_t** get_address_of_application_base_0() { return &___application_base_0; }
inline void set_application_base_0(String_t* value)
{
___application_base_0 = value;
Il2CppCodeGenWriteBarrier((&___application_base_0), value);
}
inline static int32_t get_offset_of_application_name_1() { return static_cast<int32_t>(offsetof(AppDomainSetup_t123196401, ___application_name_1)); }
inline String_t* get_application_name_1() const { return ___application_name_1; }
inline String_t** get_address_of_application_name_1() { return &___application_name_1; }
inline void set_application_name_1(String_t* value)
{
___application_name_1 = value;
Il2CppCodeGenWriteBarrier((&___application_name_1), value);
}
inline static int32_t get_offset_of_cache_path_2() { return static_cast<int32_t>(offsetof(AppDomainSetup_t123196401, ___cache_path_2)); }
inline String_t* get_cache_path_2() const { return ___cache_path_2; }
inline String_t** get_address_of_cache_path_2() { return &___cache_path_2; }
inline void set_cache_path_2(String_t* value)
{
___cache_path_2 = value;
Il2CppCodeGenWriteBarrier((&___cache_path_2), value);
}
inline static int32_t get_offset_of_configuration_file_3() { return static_cast<int32_t>(offsetof(AppDomainSetup_t123196401, ___configuration_file_3)); }
inline String_t* get_configuration_file_3() const { return ___configuration_file_3; }
inline String_t** get_address_of_configuration_file_3() { return &___configuration_file_3; }
inline void set_configuration_file_3(String_t* value)
{
___configuration_file_3 = value;
Il2CppCodeGenWriteBarrier((&___configuration_file_3), value);
}
inline static int32_t get_offset_of_dynamic_base_4() { return static_cast<int32_t>(offsetof(AppDomainSetup_t123196401, ___dynamic_base_4)); }
inline String_t* get_dynamic_base_4() const { return ___dynamic_base_4; }
inline String_t** get_address_of_dynamic_base_4() { return &___dynamic_base_4; }
inline void set_dynamic_base_4(String_t* value)
{
___dynamic_base_4 = value;
Il2CppCodeGenWriteBarrier((&___dynamic_base_4), value);
}
inline static int32_t get_offset_of_license_file_5() { return static_cast<int32_t>(offsetof(AppDomainSetup_t123196401, ___license_file_5)); }
inline String_t* get_license_file_5() const { return ___license_file_5; }
inline String_t** get_address_of_license_file_5() { return &___license_file_5; }
inline void set_license_file_5(String_t* value)
{
___license_file_5 = value;
Il2CppCodeGenWriteBarrier((&___license_file_5), value);
}
inline static int32_t get_offset_of_private_bin_path_6() { return static_cast<int32_t>(offsetof(AppDomainSetup_t123196401, ___private_bin_path_6)); }
inline String_t* get_private_bin_path_6() const { return ___private_bin_path_6; }
inline String_t** get_address_of_private_bin_path_6() { return &___private_bin_path_6; }
inline void set_private_bin_path_6(String_t* value)
{
___private_bin_path_6 = value;
Il2CppCodeGenWriteBarrier((&___private_bin_path_6), value);
}
inline static int32_t get_offset_of_private_bin_path_probe_7() { return static_cast<int32_t>(offsetof(AppDomainSetup_t123196401, ___private_bin_path_probe_7)); }
inline String_t* get_private_bin_path_probe_7() const { return ___private_bin_path_probe_7; }
inline String_t** get_address_of_private_bin_path_probe_7() { return &___private_bin_path_probe_7; }
inline void set_private_bin_path_probe_7(String_t* value)
{
___private_bin_path_probe_7 = value;
Il2CppCodeGenWriteBarrier((&___private_bin_path_probe_7), value);
}
inline static int32_t get_offset_of_shadow_copy_directories_8() { return static_cast<int32_t>(offsetof(AppDomainSetup_t123196401, ___shadow_copy_directories_8)); }
inline String_t* get_shadow_copy_directories_8() const { return ___shadow_copy_directories_8; }
inline String_t** get_address_of_shadow_copy_directories_8() { return &___shadow_copy_directories_8; }
inline void set_shadow_copy_directories_8(String_t* value)
{
___shadow_copy_directories_8 = value;
Il2CppCodeGenWriteBarrier((&___shadow_copy_directories_8), value);
}
inline static int32_t get_offset_of_shadow_copy_files_9() { return static_cast<int32_t>(offsetof(AppDomainSetup_t123196401, ___shadow_copy_files_9)); }
inline String_t* get_shadow_copy_files_9() const { return ___shadow_copy_files_9; }
inline String_t** get_address_of_shadow_copy_files_9() { return &___shadow_copy_files_9; }
inline void set_shadow_copy_files_9(String_t* value)
{
___shadow_copy_files_9 = value;
Il2CppCodeGenWriteBarrier((&___shadow_copy_files_9), value);
}
inline static int32_t get_offset_of_publisher_policy_10() { return static_cast<int32_t>(offsetof(AppDomainSetup_t123196401, ___publisher_policy_10)); }
inline bool get_publisher_policy_10() const { return ___publisher_policy_10; }
inline bool* get_address_of_publisher_policy_10() { return &___publisher_policy_10; }
inline void set_publisher_policy_10(bool value)
{
___publisher_policy_10 = value;
}
inline static int32_t get_offset_of_path_changed_11() { return static_cast<int32_t>(offsetof(AppDomainSetup_t123196401, ___path_changed_11)); }
inline bool get_path_changed_11() const { return ___path_changed_11; }
inline bool* get_address_of_path_changed_11() { return &___path_changed_11; }
inline void set_path_changed_11(bool value)
{
___path_changed_11 = value;
}
inline static int32_t get_offset_of_loader_optimization_12() { return static_cast<int32_t>(offsetof(AppDomainSetup_t123196401, ___loader_optimization_12)); }
inline int32_t get_loader_optimization_12() const { return ___loader_optimization_12; }
inline int32_t* get_address_of_loader_optimization_12() { return &___loader_optimization_12; }
inline void set_loader_optimization_12(int32_t value)
{
___loader_optimization_12 = value;
}
inline static int32_t get_offset_of_disallow_binding_redirects_13() { return static_cast<int32_t>(offsetof(AppDomainSetup_t123196401, ___disallow_binding_redirects_13)); }
inline bool get_disallow_binding_redirects_13() const { return ___disallow_binding_redirects_13; }
inline bool* get_address_of_disallow_binding_redirects_13() { return &___disallow_binding_redirects_13; }
inline void set_disallow_binding_redirects_13(bool value)
{
___disallow_binding_redirects_13 = value;
}
inline static int32_t get_offset_of_disallow_code_downloads_14() { return static_cast<int32_t>(offsetof(AppDomainSetup_t123196401, ___disallow_code_downloads_14)); }
inline bool get_disallow_code_downloads_14() const { return ___disallow_code_downloads_14; }
inline bool* get_address_of_disallow_code_downloads_14() { return &___disallow_code_downloads_14; }
inline void set_disallow_code_downloads_14(bool value)
{
___disallow_code_downloads_14 = value;
}
inline static int32_t get_offset_of__activationArguments_15() { return static_cast<int32_t>(offsetof(AppDomainSetup_t123196401, ____activationArguments_15)); }
inline ActivationArguments_t4219999170 * get__activationArguments_15() const { return ____activationArguments_15; }
inline ActivationArguments_t4219999170 ** get_address_of__activationArguments_15() { return &____activationArguments_15; }
inline void set__activationArguments_15(ActivationArguments_t4219999170 * value)
{
____activationArguments_15 = value;
Il2CppCodeGenWriteBarrier((&____activationArguments_15), value);
}
inline static int32_t get_offset_of_domain_initializer_16() { return static_cast<int32_t>(offsetof(AppDomainSetup_t123196401, ___domain_initializer_16)); }
inline AppDomainInitializer_t682969308 * get_domain_initializer_16() const { return ___domain_initializer_16; }
inline AppDomainInitializer_t682969308 ** get_address_of_domain_initializer_16() { return &___domain_initializer_16; }
inline void set_domain_initializer_16(AppDomainInitializer_t682969308 * value)
{
___domain_initializer_16 = value;
Il2CppCodeGenWriteBarrier((&___domain_initializer_16), value);
}
inline static int32_t get_offset_of_application_trust_17() { return static_cast<int32_t>(offsetof(AppDomainSetup_t123196401, ___application_trust_17)); }
inline ApplicationTrust_t3270368423 * get_application_trust_17() const { return ___application_trust_17; }
inline ApplicationTrust_t3270368423 ** get_address_of_application_trust_17() { return &___application_trust_17; }
inline void set_application_trust_17(ApplicationTrust_t3270368423 * value)
{
___application_trust_17 = value;
Il2CppCodeGenWriteBarrier((&___application_trust_17), value);
}
inline static int32_t get_offset_of_domain_initializer_args_18() { return static_cast<int32_t>(offsetof(AppDomainSetup_t123196401, ___domain_initializer_args_18)); }
inline StringU5BU5D_t1281789340* get_domain_initializer_args_18() const { return ___domain_initializer_args_18; }
inline StringU5BU5D_t1281789340** get_address_of_domain_initializer_args_18() { return &___domain_initializer_args_18; }
inline void set_domain_initializer_args_18(StringU5BU5D_t1281789340* value)
{
___domain_initializer_args_18 = value;
Il2CppCodeGenWriteBarrier((&___domain_initializer_args_18), value);
}
inline static int32_t get_offset_of_application_trust_xml_19() { return static_cast<int32_t>(offsetof(AppDomainSetup_t123196401, ___application_trust_xml_19)); }
inline SecurityElement_t1046076091 * get_application_trust_xml_19() const { return ___application_trust_xml_19; }
inline SecurityElement_t1046076091 ** get_address_of_application_trust_xml_19() { return &___application_trust_xml_19; }
inline void set_application_trust_xml_19(SecurityElement_t1046076091 * value)
{
___application_trust_xml_19 = value;
Il2CppCodeGenWriteBarrier((&___application_trust_xml_19), value);
}
inline static int32_t get_offset_of_disallow_appbase_probe_20() { return static_cast<int32_t>(offsetof(AppDomainSetup_t123196401, ___disallow_appbase_probe_20)); }
inline bool get_disallow_appbase_probe_20() const { return ___disallow_appbase_probe_20; }
inline bool* get_address_of_disallow_appbase_probe_20() { return &___disallow_appbase_probe_20; }
inline void set_disallow_appbase_probe_20(bool value)
{
___disallow_appbase_probe_20 = value;
}
inline static int32_t get_offset_of_configuration_bytes_21() { return static_cast<int32_t>(offsetof(AppDomainSetup_t123196401, ___configuration_bytes_21)); }
inline ByteU5BU5D_t4116647657* get_configuration_bytes_21() const { return ___configuration_bytes_21; }
inline ByteU5BU5D_t4116647657** get_address_of_configuration_bytes_21() { return &___configuration_bytes_21; }
inline void set_configuration_bytes_21(ByteU5BU5D_t4116647657* value)
{
___configuration_bytes_21 = value;
Il2CppCodeGenWriteBarrier((&___configuration_bytes_21), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // APPDOMAINSETUP_T123196401_H
#ifndef ENUMERATOR_T3548462377_H
#define ENUMERATOR_T3548462377_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Collections.SortedList/Enumerator
struct Enumerator_t3548462377 : public RuntimeObject
{
public:
// System.Collections.SortedList System.Collections.SortedList/Enumerator::host
SortedList_t2427694641 * ___host_0;
// System.Int32 System.Collections.SortedList/Enumerator::stamp
int32_t ___stamp_1;
// System.Int32 System.Collections.SortedList/Enumerator::pos
int32_t ___pos_2;
// System.Int32 System.Collections.SortedList/Enumerator::size
int32_t ___size_3;
// System.Collections.SortedList/EnumeratorMode System.Collections.SortedList/Enumerator::mode
int32_t ___mode_4;
// System.Object System.Collections.SortedList/Enumerator::currentKey
RuntimeObject * ___currentKey_5;
// System.Object System.Collections.SortedList/Enumerator::currentValue
RuntimeObject * ___currentValue_6;
// System.Boolean System.Collections.SortedList/Enumerator::invalid
bool ___invalid_7;
public:
inline static int32_t get_offset_of_host_0() { return static_cast<int32_t>(offsetof(Enumerator_t3548462377, ___host_0)); }
inline SortedList_t2427694641 * get_host_0() const { return ___host_0; }
inline SortedList_t2427694641 ** get_address_of_host_0() { return &___host_0; }
inline void set_host_0(SortedList_t2427694641 * value)
{
___host_0 = value;
Il2CppCodeGenWriteBarrier((&___host_0), value);
}
inline static int32_t get_offset_of_stamp_1() { return static_cast<int32_t>(offsetof(Enumerator_t3548462377, ___stamp_1)); }
inline int32_t get_stamp_1() const { return ___stamp_1; }
inline int32_t* get_address_of_stamp_1() { return &___stamp_1; }
inline void set_stamp_1(int32_t value)
{
___stamp_1 = value;
}
inline static int32_t get_offset_of_pos_2() { return static_cast<int32_t>(offsetof(Enumerator_t3548462377, ___pos_2)); }
inline int32_t get_pos_2() const { return ___pos_2; }
inline int32_t* get_address_of_pos_2() { return &___pos_2; }
inline void set_pos_2(int32_t value)
{
___pos_2 = value;
}
inline static int32_t get_offset_of_size_3() { return static_cast<int32_t>(offsetof(Enumerator_t3548462377, ___size_3)); }
inline int32_t get_size_3() const { return ___size_3; }
inline int32_t* get_address_of_size_3() { return &___size_3; }
inline void set_size_3(int32_t value)
{
___size_3 = value;
}
inline static int32_t get_offset_of_mode_4() { return static_cast<int32_t>(offsetof(Enumerator_t3548462377, ___mode_4)); }
inline int32_t get_mode_4() const { return ___mode_4; }
inline int32_t* get_address_of_mode_4() { return &___mode_4; }
inline void set_mode_4(int32_t value)
{
___mode_4 = value;
}
inline static int32_t get_offset_of_currentKey_5() { return static_cast<int32_t>(offsetof(Enumerator_t3548462377, ___currentKey_5)); }
inline RuntimeObject * get_currentKey_5() const { return ___currentKey_5; }
inline RuntimeObject ** get_address_of_currentKey_5() { return &___currentKey_5; }
inline void set_currentKey_5(RuntimeObject * value)
{
___currentKey_5 = value;
Il2CppCodeGenWriteBarrier((&___currentKey_5), value);
}
inline static int32_t get_offset_of_currentValue_6() { return static_cast<int32_t>(offsetof(Enumerator_t3548462377, ___currentValue_6)); }
inline RuntimeObject * get_currentValue_6() const { return ___currentValue_6; }
inline RuntimeObject ** get_address_of_currentValue_6() { return &___currentValue_6; }
inline void set_currentValue_6(RuntimeObject * value)
{
___currentValue_6 = value;
Il2CppCodeGenWriteBarrier((&___currentValue_6), value);
}
inline static int32_t get_offset_of_invalid_7() { return static_cast<int32_t>(offsetof(Enumerator_t3548462377, ___invalid_7)); }
inline bool get_invalid_7() const { return ___invalid_7; }
inline bool* get_address_of_invalid_7() { return &___invalid_7; }
inline void set_invalid_7(bool value)
{
___invalid_7 = value;
}
};
struct Enumerator_t3548462377_StaticFields
{
public:
// System.String System.Collections.SortedList/Enumerator::xstr
String_t* ___xstr_8;
public:
inline static int32_t get_offset_of_xstr_8() { return static_cast<int32_t>(offsetof(Enumerator_t3548462377_StaticFields, ___xstr_8)); }
inline String_t* get_xstr_8() const { return ___xstr_8; }
inline String_t** get_address_of_xstr_8() { return &___xstr_8; }
inline void set_xstr_8(String_t* value)
{
___xstr_8 = value;
Il2CppCodeGenWriteBarrier((&___xstr_8), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // ENUMERATOR_T3548462377_H
#ifndef APPDOMAIN_T1571427825_H
#define APPDOMAIN_T1571427825_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.AppDomain
struct AppDomain_t1571427825 : public MarshalByRefObject_t2760389100
{
public:
// System.IntPtr System.AppDomain::_mono_app_domain
intptr_t ____mono_app_domain_1;
// System.Security.Policy.Evidence System.AppDomain::_evidence
Evidence_t2008144148 * ____evidence_6;
// System.Security.PermissionSet System.AppDomain::_granted
PermissionSet_t223948603 * ____granted_7;
// System.Security.Principal.PrincipalPolicy System.AppDomain::_principalPolicy
int32_t ____principalPolicy_8;
// System.AppDomainManager System.AppDomain::_domain_manager
AppDomainManager_t1420869192 * ____domain_manager_11;
// System.ActivationContext System.AppDomain::_activation
ActivationContext_t976916018 * ____activation_12;
// System.ApplicationIdentity System.AppDomain::_applicationIdentity
ApplicationIdentity_t1917735356 * ____applicationIdentity_13;
// System.AssemblyLoadEventHandler System.AppDomain::AssemblyLoad
AssemblyLoadEventHandler_t107971893 * ___AssemblyLoad_14;
// System.ResolveEventHandler System.AppDomain::AssemblyResolve
ResolveEventHandler_t2775508208 * ___AssemblyResolve_15;
// System.EventHandler System.AppDomain::DomainUnload
EventHandler_t1348719766 * ___DomainUnload_16;
// System.EventHandler System.AppDomain::ProcessExit
EventHandler_t1348719766 * ___ProcessExit_17;
// System.ResolveEventHandler System.AppDomain::ResourceResolve
ResolveEventHandler_t2775508208 * ___ResourceResolve_18;
// System.ResolveEventHandler System.AppDomain::TypeResolve
ResolveEventHandler_t2775508208 * ___TypeResolve_19;
// System.UnhandledExceptionEventHandler System.AppDomain::UnhandledException
UnhandledExceptionEventHandler_t3101989324 * ___UnhandledException_20;
// System.ResolveEventHandler System.AppDomain::ReflectionOnlyAssemblyResolve
ResolveEventHandler_t2775508208 * ___ReflectionOnlyAssemblyResolve_21;
public:
inline static int32_t get_offset_of__mono_app_domain_1() { return static_cast<int32_t>(offsetof(AppDomain_t1571427825, ____mono_app_domain_1)); }
inline intptr_t get__mono_app_domain_1() const { return ____mono_app_domain_1; }
inline intptr_t* get_address_of__mono_app_domain_1() { return &____mono_app_domain_1; }
inline void set__mono_app_domain_1(intptr_t value)
{
____mono_app_domain_1 = value;
}
inline static int32_t get_offset_of__evidence_6() { return static_cast<int32_t>(offsetof(AppDomain_t1571427825, ____evidence_6)); }
inline Evidence_t2008144148 * get__evidence_6() const { return ____evidence_6; }
inline Evidence_t2008144148 ** get_address_of__evidence_6() { return &____evidence_6; }
inline void set__evidence_6(Evidence_t2008144148 * value)
{
____evidence_6 = value;
Il2CppCodeGenWriteBarrier((&____evidence_6), value);
}
inline static int32_t get_offset_of__granted_7() { return static_cast<int32_t>(offsetof(AppDomain_t1571427825, ____granted_7)); }
inline PermissionSet_t223948603 * get__granted_7() const { return ____granted_7; }
inline PermissionSet_t223948603 ** get_address_of__granted_7() { return &____granted_7; }
inline void set__granted_7(PermissionSet_t223948603 * value)
{
____granted_7 = value;
Il2CppCodeGenWriteBarrier((&____granted_7), value);
}
inline static int32_t get_offset_of__principalPolicy_8() { return static_cast<int32_t>(offsetof(AppDomain_t1571427825, ____principalPolicy_8)); }
inline int32_t get__principalPolicy_8() const { return ____principalPolicy_8; }
inline int32_t* get_address_of__principalPolicy_8() { return &____principalPolicy_8; }
inline void set__principalPolicy_8(int32_t value)
{
____principalPolicy_8 = value;
}
inline static int32_t get_offset_of__domain_manager_11() { return static_cast<int32_t>(offsetof(AppDomain_t1571427825, ____domain_manager_11)); }
inline AppDomainManager_t1420869192 * get__domain_manager_11() const { return ____domain_manager_11; }
inline AppDomainManager_t1420869192 ** get_address_of__domain_manager_11() { return &____domain_manager_11; }
inline void set__domain_manager_11(AppDomainManager_t1420869192 * value)
{
____domain_manager_11 = value;
Il2CppCodeGenWriteBarrier((&____domain_manager_11), value);
}
inline static int32_t get_offset_of__activation_12() { return static_cast<int32_t>(offsetof(AppDomain_t1571427825, ____activation_12)); }
inline ActivationContext_t976916018 * get__activation_12() const { return ____activation_12; }
inline ActivationContext_t976916018 ** get_address_of__activation_12() { return &____activation_12; }
inline void set__activation_12(ActivationContext_t976916018 * value)
{
____activation_12 = value;
Il2CppCodeGenWriteBarrier((&____activation_12), value);
}
inline static int32_t get_offset_of__applicationIdentity_13() { return static_cast<int32_t>(offsetof(AppDomain_t1571427825, ____applicationIdentity_13)); }
inline ApplicationIdentity_t1917735356 * get__applicationIdentity_13() const { return ____applicationIdentity_13; }
inline ApplicationIdentity_t1917735356 ** get_address_of__applicationIdentity_13() { return &____applicationIdentity_13; }
inline void set__applicationIdentity_13(ApplicationIdentity_t1917735356 * value)
{
____applicationIdentity_13 = value;
Il2CppCodeGenWriteBarrier((&____applicationIdentity_13), value);
}
inline static int32_t get_offset_of_AssemblyLoad_14() { return static_cast<int32_t>(offsetof(AppDomain_t1571427825, ___AssemblyLoad_14)); }
inline AssemblyLoadEventHandler_t107971893 * get_AssemblyLoad_14() const { return ___AssemblyLoad_14; }
inline AssemblyLoadEventHandler_t107971893 ** get_address_of_AssemblyLoad_14() { return &___AssemblyLoad_14; }
inline void set_AssemblyLoad_14(AssemblyLoadEventHandler_t107971893 * value)
{
___AssemblyLoad_14 = value;
Il2CppCodeGenWriteBarrier((&___AssemblyLoad_14), value);
}
inline static int32_t get_offset_of_AssemblyResolve_15() { return static_cast<int32_t>(offsetof(AppDomain_t1571427825, ___AssemblyResolve_15)); }
inline ResolveEventHandler_t2775508208 * get_AssemblyResolve_15() const { return ___AssemblyResolve_15; }
inline ResolveEventHandler_t2775508208 ** get_address_of_AssemblyResolve_15() { return &___AssemblyResolve_15; }
inline void set_AssemblyResolve_15(ResolveEventHandler_t2775508208 * value)
{
___AssemblyResolve_15 = value;
Il2CppCodeGenWriteBarrier((&___AssemblyResolve_15), value);
}
inline static int32_t get_offset_of_DomainUnload_16() { return static_cast<int32_t>(offsetof(AppDomain_t1571427825, ___DomainUnload_16)); }
inline EventHandler_t1348719766 * get_DomainUnload_16() const { return ___DomainUnload_16; }
inline EventHandler_t1348719766 ** get_address_of_DomainUnload_16() { return &___DomainUnload_16; }
inline void set_DomainUnload_16(EventHandler_t1348719766 * value)
{
___DomainUnload_16 = value;
Il2CppCodeGenWriteBarrier((&___DomainUnload_16), value);
}
inline static int32_t get_offset_of_ProcessExit_17() { return static_cast<int32_t>(offsetof(AppDomain_t1571427825, ___ProcessExit_17)); }
inline EventHandler_t1348719766 * get_ProcessExit_17() const { return ___ProcessExit_17; }
inline EventHandler_t1348719766 ** get_address_of_ProcessExit_17() { return &___ProcessExit_17; }
inline void set_ProcessExit_17(EventHandler_t1348719766 * value)
{
___ProcessExit_17 = value;
Il2CppCodeGenWriteBarrier((&___ProcessExit_17), value);
}
inline static int32_t get_offset_of_ResourceResolve_18() { return static_cast<int32_t>(offsetof(AppDomain_t1571427825, ___ResourceResolve_18)); }
inline ResolveEventHandler_t2775508208 * get_ResourceResolve_18() const { return ___ResourceResolve_18; }
inline ResolveEventHandler_t2775508208 ** get_address_of_ResourceResolve_18() { return &___ResourceResolve_18; }
inline void set_ResourceResolve_18(ResolveEventHandler_t2775508208 * value)
{
___ResourceResolve_18 = value;
Il2CppCodeGenWriteBarrier((&___ResourceResolve_18), value);
}
inline static int32_t get_offset_of_TypeResolve_19() { return static_cast<int32_t>(offsetof(AppDomain_t1571427825, ___TypeResolve_19)); }
inline ResolveEventHandler_t2775508208 * get_TypeResolve_19() const { return ___TypeResolve_19; }
inline ResolveEventHandler_t2775508208 ** get_address_of_TypeResolve_19() { return &___TypeResolve_19; }
inline void set_TypeResolve_19(ResolveEventHandler_t2775508208 * value)
{
___TypeResolve_19 = value;
Il2CppCodeGenWriteBarrier((&___TypeResolve_19), value);
}
inline static int32_t get_offset_of_UnhandledException_20() { return static_cast<int32_t>(offsetof(AppDomain_t1571427825, ___UnhandledException_20)); }
inline UnhandledExceptionEventHandler_t3101989324 * get_UnhandledException_20() const { return ___UnhandledException_20; }
inline UnhandledExceptionEventHandler_t3101989324 ** get_address_of_UnhandledException_20() { return &___UnhandledException_20; }
inline void set_UnhandledException_20(UnhandledExceptionEventHandler_t3101989324 * value)
{
___UnhandledException_20 = value;
Il2CppCodeGenWriteBarrier((&___UnhandledException_20), value);
}
inline static int32_t get_offset_of_ReflectionOnlyAssemblyResolve_21() { return static_cast<int32_t>(offsetof(AppDomain_t1571427825, ___ReflectionOnlyAssemblyResolve_21)); }
inline ResolveEventHandler_t2775508208 * get_ReflectionOnlyAssemblyResolve_21() const { return ___ReflectionOnlyAssemblyResolve_21; }
inline ResolveEventHandler_t2775508208 ** get_address_of_ReflectionOnlyAssemblyResolve_21() { return &___ReflectionOnlyAssemblyResolve_21; }
inline void set_ReflectionOnlyAssemblyResolve_21(ResolveEventHandler_t2775508208 * value)
{
___ReflectionOnlyAssemblyResolve_21 = value;
Il2CppCodeGenWriteBarrier((&___ReflectionOnlyAssemblyResolve_21), value);
}
};
struct AppDomain_t1571427825_StaticFields
{
public:
// System.String System.AppDomain::_process_guid
String_t* ____process_guid_2;
// System.AppDomain System.AppDomain::default_domain
AppDomain_t1571427825 * ___default_domain_10;
public:
inline static int32_t get_offset_of__process_guid_2() { return static_cast<int32_t>(offsetof(AppDomain_t1571427825_StaticFields, ____process_guid_2)); }
inline String_t* get__process_guid_2() const { return ____process_guid_2; }
inline String_t** get_address_of__process_guid_2() { return &____process_guid_2; }
inline void set__process_guid_2(String_t* value)
{
____process_guid_2 = value;
Il2CppCodeGenWriteBarrier((&____process_guid_2), value);
}
inline static int32_t get_offset_of_default_domain_10() { return static_cast<int32_t>(offsetof(AppDomain_t1571427825_StaticFields, ___default_domain_10)); }
inline AppDomain_t1571427825 * get_default_domain_10() const { return ___default_domain_10; }
inline AppDomain_t1571427825 ** get_address_of_default_domain_10() { return &___default_domain_10; }
inline void set_default_domain_10(AppDomain_t1571427825 * value)
{
___default_domain_10 = value;
Il2CppCodeGenWriteBarrier((&___default_domain_10), value);
}
};
struct AppDomain_t1571427825_ThreadStaticFields
{
public:
// System.Collections.Hashtable System.AppDomain::type_resolve_in_progress
Hashtable_t1853889766 * ___type_resolve_in_progress_3;
// System.Collections.Hashtable System.AppDomain::assembly_resolve_in_progress
Hashtable_t1853889766 * ___assembly_resolve_in_progress_4;
// System.Collections.Hashtable System.AppDomain::assembly_resolve_in_progress_refonly
Hashtable_t1853889766 * ___assembly_resolve_in_progress_refonly_5;
// System.Security.Principal.IPrincipal System.AppDomain::_principal
RuntimeObject* ____principal_9;
public:
inline static int32_t get_offset_of_type_resolve_in_progress_3() { return static_cast<int32_t>(offsetof(AppDomain_t1571427825_ThreadStaticFields, ___type_resolve_in_progress_3)); }
inline Hashtable_t1853889766 * get_type_resolve_in_progress_3() const { return ___type_resolve_in_progress_3; }
inline Hashtable_t1853889766 ** get_address_of_type_resolve_in_progress_3() { return &___type_resolve_in_progress_3; }
inline void set_type_resolve_in_progress_3(Hashtable_t1853889766 * value)
{
___type_resolve_in_progress_3 = value;
Il2CppCodeGenWriteBarrier((&___type_resolve_in_progress_3), value);
}
inline static int32_t get_offset_of_assembly_resolve_in_progress_4() { return static_cast<int32_t>(offsetof(AppDomain_t1571427825_ThreadStaticFields, ___assembly_resolve_in_progress_4)); }
inline Hashtable_t1853889766 * get_assembly_resolve_in_progress_4() const { return ___assembly_resolve_in_progress_4; }
inline Hashtable_t1853889766 ** get_address_of_assembly_resolve_in_progress_4() { return &___assembly_resolve_in_progress_4; }
inline void set_assembly_resolve_in_progress_4(Hashtable_t1853889766 * value)
{
___assembly_resolve_in_progress_4 = value;
Il2CppCodeGenWriteBarrier((&___assembly_resolve_in_progress_4), value);
}
inline static int32_t get_offset_of_assembly_resolve_in_progress_refonly_5() { return static_cast<int32_t>(offsetof(AppDomain_t1571427825_ThreadStaticFields, ___assembly_resolve_in_progress_refonly_5)); }
inline Hashtable_t1853889766 * get_assembly_resolve_in_progress_refonly_5() const { return ___assembly_resolve_in_progress_refonly_5; }
inline Hashtable_t1853889766 ** get_address_of_assembly_resolve_in_progress_refonly_5() { return &___assembly_resolve_in_progress_refonly_5; }
inline void set_assembly_resolve_in_progress_refonly_5(Hashtable_t1853889766 * value)
{
___assembly_resolve_in_progress_refonly_5 = value;
Il2CppCodeGenWriteBarrier((&___assembly_resolve_in_progress_refonly_5), value);
}
inline static int32_t get_offset_of__principal_9() { return static_cast<int32_t>(offsetof(AppDomain_t1571427825_ThreadStaticFields, ____principal_9)); }
inline RuntimeObject* get__principal_9() const { return ____principal_9; }
inline RuntimeObject** get_address_of__principal_9() { return &____principal_9; }
inline void set__principal_9(RuntimeObject* value)
{
____principal_9 = value;
Il2CppCodeGenWriteBarrier((&____principal_9), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // APPDOMAIN_T1571427825_H
#ifndef ARGUMENTNULLEXCEPTION_T1615371798_H
#define ARGUMENTNULLEXCEPTION_T1615371798_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.ArgumentNullException
struct ArgumentNullException_t1615371798 : public ArgumentException_t132251570
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // ARGUMENTNULLEXCEPTION_T1615371798_H
#ifndef FILESTREAM_T4292183065_H
#define FILESTREAM_T4292183065_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.IO.FileStream
struct FileStream_t4292183065 : public Stream_t1273022909
{
public:
// System.IO.FileAccess System.IO.FileStream::access
int32_t ___access_1;
// System.Boolean System.IO.FileStream::owner
bool ___owner_2;
// System.Boolean System.IO.FileStream::async
bool ___async_3;
// System.Boolean System.IO.FileStream::canseek
bool ___canseek_4;
// System.Int64 System.IO.FileStream::append_startpos
int64_t ___append_startpos_5;
// System.Boolean System.IO.FileStream::anonymous
bool ___anonymous_6;
// System.Byte[] System.IO.FileStream::buf
ByteU5BU5D_t4116647657* ___buf_7;
// System.Int32 System.IO.FileStream::buf_size
int32_t ___buf_size_8;
// System.Int32 System.IO.FileStream::buf_length
int32_t ___buf_length_9;
// System.Int32 System.IO.FileStream::buf_offset
int32_t ___buf_offset_10;
// System.Boolean System.IO.FileStream::buf_dirty
bool ___buf_dirty_11;
// System.Int64 System.IO.FileStream::buf_start
int64_t ___buf_start_12;
// System.String System.IO.FileStream::name
String_t* ___name_13;
// System.IntPtr System.IO.FileStream::handle
intptr_t ___handle_14;
public:
inline static int32_t get_offset_of_access_1() { return static_cast<int32_t>(offsetof(FileStream_t4292183065, ___access_1)); }
inline int32_t get_access_1() const { return ___access_1; }
inline int32_t* get_address_of_access_1() { return &___access_1; }
inline void set_access_1(int32_t value)
{
___access_1 = value;
}
inline static int32_t get_offset_of_owner_2() { return static_cast<int32_t>(offsetof(FileStream_t4292183065, ___owner_2)); }
inline bool get_owner_2() const { return ___owner_2; }
inline bool* get_address_of_owner_2() { return &___owner_2; }
inline void set_owner_2(bool value)
{
___owner_2 = value;
}
inline static int32_t get_offset_of_async_3() { return static_cast<int32_t>(offsetof(FileStream_t4292183065, ___async_3)); }
inline bool get_async_3() const { return ___async_3; }
inline bool* get_address_of_async_3() { return &___async_3; }
inline void set_async_3(bool value)
{
___async_3 = value;
}
inline static int32_t get_offset_of_canseek_4() { return static_cast<int32_t>(offsetof(FileStream_t4292183065, ___canseek_4)); }
inline bool get_canseek_4() const { return ___canseek_4; }
inline bool* get_address_of_canseek_4() { return &___canseek_4; }
inline void set_canseek_4(bool value)
{
___canseek_4 = value;
}
inline static int32_t get_offset_of_append_startpos_5() { return static_cast<int32_t>(offsetof(FileStream_t4292183065, ___append_startpos_5)); }
inline int64_t get_append_startpos_5() const { return ___append_startpos_5; }
inline int64_t* get_address_of_append_startpos_5() { return &___append_startpos_5; }
inline void set_append_startpos_5(int64_t value)
{
___append_startpos_5 = value;
}
inline static int32_t get_offset_of_anonymous_6() { return static_cast<int32_t>(offsetof(FileStream_t4292183065, ___anonymous_6)); }
inline bool get_anonymous_6() const { return ___anonymous_6; }
inline bool* get_address_of_anonymous_6() { return &___anonymous_6; }
inline void set_anonymous_6(bool value)
{
___anonymous_6 = value;
}
inline static int32_t get_offset_of_buf_7() { return static_cast<int32_t>(offsetof(FileStream_t4292183065, ___buf_7)); }
inline ByteU5BU5D_t4116647657* get_buf_7() const { return ___buf_7; }
inline ByteU5BU5D_t4116647657** get_address_of_buf_7() { return &___buf_7; }
inline void set_buf_7(ByteU5BU5D_t4116647657* value)
{
___buf_7 = value;
Il2CppCodeGenWriteBarrier((&___buf_7), value);
}
inline static int32_t get_offset_of_buf_size_8() { return static_cast<int32_t>(offsetof(FileStream_t4292183065, ___buf_size_8)); }
inline int32_t get_buf_size_8() const { return ___buf_size_8; }
inline int32_t* get_address_of_buf_size_8() { return &___buf_size_8; }
inline void set_buf_size_8(int32_t value)
{
___buf_size_8 = value;
}
inline static int32_t get_offset_of_buf_length_9() { return static_cast<int32_t>(offsetof(FileStream_t4292183065, ___buf_length_9)); }
inline int32_t get_buf_length_9() const { return ___buf_length_9; }
inline int32_t* get_address_of_buf_length_9() { return &___buf_length_9; }
inline void set_buf_length_9(int32_t value)
{
___buf_length_9 = value;
}
inline static int32_t get_offset_of_buf_offset_10() { return static_cast<int32_t>(offsetof(FileStream_t4292183065, ___buf_offset_10)); }
inline int32_t get_buf_offset_10() const { return ___buf_offset_10; }
inline int32_t* get_address_of_buf_offset_10() { return &___buf_offset_10; }
inline void set_buf_offset_10(int32_t value)
{
___buf_offset_10 = value;
}
inline static int32_t get_offset_of_buf_dirty_11() { return static_cast<int32_t>(offsetof(FileStream_t4292183065, ___buf_dirty_11)); }
inline bool get_buf_dirty_11() const { return ___buf_dirty_11; }
inline bool* get_address_of_buf_dirty_11() { return &___buf_dirty_11; }
inline void set_buf_dirty_11(bool value)
{
___buf_dirty_11 = value;
}
inline static int32_t get_offset_of_buf_start_12() { return static_cast<int32_t>(offsetof(FileStream_t4292183065, ___buf_start_12)); }
inline int64_t get_buf_start_12() const { return ___buf_start_12; }
inline int64_t* get_address_of_buf_start_12() { return &___buf_start_12; }
inline void set_buf_start_12(int64_t value)
{
___buf_start_12 = value;
}
inline static int32_t get_offset_of_name_13() { return static_cast<int32_t>(offsetof(FileStream_t4292183065, ___name_13)); }
inline String_t* get_name_13() const { return ___name_13; }
inline String_t** get_address_of_name_13() { return &___name_13; }
inline void set_name_13(String_t* value)
{
___name_13 = value;
Il2CppCodeGenWriteBarrier((&___name_13), value);
}
inline static int32_t get_offset_of_handle_14() { return static_cast<int32_t>(offsetof(FileStream_t4292183065, ___handle_14)); }
inline intptr_t get_handle_14() const { return ___handle_14; }
inline intptr_t* get_address_of_handle_14() { return &___handle_14; }
inline void set_handle_14(intptr_t value)
{
___handle_14 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // FILESTREAM_T4292183065_H
#ifndef PARAMETERINFO_T1861056598_H
#define PARAMETERINFO_T1861056598_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Reflection.ParameterInfo
struct ParameterInfo_t1861056598 : public RuntimeObject
{
public:
// System.Type System.Reflection.ParameterInfo::ClassImpl
Type_t * ___ClassImpl_0;
// System.Object System.Reflection.ParameterInfo::DefaultValueImpl
RuntimeObject * ___DefaultValueImpl_1;
// System.Reflection.MemberInfo System.Reflection.ParameterInfo::MemberImpl
MemberInfo_t * ___MemberImpl_2;
// System.String System.Reflection.ParameterInfo::NameImpl
String_t* ___NameImpl_3;
// System.Int32 System.Reflection.ParameterInfo::PositionImpl
int32_t ___PositionImpl_4;
// System.Reflection.ParameterAttributes System.Reflection.ParameterInfo::AttrsImpl
int32_t ___AttrsImpl_5;
// System.Reflection.Emit.UnmanagedMarshal System.Reflection.ParameterInfo::marshalAs
UnmanagedMarshal_t984015687 * ___marshalAs_6;
public:
inline static int32_t get_offset_of_ClassImpl_0() { return static_cast<int32_t>(offsetof(ParameterInfo_t1861056598, ___ClassImpl_0)); }
inline Type_t * get_ClassImpl_0() const { return ___ClassImpl_0; }
inline Type_t ** get_address_of_ClassImpl_0() { return &___ClassImpl_0; }
inline void set_ClassImpl_0(Type_t * value)
{
___ClassImpl_0 = value;
Il2CppCodeGenWriteBarrier((&___ClassImpl_0), value);
}
inline static int32_t get_offset_of_DefaultValueImpl_1() { return static_cast<int32_t>(offsetof(ParameterInfo_t1861056598, ___DefaultValueImpl_1)); }
inline RuntimeObject * get_DefaultValueImpl_1() const { return ___DefaultValueImpl_1; }
inline RuntimeObject ** get_address_of_DefaultValueImpl_1() { return &___DefaultValueImpl_1; }
inline void set_DefaultValueImpl_1(RuntimeObject * value)
{
___DefaultValueImpl_1 = value;
Il2CppCodeGenWriteBarrier((&___DefaultValueImpl_1), value);
}
inline static int32_t get_offset_of_MemberImpl_2() { return static_cast<int32_t>(offsetof(ParameterInfo_t1861056598, ___MemberImpl_2)); }
inline MemberInfo_t * get_MemberImpl_2() const { return ___MemberImpl_2; }
inline MemberInfo_t ** get_address_of_MemberImpl_2() { return &___MemberImpl_2; }
inline void set_MemberImpl_2(MemberInfo_t * value)
{
___MemberImpl_2 = value;
Il2CppCodeGenWriteBarrier((&___MemberImpl_2), value);
}
inline static int32_t get_offset_of_NameImpl_3() { return static_cast<int32_t>(offsetof(ParameterInfo_t1861056598, ___NameImpl_3)); }
inline String_t* get_NameImpl_3() const { return ___NameImpl_3; }
inline String_t** get_address_of_NameImpl_3() { return &___NameImpl_3; }
inline void set_NameImpl_3(String_t* value)
{
___NameImpl_3 = value;
Il2CppCodeGenWriteBarrier((&___NameImpl_3), value);
}
inline static int32_t get_offset_of_PositionImpl_4() { return static_cast<int32_t>(offsetof(ParameterInfo_t1861056598, ___PositionImpl_4)); }
inline int32_t get_PositionImpl_4() const { return ___PositionImpl_4; }
inline int32_t* get_address_of_PositionImpl_4() { return &___PositionImpl_4; }
inline void set_PositionImpl_4(int32_t value)
{
___PositionImpl_4 = value;
}
inline static int32_t get_offset_of_AttrsImpl_5() { return static_cast<int32_t>(offsetof(ParameterInfo_t1861056598, ___AttrsImpl_5)); }
inline int32_t get_AttrsImpl_5() const { return ___AttrsImpl_5; }
inline int32_t* get_address_of_AttrsImpl_5() { return &___AttrsImpl_5; }
inline void set_AttrsImpl_5(int32_t value)
{
___AttrsImpl_5 = value;
}
inline static int32_t get_offset_of_marshalAs_6() { return static_cast<int32_t>(offsetof(ParameterInfo_t1861056598, ___marshalAs_6)); }
inline UnmanagedMarshal_t984015687 * get_marshalAs_6() const { return ___marshalAs_6; }
inline UnmanagedMarshal_t984015687 ** get_address_of_marshalAs_6() { return &___marshalAs_6; }
inline void set_marshalAs_6(UnmanagedMarshal_t984015687 * value)
{
___marshalAs_6 = value;
Il2CppCodeGenWriteBarrier((&___marshalAs_6), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // PARAMETERINFO_T1861056598_H
#ifndef DATETIME_T3738529785_H
#define DATETIME_T3738529785_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.DateTime
struct DateTime_t3738529785
{
public:
// System.TimeSpan System.DateTime::ticks
TimeSpan_t881159249 ___ticks_0;
// System.DateTimeKind System.DateTime::kind
int32_t ___kind_1;
public:
inline static int32_t get_offset_of_ticks_0() { return static_cast<int32_t>(offsetof(DateTime_t3738529785, ___ticks_0)); }
inline TimeSpan_t881159249 get_ticks_0() const { return ___ticks_0; }
inline TimeSpan_t881159249 * get_address_of_ticks_0() { return &___ticks_0; }
inline void set_ticks_0(TimeSpan_t881159249 value)
{
___ticks_0 = value;
}
inline static int32_t get_offset_of_kind_1() { return static_cast<int32_t>(offsetof(DateTime_t3738529785, ___kind_1)); }
inline int32_t get_kind_1() const { return ___kind_1; }
inline int32_t* get_address_of_kind_1() { return &___kind_1; }
inline void set_kind_1(int32_t value)
{
___kind_1 = value;
}
};
struct DateTime_t3738529785_StaticFields
{
public:
// System.DateTime System.DateTime::MaxValue
DateTime_t3738529785 ___MaxValue_2;
// System.DateTime System.DateTime::MinValue
DateTime_t3738529785 ___MinValue_3;
// System.String[] System.DateTime::ParseTimeFormats
StringU5BU5D_t1281789340* ___ParseTimeFormats_4;
// System.String[] System.DateTime::ParseYearDayMonthFormats
StringU5BU5D_t1281789340* ___ParseYearDayMonthFormats_5;
// System.String[] System.DateTime::ParseYearMonthDayFormats
StringU5BU5D_t1281789340* ___ParseYearMonthDayFormats_6;
// System.String[] System.DateTime::ParseDayMonthYearFormats
StringU5BU5D_t1281789340* ___ParseDayMonthYearFormats_7;
// System.String[] System.DateTime::ParseMonthDayYearFormats
StringU5BU5D_t1281789340* ___ParseMonthDayYearFormats_8;
// System.String[] System.DateTime::MonthDayShortFormats
StringU5BU5D_t1281789340* ___MonthDayShortFormats_9;
// System.String[] System.DateTime::DayMonthShortFormats
StringU5BU5D_t1281789340* ___DayMonthShortFormats_10;
// System.Int32[] System.DateTime::daysmonth
Int32U5BU5D_t385246372* ___daysmonth_11;
// System.Int32[] System.DateTime::daysmonthleap
Int32U5BU5D_t385246372* ___daysmonthleap_12;
// System.Object System.DateTime::to_local_time_span_object
RuntimeObject * ___to_local_time_span_object_13;
// System.Int64 System.DateTime::last_now
int64_t ___last_now_14;
public:
inline static int32_t get_offset_of_MaxValue_2() { return static_cast<int32_t>(offsetof(DateTime_t3738529785_StaticFields, ___MaxValue_2)); }
inline DateTime_t3738529785 get_MaxValue_2() const { return ___MaxValue_2; }
inline DateTime_t3738529785 * get_address_of_MaxValue_2() { return &___MaxValue_2; }
inline void set_MaxValue_2(DateTime_t3738529785 value)
{
___MaxValue_2 = value;
}
inline static int32_t get_offset_of_MinValue_3() { return static_cast<int32_t>(offsetof(DateTime_t3738529785_StaticFields, ___MinValue_3)); }
inline DateTime_t3738529785 get_MinValue_3() const { return ___MinValue_3; }
inline DateTime_t3738529785 * get_address_of_MinValue_3() { return &___MinValue_3; }
inline void set_MinValue_3(DateTime_t3738529785 value)
{
___MinValue_3 = value;
}
inline static int32_t get_offset_of_ParseTimeFormats_4() { return static_cast<int32_t>(offsetof(DateTime_t3738529785_StaticFields, ___ParseTimeFormats_4)); }
inline StringU5BU5D_t1281789340* get_ParseTimeFormats_4() const { return ___ParseTimeFormats_4; }
inline StringU5BU5D_t1281789340** get_address_of_ParseTimeFormats_4() { return &___ParseTimeFormats_4; }
inline void set_ParseTimeFormats_4(StringU5BU5D_t1281789340* value)
{
___ParseTimeFormats_4 = value;
Il2CppCodeGenWriteBarrier((&___ParseTimeFormats_4), value);
}
inline static int32_t get_offset_of_ParseYearDayMonthFormats_5() { return static_cast<int32_t>(offsetof(DateTime_t3738529785_StaticFields, ___ParseYearDayMonthFormats_5)); }
inline StringU5BU5D_t1281789340* get_ParseYearDayMonthFormats_5() const { return ___ParseYearDayMonthFormats_5; }
inline StringU5BU5D_t1281789340** get_address_of_ParseYearDayMonthFormats_5() { return &___ParseYearDayMonthFormats_5; }
inline void set_ParseYearDayMonthFormats_5(StringU5BU5D_t1281789340* value)
{
___ParseYearDayMonthFormats_5 = value;
Il2CppCodeGenWriteBarrier((&___ParseYearDayMonthFormats_5), value);
}
inline static int32_t get_offset_of_ParseYearMonthDayFormats_6() { return static_cast<int32_t>(offsetof(DateTime_t3738529785_StaticFields, ___ParseYearMonthDayFormats_6)); }
inline StringU5BU5D_t1281789340* get_ParseYearMonthDayFormats_6() const { return ___ParseYearMonthDayFormats_6; }
inline StringU5BU5D_t1281789340** get_address_of_ParseYearMonthDayFormats_6() { return &___ParseYearMonthDayFormats_6; }
inline void set_ParseYearMonthDayFormats_6(StringU5BU5D_t1281789340* value)
{
___ParseYearMonthDayFormats_6 = value;
Il2CppCodeGenWriteBarrier((&___ParseYearMonthDayFormats_6), value);
}
inline static int32_t get_offset_of_ParseDayMonthYearFormats_7() { return static_cast<int32_t>(offsetof(DateTime_t3738529785_StaticFields, ___ParseDayMonthYearFormats_7)); }
inline StringU5BU5D_t1281789340* get_ParseDayMonthYearFormats_7() const { return ___ParseDayMonthYearFormats_7; }
inline StringU5BU5D_t1281789340** get_address_of_ParseDayMonthYearFormats_7() { return &___ParseDayMonthYearFormats_7; }
inline void set_ParseDayMonthYearFormats_7(StringU5BU5D_t1281789340* value)
{
___ParseDayMonthYearFormats_7 = value;
Il2CppCodeGenWriteBarrier((&___ParseDayMonthYearFormats_7), value);
}
inline static int32_t get_offset_of_ParseMonthDayYearFormats_8() { return static_cast<int32_t>(offsetof(DateTime_t3738529785_StaticFields, ___ParseMonthDayYearFormats_8)); }
inline StringU5BU5D_t1281789340* get_ParseMonthDayYearFormats_8() const { return ___ParseMonthDayYearFormats_8; }
inline StringU5BU5D_t1281789340** get_address_of_ParseMonthDayYearFormats_8() { return &___ParseMonthDayYearFormats_8; }
inline void set_ParseMonthDayYearFormats_8(StringU5BU5D_t1281789340* value)
{
___ParseMonthDayYearFormats_8 = value;
Il2CppCodeGenWriteBarrier((&___ParseMonthDayYearFormats_8), value);
}
inline static int32_t get_offset_of_MonthDayShortFormats_9() { return static_cast<int32_t>(offsetof(DateTime_t3738529785_StaticFields, ___MonthDayShortFormats_9)); }
inline StringU5BU5D_t1281789340* get_MonthDayShortFormats_9() const { return ___MonthDayShortFormats_9; }
inline StringU5BU5D_t1281789340** get_address_of_MonthDayShortFormats_9() { return &___MonthDayShortFormats_9; }
inline void set_MonthDayShortFormats_9(StringU5BU5D_t1281789340* value)
{
___MonthDayShortFormats_9 = value;
Il2CppCodeGenWriteBarrier((&___MonthDayShortFormats_9), value);
}
inline static int32_t get_offset_of_DayMonthShortFormats_10() { return static_cast<int32_t>(offsetof(DateTime_t3738529785_StaticFields, ___DayMonthShortFormats_10)); }
inline StringU5BU5D_t1281789340* get_DayMonthShortFormats_10() const { return ___DayMonthShortFormats_10; }
inline StringU5BU5D_t1281789340** get_address_of_DayMonthShortFormats_10() { return &___DayMonthShortFormats_10; }
inline void set_DayMonthShortFormats_10(StringU5BU5D_t1281789340* value)
{
___DayMonthShortFormats_10 = value;
Il2CppCodeGenWriteBarrier((&___DayMonthShortFormats_10), value);
}
inline static int32_t get_offset_of_daysmonth_11() { return static_cast<int32_t>(offsetof(DateTime_t3738529785_StaticFields, ___daysmonth_11)); }
inline Int32U5BU5D_t385246372* get_daysmonth_11() const { return ___daysmonth_11; }
inline Int32U5BU5D_t385246372** get_address_of_daysmonth_11() { return &___daysmonth_11; }
inline void set_daysmonth_11(Int32U5BU5D_t385246372* value)
{
___daysmonth_11 = value;
Il2CppCodeGenWriteBarrier((&___daysmonth_11), value);
}
inline static int32_t get_offset_of_daysmonthleap_12() { return static_cast<int32_t>(offsetof(DateTime_t3738529785_StaticFields, ___daysmonthleap_12)); }
inline Int32U5BU5D_t385246372* get_daysmonthleap_12() const { return ___daysmonthleap_12; }
inline Int32U5BU5D_t385246372** get_address_of_daysmonthleap_12() { return &___daysmonthleap_12; }
inline void set_daysmonthleap_12(Int32U5BU5D_t385246372* value)
{
___daysmonthleap_12 = value;
Il2CppCodeGenWriteBarrier((&___daysmonthleap_12), value);
}
inline static int32_t get_offset_of_to_local_time_span_object_13() { return static_cast<int32_t>(offsetof(DateTime_t3738529785_StaticFields, ___to_local_time_span_object_13)); }
inline RuntimeObject * get_to_local_time_span_object_13() const { return ___to_local_time_span_object_13; }
inline RuntimeObject ** get_address_of_to_local_time_span_object_13() { return &___to_local_time_span_object_13; }
inline void set_to_local_time_span_object_13(RuntimeObject * value)
{
___to_local_time_span_object_13 = value;
Il2CppCodeGenWriteBarrier((&___to_local_time_span_object_13), value);
}
inline static int32_t get_offset_of_last_now_14() { return static_cast<int32_t>(offsetof(DateTime_t3738529785_StaticFields, ___last_now_14)); }
inline int64_t get_last_now_14() const { return ___last_now_14; }
inline int64_t* get_address_of_last_now_14() { return &___last_now_14; }
inline void set_last_now_14(int64_t value)
{
___last_now_14 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // DATETIME_T3738529785_H
#ifndef DATETIMEFORMATINFO_T2405853701_H
#define DATETIMEFORMATINFO_T2405853701_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Globalization.DateTimeFormatInfo
struct DateTimeFormatInfo_t2405853701 : public RuntimeObject
{
public:
// System.Boolean System.Globalization.DateTimeFormatInfo::m_isReadOnly
bool ___m_isReadOnly_10;
// System.String System.Globalization.DateTimeFormatInfo::amDesignator
String_t* ___amDesignator_11;
// System.String System.Globalization.DateTimeFormatInfo::pmDesignator
String_t* ___pmDesignator_12;
// System.String System.Globalization.DateTimeFormatInfo::dateSeparator
String_t* ___dateSeparator_13;
// System.String System.Globalization.DateTimeFormatInfo::timeSeparator
String_t* ___timeSeparator_14;
// System.String System.Globalization.DateTimeFormatInfo::shortDatePattern
String_t* ___shortDatePattern_15;
// System.String System.Globalization.DateTimeFormatInfo::longDatePattern
String_t* ___longDatePattern_16;
// System.String System.Globalization.DateTimeFormatInfo::shortTimePattern
String_t* ___shortTimePattern_17;
// System.String System.Globalization.DateTimeFormatInfo::longTimePattern
String_t* ___longTimePattern_18;
// System.String System.Globalization.DateTimeFormatInfo::monthDayPattern
String_t* ___monthDayPattern_19;
// System.String System.Globalization.DateTimeFormatInfo::yearMonthPattern
String_t* ___yearMonthPattern_20;
// System.String System.Globalization.DateTimeFormatInfo::fullDateTimePattern
String_t* ___fullDateTimePattern_21;
// System.String System.Globalization.DateTimeFormatInfo::_RFC1123Pattern
String_t* ____RFC1123Pattern_22;
// System.String System.Globalization.DateTimeFormatInfo::_SortableDateTimePattern
String_t* ____SortableDateTimePattern_23;
// System.String System.Globalization.DateTimeFormatInfo::_UniversalSortableDateTimePattern
String_t* ____UniversalSortableDateTimePattern_24;
// System.Int32 System.Globalization.DateTimeFormatInfo::firstDayOfWeek
int32_t ___firstDayOfWeek_25;
// System.Globalization.Calendar System.Globalization.DateTimeFormatInfo::calendar
Calendar_t1661121569 * ___calendar_26;
// System.Int32 System.Globalization.DateTimeFormatInfo::calendarWeekRule
int32_t ___calendarWeekRule_27;
// System.String[] System.Globalization.DateTimeFormatInfo::abbreviatedDayNames
StringU5BU5D_t1281789340* ___abbreviatedDayNames_28;
// System.String[] System.Globalization.DateTimeFormatInfo::dayNames
StringU5BU5D_t1281789340* ___dayNames_29;
// System.String[] System.Globalization.DateTimeFormatInfo::monthNames
StringU5BU5D_t1281789340* ___monthNames_30;
// System.String[] System.Globalization.DateTimeFormatInfo::abbreviatedMonthNames
StringU5BU5D_t1281789340* ___abbreviatedMonthNames_31;
// System.String[] System.Globalization.DateTimeFormatInfo::allShortDatePatterns
StringU5BU5D_t1281789340* ___allShortDatePatterns_32;
// System.String[] System.Globalization.DateTimeFormatInfo::allLongDatePatterns
StringU5BU5D_t1281789340* ___allLongDatePatterns_33;
// System.String[] System.Globalization.DateTimeFormatInfo::allShortTimePatterns
StringU5BU5D_t1281789340* ___allShortTimePatterns_34;
// System.String[] System.Globalization.DateTimeFormatInfo::allLongTimePatterns
StringU5BU5D_t1281789340* ___allLongTimePatterns_35;
// System.String[] System.Globalization.DateTimeFormatInfo::monthDayPatterns
StringU5BU5D_t1281789340* ___monthDayPatterns_36;
// System.String[] System.Globalization.DateTimeFormatInfo::yearMonthPatterns
StringU5BU5D_t1281789340* ___yearMonthPatterns_37;
// System.String[] System.Globalization.DateTimeFormatInfo::shortDayNames
StringU5BU5D_t1281789340* ___shortDayNames_38;
// System.Int32 System.Globalization.DateTimeFormatInfo::nDataItem
int32_t ___nDataItem_39;
// System.Boolean System.Globalization.DateTimeFormatInfo::m_useUserOverride
bool ___m_useUserOverride_40;
// System.Boolean System.Globalization.DateTimeFormatInfo::m_isDefaultCalendar
bool ___m_isDefaultCalendar_41;
// System.Int32 System.Globalization.DateTimeFormatInfo::CultureID
int32_t ___CultureID_42;
// System.Boolean System.Globalization.DateTimeFormatInfo::bUseCalendarInfo
bool ___bUseCalendarInfo_43;
// System.String System.Globalization.DateTimeFormatInfo::generalShortTimePattern
String_t* ___generalShortTimePattern_44;
// System.String System.Globalization.DateTimeFormatInfo::generalLongTimePattern
String_t* ___generalLongTimePattern_45;
// System.String[] System.Globalization.DateTimeFormatInfo::m_eraNames
StringU5BU5D_t1281789340* ___m_eraNames_46;
// System.String[] System.Globalization.DateTimeFormatInfo::m_abbrevEraNames
StringU5BU5D_t1281789340* ___m_abbrevEraNames_47;
// System.String[] System.Globalization.DateTimeFormatInfo::m_abbrevEnglishEraNames
StringU5BU5D_t1281789340* ___m_abbrevEnglishEraNames_48;
// System.String[] System.Globalization.DateTimeFormatInfo::m_dateWords
StringU5BU5D_t1281789340* ___m_dateWords_49;
// System.Int32[] System.Globalization.DateTimeFormatInfo::optionalCalendars
Int32U5BU5D_t385246372* ___optionalCalendars_50;
// System.String[] System.Globalization.DateTimeFormatInfo::m_superShortDayNames
StringU5BU5D_t1281789340* ___m_superShortDayNames_51;
// System.String[] System.Globalization.DateTimeFormatInfo::genitiveMonthNames
StringU5BU5D_t1281789340* ___genitiveMonthNames_52;
// System.String[] System.Globalization.DateTimeFormatInfo::m_genitiveAbbreviatedMonthNames
StringU5BU5D_t1281789340* ___m_genitiveAbbreviatedMonthNames_53;
// System.String[] System.Globalization.DateTimeFormatInfo::leapYearMonthNames
StringU5BU5D_t1281789340* ___leapYearMonthNames_54;
// System.Globalization.DateTimeFormatFlags System.Globalization.DateTimeFormatInfo::formatFlags
int32_t ___formatFlags_55;
// System.String System.Globalization.DateTimeFormatInfo::m_name
String_t* ___m_name_56;
// System.String[] modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.DateTimeFormatInfo::all_date_time_patterns
StringU5BU5D_t1281789340* ___all_date_time_patterns_57;
public:
inline static int32_t get_offset_of_m_isReadOnly_10() { return static_cast<int32_t>(offsetof(DateTimeFormatInfo_t2405853701, ___m_isReadOnly_10)); }
inline bool get_m_isReadOnly_10() const { return ___m_isReadOnly_10; }
inline bool* get_address_of_m_isReadOnly_10() { return &___m_isReadOnly_10; }
inline void set_m_isReadOnly_10(bool value)
{
___m_isReadOnly_10 = value;
}
inline static int32_t get_offset_of_amDesignator_11() { return static_cast<int32_t>(offsetof(DateTimeFormatInfo_t2405853701, ___amDesignator_11)); }
inline String_t* get_amDesignator_11() const { return ___amDesignator_11; }
inline String_t** get_address_of_amDesignator_11() { return &___amDesignator_11; }
inline void set_amDesignator_11(String_t* value)
{
___amDesignator_11 = value;
Il2CppCodeGenWriteBarrier((&___amDesignator_11), value);
}
inline static int32_t get_offset_of_pmDesignator_12() { return static_cast<int32_t>(offsetof(DateTimeFormatInfo_t2405853701, ___pmDesignator_12)); }
inline String_t* get_pmDesignator_12() const { return ___pmDesignator_12; }
inline String_t** get_address_of_pmDesignator_12() { return &___pmDesignator_12; }
inline void set_pmDesignator_12(String_t* value)
{
___pmDesignator_12 = value;
Il2CppCodeGenWriteBarrier((&___pmDesignator_12), value);
}
inline static int32_t get_offset_of_dateSeparator_13() { return static_cast<int32_t>(offsetof(DateTimeFormatInfo_t2405853701, ___dateSeparator_13)); }
inline String_t* get_dateSeparator_13() const { return ___dateSeparator_13; }
inline String_t** get_address_of_dateSeparator_13() { return &___dateSeparator_13; }
inline void set_dateSeparator_13(String_t* value)
{
___dateSeparator_13 = value;
Il2CppCodeGenWriteBarrier((&___dateSeparator_13), value);
}
inline static int32_t get_offset_of_timeSeparator_14() { return static_cast<int32_t>(offsetof(DateTimeFormatInfo_t2405853701, ___timeSeparator_14)); }
inline String_t* get_timeSeparator_14() const { return ___timeSeparator_14; }
inline String_t** get_address_of_timeSeparator_14() { return &___timeSeparator_14; }
inline void set_timeSeparator_14(String_t* value)
{
___timeSeparator_14 = value;
Il2CppCodeGenWriteBarrier((&___timeSeparator_14), value);
}
inline static int32_t get_offset_of_shortDatePattern_15() { return static_cast<int32_t>(offsetof(DateTimeFormatInfo_t2405853701, ___shortDatePattern_15)); }
inline String_t* get_shortDatePattern_15() const { return ___shortDatePattern_15; }
inline String_t** get_address_of_shortDatePattern_15() { return &___shortDatePattern_15; }
inline void set_shortDatePattern_15(String_t* value)
{
___shortDatePattern_15 = value;
Il2CppCodeGenWriteBarrier((&___shortDatePattern_15), value);
}
inline static int32_t get_offset_of_longDatePattern_16() { return static_cast<int32_t>(offsetof(DateTimeFormatInfo_t2405853701, ___longDatePattern_16)); }
inline String_t* get_longDatePattern_16() const { return ___longDatePattern_16; }
inline String_t** get_address_of_longDatePattern_16() { return &___longDatePattern_16; }
inline void set_longDatePattern_16(String_t* value)
{
___longDatePattern_16 = value;
Il2CppCodeGenWriteBarrier((&___longDatePattern_16), value);
}
inline static int32_t get_offset_of_shortTimePattern_17() { return static_cast<int32_t>(offsetof(DateTimeFormatInfo_t2405853701, ___shortTimePattern_17)); }
inline String_t* get_shortTimePattern_17() const { return ___shortTimePattern_17; }
inline String_t** get_address_of_shortTimePattern_17() { return &___shortTimePattern_17; }
inline void set_shortTimePattern_17(String_t* value)
{
___shortTimePattern_17 = value;
Il2CppCodeGenWriteBarrier((&___shortTimePattern_17), value);
}
inline static int32_t get_offset_of_longTimePattern_18() { return static_cast<int32_t>(offsetof(DateTimeFormatInfo_t2405853701, ___longTimePattern_18)); }
inline String_t* get_longTimePattern_18() const { return ___longTimePattern_18; }
inline String_t** get_address_of_longTimePattern_18() { return &___longTimePattern_18; }
inline void set_longTimePattern_18(String_t* value)
{
___longTimePattern_18 = value;
Il2CppCodeGenWriteBarrier((&___longTimePattern_18), value);
}
inline static int32_t get_offset_of_monthDayPattern_19() { return static_cast<int32_t>(offsetof(DateTimeFormatInfo_t2405853701, ___monthDayPattern_19)); }
inline String_t* get_monthDayPattern_19() const { return ___monthDayPattern_19; }
inline String_t** get_address_of_monthDayPattern_19() { return &___monthDayPattern_19; }
inline void set_monthDayPattern_19(String_t* value)
{
___monthDayPattern_19 = value;
Il2CppCodeGenWriteBarrier((&___monthDayPattern_19), value);
}
inline static int32_t get_offset_of_yearMonthPattern_20() { return static_cast<int32_t>(offsetof(DateTimeFormatInfo_t2405853701, ___yearMonthPattern_20)); }
inline String_t* get_yearMonthPattern_20() const { return ___yearMonthPattern_20; }
inline String_t** get_address_of_yearMonthPattern_20() { return &___yearMonthPattern_20; }
inline void set_yearMonthPattern_20(String_t* value)
{
___yearMonthPattern_20 = value;
Il2CppCodeGenWriteBarrier((&___yearMonthPattern_20), value);
}
inline static int32_t get_offset_of_fullDateTimePattern_21() { return static_cast<int32_t>(offsetof(DateTimeFormatInfo_t2405853701, ___fullDateTimePattern_21)); }
inline String_t* get_fullDateTimePattern_21() const { return ___fullDateTimePattern_21; }
inline String_t** get_address_of_fullDateTimePattern_21() { return &___fullDateTimePattern_21; }
inline void set_fullDateTimePattern_21(String_t* value)
{
___fullDateTimePattern_21 = value;
Il2CppCodeGenWriteBarrier((&___fullDateTimePattern_21), value);
}
inline static int32_t get_offset_of__RFC1123Pattern_22() { return static_cast<int32_t>(offsetof(DateTimeFormatInfo_t2405853701, ____RFC1123Pattern_22)); }
inline String_t* get__RFC1123Pattern_22() const { return ____RFC1123Pattern_22; }
inline String_t** get_address_of__RFC1123Pattern_22() { return &____RFC1123Pattern_22; }
inline void set__RFC1123Pattern_22(String_t* value)
{
____RFC1123Pattern_22 = value;
Il2CppCodeGenWriteBarrier((&____RFC1123Pattern_22), value);
}
inline static int32_t get_offset_of__SortableDateTimePattern_23() { return static_cast<int32_t>(offsetof(DateTimeFormatInfo_t2405853701, ____SortableDateTimePattern_23)); }
inline String_t* get__SortableDateTimePattern_23() const { return ____SortableDateTimePattern_23; }
inline String_t** get_address_of__SortableDateTimePattern_23() { return &____SortableDateTimePattern_23; }
inline void set__SortableDateTimePattern_23(String_t* value)
{
____SortableDateTimePattern_23 = value;
Il2CppCodeGenWriteBarrier((&____SortableDateTimePattern_23), value);
}
inline static int32_t get_offset_of__UniversalSortableDateTimePattern_24() { return static_cast<int32_t>(offsetof(DateTimeFormatInfo_t2405853701, ____UniversalSortableDateTimePattern_24)); }
inline String_t* get__UniversalSortableDateTimePattern_24() const { return ____UniversalSortableDateTimePattern_24; }
inline String_t** get_address_of__UniversalSortableDateTimePattern_24() { return &____UniversalSortableDateTimePattern_24; }
inline void set__UniversalSortableDateTimePattern_24(String_t* value)
{
____UniversalSortableDateTimePattern_24 = value;
Il2CppCodeGenWriteBarrier((&____UniversalSortableDateTimePattern_24), value);
}
inline static int32_t get_offset_of_firstDayOfWeek_25() { return static_cast<int32_t>(offsetof(DateTimeFormatInfo_t2405853701, ___firstDayOfWeek_25)); }
inline int32_t get_firstDayOfWeek_25() const { return ___firstDayOfWeek_25; }
inline int32_t* get_address_of_firstDayOfWeek_25() { return &___firstDayOfWeek_25; }
inline void set_firstDayOfWeek_25(int32_t value)
{
___firstDayOfWeek_25 = value;
}
inline static int32_t get_offset_of_calendar_26() { return static_cast<int32_t>(offsetof(DateTimeFormatInfo_t2405853701, ___calendar_26)); }
inline Calendar_t1661121569 * get_calendar_26() const { return ___calendar_26; }
inline Calendar_t1661121569 ** get_address_of_calendar_26() { return &___calendar_26; }
inline void set_calendar_26(Calendar_t1661121569 * value)
{
___calendar_26 = value;
Il2CppCodeGenWriteBarrier((&___calendar_26), value);
}
inline static int32_t get_offset_of_calendarWeekRule_27() { return static_cast<int32_t>(offsetof(DateTimeFormatInfo_t2405853701, ___calendarWeekRule_27)); }
inline int32_t get_calendarWeekRule_27() const { return ___calendarWeekRule_27; }
inline int32_t* get_address_of_calendarWeekRule_27() { return &___calendarWeekRule_27; }
inline void set_calendarWeekRule_27(int32_t value)
{
___calendarWeekRule_27 = value;
}
inline static int32_t get_offset_of_abbreviatedDayNames_28() { return static_cast<int32_t>(offsetof(DateTimeFormatInfo_t2405853701, ___abbreviatedDayNames_28)); }
inline StringU5BU5D_t1281789340* get_abbreviatedDayNames_28() const { return ___abbreviatedDayNames_28; }
inline StringU5BU5D_t1281789340** get_address_of_abbreviatedDayNames_28() { return &___abbreviatedDayNames_28; }
inline void set_abbreviatedDayNames_28(StringU5BU5D_t1281789340* value)
{
___abbreviatedDayNames_28 = value;
Il2CppCodeGenWriteBarrier((&___abbreviatedDayNames_28), value);
}
inline static int32_t get_offset_of_dayNames_29() { return static_cast<int32_t>(offsetof(DateTimeFormatInfo_t2405853701, ___dayNames_29)); }
inline StringU5BU5D_t1281789340* get_dayNames_29() const { return ___dayNames_29; }
inline StringU5BU5D_t1281789340** get_address_of_dayNames_29() { return &___dayNames_29; }
inline void set_dayNames_29(StringU5BU5D_t1281789340* value)
{
___dayNames_29 = value;
Il2CppCodeGenWriteBarrier((&___dayNames_29), value);
}
inline static int32_t get_offset_of_monthNames_30() { return static_cast<int32_t>(offsetof(DateTimeFormatInfo_t2405853701, ___monthNames_30)); }
inline StringU5BU5D_t1281789340* get_monthNames_30() const { return ___monthNames_30; }
inline StringU5BU5D_t1281789340** get_address_of_monthNames_30() { return &___monthNames_30; }
inline void set_monthNames_30(StringU5BU5D_t1281789340* value)
{
___monthNames_30 = value;
Il2CppCodeGenWriteBarrier((&___monthNames_30), value);
}
inline static int32_t get_offset_of_abbreviatedMonthNames_31() { return static_cast<int32_t>(offsetof(DateTimeFormatInfo_t2405853701, ___abbreviatedMonthNames_31)); }
inline StringU5BU5D_t1281789340* get_abbreviatedMonthNames_31() const { return ___abbreviatedMonthNames_31; }
inline StringU5BU5D_t1281789340** get_address_of_abbreviatedMonthNames_31() { return &___abbreviatedMonthNames_31; }
inline void set_abbreviatedMonthNames_31(StringU5BU5D_t1281789340* value)
{
___abbreviatedMonthNames_31 = value;
Il2CppCodeGenWriteBarrier((&___abbreviatedMonthNames_31), value);
}
inline static int32_t get_offset_of_allShortDatePatterns_32() { return static_cast<int32_t>(offsetof(DateTimeFormatInfo_t2405853701, ___allShortDatePatterns_32)); }
inline StringU5BU5D_t1281789340* get_allShortDatePatterns_32() const { return ___allShortDatePatterns_32; }
inline StringU5BU5D_t1281789340** get_address_of_allShortDatePatterns_32() { return &___allShortDatePatterns_32; }
inline void set_allShortDatePatterns_32(StringU5BU5D_t1281789340* value)
{
___allShortDatePatterns_32 = value;
Il2CppCodeGenWriteBarrier((&___allShortDatePatterns_32), value);
}
inline static int32_t get_offset_of_allLongDatePatterns_33() { return static_cast<int32_t>(offsetof(DateTimeFormatInfo_t2405853701, ___allLongDatePatterns_33)); }
inline StringU5BU5D_t1281789340* get_allLongDatePatterns_33() const { return ___allLongDatePatterns_33; }
inline StringU5BU5D_t1281789340** get_address_of_allLongDatePatterns_33() { return &___allLongDatePatterns_33; }
inline void set_allLongDatePatterns_33(StringU5BU5D_t1281789340* value)
{
___allLongDatePatterns_33 = value;
Il2CppCodeGenWriteBarrier((&___allLongDatePatterns_33), value);
}
inline static int32_t get_offset_of_allShortTimePatterns_34() { return static_cast<int32_t>(offsetof(DateTimeFormatInfo_t2405853701, ___allShortTimePatterns_34)); }
inline StringU5BU5D_t1281789340* get_allShortTimePatterns_34() const { return ___allShortTimePatterns_34; }
inline StringU5BU5D_t1281789340** get_address_of_allShortTimePatterns_34() { return &___allShortTimePatterns_34; }
inline void set_allShortTimePatterns_34(StringU5BU5D_t1281789340* value)
{
___allShortTimePatterns_34 = value;
Il2CppCodeGenWriteBarrier((&___allShortTimePatterns_34), value);
}
inline static int32_t get_offset_of_allLongTimePatterns_35() { return static_cast<int32_t>(offsetof(DateTimeFormatInfo_t2405853701, ___allLongTimePatterns_35)); }
inline StringU5BU5D_t1281789340* get_allLongTimePatterns_35() const { return ___allLongTimePatterns_35; }
inline StringU5BU5D_t1281789340** get_address_of_allLongTimePatterns_35() { return &___allLongTimePatterns_35; }
inline void set_allLongTimePatterns_35(StringU5BU5D_t1281789340* value)
{
___allLongTimePatterns_35 = value;
Il2CppCodeGenWriteBarrier((&___allLongTimePatterns_35), value);
}
inline static int32_t get_offset_of_monthDayPatterns_36() { return static_cast<int32_t>(offsetof(DateTimeFormatInfo_t2405853701, ___monthDayPatterns_36)); }
inline StringU5BU5D_t1281789340* get_monthDayPatterns_36() const { return ___monthDayPatterns_36; }
inline StringU5BU5D_t1281789340** get_address_of_monthDayPatterns_36() { return &___monthDayPatterns_36; }
inline void set_monthDayPatterns_36(StringU5BU5D_t1281789340* value)
{
___monthDayPatterns_36 = value;
Il2CppCodeGenWriteBarrier((&___monthDayPatterns_36), value);
}
inline static int32_t get_offset_of_yearMonthPatterns_37() { return static_cast<int32_t>(offsetof(DateTimeFormatInfo_t2405853701, ___yearMonthPatterns_37)); }
inline StringU5BU5D_t1281789340* get_yearMonthPatterns_37() const { return ___yearMonthPatterns_37; }
inline StringU5BU5D_t1281789340** get_address_of_yearMonthPatterns_37() { return &___yearMonthPatterns_37; }
inline void set_yearMonthPatterns_37(StringU5BU5D_t1281789340* value)
{
___yearMonthPatterns_37 = value;
Il2CppCodeGenWriteBarrier((&___yearMonthPatterns_37), value);
}
inline static int32_t get_offset_of_shortDayNames_38() { return static_cast<int32_t>(offsetof(DateTimeFormatInfo_t2405853701, ___shortDayNames_38)); }
inline StringU5BU5D_t1281789340* get_shortDayNames_38() const { return ___shortDayNames_38; }
inline StringU5BU5D_t1281789340** get_address_of_shortDayNames_38() { return &___shortDayNames_38; }
inline void set_shortDayNames_38(StringU5BU5D_t1281789340* value)
{
___shortDayNames_38 = value;
Il2CppCodeGenWriteBarrier((&___shortDayNames_38), value);
}
inline static int32_t get_offset_of_nDataItem_39() { return static_cast<int32_t>(offsetof(DateTimeFormatInfo_t2405853701, ___nDataItem_39)); }
inline int32_t get_nDataItem_39() const { return ___nDataItem_39; }
inline int32_t* get_address_of_nDataItem_39() { return &___nDataItem_39; }
inline void set_nDataItem_39(int32_t value)
{
___nDataItem_39 = value;
}
inline static int32_t get_offset_of_m_useUserOverride_40() { return static_cast<int32_t>(offsetof(DateTimeFormatInfo_t2405853701, ___m_useUserOverride_40)); }
inline bool get_m_useUserOverride_40() const { return ___m_useUserOverride_40; }
inline bool* get_address_of_m_useUserOverride_40() { return &___m_useUserOverride_40; }
inline void set_m_useUserOverride_40(bool value)
{
___m_useUserOverride_40 = value;
}
inline static int32_t get_offset_of_m_isDefaultCalendar_41() { return static_cast<int32_t>(offsetof(DateTimeFormatInfo_t2405853701, ___m_isDefaultCalendar_41)); }
inline bool get_m_isDefaultCalendar_41() const { return ___m_isDefaultCalendar_41; }
inline bool* get_address_of_m_isDefaultCalendar_41() { return &___m_isDefaultCalendar_41; }
inline void set_m_isDefaultCalendar_41(bool value)
{
___m_isDefaultCalendar_41 = value;
}
inline static int32_t get_offset_of_CultureID_42() { return static_cast<int32_t>(offsetof(DateTimeFormatInfo_t2405853701, ___CultureID_42)); }
inline int32_t get_CultureID_42() const { return ___CultureID_42; }
inline int32_t* get_address_of_CultureID_42() { return &___CultureID_42; }
inline void set_CultureID_42(int32_t value)
{
___CultureID_42 = value;
}
inline static int32_t get_offset_of_bUseCalendarInfo_43() { return static_cast<int32_t>(offsetof(DateTimeFormatInfo_t2405853701, ___bUseCalendarInfo_43)); }
inline bool get_bUseCalendarInfo_43() const { return ___bUseCalendarInfo_43; }
inline bool* get_address_of_bUseCalendarInfo_43() { return &___bUseCalendarInfo_43; }
inline void set_bUseCalendarInfo_43(bool value)
{
___bUseCalendarInfo_43 = value;
}
inline static int32_t get_offset_of_generalShortTimePattern_44() { return static_cast<int32_t>(offsetof(DateTimeFormatInfo_t2405853701, ___generalShortTimePattern_44)); }
inline String_t* get_generalShortTimePattern_44() const { return ___generalShortTimePattern_44; }
inline String_t** get_address_of_generalShortTimePattern_44() { return &___generalShortTimePattern_44; }
inline void set_generalShortTimePattern_44(String_t* value)
{
___generalShortTimePattern_44 = value;
Il2CppCodeGenWriteBarrier((&___generalShortTimePattern_44), value);
}
inline static int32_t get_offset_of_generalLongTimePattern_45() { return static_cast<int32_t>(offsetof(DateTimeFormatInfo_t2405853701, ___generalLongTimePattern_45)); }
inline String_t* get_generalLongTimePattern_45() const { return ___generalLongTimePattern_45; }
inline String_t** get_address_of_generalLongTimePattern_45() { return &___generalLongTimePattern_45; }
inline void set_generalLongTimePattern_45(String_t* value)
{
___generalLongTimePattern_45 = value;
Il2CppCodeGenWriteBarrier((&___generalLongTimePattern_45), value);
}
inline static int32_t get_offset_of_m_eraNames_46() { return static_cast<int32_t>(offsetof(DateTimeFormatInfo_t2405853701, ___m_eraNames_46)); }
inline StringU5BU5D_t1281789340* get_m_eraNames_46() const { return ___m_eraNames_46; }
inline StringU5BU5D_t1281789340** get_address_of_m_eraNames_46() { return &___m_eraNames_46; }
inline void set_m_eraNames_46(StringU5BU5D_t1281789340* value)
{
___m_eraNames_46 = value;
Il2CppCodeGenWriteBarrier((&___m_eraNames_46), value);
}
inline static int32_t get_offset_of_m_abbrevEraNames_47() { return static_cast<int32_t>(offsetof(DateTimeFormatInfo_t2405853701, ___m_abbrevEraNames_47)); }
inline StringU5BU5D_t1281789340* get_m_abbrevEraNames_47() const { return ___m_abbrevEraNames_47; }
inline StringU5BU5D_t1281789340** get_address_of_m_abbrevEraNames_47() { return &___m_abbrevEraNames_47; }
inline void set_m_abbrevEraNames_47(StringU5BU5D_t1281789340* value)
{
___m_abbrevEraNames_47 = value;
Il2CppCodeGenWriteBarrier((&___m_abbrevEraNames_47), value);
}
inline static int32_t get_offset_of_m_abbrevEnglishEraNames_48() { return static_cast<int32_t>(offsetof(DateTimeFormatInfo_t2405853701, ___m_abbrevEnglishEraNames_48)); }
inline StringU5BU5D_t1281789340* get_m_abbrevEnglishEraNames_48() const { return ___m_abbrevEnglishEraNames_48; }
inline StringU5BU5D_t1281789340** get_address_of_m_abbrevEnglishEraNames_48() { return &___m_abbrevEnglishEraNames_48; }
inline void set_m_abbrevEnglishEraNames_48(StringU5BU5D_t1281789340* value)
{
___m_abbrevEnglishEraNames_48 = value;
Il2CppCodeGenWriteBarrier((&___m_abbrevEnglishEraNames_48), value);
}
inline static int32_t get_offset_of_m_dateWords_49() { return static_cast<int32_t>(offsetof(DateTimeFormatInfo_t2405853701, ___m_dateWords_49)); }
inline StringU5BU5D_t1281789340* get_m_dateWords_49() const { return ___m_dateWords_49; }
inline StringU5BU5D_t1281789340** get_address_of_m_dateWords_49() { return &___m_dateWords_49; }
inline void set_m_dateWords_49(StringU5BU5D_t1281789340* value)
{
___m_dateWords_49 = value;
Il2CppCodeGenWriteBarrier((&___m_dateWords_49), value);
}
inline static int32_t get_offset_of_optionalCalendars_50() { return static_cast<int32_t>(offsetof(DateTimeFormatInfo_t2405853701, ___optionalCalendars_50)); }
inline Int32U5BU5D_t385246372* get_optionalCalendars_50() const { return ___optionalCalendars_50; }
inline Int32U5BU5D_t385246372** get_address_of_optionalCalendars_50() { return &___optionalCalendars_50; }
inline void set_optionalCalendars_50(Int32U5BU5D_t385246372* value)
{
___optionalCalendars_50 = value;
Il2CppCodeGenWriteBarrier((&___optionalCalendars_50), value);
}
inline static int32_t get_offset_of_m_superShortDayNames_51() { return static_cast<int32_t>(offsetof(DateTimeFormatInfo_t2405853701, ___m_superShortDayNames_51)); }
inline StringU5BU5D_t1281789340* get_m_superShortDayNames_51() const { return ___m_superShortDayNames_51; }
inline StringU5BU5D_t1281789340** get_address_of_m_superShortDayNames_51() { return &___m_superShortDayNames_51; }
inline void set_m_superShortDayNames_51(StringU5BU5D_t1281789340* value)
{
___m_superShortDayNames_51 = value;
Il2CppCodeGenWriteBarrier((&___m_superShortDayNames_51), value);
}
inline static int32_t get_offset_of_genitiveMonthNames_52() { return static_cast<int32_t>(offsetof(DateTimeFormatInfo_t2405853701, ___genitiveMonthNames_52)); }
inline StringU5BU5D_t1281789340* get_genitiveMonthNames_52() const { return ___genitiveMonthNames_52; }
inline StringU5BU5D_t1281789340** get_address_of_genitiveMonthNames_52() { return &___genitiveMonthNames_52; }
inline void set_genitiveMonthNames_52(StringU5BU5D_t1281789340* value)
{
___genitiveMonthNames_52 = value;
Il2CppCodeGenWriteBarrier((&___genitiveMonthNames_52), value);
}
inline static int32_t get_offset_of_m_genitiveAbbreviatedMonthNames_53() { return static_cast<int32_t>(offsetof(DateTimeFormatInfo_t2405853701, ___m_genitiveAbbreviatedMonthNames_53)); }
inline StringU5BU5D_t1281789340* get_m_genitiveAbbreviatedMonthNames_53() const { return ___m_genitiveAbbreviatedMonthNames_53; }
inline StringU5BU5D_t1281789340** get_address_of_m_genitiveAbbreviatedMonthNames_53() { return &___m_genitiveAbbreviatedMonthNames_53; }
inline void set_m_genitiveAbbreviatedMonthNames_53(StringU5BU5D_t1281789340* value)
{
___m_genitiveAbbreviatedMonthNames_53 = value;
Il2CppCodeGenWriteBarrier((&___m_genitiveAbbreviatedMonthNames_53), value);
}
inline static int32_t get_offset_of_leapYearMonthNames_54() { return static_cast<int32_t>(offsetof(DateTimeFormatInfo_t2405853701, ___leapYearMonthNames_54)); }
inline StringU5BU5D_t1281789340* get_leapYearMonthNames_54() const { return ___leapYearMonthNames_54; }
inline StringU5BU5D_t1281789340** get_address_of_leapYearMonthNames_54() { return &___leapYearMonthNames_54; }
inline void set_leapYearMonthNames_54(StringU5BU5D_t1281789340* value)
{
___leapYearMonthNames_54 = value;
Il2CppCodeGenWriteBarrier((&___leapYearMonthNames_54), value);
}
inline static int32_t get_offset_of_formatFlags_55() { return static_cast<int32_t>(offsetof(DateTimeFormatInfo_t2405853701, ___formatFlags_55)); }
inline int32_t get_formatFlags_55() const { return ___formatFlags_55; }
inline int32_t* get_address_of_formatFlags_55() { return &___formatFlags_55; }
inline void set_formatFlags_55(int32_t value)
{
___formatFlags_55 = value;
}
inline static int32_t get_offset_of_m_name_56() { return static_cast<int32_t>(offsetof(DateTimeFormatInfo_t2405853701, ___m_name_56)); }
inline String_t* get_m_name_56() const { return ___m_name_56; }
inline String_t** get_address_of_m_name_56() { return &___m_name_56; }
inline void set_m_name_56(String_t* value)
{
___m_name_56 = value;
Il2CppCodeGenWriteBarrier((&___m_name_56), value);
}
inline static int32_t get_offset_of_all_date_time_patterns_57() { return static_cast<int32_t>(offsetof(DateTimeFormatInfo_t2405853701, ___all_date_time_patterns_57)); }
inline StringU5BU5D_t1281789340* get_all_date_time_patterns_57() const { return ___all_date_time_patterns_57; }
inline StringU5BU5D_t1281789340** get_address_of_all_date_time_patterns_57() { return &___all_date_time_patterns_57; }
inline void set_all_date_time_patterns_57(StringU5BU5D_t1281789340* value)
{
___all_date_time_patterns_57 = value;
Il2CppCodeGenWriteBarrier((&___all_date_time_patterns_57), value);
}
};
struct DateTimeFormatInfo_t2405853701_StaticFields
{
public:
// System.String System.Globalization.DateTimeFormatInfo::MSG_READONLY
String_t* ___MSG_READONLY_1;
// System.String System.Globalization.DateTimeFormatInfo::MSG_ARRAYSIZE_MONTH
String_t* ___MSG_ARRAYSIZE_MONTH_2;
// System.String System.Globalization.DateTimeFormatInfo::MSG_ARRAYSIZE_DAY
String_t* ___MSG_ARRAYSIZE_DAY_3;
// System.String[] System.Globalization.DateTimeFormatInfo::INVARIANT_ABBREVIATED_DAY_NAMES
StringU5BU5D_t1281789340* ___INVARIANT_ABBREVIATED_DAY_NAMES_4;
// System.String[] System.Globalization.DateTimeFormatInfo::INVARIANT_DAY_NAMES
StringU5BU5D_t1281789340* ___INVARIANT_DAY_NAMES_5;
// System.String[] System.Globalization.DateTimeFormatInfo::INVARIANT_ABBREVIATED_MONTH_NAMES
StringU5BU5D_t1281789340* ___INVARIANT_ABBREVIATED_MONTH_NAMES_6;
// System.String[] System.Globalization.DateTimeFormatInfo::INVARIANT_MONTH_NAMES
StringU5BU5D_t1281789340* ___INVARIANT_MONTH_NAMES_7;
// System.String[] System.Globalization.DateTimeFormatInfo::INVARIANT_SHORT_DAY_NAMES
StringU5BU5D_t1281789340* ___INVARIANT_SHORT_DAY_NAMES_8;
// System.Globalization.DateTimeFormatInfo System.Globalization.DateTimeFormatInfo::theInvariantDateTimeFormatInfo
DateTimeFormatInfo_t2405853701 * ___theInvariantDateTimeFormatInfo_9;
public:
inline static int32_t get_offset_of_MSG_READONLY_1() { return static_cast<int32_t>(offsetof(DateTimeFormatInfo_t2405853701_StaticFields, ___MSG_READONLY_1)); }
inline String_t* get_MSG_READONLY_1() const { return ___MSG_READONLY_1; }
inline String_t** get_address_of_MSG_READONLY_1() { return &___MSG_READONLY_1; }
inline void set_MSG_READONLY_1(String_t* value)
{
___MSG_READONLY_1 = value;
Il2CppCodeGenWriteBarrier((&___MSG_READONLY_1), value);
}
inline static int32_t get_offset_of_MSG_ARRAYSIZE_MONTH_2() { return static_cast<int32_t>(offsetof(DateTimeFormatInfo_t2405853701_StaticFields, ___MSG_ARRAYSIZE_MONTH_2)); }
inline String_t* get_MSG_ARRAYSIZE_MONTH_2() const { return ___MSG_ARRAYSIZE_MONTH_2; }
inline String_t** get_address_of_MSG_ARRAYSIZE_MONTH_2() { return &___MSG_ARRAYSIZE_MONTH_2; }
inline void set_MSG_ARRAYSIZE_MONTH_2(String_t* value)
{
___MSG_ARRAYSIZE_MONTH_2 = value;
Il2CppCodeGenWriteBarrier((&___MSG_ARRAYSIZE_MONTH_2), value);
}
inline static int32_t get_offset_of_MSG_ARRAYSIZE_DAY_3() { return static_cast<int32_t>(offsetof(DateTimeFormatInfo_t2405853701_StaticFields, ___MSG_ARRAYSIZE_DAY_3)); }
inline String_t* get_MSG_ARRAYSIZE_DAY_3() const { return ___MSG_ARRAYSIZE_DAY_3; }
inline String_t** get_address_of_MSG_ARRAYSIZE_DAY_3() { return &___MSG_ARRAYSIZE_DAY_3; }
inline void set_MSG_ARRAYSIZE_DAY_3(String_t* value)
{
___MSG_ARRAYSIZE_DAY_3 = value;
Il2CppCodeGenWriteBarrier((&___MSG_ARRAYSIZE_DAY_3), value);
}
inline static int32_t get_offset_of_INVARIANT_ABBREVIATED_DAY_NAMES_4() { return static_cast<int32_t>(offsetof(DateTimeFormatInfo_t2405853701_StaticFields, ___INVARIANT_ABBREVIATED_DAY_NAMES_4)); }
inline StringU5BU5D_t1281789340* get_INVARIANT_ABBREVIATED_DAY_NAMES_4() const { return ___INVARIANT_ABBREVIATED_DAY_NAMES_4; }
inline StringU5BU5D_t1281789340** get_address_of_INVARIANT_ABBREVIATED_DAY_NAMES_4() { return &___INVARIANT_ABBREVIATED_DAY_NAMES_4; }
inline void set_INVARIANT_ABBREVIATED_DAY_NAMES_4(StringU5BU5D_t1281789340* value)
{
___INVARIANT_ABBREVIATED_DAY_NAMES_4 = value;
Il2CppCodeGenWriteBarrier((&___INVARIANT_ABBREVIATED_DAY_NAMES_4), value);
}
inline static int32_t get_offset_of_INVARIANT_DAY_NAMES_5() { return static_cast<int32_t>(offsetof(DateTimeFormatInfo_t2405853701_StaticFields, ___INVARIANT_DAY_NAMES_5)); }
inline StringU5BU5D_t1281789340* get_INVARIANT_DAY_NAMES_5() const { return ___INVARIANT_DAY_NAMES_5; }
inline StringU5BU5D_t1281789340** get_address_of_INVARIANT_DAY_NAMES_5() { return &___INVARIANT_DAY_NAMES_5; }
inline void set_INVARIANT_DAY_NAMES_5(StringU5BU5D_t1281789340* value)
{
___INVARIANT_DAY_NAMES_5 = value;
Il2CppCodeGenWriteBarrier((&___INVARIANT_DAY_NAMES_5), value);
}
inline static int32_t get_offset_of_INVARIANT_ABBREVIATED_MONTH_NAMES_6() { return static_cast<int32_t>(offsetof(DateTimeFormatInfo_t2405853701_StaticFields, ___INVARIANT_ABBREVIATED_MONTH_NAMES_6)); }
inline StringU5BU5D_t1281789340* get_INVARIANT_ABBREVIATED_MONTH_NAMES_6() const { return ___INVARIANT_ABBREVIATED_MONTH_NAMES_6; }
inline StringU5BU5D_t1281789340** get_address_of_INVARIANT_ABBREVIATED_MONTH_NAMES_6() { return &___INVARIANT_ABBREVIATED_MONTH_NAMES_6; }
inline void set_INVARIANT_ABBREVIATED_MONTH_NAMES_6(StringU5BU5D_t1281789340* value)
{
___INVARIANT_ABBREVIATED_MONTH_NAMES_6 = value;
Il2CppCodeGenWriteBarrier((&___INVARIANT_ABBREVIATED_MONTH_NAMES_6), value);
}
inline static int32_t get_offset_of_INVARIANT_MONTH_NAMES_7() { return static_cast<int32_t>(offsetof(DateTimeFormatInfo_t2405853701_StaticFields, ___INVARIANT_MONTH_NAMES_7)); }
inline StringU5BU5D_t1281789340* get_INVARIANT_MONTH_NAMES_7() const { return ___INVARIANT_MONTH_NAMES_7; }
inline StringU5BU5D_t1281789340** get_address_of_INVARIANT_MONTH_NAMES_7() { return &___INVARIANT_MONTH_NAMES_7; }
inline void set_INVARIANT_MONTH_NAMES_7(StringU5BU5D_t1281789340* value)
{
___INVARIANT_MONTH_NAMES_7 = value;
Il2CppCodeGenWriteBarrier((&___INVARIANT_MONTH_NAMES_7), value);
}
inline static int32_t get_offset_of_INVARIANT_SHORT_DAY_NAMES_8() { return static_cast<int32_t>(offsetof(DateTimeFormatInfo_t2405853701_StaticFields, ___INVARIANT_SHORT_DAY_NAMES_8)); }
inline StringU5BU5D_t1281789340* get_INVARIANT_SHORT_DAY_NAMES_8() const { return ___INVARIANT_SHORT_DAY_NAMES_8; }
inline StringU5BU5D_t1281789340** get_address_of_INVARIANT_SHORT_DAY_NAMES_8() { return &___INVARIANT_SHORT_DAY_NAMES_8; }
inline void set_INVARIANT_SHORT_DAY_NAMES_8(StringU5BU5D_t1281789340* value)
{
___INVARIANT_SHORT_DAY_NAMES_8 = value;
Il2CppCodeGenWriteBarrier((&___INVARIANT_SHORT_DAY_NAMES_8), value);
}
inline static int32_t get_offset_of_theInvariantDateTimeFormatInfo_9() { return static_cast<int32_t>(offsetof(DateTimeFormatInfo_t2405853701_StaticFields, ___theInvariantDateTimeFormatInfo_9)); }
inline DateTimeFormatInfo_t2405853701 * get_theInvariantDateTimeFormatInfo_9() const { return ___theInvariantDateTimeFormatInfo_9; }
inline DateTimeFormatInfo_t2405853701 ** get_address_of_theInvariantDateTimeFormatInfo_9() { return &___theInvariantDateTimeFormatInfo_9; }
inline void set_theInvariantDateTimeFormatInfo_9(DateTimeFormatInfo_t2405853701 * value)
{
___theInvariantDateTimeFormatInfo_9 = value;
Il2CppCodeGenWriteBarrier((&___theInvariantDateTimeFormatInfo_9), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // DATETIMEFORMATINFO_T2405853701_H
#ifndef FILENOTFOUNDEXCEPTION_T225391025_H
#define FILENOTFOUNDEXCEPTION_T225391025_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.IO.FileNotFoundException
struct FileNotFoundException_t225391025 : public IOException_t4088381929
{
public:
// System.String System.IO.FileNotFoundException::fileName
String_t* ___fileName_11;
// System.String System.IO.FileNotFoundException::fusionLog
String_t* ___fusionLog_12;
public:
inline static int32_t get_offset_of_fileName_11() { return static_cast<int32_t>(offsetof(FileNotFoundException_t225391025, ___fileName_11)); }
inline String_t* get_fileName_11() const { return ___fileName_11; }
inline String_t** get_address_of_fileName_11() { return &___fileName_11; }
inline void set_fileName_11(String_t* value)
{
___fileName_11 = value;
Il2CppCodeGenWriteBarrier((&___fileName_11), value);
}
inline static int32_t get_offset_of_fusionLog_12() { return static_cast<int32_t>(offsetof(FileNotFoundException_t225391025, ___fusionLog_12)); }
inline String_t* get_fusionLog_12() const { return ___fusionLog_12; }
inline String_t** get_address_of_fusionLog_12() { return &___fusionLog_12; }
inline void set_fusionLog_12(String_t* value)
{
___fusionLog_12 = value;
Il2CppCodeGenWriteBarrier((&___fusionLog_12), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // FILENOTFOUNDEXCEPTION_T225391025_H
#ifndef APPDOMAININITIALIZER_T682969308_H
#define APPDOMAININITIALIZER_T682969308_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.AppDomainInitializer
struct AppDomainInitializer_t682969308 : public MulticastDelegate_t
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // APPDOMAININITIALIZER_T682969308_H
#ifndef ASSEMBLYLOADEVENTHANDLER_T107971893_H
#define ASSEMBLYLOADEVENTHANDLER_T107971893_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.AssemblyLoadEventHandler
struct AssemblyLoadEventHandler_t107971893 : public MulticastDelegate_t
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // ASSEMBLYLOADEVENTHANDLER_T107971893_H
#ifndef X509CERTIFICATE_T489243024_H
#define X509CERTIFICATE_T489243024_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Mono.Security.X509.X509Certificate
struct X509Certificate_t489243024 : public RuntimeObject
{
public:
// Mono.Security.ASN1 Mono.Security.X509.X509Certificate::decoder
ASN1_t2114160832 * ___decoder_0;
// System.Byte[] Mono.Security.X509.X509Certificate::m_encodedcert
ByteU5BU5D_t4116647657* ___m_encodedcert_1;
// System.DateTime Mono.Security.X509.X509Certificate::m_from
DateTime_t3738529785 ___m_from_2;
// System.DateTime Mono.Security.X509.X509Certificate::m_until
DateTime_t3738529785 ___m_until_3;
// Mono.Security.ASN1 Mono.Security.X509.X509Certificate::issuer
ASN1_t2114160832 * ___issuer_4;
// System.String Mono.Security.X509.X509Certificate::m_issuername
String_t* ___m_issuername_5;
// System.String Mono.Security.X509.X509Certificate::m_keyalgo
String_t* ___m_keyalgo_6;
// System.Byte[] Mono.Security.X509.X509Certificate::m_keyalgoparams
ByteU5BU5D_t4116647657* ___m_keyalgoparams_7;
// Mono.Security.ASN1 Mono.Security.X509.X509Certificate::subject
ASN1_t2114160832 * ___subject_8;
// System.String Mono.Security.X509.X509Certificate::m_subject
String_t* ___m_subject_9;
// System.Byte[] Mono.Security.X509.X509Certificate::m_publickey
ByteU5BU5D_t4116647657* ___m_publickey_10;
// System.Byte[] Mono.Security.X509.X509Certificate::signature
ByteU5BU5D_t4116647657* ___signature_11;
// System.String Mono.Security.X509.X509Certificate::m_signaturealgo
String_t* ___m_signaturealgo_12;
// System.Byte[] Mono.Security.X509.X509Certificate::m_signaturealgoparams
ByteU5BU5D_t4116647657* ___m_signaturealgoparams_13;
// System.Security.Cryptography.DSA Mono.Security.X509.X509Certificate::_dsa
DSA_t2386879874 * ____dsa_14;
// System.Int32 Mono.Security.X509.X509Certificate::version
int32_t ___version_15;
// System.Byte[] Mono.Security.X509.X509Certificate::serialnumber
ByteU5BU5D_t4116647657* ___serialnumber_16;
// System.Byte[] Mono.Security.X509.X509Certificate::issuerUniqueID
ByteU5BU5D_t4116647657* ___issuerUniqueID_17;
// System.Byte[] Mono.Security.X509.X509Certificate::subjectUniqueID
ByteU5BU5D_t4116647657* ___subjectUniqueID_18;
// Mono.Security.X509.X509ExtensionCollection Mono.Security.X509.X509Certificate::extensions
X509ExtensionCollection_t609554708 * ___extensions_19;
public:
inline static int32_t get_offset_of_decoder_0() { return static_cast<int32_t>(offsetof(X509Certificate_t489243024, ___decoder_0)); }
inline ASN1_t2114160832 * get_decoder_0() const { return ___decoder_0; }
inline ASN1_t2114160832 ** get_address_of_decoder_0() { return &___decoder_0; }
inline void set_decoder_0(ASN1_t2114160832 * value)
{
___decoder_0 = value;
Il2CppCodeGenWriteBarrier((&___decoder_0), value);
}
inline static int32_t get_offset_of_m_encodedcert_1() { return static_cast<int32_t>(offsetof(X509Certificate_t489243024, ___m_encodedcert_1)); }
inline ByteU5BU5D_t4116647657* get_m_encodedcert_1() const { return ___m_encodedcert_1; }
inline ByteU5BU5D_t4116647657** get_address_of_m_encodedcert_1() { return &___m_encodedcert_1; }
inline void set_m_encodedcert_1(ByteU5BU5D_t4116647657* value)
{
___m_encodedcert_1 = value;
Il2CppCodeGenWriteBarrier((&___m_encodedcert_1), value);
}
inline static int32_t get_offset_of_m_from_2() { return static_cast<int32_t>(offsetof(X509Certificate_t489243024, ___m_from_2)); }
inline DateTime_t3738529785 get_m_from_2() const { return ___m_from_2; }
inline DateTime_t3738529785 * get_address_of_m_from_2() { return &___m_from_2; }
inline void set_m_from_2(DateTime_t3738529785 value)
{
___m_from_2 = value;
}
inline static int32_t get_offset_of_m_until_3() { return static_cast<int32_t>(offsetof(X509Certificate_t489243024, ___m_until_3)); }
inline DateTime_t3738529785 get_m_until_3() const { return ___m_until_3; }
inline DateTime_t3738529785 * get_address_of_m_until_3() { return &___m_until_3; }
inline void set_m_until_3(DateTime_t3738529785 value)
{
___m_until_3 = value;
}
inline static int32_t get_offset_of_issuer_4() { return static_cast<int32_t>(offsetof(X509Certificate_t489243024, ___issuer_4)); }
inline ASN1_t2114160832 * get_issuer_4() const { return ___issuer_4; }
inline ASN1_t2114160832 ** get_address_of_issuer_4() { return &___issuer_4; }
inline void set_issuer_4(ASN1_t2114160832 * value)
{
___issuer_4 = value;
Il2CppCodeGenWriteBarrier((&___issuer_4), value);
}
inline static int32_t get_offset_of_m_issuername_5() { return static_cast<int32_t>(offsetof(X509Certificate_t489243024, ___m_issuername_5)); }
inline String_t* get_m_issuername_5() const { return ___m_issuername_5; }
inline String_t** get_address_of_m_issuername_5() { return &___m_issuername_5; }
inline void set_m_issuername_5(String_t* value)
{
___m_issuername_5 = value;
Il2CppCodeGenWriteBarrier((&___m_issuername_5), value);
}
inline static int32_t get_offset_of_m_keyalgo_6() { return static_cast<int32_t>(offsetof(X509Certificate_t489243024, ___m_keyalgo_6)); }
inline String_t* get_m_keyalgo_6() const { return ___m_keyalgo_6; }
inline String_t** get_address_of_m_keyalgo_6() { return &___m_keyalgo_6; }
inline void set_m_keyalgo_6(String_t* value)
{
___m_keyalgo_6 = value;
Il2CppCodeGenWriteBarrier((&___m_keyalgo_6), value);
}
inline static int32_t get_offset_of_m_keyalgoparams_7() { return static_cast<int32_t>(offsetof(X509Certificate_t489243024, ___m_keyalgoparams_7)); }
inline ByteU5BU5D_t4116647657* get_m_keyalgoparams_7() const { return ___m_keyalgoparams_7; }
inline ByteU5BU5D_t4116647657** get_address_of_m_keyalgoparams_7() { return &___m_keyalgoparams_7; }
inline void set_m_keyalgoparams_7(ByteU5BU5D_t4116647657* value)
{
___m_keyalgoparams_7 = value;
Il2CppCodeGenWriteBarrier((&___m_keyalgoparams_7), value);
}
inline static int32_t get_offset_of_subject_8() { return static_cast<int32_t>(offsetof(X509Certificate_t489243024, ___subject_8)); }
inline ASN1_t2114160832 * get_subject_8() const { return ___subject_8; }
inline ASN1_t2114160832 ** get_address_of_subject_8() { return &___subject_8; }
inline void set_subject_8(ASN1_t2114160832 * value)
{
___subject_8 = value;
Il2CppCodeGenWriteBarrier((&___subject_8), value);
}
inline static int32_t get_offset_of_m_subject_9() { return static_cast<int32_t>(offsetof(X509Certificate_t489243024, ___m_subject_9)); }
inline String_t* get_m_subject_9() const { return ___m_subject_9; }
inline String_t** get_address_of_m_subject_9() { return &___m_subject_9; }
inline void set_m_subject_9(String_t* value)
{
___m_subject_9 = value;
Il2CppCodeGenWriteBarrier((&___m_subject_9), value);
}
inline static int32_t get_offset_of_m_publickey_10() { return static_cast<int32_t>(offsetof(X509Certificate_t489243024, ___m_publickey_10)); }
inline ByteU5BU5D_t4116647657* get_m_publickey_10() const { return ___m_publickey_10; }
inline ByteU5BU5D_t4116647657** get_address_of_m_publickey_10() { return &___m_publickey_10; }
inline void set_m_publickey_10(ByteU5BU5D_t4116647657* value)
{
___m_publickey_10 = value;
Il2CppCodeGenWriteBarrier((&___m_publickey_10), value);
}
inline static int32_t get_offset_of_signature_11() { return static_cast<int32_t>(offsetof(X509Certificate_t489243024, ___signature_11)); }
inline ByteU5BU5D_t4116647657* get_signature_11() const { return ___signature_11; }
inline ByteU5BU5D_t4116647657** get_address_of_signature_11() { return &___signature_11; }
inline void set_signature_11(ByteU5BU5D_t4116647657* value)
{
___signature_11 = value;
Il2CppCodeGenWriteBarrier((&___signature_11), value);
}
inline static int32_t get_offset_of_m_signaturealgo_12() { return static_cast<int32_t>(offsetof(X509Certificate_t489243024, ___m_signaturealgo_12)); }
inline String_t* get_m_signaturealgo_12() const { return ___m_signaturealgo_12; }
inline String_t** get_address_of_m_signaturealgo_12() { return &___m_signaturealgo_12; }
inline void set_m_signaturealgo_12(String_t* value)
{
___m_signaturealgo_12 = value;
Il2CppCodeGenWriteBarrier((&___m_signaturealgo_12), value);
}
inline static int32_t get_offset_of_m_signaturealgoparams_13() { return static_cast<int32_t>(offsetof(X509Certificate_t489243024, ___m_signaturealgoparams_13)); }
inline ByteU5BU5D_t4116647657* get_m_signaturealgoparams_13() const { return ___m_signaturealgoparams_13; }
inline ByteU5BU5D_t4116647657** get_address_of_m_signaturealgoparams_13() { return &___m_signaturealgoparams_13; }
inline void set_m_signaturealgoparams_13(ByteU5BU5D_t4116647657* value)
{
___m_signaturealgoparams_13 = value;
Il2CppCodeGenWriteBarrier((&___m_signaturealgoparams_13), value);
}
inline static int32_t get_offset_of__dsa_14() { return static_cast<int32_t>(offsetof(X509Certificate_t489243024, ____dsa_14)); }
inline DSA_t2386879874 * get__dsa_14() const { return ____dsa_14; }
inline DSA_t2386879874 ** get_address_of__dsa_14() { return &____dsa_14; }
inline void set__dsa_14(DSA_t2386879874 * value)
{
____dsa_14 = value;
Il2CppCodeGenWriteBarrier((&____dsa_14), value);
}
inline static int32_t get_offset_of_version_15() { return static_cast<int32_t>(offsetof(X509Certificate_t489243024, ___version_15)); }
inline int32_t get_version_15() const { return ___version_15; }
inline int32_t* get_address_of_version_15() { return &___version_15; }
inline void set_version_15(int32_t value)
{
___version_15 = value;
}
inline static int32_t get_offset_of_serialnumber_16() { return static_cast<int32_t>(offsetof(X509Certificate_t489243024, ___serialnumber_16)); }
inline ByteU5BU5D_t4116647657* get_serialnumber_16() const { return ___serialnumber_16; }
inline ByteU5BU5D_t4116647657** get_address_of_serialnumber_16() { return &___serialnumber_16; }
inline void set_serialnumber_16(ByteU5BU5D_t4116647657* value)
{
___serialnumber_16 = value;
Il2CppCodeGenWriteBarrier((&___serialnumber_16), value);
}
inline static int32_t get_offset_of_issuerUniqueID_17() { return static_cast<int32_t>(offsetof(X509Certificate_t489243024, ___issuerUniqueID_17)); }
inline ByteU5BU5D_t4116647657* get_issuerUniqueID_17() const { return ___issuerUniqueID_17; }
inline ByteU5BU5D_t4116647657** get_address_of_issuerUniqueID_17() { return &___issuerUniqueID_17; }
inline void set_issuerUniqueID_17(ByteU5BU5D_t4116647657* value)
{
___issuerUniqueID_17 = value;
Il2CppCodeGenWriteBarrier((&___issuerUniqueID_17), value);
}
inline static int32_t get_offset_of_subjectUniqueID_18() { return static_cast<int32_t>(offsetof(X509Certificate_t489243024, ___subjectUniqueID_18)); }
inline ByteU5BU5D_t4116647657* get_subjectUniqueID_18() const { return ___subjectUniqueID_18; }
inline ByteU5BU5D_t4116647657** get_address_of_subjectUniqueID_18() { return &___subjectUniqueID_18; }
inline void set_subjectUniqueID_18(ByteU5BU5D_t4116647657* value)
{
___subjectUniqueID_18 = value;
Il2CppCodeGenWriteBarrier((&___subjectUniqueID_18), value);
}
inline static int32_t get_offset_of_extensions_19() { return static_cast<int32_t>(offsetof(X509Certificate_t489243024, ___extensions_19)); }
inline X509ExtensionCollection_t609554708 * get_extensions_19() const { return ___extensions_19; }
inline X509ExtensionCollection_t609554708 ** get_address_of_extensions_19() { return &___extensions_19; }
inline void set_extensions_19(X509ExtensionCollection_t609554708 * value)
{
___extensions_19 = value;
Il2CppCodeGenWriteBarrier((&___extensions_19), value);
}
};
struct X509Certificate_t489243024_StaticFields
{
public:
// System.String Mono.Security.X509.X509Certificate::encoding_error
String_t* ___encoding_error_20;
public:
inline static int32_t get_offset_of_encoding_error_20() { return static_cast<int32_t>(offsetof(X509Certificate_t489243024_StaticFields, ___encoding_error_20)); }
inline String_t* get_encoding_error_20() const { return ___encoding_error_20; }
inline String_t** get_address_of_encoding_error_20() { return &___encoding_error_20; }
inline void set_encoding_error_20(String_t* value)
{
___encoding_error_20 = value;
Il2CppCodeGenWriteBarrier((&___encoding_error_20), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // X509CERTIFICATE_T489243024_H
#ifndef RESOLVEEVENTHANDLER_T2775508208_H
#define RESOLVEEVENTHANDLER_T2775508208_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.ResolveEventHandler
struct ResolveEventHandler_t2775508208 : public MulticastDelegate_t
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // RESOLVEEVENTHANDLER_T2775508208_H
#ifndef MONOTYPE_T_H
#define MONOTYPE_T_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.MonoType
struct MonoType_t : public Type_t
{
public:
// System.MonoTypeInfo System.MonoType::type_info
MonoTypeInfo_t3366989025 * ___type_info_8;
public:
inline static int32_t get_offset_of_type_info_8() { return static_cast<int32_t>(offsetof(MonoType_t, ___type_info_8)); }
inline MonoTypeInfo_t3366989025 * get_type_info_8() const { return ___type_info_8; }
inline MonoTypeInfo_t3366989025 ** get_address_of_type_info_8() { return &___type_info_8; }
inline void set_type_info_8(MonoTypeInfo_t3366989025 * value)
{
___type_info_8 = value;
Il2CppCodeGenWriteBarrier((&___type_info_8), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // MONOTYPE_T_H
#ifndef MISSINGMETHODEXCEPTION_T1274661534_H
#define MISSINGMETHODEXCEPTION_T1274661534_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.MissingMethodException
struct MissingMethodException_t1274661534 : public MissingMemberException_t1385081665
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // MISSINGMETHODEXCEPTION_T1274661534_H
#ifndef SWAPPER_T2822380397_H
#define SWAPPER_T2822380397_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Array/Swapper
struct Swapper_t2822380397 : public MulticastDelegate_t
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // SWAPPER_T2822380397_H
#ifndef ASYNCCALLBACK_T3962456242_H
#define ASYNCCALLBACK_T3962456242_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.AsyncCallback
struct AsyncCallback_t3962456242 : public MulticastDelegate_t
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // ASYNCCALLBACK_T3962456242_H
#ifndef TYPEBUILDER_T1073948154_H
#define TYPEBUILDER_T1073948154_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Reflection.Emit.TypeBuilder
struct TypeBuilder_t1073948154 : public Type_t
{
public:
// System.String System.Reflection.Emit.TypeBuilder::tname
String_t* ___tname_8;
// System.String System.Reflection.Emit.TypeBuilder::nspace
String_t* ___nspace_9;
// System.Type System.Reflection.Emit.TypeBuilder::parent
Type_t * ___parent_10;
// System.Type System.Reflection.Emit.TypeBuilder::nesting_type
Type_t * ___nesting_type_11;
// System.Type[] System.Reflection.Emit.TypeBuilder::interfaces
TypeU5BU5D_t3940880105* ___interfaces_12;
// System.Int32 System.Reflection.Emit.TypeBuilder::num_methods
int32_t ___num_methods_13;
// System.Reflection.Emit.MethodBuilder[] System.Reflection.Emit.TypeBuilder::methods
MethodBuilderU5BU5D_t3705301900* ___methods_14;
// System.Reflection.Emit.ConstructorBuilder[] System.Reflection.Emit.TypeBuilder::ctors
ConstructorBuilderU5BU5D_t3223009221* ___ctors_15;
// System.Reflection.Emit.PropertyBuilder[] System.Reflection.Emit.TypeBuilder::properties
PropertyBuilderU5BU5D_t4023329206* ___properties_16;
// System.Int32 System.Reflection.Emit.TypeBuilder::num_fields
int32_t ___num_fields_17;
// System.Reflection.Emit.FieldBuilder[] System.Reflection.Emit.TypeBuilder::fields
FieldBuilderU5BU5D_t138311604* ___fields_18;
// System.Reflection.Emit.EventBuilder[] System.Reflection.Emit.TypeBuilder::events
EventBuilderU5BU5D_t3902749141* ___events_19;
// System.Reflection.Emit.CustomAttributeBuilder[] System.Reflection.Emit.TypeBuilder::cattrs
CustomAttributeBuilderU5BU5D_t2951373564* ___cattrs_20;
// System.Reflection.Emit.TypeBuilder[] System.Reflection.Emit.TypeBuilder::subtypes
TypeBuilderU5BU5D_t786280671* ___subtypes_21;
// System.Reflection.TypeAttributes System.Reflection.Emit.TypeBuilder::attrs
int32_t ___attrs_22;
// System.Int32 System.Reflection.Emit.TypeBuilder::table_idx
int32_t ___table_idx_23;
// System.Reflection.Emit.ModuleBuilder System.Reflection.Emit.TypeBuilder::pmodule
ModuleBuilder_t731887691 * ___pmodule_24;
// System.Int32 System.Reflection.Emit.TypeBuilder::class_size
int32_t ___class_size_25;
// System.Reflection.Emit.PackingSize System.Reflection.Emit.TypeBuilder::packing_size
int32_t ___packing_size_26;
// System.IntPtr System.Reflection.Emit.TypeBuilder::generic_container
intptr_t ___generic_container_27;
// System.Reflection.Emit.GenericTypeParameterBuilder[] System.Reflection.Emit.TypeBuilder::generic_params
GenericTypeParameterBuilderU5BU5D_t3780444109* ___generic_params_28;
// System.Reflection.Emit.RefEmitPermissionSet[] System.Reflection.Emit.TypeBuilder::permissions
RefEmitPermissionSetU5BU5D_t567451178* ___permissions_29;
// System.Type System.Reflection.Emit.TypeBuilder::created
Type_t * ___created_30;
// System.String System.Reflection.Emit.TypeBuilder::fullname
String_t* ___fullname_31;
// System.Boolean System.Reflection.Emit.TypeBuilder::createTypeCalled
bool ___createTypeCalled_32;
// System.Type System.Reflection.Emit.TypeBuilder::underlying_type
Type_t * ___underlying_type_33;
public:
inline static int32_t get_offset_of_tname_8() { return static_cast<int32_t>(offsetof(TypeBuilder_t1073948154, ___tname_8)); }
inline String_t* get_tname_8() const { return ___tname_8; }
inline String_t** get_address_of_tname_8() { return &___tname_8; }
inline void set_tname_8(String_t* value)
{
___tname_8 = value;
Il2CppCodeGenWriteBarrier((&___tname_8), value);
}
inline static int32_t get_offset_of_nspace_9() { return static_cast<int32_t>(offsetof(TypeBuilder_t1073948154, ___nspace_9)); }
inline String_t* get_nspace_9() const { return ___nspace_9; }
inline String_t** get_address_of_nspace_9() { return &___nspace_9; }
inline void set_nspace_9(String_t* value)
{
___nspace_9 = value;
Il2CppCodeGenWriteBarrier((&___nspace_9), value);
}
inline static int32_t get_offset_of_parent_10() { return static_cast<int32_t>(offsetof(TypeBuilder_t1073948154, ___parent_10)); }
inline Type_t * get_parent_10() const { return ___parent_10; }
inline Type_t ** get_address_of_parent_10() { return &___parent_10; }
inline void set_parent_10(Type_t * value)
{
___parent_10 = value;
Il2CppCodeGenWriteBarrier((&___parent_10), value);
}
inline static int32_t get_offset_of_nesting_type_11() { return static_cast<int32_t>(offsetof(TypeBuilder_t1073948154, ___nesting_type_11)); }
inline Type_t * get_nesting_type_11() const { return ___nesting_type_11; }
inline Type_t ** get_address_of_nesting_type_11() { return &___nesting_type_11; }
inline void set_nesting_type_11(Type_t * value)
{
___nesting_type_11 = value;
Il2CppCodeGenWriteBarrier((&___nesting_type_11), value);
}
inline static int32_t get_offset_of_interfaces_12() { return static_cast<int32_t>(offsetof(TypeBuilder_t1073948154, ___interfaces_12)); }
inline TypeU5BU5D_t3940880105* get_interfaces_12() const { return ___interfaces_12; }
inline TypeU5BU5D_t3940880105** get_address_of_interfaces_12() { return &___interfaces_12; }
inline void set_interfaces_12(TypeU5BU5D_t3940880105* value)
{
___interfaces_12 = value;
Il2CppCodeGenWriteBarrier((&___interfaces_12), value);
}
inline static int32_t get_offset_of_num_methods_13() { return static_cast<int32_t>(offsetof(TypeBuilder_t1073948154, ___num_methods_13)); }
inline int32_t get_num_methods_13() const { return ___num_methods_13; }
inline int32_t* get_address_of_num_methods_13() { return &___num_methods_13; }
inline void set_num_methods_13(int32_t value)
{
___num_methods_13 = value;
}
inline static int32_t get_offset_of_methods_14() { return static_cast<int32_t>(offsetof(TypeBuilder_t1073948154, ___methods_14)); }
inline MethodBuilderU5BU5D_t3705301900* get_methods_14() const { return ___methods_14; }
inline MethodBuilderU5BU5D_t3705301900** get_address_of_methods_14() { return &___methods_14; }
inline void set_methods_14(MethodBuilderU5BU5D_t3705301900* value)
{
___methods_14 = value;
Il2CppCodeGenWriteBarrier((&___methods_14), value);
}
inline static int32_t get_offset_of_ctors_15() { return static_cast<int32_t>(offsetof(TypeBuilder_t1073948154, ___ctors_15)); }
inline ConstructorBuilderU5BU5D_t3223009221* get_ctors_15() const { return ___ctors_15; }
inline ConstructorBuilderU5BU5D_t3223009221** get_address_of_ctors_15() { return &___ctors_15; }
inline void set_ctors_15(ConstructorBuilderU5BU5D_t3223009221* value)
{
___ctors_15 = value;
Il2CppCodeGenWriteBarrier((&___ctors_15), value);
}
inline static int32_t get_offset_of_properties_16() { return static_cast<int32_t>(offsetof(TypeBuilder_t1073948154, ___properties_16)); }
inline PropertyBuilderU5BU5D_t4023329206* get_properties_16() const { return ___properties_16; }
inline PropertyBuilderU5BU5D_t4023329206** get_address_of_properties_16() { return &___properties_16; }
inline void set_properties_16(PropertyBuilderU5BU5D_t4023329206* value)
{
___properties_16 = value;
Il2CppCodeGenWriteBarrier((&___properties_16), value);
}
inline static int32_t get_offset_of_num_fields_17() { return static_cast<int32_t>(offsetof(TypeBuilder_t1073948154, ___num_fields_17)); }
inline int32_t get_num_fields_17() const { return ___num_fields_17; }
inline int32_t* get_address_of_num_fields_17() { return &___num_fields_17; }
inline void set_num_fields_17(int32_t value)
{
___num_fields_17 = value;
}
inline static int32_t get_offset_of_fields_18() { return static_cast<int32_t>(offsetof(TypeBuilder_t1073948154, ___fields_18)); }
inline FieldBuilderU5BU5D_t138311604* get_fields_18() const { return ___fields_18; }
inline FieldBuilderU5BU5D_t138311604** get_address_of_fields_18() { return &___fields_18; }
inline void set_fields_18(FieldBuilderU5BU5D_t138311604* value)
{
___fields_18 = value;
Il2CppCodeGenWriteBarrier((&___fields_18), value);
}
inline static int32_t get_offset_of_events_19() { return static_cast<int32_t>(offsetof(TypeBuilder_t1073948154, ___events_19)); }
inline EventBuilderU5BU5D_t3902749141* get_events_19() const { return ___events_19; }
inline EventBuilderU5BU5D_t3902749141** get_address_of_events_19() { return &___events_19; }
inline void set_events_19(EventBuilderU5BU5D_t3902749141* value)
{
___events_19 = value;
Il2CppCodeGenWriteBarrier((&___events_19), value);
}
inline static int32_t get_offset_of_cattrs_20() { return static_cast<int32_t>(offsetof(TypeBuilder_t1073948154, ___cattrs_20)); }
inline CustomAttributeBuilderU5BU5D_t2951373564* get_cattrs_20() const { return ___cattrs_20; }
inline CustomAttributeBuilderU5BU5D_t2951373564** get_address_of_cattrs_20() { return &___cattrs_20; }
inline void set_cattrs_20(CustomAttributeBuilderU5BU5D_t2951373564* value)
{
___cattrs_20 = value;
Il2CppCodeGenWriteBarrier((&___cattrs_20), value);
}
inline static int32_t get_offset_of_subtypes_21() { return static_cast<int32_t>(offsetof(TypeBuilder_t1073948154, ___subtypes_21)); }
inline TypeBuilderU5BU5D_t786280671* get_subtypes_21() const { return ___subtypes_21; }
inline TypeBuilderU5BU5D_t786280671** get_address_of_subtypes_21() { return &___subtypes_21; }
inline void set_subtypes_21(TypeBuilderU5BU5D_t786280671* value)
{
___subtypes_21 = value;
Il2CppCodeGenWriteBarrier((&___subtypes_21), value);
}
inline static int32_t get_offset_of_attrs_22() { return static_cast<int32_t>(offsetof(TypeBuilder_t1073948154, ___attrs_22)); }
inline int32_t get_attrs_22() const { return ___attrs_22; }
inline int32_t* get_address_of_attrs_22() { return &___attrs_22; }
inline void set_attrs_22(int32_t value)
{
___attrs_22 = value;
}
inline static int32_t get_offset_of_table_idx_23() { return static_cast<int32_t>(offsetof(TypeBuilder_t1073948154, ___table_idx_23)); }
inline int32_t get_table_idx_23() const { return ___table_idx_23; }
inline int32_t* get_address_of_table_idx_23() { return &___table_idx_23; }
inline void set_table_idx_23(int32_t value)
{
___table_idx_23 = value;
}
inline static int32_t get_offset_of_pmodule_24() { return static_cast<int32_t>(offsetof(TypeBuilder_t1073948154, ___pmodule_24)); }
inline ModuleBuilder_t731887691 * get_pmodule_24() const { return ___pmodule_24; }
inline ModuleBuilder_t731887691 ** get_address_of_pmodule_24() { return &___pmodule_24; }
inline void set_pmodule_24(ModuleBuilder_t731887691 * value)
{
___pmodule_24 = value;
Il2CppCodeGenWriteBarrier((&___pmodule_24), value);
}
inline static int32_t get_offset_of_class_size_25() { return static_cast<int32_t>(offsetof(TypeBuilder_t1073948154, ___class_size_25)); }
inline int32_t get_class_size_25() const { return ___class_size_25; }
inline int32_t* get_address_of_class_size_25() { return &___class_size_25; }
inline void set_class_size_25(int32_t value)
{
___class_size_25 = value;
}
inline static int32_t get_offset_of_packing_size_26() { return static_cast<int32_t>(offsetof(TypeBuilder_t1073948154, ___packing_size_26)); }
inline int32_t get_packing_size_26() const { return ___packing_size_26; }
inline int32_t* get_address_of_packing_size_26() { return &___packing_size_26; }
inline void set_packing_size_26(int32_t value)
{
___packing_size_26 = value;
}
inline static int32_t get_offset_of_generic_container_27() { return static_cast<int32_t>(offsetof(TypeBuilder_t1073948154, ___generic_container_27)); }
inline intptr_t get_generic_container_27() const { return ___generic_container_27; }
inline intptr_t* get_address_of_generic_container_27() { return &___generic_container_27; }
inline void set_generic_container_27(intptr_t value)
{
___generic_container_27 = value;
}
inline static int32_t get_offset_of_generic_params_28() { return static_cast<int32_t>(offsetof(TypeBuilder_t1073948154, ___generic_params_28)); }
inline GenericTypeParameterBuilderU5BU5D_t3780444109* get_generic_params_28() const { return ___generic_params_28; }
inline GenericTypeParameterBuilderU5BU5D_t3780444109** get_address_of_generic_params_28() { return &___generic_params_28; }
inline void set_generic_params_28(GenericTypeParameterBuilderU5BU5D_t3780444109* value)
{
___generic_params_28 = value;
Il2CppCodeGenWriteBarrier((&___generic_params_28), value);
}
inline static int32_t get_offset_of_permissions_29() { return static_cast<int32_t>(offsetof(TypeBuilder_t1073948154, ___permissions_29)); }
inline RefEmitPermissionSetU5BU5D_t567451178* get_permissions_29() const { return ___permissions_29; }
inline RefEmitPermissionSetU5BU5D_t567451178** get_address_of_permissions_29() { return &___permissions_29; }
inline void set_permissions_29(RefEmitPermissionSetU5BU5D_t567451178* value)
{
___permissions_29 = value;
Il2CppCodeGenWriteBarrier((&___permissions_29), value);
}
inline static int32_t get_offset_of_created_30() { return static_cast<int32_t>(offsetof(TypeBuilder_t1073948154, ___created_30)); }
inline Type_t * get_created_30() const { return ___created_30; }
inline Type_t ** get_address_of_created_30() { return &___created_30; }
inline void set_created_30(Type_t * value)
{
___created_30 = value;
Il2CppCodeGenWriteBarrier((&___created_30), value);
}
inline static int32_t get_offset_of_fullname_31() { return static_cast<int32_t>(offsetof(TypeBuilder_t1073948154, ___fullname_31)); }
inline String_t* get_fullname_31() const { return ___fullname_31; }
inline String_t** get_address_of_fullname_31() { return &___fullname_31; }
inline void set_fullname_31(String_t* value)
{
___fullname_31 = value;
Il2CppCodeGenWriteBarrier((&___fullname_31), value);
}
inline static int32_t get_offset_of_createTypeCalled_32() { return static_cast<int32_t>(offsetof(TypeBuilder_t1073948154, ___createTypeCalled_32)); }
inline bool get_createTypeCalled_32() const { return ___createTypeCalled_32; }
inline bool* get_address_of_createTypeCalled_32() { return &___createTypeCalled_32; }
inline void set_createTypeCalled_32(bool value)
{
___createTypeCalled_32 = value;
}
inline static int32_t get_offset_of_underlying_type_33() { return static_cast<int32_t>(offsetof(TypeBuilder_t1073948154, ___underlying_type_33)); }
inline Type_t * get_underlying_type_33() const { return ___underlying_type_33; }
inline Type_t ** get_address_of_underlying_type_33() { return &___underlying_type_33; }
inline void set_underlying_type_33(Type_t * value)
{
___underlying_type_33 = value;
Il2CppCodeGenWriteBarrier((&___underlying_type_33), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // TYPEBUILDER_T1073948154_H
// System.Byte[]
struct ByteU5BU5D_t4116647657 : public RuntimeArray
{
public:
ALIGN_FIELD (8) uint8_t m_Items[1];
public:
inline uint8_t GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline uint8_t* GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, uint8_t value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline uint8_t GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline uint8_t* GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, uint8_t value)
{
m_Items[index] = value;
}
};
// System.Char[]
struct CharU5BU5D_t3528271667 : public RuntimeArray
{
public:
ALIGN_FIELD (8) Il2CppChar m_Items[1];
public:
inline Il2CppChar GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline Il2CppChar* GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, Il2CppChar value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline Il2CppChar GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline Il2CppChar* GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, Il2CppChar value)
{
m_Items[index] = value;
}
};
// System.String[]
struct StringU5BU5D_t1281789340 : public RuntimeArray
{
public:
ALIGN_FIELD (8) String_t* m_Items[1];
public:
inline String_t* GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline String_t** GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, String_t* value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier(m_Items + index, value);
}
inline String_t* GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline String_t** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, String_t* value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier(m_Items + index, value);
}
};
// System.Object[]
struct ObjectU5BU5D_t2843939325 : public RuntimeArray
{
public:
ALIGN_FIELD (8) RuntimeObject * m_Items[1];
public:
inline RuntimeObject * GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline RuntimeObject ** GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, RuntimeObject * value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier(m_Items + index, value);
}
inline RuntimeObject * GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline RuntimeObject ** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, RuntimeObject * value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier(m_Items + index, value);
}
};
// System.Type[]
struct TypeU5BU5D_t3940880105 : public RuntimeArray
{
public:
ALIGN_FIELD (8) Type_t * m_Items[1];
public:
inline Type_t * GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline Type_t ** GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, Type_t * value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier(m_Items + index, value);
}
inline Type_t * GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline Type_t ** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, Type_t * value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier(m_Items + index, value);
}
};
// System.Reflection.ConstructorInfo[]
struct ConstructorInfoU5BU5D_t881249896 : public RuntimeArray
{
public:
ALIGN_FIELD (8) ConstructorInfo_t5769829 * m_Items[1];
public:
inline ConstructorInfo_t5769829 * GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline ConstructorInfo_t5769829 ** GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, ConstructorInfo_t5769829 * value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier(m_Items + index, value);
}
inline ConstructorInfo_t5769829 * GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline ConstructorInfo_t5769829 ** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, ConstructorInfo_t5769829 * value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier(m_Items + index, value);
}
};
// System.Reflection.MethodBase[]
struct MethodBaseU5BU5D_t779831733 : public RuntimeArray
{
public:
ALIGN_FIELD (8) MethodBase_t * m_Items[1];
public:
inline MethodBase_t * GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline MethodBase_t ** GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, MethodBase_t * value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier(m_Items + index, value);
}
inline MethodBase_t * GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline MethodBase_t ** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, MethodBase_t * value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier(m_Items + index, value);
}
};
// System.Reflection.ParameterModifier[]
struct ParameterModifierU5BU5D_t2943407543 : public RuntimeArray
{
public:
ALIGN_FIELD (8) ParameterModifier_t1461694466 m_Items[1];
public:
inline ParameterModifier_t1461694466 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline ParameterModifier_t1461694466 * GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, ParameterModifier_t1461694466 value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline ParameterModifier_t1461694466 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline ParameterModifier_t1461694466 * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, ParameterModifier_t1461694466 value)
{
m_Items[index] = value;
}
};
// System.Delegate[]
struct DelegateU5BU5D_t1703627840 : public RuntimeArray
{
public:
ALIGN_FIELD (8) Delegate_t1188392813 * m_Items[1];
public:
inline Delegate_t1188392813 * GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline Delegate_t1188392813 ** GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, Delegate_t1188392813 * value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier(m_Items + index, value);
}
inline Delegate_t1188392813 * GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline Delegate_t1188392813 ** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, Delegate_t1188392813 * value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier(m_Items + index, value);
}
};
// System.Int32[]
struct Int32U5BU5D_t385246372 : public RuntimeArray
{
public:
ALIGN_FIELD (8) int32_t m_Items[1];
public:
inline int32_t GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline int32_t* GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, int32_t value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline int32_t GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline int32_t* GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, int32_t value)
{
m_Items[index] = value;
}
};
// System.Int64[]
struct Int64U5BU5D_t2559172825 : public RuntimeArray
{
public:
ALIGN_FIELD (8) int64_t m_Items[1];
public:
inline int64_t GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline int64_t* GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, int64_t value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline int64_t GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline int64_t* GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, int64_t value)
{
m_Items[index] = value;
}
};
// System.Double[]
struct DoubleU5BU5D_t3413330114 : public RuntimeArray
{
public:
ALIGN_FIELD (8) double m_Items[1];
public:
inline double GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline double* GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, double value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline double GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline double* GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, double value)
{
m_Items[index] = value;
}
};
// System.UInt32[]
struct UInt32U5BU5D_t2770800703 : public RuntimeArray
{
public:
ALIGN_FIELD (8) uint32_t m_Items[1];
public:
inline uint32_t GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline uint32_t* GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, uint32_t value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline uint32_t GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline uint32_t* GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, uint32_t value)
{
m_Items[index] = value;
}
};
// System.Boolean[]
struct BooleanU5BU5D_t2897418192 : public RuntimeArray
{
public:
ALIGN_FIELD (8) bool m_Items[1];
public:
inline bool GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline bool* GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, bool value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline bool GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline bool* GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, bool value)
{
m_Items[index] = value;
}
};
// System.Collections.Hashtable/Slot[]
struct SlotU5BU5D_t2994659099 : public RuntimeArray
{
public:
ALIGN_FIELD (8) Slot_t3975888750 m_Items[1];
public:
inline Slot_t3975888750 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline Slot_t3975888750 * GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, Slot_t3975888750 value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline Slot_t3975888750 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline Slot_t3975888750 * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, Slot_t3975888750 value)
{
m_Items[index] = value;
}
};
// System.Collections.SortedList/Slot[]
struct SlotU5BU5D_t227397015 : public RuntimeArray
{
public:
ALIGN_FIELD (8) Slot_t384495010 m_Items[1];
public:
inline Slot_t384495010 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline Slot_t384495010 * GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, Slot_t384495010 value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline Slot_t384495010 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline Slot_t384495010 * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, Slot_t384495010 value)
{
m_Items[index] = value;
}
};
// System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Int32>::.ctor(System.Int32)
extern "C" void Dictionary_2__ctor_m182537451_gshared (Dictionary_2_t3384741 * __this, int32_t p0, const RuntimeMethod* method);
// System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Int32>::Add(TKey,TValue)
extern "C" void Dictionary_2_Add_m1279427033_gshared (Dictionary_2_t3384741 * __this, RuntimeObject * p0, int32_t p1, const RuntimeMethod* method);
// System.Boolean System.Collections.Generic.Dictionary`2<System.Object,System.Int32>::TryGetValue(TKey,TValue&)
extern "C" bool Dictionary_2_TryGetValue_m3959998165_gshared (Dictionary_2_t3384741 * __this, RuntimeObject * p0, int32_t* p1, const RuntimeMethod* method);
// System.Int32 System.Array::IndexOf<System.Object>(!!0[],!!0,System.Int32,System.Int32)
extern "C" int32_t Array_IndexOf_TisRuntimeObject_m828474689_gshared (RuntimeObject * __this /* static, unused */, ObjectU5BU5D_t2843939325* p0, RuntimeObject * p1, int32_t p2, int32_t p3, const RuntimeMethod* method);
// System.Void System.Array::Sort<System.Object>(!!0[],System.Int32,System.Int32)
extern "C" void Array_Sort_TisRuntimeObject_m440635289_gshared (RuntimeObject * __this /* static, unused */, ObjectU5BU5D_t2843939325* p0, int32_t p1, int32_t p2, const RuntimeMethod* method);
// System.Void System.Object::.ctor()
extern "C" void Object__ctor_m297566312 (RuntimeObject * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Void System.Runtime.CompilerServices.RuntimeHelpers::InitializeArray(System.Array,System.RuntimeFieldHandle)
extern "C" void RuntimeHelpers_InitializeArray_m3117905507 (RuntimeObject * __this /* static, unused */, RuntimeArray * ___array0, RuntimeFieldHandle_t1871169219 ___fldHandle1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Object System.Array::Clone()
extern "C" RuntimeObject * Array_Clone_m2672907798 (RuntimeArray * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Security.Cryptography.HashAlgorithm System.Security.Cryptography.HashAlgorithm::Create(System.String)
extern "C" HashAlgorithm_t1432317219 * HashAlgorithm_Create_m644612360 (RuntimeObject * __this /* static, unused */, String_t* ___hashName0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Void System.Buffer::BlockCopy(System.Array,System.Int32,System.Array,System.Int32,System.Int32)
extern "C" void Buffer_BlockCopy_m2884209081 (RuntimeObject * __this /* static, unused */, RuntimeArray * ___src0, int32_t ___srcOffset1, RuntimeArray * ___dst2, int32_t ___dstOffset3, int32_t ___count4, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Int32 System.Security.Cryptography.HashAlgorithm::TransformBlock(System.Byte[],System.Int32,System.Int32,System.Byte[],System.Int32)
extern "C" int32_t HashAlgorithm_TransformBlock_m4006041779 (HashAlgorithm_t1432317219 * __this, ByteU5BU5D_t4116647657* ___inputBuffer0, int32_t ___inputOffset1, int32_t ___inputCount2, ByteU5BU5D_t4116647657* ___outputBuffer3, int32_t ___outputOffset4, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Byte[] System.Security.Cryptography.HashAlgorithm::TransformFinalBlock(System.Byte[],System.Int32,System.Int32)
extern "C" ByteU5BU5D_t4116647657* HashAlgorithm_TransformFinalBlock_m3005451348 (HashAlgorithm_t1432317219 * __this, ByteU5BU5D_t4116647657* ___inputBuffer0, int32_t ___inputOffset1, int32_t ___inputCount2, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Byte[] System.Security.Cryptography.HashAlgorithm::ComputeHash(System.Byte[],System.Int32,System.Int32)
extern "C" ByteU5BU5D_t4116647657* HashAlgorithm_ComputeHash_m2044824070 (HashAlgorithm_t1432317219 * __this, ByteU5BU5D_t4116647657* ___buffer0, int32_t ___offset1, int32_t ___count2, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Void Mono.Security.X509.PKCS12/DeriveBytes::Adjust(System.Byte[],System.Int32,System.Byte[])
extern "C" void DeriveBytes_Adjust_m640796917 (DeriveBytes_t1492915135 * __this, ByteU5BU5D_t4116647657* ___a0, int32_t ___aOff1, ByteU5BU5D_t4116647657* ___b2, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Byte[] Mono.Security.X509.PKCS12/DeriveBytes::Derive(System.Byte[],System.Int32)
extern "C" ByteU5BU5D_t4116647657* DeriveBytes_Derive_m408582823 (DeriveBytes_t1492915135 * __this, ByteU5BU5D_t4116647657* ___diversifier0, int32_t ___n1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Void System.Text.StringBuilder::.ctor()
extern "C" void StringBuilder__ctor_m3121283359 (StringBuilder_t * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// Mono.Security.ASN1 Mono.Security.ASN1::get_Item(System.Int32)
extern "C" ASN1_t2114160832 * ASN1_get_Item_m3901126023 (ASN1_t2114160832 * __this, int32_t ___index0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Void Mono.Security.X509.X501::AppendEntry(System.Text.StringBuilder,Mono.Security.ASN1,System.Boolean)
extern "C" void X501_AppendEntry_m2470239841 (RuntimeObject * __this /* static, unused */, StringBuilder_t * ___sb0, ASN1_t2114160832 * ___entry1, bool ___quotes2, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Int32 Mono.Security.ASN1::get_Count()
extern "C" int32_t ASN1_get_Count_m3580979881 (ASN1_t2114160832 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Text.StringBuilder System.Text.StringBuilder::Append(System.String)
extern "C" StringBuilder_t * StringBuilder_Append_m1965104174 (StringBuilder_t * __this, String_t* ___value0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.String System.Text.StringBuilder::ToString()
extern "C" String_t* StringBuilder_ToString_m3317489284 (StringBuilder_t * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Boolean Mono.Security.ASN1::CompareValue(System.Byte[])
extern "C" bool ASN1_CompareValue_m251306338 (ASN1_t2114160832 * __this, ByteU5BU5D_t4116647657* ___value0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.String Mono.Security.ASN1Convert::ToOid(Mono.Security.ASN1)
extern "C" String_t* ASN1Convert_ToOid_m1223840396 (RuntimeObject * __this /* static, unused */, ASN1_t2114160832 * ___asn10, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Byte Mono.Security.ASN1::get_Tag()
extern "C" uint8_t ASN1_get_Tag_m1032367219 (ASN1_t2114160832 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Byte[] Mono.Security.ASN1::get_Value()
extern "C" ByteU5BU5D_t4116647657* ASN1_get_Value_m1857007406 (ASN1_t2114160832 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Text.StringBuilder System.Text.StringBuilder::Append(System.Char)
extern "C" StringBuilder_t * StringBuilder_Append_m2383614642 (StringBuilder_t * __this, Il2CppChar ___value0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Text.Encoding System.Text.Encoding::get_UTF7()
extern "C" Encoding_t1523322056 * Encoding_get_UTF7_m1817790803 (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Text.Encoding System.Text.Encoding::get_UTF8()
extern "C" Encoding_t1523322056 * Encoding_get_UTF8_m1008486739 (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Int32 System.String::get_Length()
extern "C" int32_t String_get_Length_m3847582255 (String_t* __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Int32 System.String::IndexOfAny(System.Char[],System.Int32,System.Int32)
extern "C" int32_t String_IndexOfAny_m2882391940 (String_t* __this, CharU5BU5D_t3528271667* ___anyOf0, int32_t ___startIndex1, int32_t ___count2, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Boolean System.String::StartsWith(System.String)
extern "C" bool String_StartsWith_m1759067526 (String_t* __this, String_t* ___value0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Boolean System.String::EndsWith(System.String)
extern "C" bool String_EndsWith_m1901926500 (String_t* __this, String_t* ___value0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.String System.String::Concat(System.String,System.String,System.String)
extern "C" String_t* String_Concat_m3755062657 (RuntimeObject * __this /* static, unused */, String_t* ___str00, String_t* ___str11, String_t* ___str22, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Byte[] Mono.Security.X509.X509Certificate::PEM(System.String,System.Byte[])
extern "C" ByteU5BU5D_t4116647657* X509Certificate_PEM_m1177570576 (RuntimeObject * __this /* static, unused */, String_t* ___type0, ByteU5BU5D_t4116647657* ___data1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Void System.Security.Cryptography.CryptographicException::.ctor(System.String,System.Exception)
extern "C" void CryptographicException__ctor_m1422015889 (CryptographicException_t248831461 * __this, String_t* ___message0, Exception_t * ___inner1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Void Mono.Security.X509.X509Certificate::Parse(System.Byte[])
extern "C" void X509Certificate_Parse_m1106379228 (X509Certificate_t489243024 * __this, ByteU5BU5D_t4116647657* ___data0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.String Locale::GetText(System.String)
extern "C" String_t* Locale_GetText_m3374010885 (RuntimeObject * __this /* static, unused */, String_t* ___msg0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Void Mono.Security.ASN1::.ctor(System.Byte[])
extern "C" void ASN1__ctor_m1601690794 (ASN1_t2114160832 * __this, ByteU5BU5D_t4116647657* ___data0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Void System.Security.Cryptography.CryptographicException::.ctor(System.String)
extern "C" void CryptographicException__ctor_m503735289 (CryptographicException_t248831461 * __this, String_t* ___message0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Void System.Array::Reverse(System.Array,System.Int32,System.Int32)
extern "C" void Array_Reverse_m816310962 (RuntimeObject * __this /* static, unused */, RuntimeArray * ___array0, int32_t ___index1, int32_t ___length2, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// Mono.Security.ASN1 Mono.Security.ASN1::Element(System.Int32,System.Byte)
extern "C" ASN1_t2114160832 * ASN1_Element_m2680269109 (ASN1_t2114160832 * __this, int32_t ___index0, uint8_t ___anTag1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.String Mono.Security.X509.X501::ToString(Mono.Security.ASN1)
extern "C" String_t* X501_ToString_m4186311521 (RuntimeObject * __this /* static, unused */, ASN1_t2114160832 * ___seq0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.DateTime Mono.Security.ASN1Convert::ToDateTime(Mono.Security.ASN1)
extern "C" DateTime_t3738529785 ASN1Convert_ToDateTime_m3103388320 (RuntimeObject * __this /* static, unused */, ASN1_t2114160832 * ___time0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Int32 Mono.Security.ASN1::get_Length()
extern "C" int32_t ASN1_get_Length_m1923878580 (ASN1_t2114160832 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Void Mono.Security.X509.X509ExtensionCollection::.ctor(Mono.Security.ASN1)
extern "C" void X509ExtensionCollection__ctor_m3315097415 (X509ExtensionCollection_t609554708 * __this, ASN1_t2114160832 * ___asn10, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Byte[] Mono.Security.X509.X509Certificate::GetUnsignedBigInteger(System.Byte[])
extern "C" ByteU5BU5D_t4116647657* X509Certificate_GetUnsignedBigInteger_m1025066663 (X509Certificate_t489243024 * __this, ByteU5BU5D_t4116647657* ___integer0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Void System.Security.Cryptography.DSACryptoServiceProvider::.ctor(System.Int32)
extern "C" void DSACryptoServiceProvider__ctor_m1139102382 (DSACryptoServiceProvider_t3992668923 * __this, int32_t ___dwKeySize0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Text.Encoding System.Text.Encoding::get_ASCII()
extern "C" Encoding_t1523322056 * Encoding_get_ASCII_m3595602635 (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.String System.String::Format(System.String,System.Object)
extern "C" String_t* String_Format_m2844511972 (RuntimeObject * __this /* static, unused */, String_t* ___format0, RuntimeObject * ___arg01, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Int32 System.String::IndexOf(System.String)
extern "C" int32_t String_IndexOf_m1977622757 (String_t* __this, String_t* ___value0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Int32 System.String::IndexOf(System.String,System.Int32)
extern "C" int32_t String_IndexOf_m3406607758 (String_t* __this, String_t* ___value0, int32_t ___startIndex1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.String System.String::Substring(System.Int32,System.Int32)
extern "C" String_t* String_Substring_m1610150815 (String_t* __this, int32_t ___startIndex0, int32_t ___length1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Byte[] System.Convert::FromBase64String(System.String)
extern "C" ByteU5BU5D_t4116647657* Convert_FromBase64String_m3685135396 (RuntimeObject * __this /* static, unused */, String_t* ___s0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Void System.Collections.CollectionBase::.ctor()
extern "C" void CollectionBase__ctor_m3343513710 (CollectionBase_t2727926298 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Collections.ArrayList System.Collections.CollectionBase::get_InnerList()
extern "C" ArrayList_t2718874744 * CollectionBase_get_InnerList_m132195395 (CollectionBase_t2727926298 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Void System.ArgumentNullException::.ctor(System.String)
extern "C" void ArgumentNullException__ctor_m1170824041 (ArgumentNullException_t1615371798 * __this, String_t* ___paramName0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Void Mono.Security.X509.X509CertificateCollection/X509CertificateEnumerator::.ctor(Mono.Security.X509.X509CertificateCollection)
extern "C" void X509CertificateEnumerator__ctor_m3747779152 (X509CertificateEnumerator_t3515934697 * __this, X509CertificateCollection_t1542168549 * ___mappings0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Void System.ArgumentException::.ctor(System.String)
extern "C" void ArgumentException__ctor_m1312628991 (ArgumentException_t132251570 * __this, String_t* ___message0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Void Mono.Security.ASN1::set_Value(System.Byte[])
extern "C" void ASN1_set_Value_m2803403806 (ASN1_t2114160832 * __this, ByteU5BU5D_t4116647657* ___value0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// Mono.Security.ASN1 Mono.Security.ASN1::Add(Mono.Security.ASN1)
extern "C" ASN1_t2114160832 * ASN1_Add_m3468571571 (ASN1_t2114160832 * __this, ASN1_t2114160832 * ___asn10, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Boolean System.String::op_Inequality(System.String,System.String)
extern "C" bool String_op_Inequality_m215368492 (RuntimeObject * __this /* static, unused */, String_t* ___a0, String_t* ___b1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Int32 System.String::GetHashCode()
extern "C" int32_t String_GetHashCode_m1906374149 (String_t* __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Globalization.CultureInfo System.Globalization.CultureInfo::get_InvariantCulture()
extern "C" CultureInfo_t4157843068 * CultureInfo_get_InvariantCulture_m3532445182 (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.String System.Byte::ToString(System.String,System.IFormatProvider)
extern "C" String_t* Byte_ToString_m4063101981 (uint8_t* __this, String_t* ___format0, RuntimeObject* ___provider1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Char System.Convert::ToChar(System.Byte)
extern "C" Il2CppChar Convert_ToChar_m2532412511 (RuntimeObject * __this /* static, unused */, uint8_t ___value0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.String System.Environment::get_NewLine()
extern "C" String_t* Environment_get_NewLine_m3211016485 (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Void Mono.Security.X509.X509Extension::WriteLine(System.Text.StringBuilder,System.Int32,System.Int32)
extern "C" void X509Extension_WriteLine_m1400196767 (X509Extension_t3173393652 * __this, StringBuilder_t * ___sb0, int32_t ___n1, int32_t ___pos2, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Void Mono.Security.X509.X509ExtensionCollection::.ctor()
extern "C" void X509ExtensionCollection__ctor_m2416193357 (X509ExtensionCollection_t609554708 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Void System.Exception::.ctor(System.String)
extern "C" void Exception__ctor_m1152696503 (Exception_t * __this, String_t* ___message0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Void Mono.Security.X509.X509Extension::.ctor(Mono.Security.ASN1)
extern "C" void X509Extension__ctor_m1750445243 (X509Extension_t3173393652 * __this, ASN1_t2114160832 * ___asn10, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Void Mono.Xml.SmallXmlParser::.ctor()
extern "C" void SmallXmlParser__ctor_m202236734 (SmallXmlParser_t973787839 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Void System.Collections.Stack::.ctor()
extern "C" void Stack__ctor_m2907601956 (Stack_t2329662280 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Void System.IO.StringReader::.ctor(System.String)
extern "C" void StringReader__ctor_m126993932 (StringReader_t3465604688 * __this, String_t* ___s0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Void Mono.Xml.SmallXmlParser::Parse(System.IO.TextReader,Mono.Xml.SmallXmlParser/IContentHandler)
extern "C" void SmallXmlParser_Parse_m2140493703 (SmallXmlParser_t973787839 * __this, TextReader_t283511965 * ___input0, RuntimeObject* ___handler1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Void System.Security.SecurityElement::.ctor(System.String)
extern "C" void SecurityElement__ctor_m6516005 (SecurityElement_t1046076091 * __this, String_t* ___tag0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Void System.Security.SecurityElement::AddChild(System.Security.SecurityElement)
extern "C" void SecurityElement_AddChild_m1606852781 (SecurityElement_t1046076091 * __this, SecurityElement_t1046076091 * ___child0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.String System.Security.SecurityElement::Escape(System.String)
extern "C" String_t* SecurityElement_Escape_m1342311983 (RuntimeObject * __this /* static, unused */, String_t* ___str0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Void System.Security.SecurityElement::AddAttribute(System.String,System.String)
extern "C" void SecurityElement_AddAttribute_m311510562 (SecurityElement_t1046076091 * __this, String_t* ___name0, String_t* ___value1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Void System.Security.SecurityElement::set_Text(System.String)
extern "C" void SecurityElement_set_Text_m3975773934 (SecurityElement_t1046076091 * __this, String_t* ___value0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Void System.Text.StringBuilder::.ctor(System.Int32)
extern "C" void StringBuilder__ctor_m2367297767 (StringBuilder_t * __this, int32_t ___capacity0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Void Mono.Xml.SmallXmlParser/AttrListImpl::.ctor()
extern "C" void AttrListImpl__ctor_m3844427077 (AttrListImpl_t567962447 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Void Mono.Xml.SmallXmlParserException::.ctor(System.String,System.Int32,System.Int32)
extern "C" void SmallXmlParserException__ctor_m1976648878 (SmallXmlParserException_t1329648272 * __this, String_t* ___msg0, int32_t ___line1, int32_t ___column2, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.String System.String::Join(System.String,System.String[])
extern "C" String_t* String_Join_m2050845953 (RuntimeObject * __this /* static, unused */, String_t* ___separator0, StringU5BU5D_t1281789340* ___value1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Exception Mono.Xml.SmallXmlParser::Error(System.String)
extern "C" Exception_t * SmallXmlParser_Error_m3899025466 (SmallXmlParser_t973787839 * __this, String_t* ___msg0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Globalization.UnicodeCategory System.Char::GetUnicodeCategory(System.Char)
extern "C" int32_t Char_GetUnicodeCategory_m57882613 (RuntimeObject * __this /* static, unused */, Il2CppChar ___c0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Void Mono.Xml.SmallXmlParser::SkipWhitespaces(System.Boolean)
extern "C" void SmallXmlParser_SkipWhitespaces_m4243606597 (SmallXmlParser_t973787839 * __this, bool ___expected0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Int32 Mono.Xml.SmallXmlParser::Read()
extern "C" int32_t SmallXmlParser_Read_m3485223434 (SmallXmlParser_t973787839 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Int32 Mono.Xml.SmallXmlParser::Peek()
extern "C" int32_t SmallXmlParser_Peek_m1303779789 (SmallXmlParser_t973787839 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Boolean Mono.Xml.SmallXmlParser::IsWhitespace(System.Int32)
extern "C" bool SmallXmlParser_IsWhitespace_m156831381 (SmallXmlParser_t973787839 * __this, int32_t ___c0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Exception Mono.Xml.SmallXmlParser::UnexpectedEndError()
extern "C" Exception_t * SmallXmlParser_UnexpectedEndError_m1914362401 (SmallXmlParser_t973787839 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.String System.String::Format(System.String,System.Object,System.Object)
extern "C" String_t* String_Format_m2556382932 (RuntimeObject * __this /* static, unused */, String_t* ___format0, RuntimeObject * ___arg01, RuntimeObject * ___arg12, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Void Mono.Xml.SmallXmlParser::ReadReference()
extern "C" void SmallXmlParser_ReadReference_m1750252339 (SmallXmlParser_t973787839 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Void System.Text.StringBuilder::set_Length(System.Int32)
extern "C" void StringBuilder_set_Length_m1410065908 (StringBuilder_t * __this, int32_t ___value0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Boolean Mono.Xml.SmallXmlParser::IsNameChar(System.Char,System.Boolean)
extern "C" bool SmallXmlParser_IsNameChar_m2946368541 (SmallXmlParser_t973787839 * __this, Il2CppChar ___c0, bool ___start1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Void System.Array::Copy(System.Array,System.Array,System.Int32)
extern "C" void Array_Copy_m1988217701 (RuntimeObject * __this /* static, unused */, RuntimeArray * ___sourceArray0, RuntimeArray * ___destinationArray1, int32_t ___length2, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.String System.String::CreateString(System.Char[],System.Int32,System.Int32)
extern "C" String_t* String_CreateString_m860434552 (String_t* __this, CharU5BU5D_t3528271667* ___val0, int32_t ___startIndex1, int32_t ___length2, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Void Mono.Xml.SmallXmlParser::ReadContent()
extern "C" void SmallXmlParser_ReadContent_m1631445300 (SmallXmlParser_t973787839 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Void Mono.Xml.SmallXmlParser::HandleBufferedContent()
extern "C" void SmallXmlParser_HandleBufferedContent_m3185158999 (SmallXmlParser_t973787839 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Void Mono.Xml.SmallXmlParser::Cleanup()
extern "C" void SmallXmlParser_Cleanup_m2310464878 (SmallXmlParser_t973787839 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Void Mono.Xml.SmallXmlParser/AttrListImpl::Clear()
extern "C" void AttrListImpl_Clear_m2260362286 (AttrListImpl_t567962447 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Int32 System.Text.StringBuilder::get_Length()
extern "C" int32_t StringBuilder_get_Length_m3238060835 (StringBuilder_t * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Void Mono.Xml.SmallXmlParser::HandleWhitespaces()
extern "C" void SmallXmlParser_HandleWhitespaces_m549588711 (SmallXmlParser_t973787839 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.String Mono.Xml.SmallXmlParser::ReadName()
extern "C" String_t* SmallXmlParser_ReadName_m3409228522 (SmallXmlParser_t973787839 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Void Mono.Xml.SmallXmlParser::Expect(System.Int32)
extern "C" void SmallXmlParser_Expect_m674880652 (SmallXmlParser_t973787839 * __this, int32_t ___c0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Void Mono.Xml.SmallXmlParser::ReadCDATASection()
extern "C" void SmallXmlParser_ReadCDATASection_m138715165 (SmallXmlParser_t973787839 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Void Mono.Xml.SmallXmlParser::ReadComment()
extern "C" void SmallXmlParser_ReadComment_m1578426707 (SmallXmlParser_t973787839 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Void Mono.Xml.SmallXmlParser::SkipWhitespaces()
extern "C" void SmallXmlParser_SkipWhitespaces_m990960618 (SmallXmlParser_t973787839 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.String Mono.Xml.SmallXmlParser::ReadUntil(System.Char,System.Boolean)
extern "C" String_t* SmallXmlParser_ReadUntil_m2715581630 (SmallXmlParser_t973787839 * __this, Il2CppChar ___until0, bool ___handleReferences1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.String System.String::Concat(System.String,System.String)
extern "C" String_t* String_Concat_m3937257545 (RuntimeObject * __this /* static, unused */, String_t* ___str00, String_t* ___str11, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Void Mono.Xml.SmallXmlParser::ReadAttribute(Mono.Xml.SmallXmlParser/AttrListImpl)
extern "C" void SmallXmlParser_ReadAttribute_m3518350607 (SmallXmlParser_t973787839 * __this, AttrListImpl_t567962447 * ___a0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Void Mono.Xml.SmallXmlParser::ReadCharacters()
extern "C" void SmallXmlParser_ReadCharacters_m3318286261 (SmallXmlParser_t973787839 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Int32 Mono.Xml.SmallXmlParser::ReadCharacterReference()
extern "C" int32_t SmallXmlParser_ReadCharacterReference_m548953186 (SmallXmlParser_t973787839 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Void System.Collections.Generic.Dictionary`2<System.String,System.Int32>::.ctor(System.Int32)
#define Dictionary_2__ctor_m2392909825(__this, p0, method) (( void (*) (Dictionary_2_t2736202052 *, int32_t, const RuntimeMethod*))Dictionary_2__ctor_m182537451_gshared)(__this, p0, method)
// System.Void System.Collections.Generic.Dictionary`2<System.String,System.Int32>::Add(TKey,TValue)
#define Dictionary_2_Add_m282647386(__this, p0, p1, method) (( void (*) (Dictionary_2_t2736202052 *, String_t*, int32_t, const RuntimeMethod*))Dictionary_2_Add_m1279427033_gshared)(__this, p0, p1, method)
// System.Boolean System.Collections.Generic.Dictionary`2<System.String,System.Int32>::TryGetValue(TKey,TValue&)
#define Dictionary_2_TryGetValue_m1013208020(__this, p0, p1, method) (( bool (*) (Dictionary_2_t2736202052 *, String_t*, int32_t*, const RuntimeMethod*))Dictionary_2_TryGetValue_m3959998165_gshared)(__this, p0, p1, method)
// System.Boolean System.String::op_Equality(System.String,System.String)
extern "C" bool String_op_Equality_m920492651 (RuntimeObject * __this /* static, unused */, String_t* ___a0, String_t* ___b1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Void Mono.Xml.SmallXmlParser/AttrListImpl::Add(System.String,System.String)
extern "C" void AttrListImpl_Add_m3378108236 (AttrListImpl_t567962447 * __this, String_t* ___name0, String_t* ___value1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Void System.Collections.ArrayList::.ctor()
extern "C" void ArrayList__ctor_m4254721275 (ArrayList_t2718874744 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Type System.Type::GetTypeFromHandle(System.RuntimeTypeHandle)
extern "C" Type_t * Type_GetTypeFromHandle_m1620074514 (RuntimeObject * __this /* static, unused */, RuntimeTypeHandle_t3027515415 ___handle0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.String System.String::Format(System.String,System.Object,System.Object,System.Object)
extern "C" String_t* String_Format_m3339413201 (RuntimeObject * __this /* static, unused */, String_t* ___format0, RuntimeObject * ___arg01, RuntimeObject * ___arg12, RuntimeObject * ___arg23, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Void System.SystemException::.ctor(System.String)
extern "C" void SystemException__ctor_m3298527747 (SystemException_t176217640 * __this, String_t* ___message0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Void System.__Il2CppComObject::Finalize()
extern "C" void __Il2CppComObject_Finalize_m2923638372 (Il2CppComObject * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Void System.Object::Finalize()
extern "C" void Object_Finalize_m3076187857 (RuntimeObject * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Void System.Exception::set_HResult(System.Int32)
extern "C" void Exception_set_HResult_m3489164646 (Exception_t * __this, int32_t ___value0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Void System.SystemException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
extern "C" void SystemException__ctor_m1515048899 (SystemException_t176217640 * __this, SerializationInfo_t950877179 * ___info0, StreamingContext_t3711869237 ___context1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Void System.ActivationContext::Dispose(System.Boolean)
extern "C" void ActivationContext_Dispose_m2038725770 (ActivationContext_t976916018 * __this, bool ___disposing0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Void System.GC::SuppressFinalize(System.Object)
extern "C" void GC_SuppressFinalize_m1177400158 (RuntimeObject * __this /* static, unused */, RuntimeObject * ___obj0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Object System.Activator::CreateInstance(System.Type,System.Boolean)
extern "C" RuntimeObject * Activator_CreateInstance_m2597605935 (RuntimeObject * __this /* static, unused */, Type_t * ___type0, bool ___nonPublic1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Object System.Activator::CreateInstance(System.Type,System.Object[],System.Object[])
extern "C" RuntimeObject * Activator_CreateInstance_m3736402505 (RuntimeObject * __this /* static, unused */, Type_t * ___type0, ObjectU5BU5D_t2843939325* ___args1, ObjectU5BU5D_t2843939325* ___activationAttributes2, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Reflection.Binder System.Reflection.Binder::get_DefaultBinder()
extern "C" Binder_t2999457153 * Binder_get_DefaultBinder_m950908649 (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Object System.Activator::CreateInstance(System.Type,System.Reflection.BindingFlags,System.Reflection.Binder,System.Object[],System.Globalization.CultureInfo,System.Object[])
extern "C" RuntimeObject * Activator_CreateInstance_m2998273980 (RuntimeObject * __this /* static, unused */, Type_t * ___type0, int32_t ___bindingAttr1, Binder_t2999457153 * ___binder2, ObjectU5BU5D_t2843939325* ___args3, CultureInfo_t4157843068 * ___culture4, ObjectU5BU5D_t2843939325* ___activationAttributes5, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Void System.Activator::CheckType(System.Type)
extern "C" void Activator_CheckType_m2787213785 (RuntimeObject * __this /* static, unused */, Type_t * ___type0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.String System.String::Concat(System.Object,System.Object)
extern "C" String_t* String_Concat_m904156431 (RuntimeObject * __this /* static, unused */, RuntimeObject * ___arg00, RuntimeObject * ___arg11, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Void System.ArgumentException::.ctor(System.String,System.String)
extern "C" void ArgumentException__ctor_m1216717135 (ArgumentException_t132251570 * __this, String_t* ___message0, String_t* ___paramName1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Type System.Object::GetType()
extern "C" Type_t * Object_GetType_m88164663 (RuntimeObject * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Boolean System.Type::get_IsValueType()
extern "C" bool Type_get_IsValueType_m3108065642 (Type_t * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Object System.Activator::CreateInstanceInternal(System.Type)
extern "C" RuntimeObject * Activator_CreateInstanceInternal_m1337209899 (RuntimeObject * __this /* static, unused */, Type_t * ___type0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Void System.MissingMethodException::.ctor(System.String)
extern "C" void MissingMethodException__ctor_m3234469579 (MissingMethodException_t1274661534 * __this, String_t* ___message0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Void System.Activator::CheckAbstractType(System.Type)
extern "C" void Activator_CheckAbstractType_m2015247896 (RuntimeObject * __this /* static, unused */, Type_t * ___type0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Boolean System.Type::get_IsMarshalByRef()
extern "C" bool Type_get_IsMarshalByRef_m1681525688 (Type_t * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.String Locale::GetText(System.String,System.Object[])
extern "C" String_t* Locale_GetText_m1601577974 (RuntimeObject * __this /* static, unused */, String_t* ___fmt0, ObjectU5BU5D_t2843939325* ___args1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Void System.NotSupportedException::.ctor(System.String)
extern "C" void NotSupportedException__ctor_m2494070935 (NotSupportedException_t1314879016 * __this, String_t* ___message0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Object System.Runtime.Remoting.Activation.ActivationServices::CreateProxyFromAttributes(System.Type,System.Object[])
extern "C" RuntimeObject * ActivationServices_CreateProxyFromAttributes_m3864561181 (RuntimeObject * __this /* static, unused */, Type_t * ___type0, ObjectU5BU5D_t2843939325* ___activationAttributes1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Reflection.ConstructorInfo System.MonoType::GetDefaultConstructor()
extern "C" ConstructorInfo_t5769829 * MonoType_GetDefaultConstructor_m1616852582 (MonoType_t * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Boolean System.Reflection.MethodBase::get_IsPublic()
extern "C" bool MethodBase_get_IsPublic_m2180846589 (MethodBase_t * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Reflection.ConstructorInfo System.Type::GetConstructor(System.Reflection.BindingFlags,System.Reflection.Binder,System.Reflection.CallingConventions,System.Type[],System.Reflection.ParameterModifier[])
extern "C" ConstructorInfo_t5769829 * Type_GetConstructor_m1195697116 (Type_t * __this, int32_t ___bindingAttr0, Binder_t2999457153 * ___binder1, int32_t ___callConvention2, TypeU5BU5D_t3940880105* ___types3, ParameterModifierU5BU5D_t2943407543* ___modifiers4, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Void System.MissingMethodException::.ctor(System.String,System.String)
extern "C" void MissingMethodException__ctor_m41689610 (MissingMethodException_t1274661534 * __this, String_t* ___className0, String_t* ___methodName1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Object System.Reflection.ConstructorInfo::Invoke(System.Object[])
extern "C" RuntimeObject * ConstructorInfo_Invoke_m4089836896 (ConstructorInfo_t5769829 * __this, ObjectU5BU5D_t2843939325* ___parameters0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Boolean System.Type::get_IsAbstract()
extern "C" bool Type_get_IsAbstract_m1120089130 (Type_t * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Void System.MarshalByRefObject::.ctor()
extern "C" void MarshalByRefObject__ctor_m3039543187 (MarshalByRefObject_t2760389100 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.AppDomain System.AppDomain::getCurDomain()
extern "C" AppDomain_t1571427825 * AppDomain_getCurDomain_m1005431575 (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Reflection.Assembly System.AppDomain::Load(System.String,System.Security.Policy.Evidence,System.Boolean)
extern "C" Assembly_t * AppDomain_Load_m2969998014 (AppDomain_t1571427825 * __this, String_t* ___assemblyString0, Evidence_t2008144148 * ___assemblySecurity1, bool ___refonly2, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Reflection.Assembly System.AppDomain::LoadAssembly(System.String,System.Security.Policy.Evidence,System.Boolean)
extern "C" Assembly_t * AppDomain_LoadAssembly_m1557889794 (AppDomain_t1571427825 * __this, String_t* ___assemblyRef0, Evidence_t2008144148 * ___securityEvidence1, bool ___refOnly2, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Void System.IO.FileNotFoundException::.ctor(System.String,System.String)
extern "C" void FileNotFoundException__ctor_m1953317719 (FileNotFoundException_t225391025 * __this, String_t* ___message0, String_t* ___fileName1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Guid System.Guid::NewGuid()
extern "C" Guid_t Guid_NewGuid_m923091018 (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.String System.Guid::ToString()
extern "C" String_t* Guid_ToString_m3279186591 (Guid_t * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.String System.AppDomain::InternalGetProcessGuid(System.String)
extern "C" String_t* AppDomain_InternalGetProcessGuid_m1352630171 (RuntimeObject * __this /* static, unused */, String_t* ___newguid0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.String System.AppDomain::getFriendlyName()
extern "C" String_t* AppDomain_getFriendlyName_m248495153 (AppDomain_t1571427825 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.String System.Reflection.Emit.TypeBuilder::get_FullName()
extern "C" String_t* TypeBuilder_get_FullName_m420272554 (TypeBuilder_t1073948154 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Void System.Collections.Hashtable::.ctor()
extern "C" void Hashtable__ctor_m1815022027 (Hashtable_t1853889766 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Delegate[] System.MulticastDelegate::GetInvocationList()
extern "C" DelegateU5BU5D_t1703627840* MulticastDelegate_GetInvocationList_m4256593605 (MulticastDelegate_t * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Void System.ResolveEventArgs::.ctor(System.String)
extern "C" void ResolveEventArgs__ctor_m1455935166 (ResolveEventArgs_t1779456501 * __this, String_t* ___name0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Reflection.Assembly System.ResolveEventHandler::Invoke(System.Object,System.ResolveEventArgs)
extern "C" Assembly_t * ResolveEventHandler_Invoke_m1337322179 (ResolveEventHandler_t2775508208 * __this, RuntimeObject * ___sender0, ResolveEventArgs_t1779456501 * ___args1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Void System.AppDomainInitializer::Invoke(System.String[])
extern "C" void AppDomainInitializer_Invoke_m1036878490 (AppDomainInitializer_t682969308 * __this, StringU5BU5D_t1281789340* ___args0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Void System.Exception::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
extern "C" void Exception__ctor_m2499432361 (Exception_t * __this, SerializationInfo_t950877179 * ___info0, StreamingContext_t3711869237 ___context1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Boolean System.ArgIterator::Equals(System.Object)
extern "C" bool ArgIterator_Equals_m4289772452 (ArgIterator_t539591376 * __this, RuntimeObject * ___o0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Int32 System.IntPtr::GetHashCode()
extern "C" int32_t IntPtr_GetHashCode_m3588219647 (intptr_t* __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Int32 System.ArgIterator::GetHashCode()
extern "C" int32_t ArgIterator_GetHashCode_m2630206016 (ArgIterator_t539591376 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Void System.SystemException::.ctor(System.String,System.Exception)
extern "C" void SystemException__ctor_m4132668650 (SystemException_t176217640 * __this, String_t* ___message0, Exception_t * ___innerException1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.String System.Runtime.Serialization.SerializationInfo::GetString(System.String)
extern "C" String_t* SerializationInfo_GetString_m3155282843 (SerializationInfo_t950877179 * __this, String_t* ___name0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.String System.Exception::get_Message()
extern "C" String_t* Exception_get_Message_m3320461627 (Exception_t * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.String System.String::Concat(System.String,System.String,System.String,System.String)
extern "C" String_t* String_Concat_m2163913788 (RuntimeObject * __this /* static, unused */, String_t* ___str00, String_t* ___str11, String_t* ___str22, String_t* ___str33, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Void System.ArgumentException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
extern "C" void ArgumentException__ctor_m3200406061 (ArgumentException_t132251570 * __this, SerializationInfo_t950877179 * ___info0, StreamingContext_t3711869237 ___context1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.String System.ArgumentException::get_Message()
extern "C" String_t* ArgumentException_get_Message_m520762021 (ArgumentException_t132251570 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.String System.String::Concat(System.Object,System.Object,System.Object)
extern "C" String_t* String_Concat_m1715369213 (RuntimeObject * __this /* static, unused */, RuntimeObject * ___arg00, RuntimeObject * ___arg11, RuntimeObject * ___arg22, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Int32 System.Array::get_Length()
extern "C" int32_t Array_get_Length_m21610649 (RuntimeArray * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Void System.IndexOutOfRangeException::.ctor(System.String)
extern "C" void IndexOutOfRangeException__ctor_m3408750441 (IndexOutOfRangeException_t1578797820 * __this, String_t* ___message0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Int32 System.Array::get_Rank()
extern "C" int32_t Array_get_Rank_m3448755881 (RuntimeArray * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Object System.Array::GetValueImpl(System.Int32)
extern "C" RuntimeObject * Array_GetValueImpl_m3048550958 (RuntimeArray * __this, int32_t ___pos0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Void System.Array::SetValueImpl(System.Object,System.Int32)
extern "C" void Array_SetValueImpl_m2791230289 (RuntimeArray * __this, RuntimeObject * ___value0, int32_t ___pos1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Void System.NotSupportedException::.ctor()
extern "C" void NotSupportedException__ctor_m2730133172 (NotSupportedException_t1314879016 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Int32 System.Array::GetLowerBound(System.Int32)
extern "C" int32_t Array_GetLowerBound_m2045984623 (RuntimeArray * __this, int32_t ___dimension0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Void System.Array::Clear(System.Array,System.Int32,System.Int32)
extern "C" void Array_Clear_m2231608178 (RuntimeObject * __this /* static, unused */, RuntimeArray * ___array0, int32_t ___index1, int32_t ___length2, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Void System.RankException::.ctor(System.String)
extern "C" void RankException__ctor_m2226473861 (RankException_t3812021567 * __this, String_t* ___message0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Boolean System.Object::Equals(System.Object,System.Object)
extern "C" bool Object_Equals_m1397037629 (RuntimeObject * __this /* static, unused */, RuntimeObject * ___objA0, RuntimeObject * ___objB1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Int32 System.Array::GetLength(System.Int32)
extern "C" int32_t Array_GetLength_m2178203778 (RuntimeArray * __this, int32_t ___dimension0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Int32 System.Array::GetRank()
extern "C" int32_t Array_GetRank_m2893148338 (RuntimeArray * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Void System.Array/SimpleEnumerator::.ctor(System.Array)
extern "C" void SimpleEnumerator__ctor_m353509656 (SimpleEnumerator_t433892249 * __this, RuntimeArray * ___arrayToEnumerate0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Int32 System.Array::GetUpperBound(System.Int32)
extern "C" int32_t Array_GetUpperBound_m4018715963 (RuntimeArray * __this, int32_t ___dimension0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Object System.Array::GetValue(System.Int32[])
extern "C" RuntimeObject * Array_GetValue_m120423883 (RuntimeArray * __this, Int32U5BU5D_t385246372* ___indices0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Void System.ArgumentOutOfRangeException::.ctor(System.String,System.String)
extern "C" void ArgumentOutOfRangeException__ctor_m282481429 (ArgumentOutOfRangeException_t777629997 * __this, String_t* ___paramName0, String_t* ___message1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Object System.Array::GetValue(System.Int32)
extern "C" RuntimeObject * Array_GetValue_m2528546681 (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Object System.Array::GetValue(System.Int32,System.Int32)
extern "C" RuntimeObject * Array_GetValue_m352525925 (RuntimeArray * __this, int32_t ___index10, int32_t ___index21, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Object System.Array::GetValue(System.Int32,System.Int32,System.Int32)
extern "C" RuntimeObject * Array_GetValue_m793801589 (RuntimeArray * __this, int32_t ___index10, int32_t ___index21, int32_t ___index32, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Void System.Array::SetValue(System.Object,System.Int32)
extern "C" void Array_SetValue_m3412255035 (RuntimeArray * __this, RuntimeObject * ___value0, int32_t ___index1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Void System.Array::SetValue(System.Object,System.Int32[])
extern "C" void Array_SetValue_m1804138688 (RuntimeArray * __this, RuntimeObject * ___value0, Int32U5BU5D_t385246372* ___indices1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Array System.Array::CreateInstance(System.Type,System.Int32[])
extern "C" RuntimeArray * Array_CreateInstance_m2175520447 (RuntimeObject * __this /* static, unused */, Type_t * ___elementType0, Int32U5BU5D_t385246372* ___lengths1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Void System.TypeLoadException::.ctor()
extern "C" void TypeLoadException__ctor_m1802671078 (TypeLoadException_t3707937253 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Boolean System.Type::get_IsSystemType()
extern "C" bool Type_get_IsSystemType_m624798880 (Type_t * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Boolean System.Type::Equals(System.Type)
extern "C" bool Type_Equals_m709225487 (Type_t * __this, Type_t * ___o0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Array System.Array::CreateInstanceImpl(System.Type,System.Int32[],System.Int32[])
extern "C" RuntimeArray * Array_CreateInstanceImpl_m1073152296 (RuntimeObject * __this /* static, unused */, Type_t * ___elementType0, Int32U5BU5D_t385246372* ___lengths1, Int32U5BU5D_t385246372* ___bounds2, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Int32[] System.Array::GetIntArray(System.Int64[])
extern "C" Int32U5BU5D_t385246372* Array_GetIntArray_m1205726566 (RuntimeObject * __this /* static, unused */, Int64U5BU5D_t2559172825* ___values0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Int32 System.Array::DoBinarySearch(System.Array,System.Int32,System.Int32,System.Object,System.Collections.IComparer)
extern "C" int32_t Array_DoBinarySearch_m3657328456 (RuntimeObject * __this /* static, unused */, RuntimeArray * ___array0, int32_t ___index1, int32_t ___length2, RuntimeObject * ___value3, RuntimeObject* ___comparer4, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Void System.InvalidOperationException::.ctor(System.String,System.Exception)
extern "C" void InvalidOperationException__ctor_m1685032583 (InvalidOperationException_t56020091 * __this, String_t* ___message0, Exception_t * ___innerException1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Void System.Array::ClearInternal(System.Array,System.Int32,System.Int32)
extern "C" void Array_ClearInternal_m532048538 (RuntimeObject * __this /* static, unused */, RuntimeArray * ___a0, int32_t ___index1, int32_t ___count2, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Void System.Array::Copy(System.Array,System.Int32,System.Array,System.Int32,System.Int32)
extern "C" void Array_Copy_m344457298 (RuntimeObject * __this /* static, unused */, RuntimeArray * ___sourceArray0, int32_t ___sourceIndex1, RuntimeArray * ___destinationArray2, int32_t ___destinationIndex3, int32_t ___length4, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Boolean System.Array::FastCopy(System.Array,System.Int32,System.Array,System.Int32,System.Int32)
extern "C" bool Array_FastCopy_m1662204957 (RuntimeObject * __this /* static, unused */, RuntimeArray * ___source0, int32_t ___source_idx1, RuntimeArray * ___dest2, int32_t ___dest_idx3, int32_t ___length4, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Boolean System.Object::ReferenceEquals(System.Object,System.Object)
extern "C" bool Object_ReferenceEquals_m610702577 (RuntimeObject * __this /* static, unused */, RuntimeObject * ___objA0, RuntimeObject * ___objB1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Void System.InvalidCastException::.ctor()
extern "C" void InvalidCastException__ctor_m1807554410 (InvalidCastException_t3927145244 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Void System.ArrayTypeMismatchException::.ctor(System.String)
extern "C" void ArrayTypeMismatchException__ctor_m231257638 (ArrayTypeMismatchException_t2342549375 * __this, String_t* ___message0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Int32 System.Array::IndexOf(System.Array,System.Object,System.Int32,System.Int32)
extern "C" int32_t Array_IndexOf_m2805394078 (RuntimeObject * __this /* static, unused */, RuntimeArray * ___array0, RuntimeObject * ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Void System.ArgumentOutOfRangeException::.ctor()
extern "C" void ArgumentOutOfRangeException__ctor_m2047740448 (ArgumentOutOfRangeException_t777629997 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Int32 System.Array::LastIndexOf(System.Array,System.Object,System.Int32)
extern "C" int32_t Array_LastIndexOf_m3999123122 (RuntimeObject * __this /* static, unused */, RuntimeArray * ___array0, RuntimeObject * ___value1, int32_t ___startIndex2, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Int32 System.Array::LastIndexOf(System.Array,System.Object,System.Int32,System.Int32)
extern "C" int32_t Array_LastIndexOf_m707980579 (RuntimeObject * __this /* static, unused */, RuntimeArray * ___array0, RuntimeObject * ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Void System.Array/Swapper::.ctor(System.Object,System.IntPtr)
extern "C" void Swapper__ctor_m3019156154 (Swapper_t2822380397 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Void System.ArgumentException::.ctor()
extern "C" void ArgumentException__ctor_m3698743796 (ArgumentException_t132251570 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Array/Swapper System.Array::get_swapper(System.Array)
extern "C" Swapper_t2822380397 * Array_get_swapper_m3428716670 (RuntimeObject * __this /* static, unused */, RuntimeArray * ___array0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Void System.Array/Swapper::Invoke(System.Int32,System.Int32)
extern "C" void Swapper_Invoke_m2596472750 (Swapper_t2822380397 * __this, int32_t ___i0, int32_t ___j1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Void System.Array::Sort(System.Array,System.Array,System.Int32,System.Int32,System.Collections.IComparer)
extern "C" void Array_Sort_m2934663614 (RuntimeObject * __this /* static, unused */, RuntimeArray * ___keys0, RuntimeArray * ___items1, int32_t ___index2, int32_t ___length3, RuntimeObject* ___comparer4, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Void System.RankException::.ctor()
extern "C" void RankException__ctor_m4082747811 (RankException_t3812021567 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Void System.ArgumentOutOfRangeException::.ctor(System.String)
extern "C" void ArgumentOutOfRangeException__ctor_m3628145864 (ArgumentOutOfRangeException_t777629997 * __this, String_t* ___paramName0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Void System.Array::combsort(System.Double[],System.Int32,System.Int32,System.Array/Swapper)
extern "C" void Array_combsort_m3017221499 (RuntimeObject * __this /* static, unused */, DoubleU5BU5D_t3413330114* ___array0, int32_t ___start1, int32_t ___size2, Swapper_t2822380397 * ___swap_items3, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Void System.Array::combsort(System.Int32[],System.Int32,System.Int32,System.Array/Swapper)
extern "C" void Array_combsort_m4052486289 (RuntimeObject * __this /* static, unused */, Int32U5BU5D_t385246372* ___array0, int32_t ___start1, int32_t ___size2, Swapper_t2822380397 * ___swap_items3, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Void System.Array::combsort(System.Char[],System.Int32,System.Int32,System.Array/Swapper)
extern "C" void Array_combsort_m2745184932 (RuntimeObject * __this /* static, unused */, CharU5BU5D_t3528271667* ___array0, int32_t ___start1, int32_t ___size2, Swapper_t2822380397 * ___swap_items3, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Void System.Array::qsort(System.Array,System.Array,System.Int32,System.Int32,System.Collections.IComparer)
extern "C" void Array_qsort_m3156569874 (RuntimeObject * __this /* static, unused */, RuntimeArray * ___keys0, RuntimeArray * ___items1, int32_t ___low02, int32_t ___high03, RuntimeObject* ___comparer4, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Int32 System.Array::new_gap(System.Int32)
extern "C" int32_t Array_new_gap_m262136975 (RuntimeObject * __this /* static, unused */, int32_t ___gap0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Int32 System.Array::compare(System.Object,System.Object,System.Collections.IComparer)
extern "C" int32_t Array_compare_m2837221808 (RuntimeObject * __this /* static, unused */, RuntimeObject * ___value10, RuntimeObject * ___value21, RuntimeObject* ___comparer2, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Void System.Array::swap(System.Array,System.Array,System.Int32,System.Int32)
extern "C" void Array_swap_m547389985 (RuntimeObject * __this /* static, unused */, RuntimeArray * ___keys0, RuntimeArray * ___items1, int32_t ___i2, int32_t ___j3, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Void System.Array::CopyTo(System.Array,System.Int32)
extern "C" void Array_CopyTo_m225704097 (RuntimeArray * __this, RuntimeArray * ___array0, int32_t ___index1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Void System.InvalidOperationException::.ctor(System.String)
extern "C" void InvalidOperationException__ctor_m237278729 (InvalidOperationException_t56020091 * __this, String_t* ___message0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Object System.Object::MemberwiseClone()
extern "C" RuntimeObject * Object_MemberwiseClone_m1474068832 (RuntimeObject * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Void System.AssemblyLoadEventHandler::Invoke(System.Object,System.AssemblyLoadEventArgs)
extern "C" void AssemblyLoadEventHandler_Invoke_m1462077361 (AssemblyLoadEventHandler_t107971893 * __this, RuntimeObject * ___sender0, AssemblyLoadEventArgs_t2792010465 * ___args1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Void System.AsyncCallback::Invoke(System.IAsyncResult)
extern "C" void AsyncCallback_Invoke_m3156993048 (AsyncCallback_t3962456242 * __this, RuntimeObject* ___ar0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Attribute System.Attribute::GetCustomAttribute(System.Reflection.MemberInfo,System.Type,System.Boolean)
extern "C" Attribute_t861562559 * Attribute_GetCustomAttribute_m1244111375 (RuntimeObject * __this /* static, unused */, MemberInfo_t * ___element0, Type_t * ___attributeType1, bool ___inherit2, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Void System.Attribute::CheckParameters(System.Object,System.Type)
extern "C" void Attribute_CheckParameters_m456532822 (RuntimeObject * __this /* static, unused */, RuntimeObject * ___element0, Type_t * ___attributeType1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Attribute System.MonoCustomAttrs::GetCustomAttribute(System.Reflection.ICustomAttributeProvider,System.Type,System.Boolean)
extern "C" Attribute_t861562559 * MonoCustomAttrs_GetCustomAttribute_m1568487577 (RuntimeObject * __this /* static, unused */, RuntimeObject* ___obj0, Type_t * ___attributeType1, bool ___inherit2, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Int32 System.Object::GetHashCode()
extern "C" int32_t Object_GetHashCode_m2705121830 (RuntimeObject * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Boolean System.Attribute::IsDefined(System.Reflection.ParameterInfo,System.Type,System.Boolean)
extern "C" bool Attribute_IsDefined_m3355705882 (RuntimeObject * __this /* static, unused */, ParameterInfo_t1861056598 * ___element0, Type_t * ___attributeType1, bool ___inherit2, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Boolean System.Attribute::IsDefined(System.Reflection.MemberInfo,System.Type,System.Boolean)
extern "C" bool Attribute_IsDefined_m1430686743 (RuntimeObject * __this /* static, unused */, MemberInfo_t * ___element0, Type_t * ___attributeType1, bool ___inherit2, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Boolean System.MonoCustomAttrs::IsDefined(System.Reflection.ICustomAttributeProvider,System.Type,System.Boolean)
extern "C" bool MonoCustomAttrs_IsDefined_m2996012389 (RuntimeObject * __this /* static, unused */, RuntimeObject* ___obj0, Type_t * ___attributeType1, bool ___inherit2, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Boolean System.ValueType::DefaultEquals(System.Object,System.Object)
extern "C" bool ValueType_DefaultEquals_m2927252100 (RuntimeObject * __this /* static, unused */, RuntimeObject * ___o10, RuntimeObject * ___o21, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Void System.Attribute::.ctor()
extern "C" void Attribute__ctor_m1529526131 (Attribute_t861562559 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Boolean System.BitConverter::DoubleWordsAreSwapped()
extern "C" bool BitConverter_DoubleWordsAreSwapped_m1474345095 (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Boolean System.BitConverter::AmILittleEndian()
extern "C" bool BitConverter_AmILittleEndian_m4092412670 (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Byte[] System.BitConverter::GetBytes(System.Double)
extern "C" ByteU5BU5D_t4116647657* BitConverter_GetBytes_m3693159656 (RuntimeObject * __this /* static, unused */, double ___value0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Int64 System.BitConverter::ToInt64(System.Byte[],System.Int32)
extern "C" int64_t BitConverter_ToInt64_m349022421 (RuntimeObject * __this /* static, unused */, ByteU5BU5D_t4116647657* ___value0, int32_t ___startIndex1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Byte[] System.BitConverter::GetBytes(System.Byte*,System.Int32)
extern "C" ByteU5BU5D_t4116647657* BitConverter_GetBytes_m2120707223 (RuntimeObject * __this /* static, unused */, uint8_t* ___ptr0, int32_t ___count1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Void System.BitConverter::PutBytes(System.Byte*,System.Byte[],System.Int32,System.Int32)
extern "C" void BitConverter_PutBytes_m2614286581 (RuntimeObject * __this /* static, unused */, uint8_t* ___dst0, ByteU5BU5D_t4116647657* ___src1, int32_t ___start_index2, int32_t ___count3, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.String System.BitConverter::ToString(System.Byte[],System.Int32,System.Int32)
extern "C" String_t* BitConverter_ToString_m3439099539 (RuntimeObject * __this /* static, unused */, ByteU5BU5D_t4116647657* ___value0, int32_t ___startIndex1, int32_t ___length2, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Object System.Convert::ToType(System.Object,System.Type,System.IFormatProvider,System.Boolean)
extern "C" RuntimeObject * Convert_ToType_m2406080310 (RuntimeObject * __this /* static, unused */, RuntimeObject * ___value0, Type_t * ___conversionType1, RuntimeObject* ___provider2, bool ___try_target_to_type3, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Object System.Boolean::System.IConvertible.ToType(System.Type,System.IFormatProvider)
extern "C" RuntimeObject * Boolean_System_IConvertible_ToType_m2078828242 (bool* __this, Type_t * ___targetType0, RuntimeObject* ___provider1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Boolean System.Boolean::System.IConvertible.ToBoolean(System.IFormatProvider)
extern "C" bool Boolean_System_IConvertible_ToBoolean_m422934902 (bool* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Byte System.Convert::ToByte(System.Boolean)
extern "C" uint8_t Convert_ToByte_m306367912 (RuntimeObject * __this /* static, unused */, bool ___value0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Byte System.Boolean::System.IConvertible.ToByte(System.IFormatProvider)
extern "C" uint8_t Boolean_System_IConvertible_ToByte_m3917074947 (bool* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Char System.Boolean::System.IConvertible.ToChar(System.IFormatProvider)
extern "C" Il2CppChar Boolean_System_IConvertible_ToChar_m4279513009 (bool* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.DateTime System.Boolean::System.IConvertible.ToDateTime(System.IFormatProvider)
extern "C" DateTime_t3738529785 Boolean_System_IConvertible_ToDateTime_m603510836 (bool* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Decimal System.Convert::ToDecimal(System.Boolean)
extern "C" Decimal_t2948259380 Convert_ToDecimal_m2233265097 (RuntimeObject * __this /* static, unused */, bool ___value0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Decimal System.Boolean::System.IConvertible.ToDecimal(System.IFormatProvider)
extern "C" Decimal_t2948259380 Boolean_System_IConvertible_ToDecimal_m3176932461 (bool* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Double System.Convert::ToDouble(System.Boolean)
extern "C" double Convert_ToDouble_m954895424 (RuntimeObject * __this /* static, unused */, bool ___value0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Double System.Boolean::System.IConvertible.ToDouble(System.IFormatProvider)
extern "C" double Boolean_System_IConvertible_ToDouble_m2859188631 (bool* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Int16 System.Convert::ToInt16(System.Boolean)
extern "C" int16_t Convert_ToInt16_m3324557887 (RuntimeObject * __this /* static, unused */, bool ___value0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Int16 System.Boolean::System.IConvertible.ToInt16(System.IFormatProvider)
extern "C" int16_t Boolean_System_IConvertible_ToInt16_m973746887 (bool* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Int32 System.Convert::ToInt32(System.Boolean)
extern "C" int32_t Convert_ToInt32_m2100527582 (RuntimeObject * __this /* static, unused */, bool ___value0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Int32 System.Boolean::System.IConvertible.ToInt32(System.IFormatProvider)
extern "C" int32_t Boolean_System_IConvertible_ToInt32_m1127498050 (bool* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Int64 System.Convert::ToInt64(System.Boolean)
extern "C" int64_t Convert_ToInt64_m2812720657 (RuntimeObject * __this /* static, unused */, bool ___value0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Int64 System.Boolean::System.IConvertible.ToInt64(System.IFormatProvider)
extern "C" int64_t Boolean_System_IConvertible_ToInt64_m2059204559 (bool* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.SByte System.Convert::ToSByte(System.Boolean)
extern "C" int8_t Convert_ToSByte_m3284376536 (RuntimeObject * __this /* static, unused */, bool ___value0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.SByte System.Boolean::System.IConvertible.ToSByte(System.IFormatProvider)
extern "C" int8_t Boolean_System_IConvertible_ToSByte_m806999 (bool* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Single System.Convert::ToSingle(System.Boolean)
extern "C" float Convert_ToSingle_m1386109941 (RuntimeObject * __this /* static, unused */, bool ___value0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Single System.Boolean::System.IConvertible.ToSingle(System.IFormatProvider)
extern "C" float Boolean_System_IConvertible_ToSingle_m1524606222 (bool* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.UInt16 System.Convert::ToUInt16(System.Boolean)
extern "C" uint16_t Convert_ToUInt16_m3116648921 (RuntimeObject * __this /* static, unused */, bool ___value0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.UInt16 System.Boolean::System.IConvertible.ToUInt16(System.IFormatProvider)
extern "C" uint16_t Boolean_System_IConvertible_ToUInt16_m3465173538 (bool* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.UInt32 System.Convert::ToUInt32(System.Boolean)
extern "C" uint32_t Convert_ToUInt32_m835119716 (RuntimeObject * __this /* static, unused */, bool ___value0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.UInt32 System.Boolean::System.IConvertible.ToUInt32(System.IFormatProvider)
extern "C" uint32_t Boolean_System_IConvertible_ToUInt32_m2723177447 (bool* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.UInt64 System.Convert::ToUInt64(System.Boolean)
extern "C" uint64_t Convert_ToUInt64_m2343585091 (RuntimeObject * __this /* static, unused */, bool ___value0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.UInt64 System.Boolean::System.IConvertible.ToUInt64(System.IFormatProvider)
extern "C" uint64_t Boolean_System_IConvertible_ToUInt64_m1739877596 (bool* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Int32 System.Boolean::CompareTo(System.Object)
extern "C" int32_t Boolean_CompareTo_m3665076258 (bool* __this, RuntimeObject * ___obj0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Boolean System.Boolean::Equals(System.Object)
extern "C" bool Boolean_Equals_m2410333903 (bool* __this, RuntimeObject * ___obj0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Int32 System.Boolean::CompareTo(System.Boolean)
extern "C" int32_t Boolean_CompareTo_m3774767002 (bool* __this, bool ___value0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Boolean System.Boolean::Equals(System.Boolean)
extern "C" bool Boolean_Equals_m535526264 (bool* __this, bool ___obj0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Int32 System.Boolean::GetHashCode()
extern "C" int32_t Boolean_GetHashCode_m3167312162 (bool* __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.String System.String::Trim()
extern "C" String_t* String_Trim_m923598732 (String_t* __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Int32 System.String::Compare(System.String,System.String,System.Boolean,System.Globalization.CultureInfo)
extern "C" int32_t String_Compare_m1293271421 (RuntimeObject * __this /* static, unused */, String_t* ___strA0, String_t* ___strB1, bool ___ignoreCase2, CultureInfo_t4157843068 * ___culture3, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Void System.FormatException::.ctor(System.String)
extern "C" void FormatException__ctor_m4049685996 (FormatException_t154580423 * __this, String_t* ___message0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.String System.Boolean::ToString()
extern "C" String_t* Boolean_ToString_m2664721875 (bool* __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.TypeCode System.Boolean::GetTypeCode()
extern "C" int32_t Boolean_GetTypeCode_m403835824 (bool* __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.String System.Boolean::ToString(System.IFormatProvider)
extern "C" String_t* Boolean_ToString_m663098404 (bool* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Int32 System.Buffer::ByteLengthInternal(System.Array)
extern "C" int32_t Buffer_ByteLengthInternal_m1388208719 (RuntimeObject * __this /* static, unused */, RuntimeArray * ___array0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Boolean System.Buffer::BlockCopyInternal(System.Array,System.Int32,System.Array,System.Int32,System.Int32)
extern "C" bool Buffer_BlockCopyInternal_m418318694 (RuntimeObject * __this /* static, unused */, RuntimeArray * ___src0, int32_t ___src_offset1, RuntimeArray * ___dest2, int32_t ___dest_offset3, int32_t ___count4, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Int32 System.Buffer::ByteLength(System.Array)
extern "C" int32_t Buffer_ByteLength_m2639516074 (RuntimeObject * __this /* static, unused */, RuntimeArray * ___array0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Object System.Byte::System.IConvertible.ToType(System.Type,System.IFormatProvider)
extern "C" RuntimeObject * Byte_System_IConvertible_ToType_m2251112646 (uint8_t* __this, Type_t * ___targetType0, RuntimeObject* ___provider1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Boolean System.Convert::ToBoolean(System.Byte)
extern "C" bool Convert_ToBoolean_m2984378204 (RuntimeObject * __this /* static, unused */, uint8_t ___value0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Boolean System.Byte::System.IConvertible.ToBoolean(System.IFormatProvider)
extern "C" bool Byte_System_IConvertible_ToBoolean_m2888023769 (uint8_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Byte System.Byte::System.IConvertible.ToByte(System.IFormatProvider)
extern "C" uint8_t Byte_System_IConvertible_ToByte_m162267264 (uint8_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Char System.Byte::System.IConvertible.ToChar(System.IFormatProvider)
extern "C" Il2CppChar Byte_System_IConvertible_ToChar_m2173687830 (uint8_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.DateTime System.Byte::System.IConvertible.ToDateTime(System.IFormatProvider)
extern "C" DateTime_t3738529785 Byte_System_IConvertible_ToDateTime_m3654084722 (uint8_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Decimal System.Convert::ToDecimal(System.Byte)
extern "C" Decimal_t2948259380 Convert_ToDecimal_m3209124080 (RuntimeObject * __this /* static, unused */, uint8_t ___value0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Decimal System.Byte::System.IConvertible.ToDecimal(System.IFormatProvider)
extern "C" Decimal_t2948259380 Byte_System_IConvertible_ToDecimal_m3746192770 (uint8_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Double System.Convert::ToDouble(System.Byte)
extern "C" double Convert_ToDouble_m3124823876 (RuntimeObject * __this /* static, unused */, uint8_t ___value0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Double System.Byte::System.IConvertible.ToDouble(System.IFormatProvider)
extern "C" double Byte_System_IConvertible_ToDouble_m1540319472 (uint8_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Int16 System.Convert::ToInt16(System.Byte)
extern "C" int16_t Convert_ToInt16_m701474428 (RuntimeObject * __this /* static, unused */, uint8_t ___value0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Int16 System.Byte::System.IConvertible.ToInt16(System.IFormatProvider)
extern "C" int16_t Byte_System_IConvertible_ToInt16_m4136764794 (uint8_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Int32 System.Convert::ToInt32(System.Byte)
extern "C" int32_t Convert_ToInt32_m2505564049 (RuntimeObject * __this /* static, unused */, uint8_t ___value0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Int32 System.Byte::System.IConvertible.ToInt32(System.IFormatProvider)
extern "C" int32_t Byte_System_IConvertible_ToInt32_m3495522413 (uint8_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Int64 System.Convert::ToInt64(System.Byte)
extern "C" int64_t Convert_ToInt64_m395638860 (RuntimeObject * __this /* static, unused */, uint8_t ___value0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Int64 System.Byte::System.IConvertible.ToInt64(System.IFormatProvider)
extern "C" int64_t Byte_System_IConvertible_ToInt64_m285584218 (uint8_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.SByte System.Convert::ToSByte(System.Byte)
extern "C" int8_t Convert_ToSByte_m717245755 (RuntimeObject * __this /* static, unused */, uint8_t ___value0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.SByte System.Byte::System.IConvertible.ToSByte(System.IFormatProvider)
extern "C" int8_t Byte_System_IConvertible_ToSByte_m1869482168 (uint8_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Single System.Convert::ToSingle(System.Byte)
extern "C" float Convert_ToSingle_m2769033141 (RuntimeObject * __this /* static, unused */, uint8_t ___value0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Single System.Byte::System.IConvertible.ToSingle(System.IFormatProvider)
extern "C" float Byte_System_IConvertible_ToSingle_m324484566 (uint8_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.UInt16 System.Convert::ToUInt16(System.Byte)
extern "C" uint16_t Convert_ToUInt16_m4064261444 (RuntimeObject * __this /* static, unused */, uint8_t ___value0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.UInt16 System.Byte::System.IConvertible.ToUInt16(System.IFormatProvider)
extern "C" uint16_t Byte_System_IConvertible_ToUInt16_m1879180133 (uint8_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.UInt32 System.Convert::ToUInt32(System.Byte)
extern "C" uint32_t Convert_ToUInt32_m360864467 (RuntimeObject * __this /* static, unused */, uint8_t ___value0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.UInt32 System.Byte::System.IConvertible.ToUInt32(System.IFormatProvider)
extern "C" uint32_t Byte_System_IConvertible_ToUInt32_m1049546902 (uint8_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.UInt64 System.Convert::ToUInt64(System.Byte)
extern "C" uint64_t Convert_ToUInt64_m2652538228 (RuntimeObject * __this /* static, unused */, uint8_t ___value0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.UInt64 System.Byte::System.IConvertible.ToUInt64(System.IFormatProvider)
extern "C" uint64_t Byte_System_IConvertible_ToUInt64_m371883985 (uint8_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Int32 System.Byte::CompareTo(System.Object)
extern "C" int32_t Byte_CompareTo_m4285128861 (uint8_t* __this, RuntimeObject * ___value0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Boolean System.Byte::Equals(System.Object)
extern "C" bool Byte_Equals_m1161982810 (uint8_t* __this, RuntimeObject * ___obj0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Int32 System.Byte::GetHashCode()
extern "C" int32_t Byte_GetHashCode_m850171870 (uint8_t* __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Int32 System.Byte::CompareTo(System.Byte)
extern "C" int32_t Byte_CompareTo_m4207847027 (uint8_t* __this, uint8_t ___value0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Boolean System.Byte::Equals(System.Byte)
extern "C" bool Byte_Equals_m2522165325 (uint8_t* __this, uint8_t ___obj0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Byte System.Byte::Parse(System.String,System.Globalization.NumberStyles,System.IFormatProvider)
extern "C" uint8_t Byte_Parse_m3200377149 (RuntimeObject * __this /* static, unused */, String_t* ___s0, int32_t ___style1, RuntimeObject* ___provider2, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.UInt32 System.UInt32::Parse(System.String,System.Globalization.NumberStyles,System.IFormatProvider)
extern "C" uint32_t UInt32_Parse_m3755665066 (RuntimeObject * __this /* static, unused */, String_t* ___s0, int32_t ___style1, RuntimeObject* ___provider2, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Void System.OverflowException::.ctor(System.String)
extern "C" void OverflowException__ctor_m694321376 (OverflowException_t2020128637 * __this, String_t* ___message0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Boolean System.Byte::TryParse(System.String,System.Globalization.NumberStyles,System.IFormatProvider,System.Byte&)
extern "C" bool Byte_TryParse_m1467448483 (RuntimeObject * __this /* static, unused */, String_t* ___s0, int32_t ___style1, RuntimeObject* ___provider2, uint8_t* ___result3, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Boolean System.UInt32::TryParse(System.String,System.Globalization.NumberStyles,System.IFormatProvider,System.UInt32&)
extern "C" bool UInt32_TryParse_m535404612 (RuntimeObject * __this /* static, unused */, String_t* ___s0, int32_t ___style1, RuntimeObject* ___provider2, uint32_t* ___result3, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.String System.NumberFormatter::NumberToString(System.Int32,System.IFormatProvider)
extern "C" String_t* NumberFormatter_NumberToString_m1790947760 (RuntimeObject * __this /* static, unused */, int32_t ___value0, RuntimeObject* ___fp1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.String System.Byte::ToString()
extern "C" String_t* Byte_ToString_m721125428 (uint8_t* __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.String System.Byte::ToString(System.String)
extern "C" String_t* Byte_ToString_m3735479648 (uint8_t* __this, String_t* ___format0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.String System.Byte::ToString(System.IFormatProvider)
extern "C" String_t* Byte_ToString_m2335342258 (uint8_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.String System.NumberFormatter::NumberToString(System.String,System.Byte,System.IFormatProvider)
extern "C" String_t* NumberFormatter_NumberToString_m3726402804 (RuntimeObject * __this /* static, unused */, String_t* ___format0, uint8_t ___value1, RuntimeObject* ___fp2, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Void System.Char::GetDataTablePointers(System.Byte*&,System.Byte*&,System.Double*&,System.UInt16*&,System.UInt16*&,System.UInt16*&,System.UInt16*&)
extern "C" void Char_GetDataTablePointers_m754571594 (RuntimeObject * __this /* static, unused */, uint8_t** ___category_data0, uint8_t** ___numeric_data1, double** ___numeric_data_values2, uint16_t** ___to_lower_data_low3, uint16_t** ___to_lower_data_high4, uint16_t** ___to_upper_data_low5, uint16_t** ___to_upper_data_high6, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Object System.Char::System.IConvertible.ToType(System.Type,System.IFormatProvider)
extern "C" RuntimeObject * Char_System_IConvertible_ToType_m4138905176 (Il2CppChar* __this, Type_t * ___targetType0, RuntimeObject* ___provider1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Boolean System.Char::System.IConvertible.ToBoolean(System.IFormatProvider)
extern "C" bool Char_System_IConvertible_ToBoolean_m309214875 (Il2CppChar* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Byte System.Convert::ToByte(System.Char)
extern "C" uint8_t Convert_ToByte_m143827699 (RuntimeObject * __this /* static, unused */, Il2CppChar ___value0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Byte System.Char::System.IConvertible.ToByte(System.IFormatProvider)
extern "C" uint8_t Char_System_IConvertible_ToByte_m2347554595 (Il2CppChar* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Char System.Char::System.IConvertible.ToChar(System.IFormatProvider)
extern "C" Il2CppChar Char_System_IConvertible_ToChar_m3578899883 (Il2CppChar* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.DateTime System.Char::System.IConvertible.ToDateTime(System.IFormatProvider)
extern "C" DateTime_t3738529785 Char_System_IConvertible_ToDateTime_m3564102661 (Il2CppChar* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Decimal System.Char::System.IConvertible.ToDecimal(System.IFormatProvider)
extern "C" Decimal_t2948259380 Char_System_IConvertible_ToDecimal_m3534906463 (Il2CppChar* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Double System.Char::System.IConvertible.ToDouble(System.IFormatProvider)
extern "C" double Char_System_IConvertible_ToDouble_m3575321888 (Il2CppChar* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Int16 System.Convert::ToInt16(System.Char)
extern "C" int16_t Convert_ToInt16_m3018161032 (RuntimeObject * __this /* static, unused */, Il2CppChar ___value0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Int16 System.Char::System.IConvertible.ToInt16(System.IFormatProvider)
extern "C" int16_t Char_System_IConvertible_ToInt16_m975497224 (Il2CppChar* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Int32 System.Convert::ToInt32(System.Char)
extern "C" int32_t Convert_ToInt32_m1876369743 (RuntimeObject * __this /* static, unused */, Il2CppChar ___value0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Int32 System.Char::System.IConvertible.ToInt32(System.IFormatProvider)
extern "C" int32_t Char_System_IConvertible_ToInt32_m1777243200 (Il2CppChar* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Int64 System.Convert::ToInt64(System.Char)
extern "C" int64_t Convert_ToInt64_m3122543124 (RuntimeObject * __this /* static, unused */, Il2CppChar ___value0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Int64 System.Char::System.IConvertible.ToInt64(System.IFormatProvider)
extern "C" int64_t Char_System_IConvertible_ToInt64_m1630543716 (Il2CppChar* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.SByte System.Convert::ToSByte(System.Char)
extern "C" int8_t Convert_ToSByte_m1350241137 (RuntimeObject * __this /* static, unused */, Il2CppChar ___value0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.SByte System.Char::System.IConvertible.ToSByte(System.IFormatProvider)
extern "C" int8_t Char_System_IConvertible_ToSByte_m973063527 (Il2CppChar* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Single System.Char::System.IConvertible.ToSingle(System.IFormatProvider)
extern "C" float Char_System_IConvertible_ToSingle_m2690985411 (Il2CppChar* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.UInt16 System.Convert::ToUInt16(System.Char)
extern "C" uint16_t Convert_ToUInt16_m2952781888 (RuntimeObject * __this /* static, unused */, Il2CppChar ___value0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.UInt16 System.Char::System.IConvertible.ToUInt16(System.IFormatProvider)
extern "C" uint16_t Char_System_IConvertible_ToUInt16_m2449138174 (Il2CppChar* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.UInt32 System.Convert::ToUInt32(System.Char)
extern "C" uint32_t Convert_ToUInt32_m3188121845 (RuntimeObject * __this /* static, unused */, Il2CppChar ___value0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.UInt32 System.Char::System.IConvertible.ToUInt32(System.IFormatProvider)
extern "C" uint32_t Char_System_IConvertible_ToUInt32_m3901815580 (Il2CppChar* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.UInt64 System.Convert::ToUInt64(System.Char)
extern "C" uint64_t Convert_ToUInt64_m3102114524 (RuntimeObject * __this /* static, unused */, Il2CppChar ___value0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.UInt64 System.Char::System.IConvertible.ToUInt64(System.IFormatProvider)
extern "C" uint64_t Char_System_IConvertible_ToUInt64_m3536560782 (Il2CppChar* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Int32 System.Char::CompareTo(System.Object)
extern "C" int32_t Char_CompareTo_m42489266 (Il2CppChar* __this, RuntimeObject * ___value0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Boolean System.Char::Equals(System.Object)
extern "C" bool Char_Equals_m1279957088 (Il2CppChar* __this, RuntimeObject * ___obj0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Int32 System.Char::CompareTo(System.Char)
extern "C" int32_t Char_CompareTo_m1035527789 (Il2CppChar* __this, Il2CppChar ___value0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Boolean System.Char::Equals(System.Char)
extern "C" bool Char_Equals_m198757577 (Il2CppChar* __this, Il2CppChar ___obj0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Int32 System.Char::GetHashCode()
extern "C" int32_t Char_GetHashCode_m2163065211 (Il2CppChar* __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Void System.Char::CheckParameter(System.String,System.Int32)
extern "C" void Char_CheckParameter_m4114020212 (RuntimeObject * __this /* static, unused */, String_t* ___s0, int32_t ___index1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Char System.String::get_Chars(System.Int32)
extern "C" Il2CppChar String_get_Chars_m2986988803 (String_t* __this, int32_t ___index0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Boolean System.Char::IsWhiteSpace(System.Char)
extern "C" bool Char_IsWhiteSpace_m2148390798 (RuntimeObject * __this /* static, unused */, Il2CppChar ___c0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Globalization.CultureInfo System.Globalization.CultureInfo::get_CurrentCulture()
extern "C" CultureInfo_t4157843068 * CultureInfo_get_CurrentCulture_m1632690660 (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Char System.Char::ToLowerInvariant(System.Char)
extern "C" Il2CppChar Char_ToLowerInvariant_m1926695830 (RuntimeObject * __this /* static, unused */, Il2CppChar ___c0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.String System.String::CreateString(System.Char,System.Int32)
extern "C" String_t* String_CreateString_m1262864254 (String_t* __this, Il2CppChar ___c0, int32_t ___count1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.String System.Char::ToString()
extern "C" String_t* Char_ToString_m3588025615 (Il2CppChar* __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.String System.Char::ToString(System.IFormatProvider)
extern "C" String_t* Char_ToString_m278452217 (Il2CppChar* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.TypeCode System.Char::GetTypeCode()
extern "C" int32_t Char_GetTypeCode_m2433327340 (Il2CppChar* __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Char System.CharEnumerator::get_Current()
extern "C" Il2CppChar CharEnumerator_get_Current_m525608209 (CharEnumerator_t1121470421 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Void System.CharEnumerator::.ctor(System.String)
extern "C" void CharEnumerator__ctor_m3465358752 (CharEnumerator_t1121470421 * __this, String_t* ___s0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Void System.Collections.ArrayList::ThrowNewArgumentOutOfRangeException(System.String,System.Object,System.String)
extern "C" void ArrayList_ThrowNewArgumentOutOfRangeException_m3110627888 (RuntimeObject * __this /* static, unused */, String_t* ___name0, RuntimeObject * ___actual1, String_t* ___message2, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Void System.Collections.ArrayList::EnsureCapacity(System.Int32)
extern "C" void ArrayList_EnsureCapacity_m3016383533 (ArrayList_t2718874744 * __this, int32_t ___count0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Int32 System.Array::IndexOf<System.Object>(!!0[],!!0,System.Int32,System.Int32)
#define Array_IndexOf_TisRuntimeObject_m828474689(__this /* static, unused */, p0, p1, p2, p3, method) (( int32_t (*) (RuntimeObject * /* static, unused */, ObjectU5BU5D_t2843939325*, RuntimeObject *, int32_t, int32_t, const RuntimeMethod*))Array_IndexOf_TisRuntimeObject_m828474689_gshared)(__this /* static, unused */, p0, p1, p2, p3, method)
// System.Void System.Collections.ArrayList::Shift(System.Int32,System.Int32)
extern "C" void ArrayList_Shift_m395607654 (ArrayList_t2718874744 * __this, int32_t ___index0, int32_t ___count1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Void System.Collections.ArrayList/SimpleEnumerator::.ctor(System.Collections.ArrayList)
extern "C" void SimpleEnumerator__ctor_m917940076 (SimpleEnumerator_t4287166116 * __this, ArrayList_t2718874744 * ___list0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Void System.Array::Sort<System.Object>(!!0[],System.Int32,System.Int32)
#define Array_Sort_TisRuntimeObject_m440635289(__this /* static, unused */, p0, p1, p2, method) (( void (*) (RuntimeObject * /* static, unused */, ObjectU5BU5D_t2843939325*, int32_t, int32_t, const RuntimeMethod*))Array_Sort_TisRuntimeObject_m440635289_gshared)(__this /* static, unused */, p0, p1, p2, method)
// System.Void System.Array::Sort(System.Array,System.Int32,System.Int32,System.Collections.IComparer)
extern "C" void Array_Sort_m182264525 (RuntimeObject * __this /* static, unused */, RuntimeArray * ___array0, int32_t ___index1, int32_t ___length2, RuntimeObject* ___comparer3, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Array System.Array::CreateInstance(System.Type,System.Int32)
extern "C" RuntimeArray * Array_CreateInstance_m2750085942 (RuntimeObject * __this /* static, unused */, Type_t * ___elementType0, int32_t ___length1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Void System.Collections.ArrayList::.ctor(System.Object[],System.Int32,System.Int32)
extern "C" void ArrayList__ctor_m2075768692 (ArrayList_t2718874744 * __this, ObjectU5BU5D_t2843939325* ___array0, int32_t ___index1, int32_t ___count2, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Void System.ArgumentOutOfRangeException::.ctor(System.String,System.Object,System.String)
extern "C" void ArgumentOutOfRangeException__ctor_m4164965325 (ArgumentOutOfRangeException_t777629997 * __this, String_t* ___paramName0, RuntimeObject * ___actualValue1, String_t* ___message2, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Void System.Collections.ArrayList/SynchronizedArrayListWrapper::.ctor(System.Collections.ArrayList)
extern "C" void SynchronizedArrayListWrapper__ctor_m3368338124 (SynchronizedArrayListWrapper_t2283757095 * __this, ArrayList_t2718874744 * ___innerArrayList0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Void System.Collections.ArrayList/ReadOnlyArrayListWrapper::.ctor(System.Collections.ArrayList)
extern "C" void ReadOnlyArrayListWrapper__ctor_m1527708879 (ReadOnlyArrayListWrapper_t3401315650 * __this, ArrayList_t2718874744 * ___innerArrayList0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Void System.Collections.ArrayList/ArrayListWrapper::.ctor(System.Collections.ArrayList)
extern "C" void ArrayListWrapper__ctor_m970192266 (ArrayListWrapper_t240606758 * __this, ArrayList_t2718874744 * ___innerArrayList0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Int32 System.Collections.ArrayList/ArrayListWrapper::get_Capacity()
extern "C" int32_t ArrayListWrapper_get_Capacity_m51087796 (ArrayListWrapper_t240606758 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Void System.Collections.ArrayList/FixedSizeArrayListWrapper::.ctor(System.Collections.ArrayList)
extern "C" void FixedSizeArrayListWrapper__ctor_m3150386652 (FixedSizeArrayListWrapper_t220909481 * __this, ArrayList_t2718874744 * ___innerList0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.String System.Collections.ArrayList/ReadOnlyArrayListWrapper::get_ErrorMessage()
extern "C" String_t* ReadOnlyArrayListWrapper_get_ErrorMessage_m1121552994 (ReadOnlyArrayListWrapper_t3401315650 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Void System.Threading.Monitor::Enter(System.Object)
extern "C" void Monitor_Enter_m2249409497 (RuntimeObject * __this /* static, unused */, RuntimeObject * ___obj0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Void System.Threading.Monitor::Exit(System.Object)
extern "C" void Monitor_Exit_m3585316909 (RuntimeObject * __this /* static, unused */, RuntimeObject * ___obj0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Boolean System.Collections.BitArray::Get(System.Int32)
extern "C" bool BitArray_Get_m1610855460 (BitArray_t4087883509 * __this, int32_t ___index0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Void System.Collections.BitArray::Set(System.Int32,System.Boolean)
extern "C" void BitArray_Set_m2486900776 (BitArray_t4087883509 * __this, int32_t ___index0, bool ___value1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Void System.Collections.BitArray::.ctor(System.Collections.BitArray)
extern "C" void BitArray__ctor_m2765908219 (BitArray_t4087883509 * __this, BitArray_t4087883509 * ___bits0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Boolean System.Collections.BitArray::get_Item(System.Int32)
extern "C" bool BitArray_get_Item_m2970562587 (BitArray_t4087883509 * __this, int32_t ___index0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Byte System.Collections.BitArray::getByte(System.Int32)
extern "C" uint8_t BitArray_getByte_m2467886923 (BitArray_t4087883509 * __this, int32_t ___byteIndex0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Void System.Collections.BitArray/BitArrayEnumerator::.ctor(System.Collections.BitArray)
extern "C" void BitArrayEnumerator__ctor_m2359341397 (BitArrayEnumerator_t893496218 * __this, BitArray_t4087883509 * ___ba0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Int32 System.Collections.BitArray::get_Count()
extern "C" int32_t BitArray_get_Count_m3250012040 (BitArray_t4087883509 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Void System.Collections.BitArray/BitArrayEnumerator::checkVersion()
extern "C" void BitArrayEnumerator_checkVersion_m500404395 (BitArrayEnumerator_t893496218 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Void System.InvalidOperationException::.ctor()
extern "C" void InvalidOperationException__ctor_m2734335978 (InvalidOperationException_t56020091 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Void System.Collections.CaseInsensitiveComparer::.ctor()
extern "C" void CaseInsensitiveComparer__ctor_m1508720200 (CaseInsensitiveComparer_t3670035800 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Void System.Collections.CaseInsensitiveComparer::.ctor(System.Boolean)
extern "C" void CaseInsensitiveComparer__ctor_m2101975011 (CaseInsensitiveComparer_t3670035800 * __this, bool ___invariant0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Int32 System.Collections.Comparer::Compare(System.Object,System.Object)
extern "C" int32_t Comparer_Compare_m3984347512 (Comparer_t1912461351 * __this, RuntimeObject * ___a0, RuntimeObject * ___b1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Boolean System.Collections.CaseInsensitiveHashCodeProvider::AreEqual(System.Globalization.CultureInfo,System.Globalization.CultureInfo)
extern "C" bool CaseInsensitiveHashCodeProvider_AreEqual_m1790260777 (RuntimeObject * __this /* static, unused */, CultureInfo_t4157843068 * ___a0, CultureInfo_t4157843068 * ___b1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Void System.Collections.CaseInsensitiveHashCodeProvider::.ctor(System.Globalization.CultureInfo)
extern "C" void CaseInsensitiveHashCodeProvider__ctor_m3307631072 (CaseInsensitiveHashCodeProvider_t1962629119 * __this, CultureInfo_t4157843068 * ___culture0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.String System.Globalization.TextInfo::get_CultureName()
extern "C" String_t* TextInfo_get_CultureName_m3892243949 (TextInfo_t3810425522 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Boolean System.Collections.CaseInsensitiveHashCodeProvider::AreEqual(System.Globalization.TextInfo,System.Globalization.CultureInfo)
extern "C" bool CaseInsensitiveHashCodeProvider_AreEqual_m3534448780 (RuntimeObject * __this /* static, unused */, TextInfo_t3810425522 * ___info0, CultureInfo_t4157843068 * ___culture1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Char System.Char::ToLower(System.Char,System.Globalization.CultureInfo)
extern "C" Il2CppChar Char_ToLower_m3999837485 (RuntimeObject * __this /* static, unused */, Il2CppChar ___c0, CultureInfo_t4157843068 * ___culture1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Void System.Collections.Comparer::.ctor()
extern "C" void Comparer__ctor_m2831654082 (Comparer_t1912461351 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Void System.Collections.Comparer::.ctor(System.Globalization.CultureInfo)
extern "C" void Comparer__ctor_m2580215220 (Comparer_t1912461351 * __this, CultureInfo_t4157843068 * ___culture0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Void System.Collections.DictionaryEntry::.ctor(System.Object,System.Object)
extern "C" void DictionaryEntry__ctor_m2585376310 (DictionaryEntry_t3123975638 * __this, RuntimeObject * ___key0, RuntimeObject * ___value1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Object System.Collections.DictionaryEntry::get_Key()
extern "C" RuntimeObject * DictionaryEntry_get_Key_m3117378551 (DictionaryEntry_t3123975638 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Object System.Collections.DictionaryEntry::get_Value()
extern "C" RuntimeObject * DictionaryEntry_get_Value_m618120527 (DictionaryEntry_t3123975638 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Void System.Collections.Hashtable::.ctor(System.Int32,System.Single)
extern "C" void Hashtable__ctor_m3542198234 (Hashtable_t1853889766 * __this, int32_t ___capacity0, float ___loadFactor1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Boolean System.Single::IsNaN(System.Single)
extern "C" bool Single_IsNaN_m4024467661 (RuntimeObject * __this /* static, unused */, float ___f0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Int32 System.Collections.Hashtable::ToPrime(System.Int32)
extern "C" int32_t Hashtable_ToPrime_m33531354 (RuntimeObject * __this /* static, unused */, int32_t ___x0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Void System.Collections.Hashtable::SetTable(System.Collections.Hashtable/Slot[],System.Int32[])
extern "C" void Hashtable_SetTable_m1520626497 (Hashtable_t1853889766 * __this, SlotU5BU5D_t2994659099* ___table0, Int32U5BU5D_t385246372* ___hashes1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Void System.Collections.Hashtable::set_hcp(System.Collections.IHashCodeProvider)
extern "C" void Hashtable_set_hcp_m2582686174 (Hashtable_t1853889766 * __this, RuntimeObject* ___value0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Void System.Collections.Hashtable::set_comparer(System.Collections.IComparer)
extern "C" void Hashtable_set_comparer_m1969364857 (Hashtable_t1853889766 * __this, RuntimeObject* ___value0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Void System.Collections.Hashtable::.ctor(System.Int32,System.Single,System.Collections.IHashCodeProvider,System.Collections.IComparer)
extern "C" void Hashtable__ctor_m3491720775 (Hashtable_t1853889766 * __this, int32_t ___capacity0, float ___loadFactor1, RuntimeObject* ___hcp2, RuntimeObject* ___comparer3, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Void System.Collections.Hashtable::.ctor(System.Collections.IDictionary,System.Single,System.Collections.IHashCodeProvider,System.Collections.IComparer)
extern "C" void Hashtable__ctor_m2421324048 (Hashtable_t1853889766 * __this, RuntimeObject* ___d0, float ___loadFactor1, RuntimeObject* ___hcp2, RuntimeObject* ___comparer3, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Void System.Collections.Hashtable::.ctor(System.Int32,System.Single,System.Collections.IEqualityComparer)
extern "C" void Hashtable__ctor_m1820371784 (Hashtable_t1853889766 * __this, int32_t ___capacity0, float ___loadFactor1, RuntimeObject* ___equalityComparer2, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Void System.Collections.Hashtable/Enumerator::.ctor(System.Collections.Hashtable,System.Collections.Hashtable/EnumeratorMode)
extern "C" void Enumerator__ctor_m3921352641 (Enumerator_t661358686 * __this, Hashtable_t1853889766 * ___host0, int32_t ___mode1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Void System.Collections.Hashtable/HashKeys::.ctor(System.Collections.Hashtable)
extern "C" void HashKeys__ctor_m2668698759 (HashKeys_t1568156503 * __this, Hashtable_t1853889766 * ___host0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Void System.Collections.Hashtable/HashValues::.ctor(System.Collections.Hashtable)
extern "C" void HashValues__ctor_m1651100305 (HashValues_t618387445 * __this, Hashtable_t1853889766 * ___host0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Void System.ArgumentNullException::.ctor(System.String,System.String)
extern "C" void ArgumentNullException__ctor_m2009621981 (ArgumentNullException_t1615371798 * __this, String_t* ___paramName0, String_t* ___message1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Void System.Collections.Hashtable::PutImpl(System.Object,System.Object,System.Boolean)
extern "C" void Hashtable_PutImpl_m2485103604 (Hashtable_t1853889766 * __this, RuntimeObject * ___key0, RuntimeObject * ___value1, bool ___overwrite2, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Int32 System.Collections.Hashtable::Find(System.Object)
extern "C" int32_t Hashtable_Find_m1835111773 (Hashtable_t1853889766 * __this, RuntimeObject * ___key0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Void System.Collections.Hashtable::.ctor(System.Collections.Hashtable)
extern "C" void Hashtable__ctor_m3890751112 (Hashtable_t1853889766 * __this, Hashtable_t1853889766 * ___source0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Object System.Runtime.Serialization.SerializationInfo::GetValue(System.String,System.Type)
extern "C" RuntimeObject * SerializationInfo_GetValue_m42271953 (SerializationInfo_t950877179 * __this, String_t* ___name0, Type_t * ___type1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Void System.Runtime.Serialization.SerializationException::.ctor(System.String)
extern "C" void SerializationException__ctor_m3862484944 (SerializationException_t3941511869 * __this, String_t* ___message0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Void System.Collections.Hashtable::AdjustThreshold()
extern "C" void Hashtable_AdjustThreshold_m3338727562 (Hashtable_t1853889766 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Void System.Collections.Hashtable/SyncHashtable::.ctor(System.Collections.Hashtable)
extern "C" void SyncHashtable__ctor_m988729399 (SyncHashtable_t3569774773 * __this, Hashtable_t1853889766 * ___host0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Void System.Collections.Hashtable::Rehash()
extern "C" void Hashtable_Rehash_m2389268722 (Hashtable_t1853889766 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Boolean System.Collections.Hashtable::TestPrime(System.Int32)
extern "C" bool Hashtable_TestPrime_m3839319309 (RuntimeObject * __this /* static, unused */, int32_t ___x0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Int32 System.Collections.Hashtable::CalcPrime(System.Int32)
extern "C" int32_t Hashtable_CalcPrime_m550773117 (RuntimeObject * __this /* static, unused */, int32_t ___x0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Void System.Collections.Hashtable/Enumerator::Reset()
extern "C" void Enumerator_Reset_m4274366540 (Enumerator_t661358686 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Void System.Collections.Hashtable/Enumerator::FailFast()
extern "C" void Enumerator_FailFast_m3955249002 (Enumerator_t661358686 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Void System.ArgumentNullException::.ctor()
extern "C" void ArgumentNullException__ctor_m2751210921 (ArgumentNullException_t1615371798 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Void System.Collections.Hashtable::CopyToArray(System.Array,System.Int32,System.Collections.Hashtable/EnumeratorMode)
extern "C" void Hashtable_CopyToArray_m320168007 (Hashtable_t1853889766 * __this, RuntimeArray * ___arr0, int32_t ___i1, int32_t ___mode2, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Void System.Collections.Hashtable/KeyMarker::.ctor()
extern "C" void KeyMarker__ctor_m2295185526 (KeyMarker_t2496412495 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Void System.Collections.SortedList::.ctor(System.Collections.IComparer,System.Int32)
extern "C" void SortedList__ctor_m449121548 (SortedList_t2427694641 * __this, RuntimeObject* ___comparer0, int32_t ___capacity1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Void System.Collections.SortedList::InitTable(System.Int32,System.Boolean)
extern "C" void SortedList_InitTable_m875730861 (SortedList_t2427694641 * __this, int32_t ___capacity0, bool ___forceSize1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Void System.Collections.SortedList/Enumerator::.ctor(System.Collections.SortedList,System.Collections.SortedList/EnumeratorMode)
extern "C" void Enumerator__ctor_m4264210349 (Enumerator_t3548462377 * __this, SortedList_t2427694641 * ___host0, int32_t ___mode1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Object System.Collections.SortedList::GetImpl(System.Object)
extern "C" RuntimeObject * SortedList_GetImpl_m3689246167 (SortedList_t2427694641 * __this, RuntimeObject * ___key0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Int32 System.Collections.SortedList::Find(System.Object)
extern "C" int32_t SortedList_Find_m3363512987 (SortedList_t2427694641 * __this, RuntimeObject * ___key0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Void System.Collections.SortedList::PutImpl(System.Object,System.Object,System.Boolean)
extern "C" void SortedList_PutImpl_m3408406199 (SortedList_t2427694641 * __this, RuntimeObject * ___key0, RuntimeObject * ___value1, bool ___overwrite2, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Void System.Collections.SortedList::.ctor(System.Collections.IDictionary,System.Collections.IComparer)
extern "C" void SortedList__ctor_m3676552745 (SortedList_t2427694641 * __this, RuntimeObject* ___d0, RuntimeObject* ___comparer1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.String System.String::Concat(System.Object[])
extern "C" String_t* String_Concat_m2971454694 (RuntimeObject * __this /* static, unused */, ObjectU5BU5D_t2843939325* ___args0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Void System.Collections.SortedList::EnsureCapacity(System.Int32,System.Int32)
extern "C" void SortedList_EnsureCapacity_m1354099314 (SortedList_t2427694641 * __this, int32_t ___n0, int32_t ___free1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Void System.Collections.SortedList/Enumerator::Reset()
extern "C" void Enumerator_Reset_m1367479817 (Enumerator_t3548462377 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Collections.DictionaryEntry System.Collections.SortedList/Enumerator::get_Entry()
extern "C" DictionaryEntry_t3123975638 Enumerator_get_Entry_m3561948123 (Enumerator_t3548462377 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Void System.Collections.Stack::.ctor(System.Int32)
extern "C" void Stack__ctor_m3503577671 (Stack_t2329662280 * __this, int32_t ___initialCapacity0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Int32 System.Math::Max(System.Int32,System.Int32)
extern "C" int32_t Math_Max_m1873195862 (RuntimeObject * __this /* static, unused */, int32_t ___val10, int32_t ___val21, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Void System.Collections.Stack::.ctor(System.Collections.ICollection)
extern "C" void Stack__ctor_m2602729586 (Stack_t2329662280 * __this, RuntimeObject* ___col0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Void System.Collections.Stack/Enumerator::.ctor(System.Collections.Stack)
extern "C" void Enumerator__ctor_m3362421874 (Enumerator_t2929709194 * __this, Stack_t2329662280 * ___s0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Void System.Collections.Stack::Resize(System.Int32)
extern "C" void Stack_Resize_m3124769495 (Stack_t2329662280 * __this, int32_t ___ncapacity0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Boolean System.Environment::get_IsRunningOnWindows()
extern "C" bool Environment_get_IsRunningOnWindows_m1804804030 (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Text.Encoding System.Text.Encoding::get_Default()
extern "C" Encoding_t1523322056 * Encoding_get_Default_m1632902165 (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.String System.Text.Encoding::InternalCodePage(System.Int32&)
extern "C" String_t* Encoding_InternalCodePage_m4154357846 (RuntimeObject * __this /* static, unused */, int32_t* ___code_page0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Text.Encoding System.Text.Encoding::get_UTF8Unmarked()
extern "C" Encoding_t1523322056 * Encoding_get_UTF8Unmarked_m3350637783 (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Void System.Console::SetEncodings(System.Text.Encoding,System.Text.Encoding)
extern "C" void Console_SetEncodings_m1501183766 (RuntimeObject * __this /* static, unused */, Encoding_t1523322056 * ___inputEncoding0, Encoding_t1523322056 * ___outputEncoding1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.IO.Stream System.Console::OpenStandardError(System.Int32)
extern "C" Stream_t1273022909 * Console_OpenStandardError_m294613724 (RuntimeObject * __this /* static, unused */, int32_t ___bufferSize0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Void System.IO.UnexceptionalStreamWriter::.ctor(System.IO.Stream,System.Text.Encoding)
extern "C" void UnexceptionalStreamWriter__ctor_m1310404920 (UnexceptionalStreamWriter_t2539306459 * __this, Stream_t1273022909 * ___stream0, Encoding_t1523322056 * ___encoding1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.IO.TextWriter System.IO.TextWriter::Synchronized(System.IO.TextWriter,System.Boolean)
extern "C" TextWriter_t3478189236 * TextWriter_Synchronized_m904006265 (RuntimeObject * __this /* static, unused */, TextWriter_t3478189236 * ___writer0, bool ___neverClose1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.IO.Stream System.Console::OpenStandardOutput(System.Int32)
extern "C" Stream_t1273022909 * Console_OpenStandardOutput_m1257556731 (RuntimeObject * __this /* static, unused */, int32_t ___bufferSize0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.IO.Stream System.Console::OpenStandardInput(System.Int32)
extern "C" Stream_t1273022909 * Console_OpenStandardInput_m3262421490 (RuntimeObject * __this /* static, unused */, int32_t ___bufferSize0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Void System.IO.UnexceptionalStreamReader::.ctor(System.IO.Stream,System.Text.Encoding)
extern "C" void UnexceptionalStreamReader__ctor_m1568917069 (UnexceptionalStreamReader_t2154476246 * __this, Stream_t1273022909 * ___stream0, Encoding_t1523322056 * ___encoding1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.IO.TextReader System.IO.TextReader::Synchronized(System.IO.TextReader)
extern "C" TextReader_t283511965 * TextReader_Synchronized_m3004980758 (RuntimeObject * __this /* static, unused */, TextReader_t283511965 * ___reader0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Void System.IO.FileStream::.ctor(System.IntPtr,System.IO.FileAccess,System.Boolean,System.Int32,System.Boolean,System.Boolean)
extern "C" void FileStream__ctor_m3087090334 (FileStream_t4292183065 * __this, intptr_t ___handle0, int32_t ___access1, bool ___ownsHandle2, int32_t ___bufferSize3, bool ___isAsync4, bool ___noBuffering5, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Void System.IO.NullStream::.ctor()
extern "C" void NullStream__ctor_m2992573138 (NullStream_t1684893697 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.IntPtr System.IO.MonoIO::get_ConsoleError()
extern "C" intptr_t MonoIO_get_ConsoleError_m1156784591 (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.IO.Stream System.Console::Open(System.IntPtr,System.IO.FileAccess,System.Int32)
extern "C" Stream_t1273022909 * Console_Open_m3077673205 (RuntimeObject * __this /* static, unused */, intptr_t ___handle0, int32_t ___access1, int32_t ___bufferSize2, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.IntPtr System.IO.MonoIO::get_ConsoleInput()
extern "C" intptr_t MonoIO_get_ConsoleInput_m610865495 (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.IntPtr System.IO.MonoIO::get_ConsoleOutput()
extern "C" intptr_t MonoIO_get_ConsoleOutput_m1601613425 (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Byte[] System.Convert::InternalFromBase64String(System.String,System.Boolean)
extern "C" ByteU5BU5D_t4116647657* Convert_InternalFromBase64String_m918800179 (RuntimeObject * __this /* static, unused */, String_t* ___str0, bool ___allowWhitespaceOnly1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.String System.Convert::ToBase64String(System.Byte[],System.Int32,System.Int32)
extern "C" String_t* Convert_ToBase64String_m1959325926 (RuntimeObject * __this /* static, unused */, ByteU5BU5D_t4116647657* ___inArray0, int32_t ___offset1, int32_t ___length2, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Byte[] System.Security.Cryptography.ToBase64Transform::InternalTransformFinalBlock(System.Byte[],System.Int32,System.Int32)
extern "C" ByteU5BU5D_t4116647657* ToBase64Transform_InternalTransformFinalBlock_m360524956 (RuntimeObject * __this /* static, unused */, ByteU5BU5D_t4116647657* ___inputBuffer0, int32_t ___inputOffset1, int32_t ___inputCount2, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Void System.Text.ASCIIEncoding::.ctor()
extern "C" void ASCIIEncoding__ctor_m1380190655 (ASCIIEncoding_t3446586211 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Void System.Decimal::.ctor(System.Int32)
extern "C" void Decimal__ctor_m1256289983 (Decimal_t2948259380 * __this, int32_t ___value0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Boolean System.Decimal::op_Inequality(System.Decimal,System.Decimal)
extern "C" bool Decimal_op_Inequality_m3543190500 (RuntimeObject * __this /* static, unused */, Decimal_t2948259380 ___d10, Decimal_t2948259380 ___d21, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Boolean System.Boolean::Parse(System.String)
extern "C" bool Boolean_Parse_m2370352694 (RuntimeObject * __this /* static, unused */, String_t* ___value0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Boolean System.Convert::ToBoolean(System.Object,System.IFormatProvider)
extern "C" bool Convert_ToBoolean_m4120735400 (RuntimeObject * __this /* static, unused */, RuntimeObject * ___value0, RuntimeObject* ___provider1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Boolean System.Decimal::op_GreaterThan(System.Decimal,System.Decimal)
extern "C" bool Decimal_op_GreaterThan_m627311519 (RuntimeObject * __this /* static, unused */, Decimal_t2948259380 ___d10, Decimal_t2948259380 ___d21, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Boolean System.Decimal::op_LessThan(System.Decimal,System.Decimal)
extern "C" bool Decimal_op_LessThan_m1273833514 (RuntimeObject * __this /* static, unused */, Decimal_t2948259380 ___d10, Decimal_t2948259380 ___d21, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Decimal System.Math::Round(System.Decimal)
extern "C" Decimal_t2948259380 Math_Round_m3018379666 (RuntimeObject * __this /* static, unused */, Decimal_t2948259380 ___d0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Byte System.Decimal::op_Explicit(System.Decimal)
extern "C" uint8_t Decimal_op_Explicit_m2848387298 (RuntimeObject * __this /* static, unused */, Decimal_t2948259380 ___value0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Boolean System.Double::IsNaN(System.Double)
extern "C" bool Double_IsNaN_m649024406 (RuntimeObject * __this /* static, unused */, double ___d0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Boolean System.Double::IsInfinity(System.Double)
extern "C" bool Double_IsInfinity_m820013146 (RuntimeObject * __this /* static, unused */, double ___d0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Boolean System.Single::IsInfinity(System.Single)
extern "C" bool Single_IsInfinity_m936314085 (RuntimeObject * __this /* static, unused */, float ___f0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Byte System.Byte::Parse(System.String)
extern "C" uint8_t Byte_Parse_m678312347 (RuntimeObject * __this /* static, unused */, String_t* ___s0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Byte System.Byte::Parse(System.String,System.IFormatProvider)
extern "C" uint8_t Byte_Parse_m2607942050 (RuntimeObject * __this /* static, unused */, String_t* ___s0, RuntimeObject* ___provider1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Void System.InvalidCastException::.ctor(System.String)
extern "C" void InvalidCastException__ctor_m318645277 (InvalidCastException_t3927145244 * __this, String_t* ___message0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Char System.Char::Parse(System.String)
extern "C" Il2CppChar Char_Parse_m82218915 (RuntimeObject * __this /* static, unused */, String_t* ___s0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.DateTime System.DateTime::Parse(System.String,System.IFormatProvider)
extern "C" DateTime_t3738529785 DateTime_Parse_m3729096069 (RuntimeObject * __this /* static, unused */, String_t* ___s0, RuntimeObject* ___provider1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Decimal System.Decimal::op_Implicit(System.Int32)
extern "C" Decimal_t2948259380 Decimal_op_Implicit_m1328901562 (RuntimeObject * __this /* static, unused */, int32_t ___value0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Decimal System.Decimal::op_Implicit(System.Byte)
extern "C" Decimal_t2948259380 Decimal_op_Implicit_m29414198 (RuntimeObject * __this /* static, unused */, uint8_t ___value0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Decimal System.Decimal::op_Explicit(System.Double)
extern "C" Decimal_t2948259380 Decimal_op_Explicit_m2433293820 (RuntimeObject * __this /* static, unused */, double ___value0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Decimal System.Decimal::op_Explicit(System.Single)
extern "C" Decimal_t2948259380 Decimal_op_Explicit_m2070069477 (RuntimeObject * __this /* static, unused */, float ___value0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Decimal System.Decimal::op_Implicit(System.Int64)
extern "C" Decimal_t2948259380 Decimal_op_Implicit_m1349849065 (RuntimeObject * __this /* static, unused */, int64_t ___value0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Decimal System.Decimal::op_Implicit(System.SByte)
extern "C" Decimal_t2948259380 Decimal_op_Implicit_m1920400487 (RuntimeObject * __this /* static, unused */, int8_t ___value0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Decimal System.Decimal::op_Implicit(System.Int16)
extern "C" Decimal_t2948259380 Decimal_op_Implicit_m3696395396 (RuntimeObject * __this /* static, unused */, int16_t ___value0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Decimal System.Decimal::Parse(System.String,System.IFormatProvider)
extern "C" Decimal_t2948259380 Decimal_Parse_m4154418249 (RuntimeObject * __this /* static, unused */, String_t* ___s0, RuntimeObject* ___provider1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Decimal System.Decimal::op_Implicit(System.UInt32)
extern "C" Decimal_t2948259380 Decimal_op_Implicit_m3873897383 (RuntimeObject * __this /* static, unused */, uint32_t ___value0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Decimal System.Decimal::op_Implicit(System.UInt64)
extern "C" Decimal_t2948259380 Decimal_op_Implicit_m2299919277 (RuntimeObject * __this /* static, unused */, uint64_t ___value0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Decimal System.Decimal::op_Implicit(System.UInt16)
extern "C" Decimal_t2948259380 Decimal_op_Implicit_m4256234411 (RuntimeObject * __this /* static, unused */, uint16_t ___value0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Double System.Decimal::op_Explicit(System.Decimal)
extern "C" double Decimal_op_Explicit_m2816896069 (RuntimeObject * __this /* static, unused */, Decimal_t2948259380 ___value0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Double System.Double::Parse(System.String,System.IFormatProvider)
extern "C" double Double_Parse_m3456374109 (RuntimeObject * __this /* static, unused */, String_t* ___s0, RuntimeObject* ___provider1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Int16 System.Decimal::op_Explicit(System.Decimal)
extern "C" int16_t Decimal_op_Explicit_m4231101593 (RuntimeObject * __this /* static, unused */, Decimal_t2948259380 ___value0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Int16 System.Int16::Parse(System.String,System.IFormatProvider)
extern "C" int16_t Int16_Parse_m138525169 (RuntimeObject * __this /* static, unused */, String_t* ___s0, RuntimeObject* ___provider1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Int16 System.Convert::ToInt16(System.Object,System.IFormatProvider)
extern "C" int16_t Convert_ToInt16_m1223489986 (RuntimeObject * __this /* static, unused */, RuntimeObject * ___value0, RuntimeObject* ___provider1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Int32 System.Decimal::op_Explicit(System.Decimal)
extern "C" int32_t Decimal_op_Explicit_m1842265407 (RuntimeObject * __this /* static, unused */, Decimal_t2948259380 ___value0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Int32 System.Int32::Parse(System.String,System.IFormatProvider)
extern "C" int32_t Int32_Parse_m2087562008 (RuntimeObject * __this /* static, unused */, String_t* ___s0, RuntimeObject* ___provider1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Int32 System.Convert::ToInt32(System.Object,System.IFormatProvider)
extern "C" int32_t Convert_ToInt32_m3211312035 (RuntimeObject * __this /* static, unused */, RuntimeObject * ___value0, RuntimeObject* ___provider1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Void System.Decimal::.ctor(System.Int32,System.Int32,System.Int32,System.Boolean,System.Byte)
extern "C" void Decimal__ctor_m3650533794 (Decimal_t2948259380 * __this, int32_t ___lo0, int32_t ___mid1, int32_t ___hi2, bool ___isNegative3, uint8_t ___scale4, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Int64 System.Decimal::op_Explicit(System.Decimal)
extern "C" int64_t Decimal_op_Explicit_m438967917 (RuntimeObject * __this /* static, unused */, Decimal_t2948259380 ___value0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Int64 System.Int64::Parse(System.String)
extern "C" int64_t Int64_Parse_m662659148 (RuntimeObject * __this /* static, unused */, String_t* ___s0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Int64 System.Int64::Parse(System.String,System.IFormatProvider)
extern "C" int64_t Int64_Parse_m1331690076 (RuntimeObject * __this /* static, unused */, String_t* ___s0, RuntimeObject* ___provider1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Int64 System.Convert::ToInt64(System.Object,System.IFormatProvider)
extern "C" int64_t Convert_ToInt64_m2643251823 (RuntimeObject * __this /* static, unused */, RuntimeObject * ___value0, RuntimeObject* ___provider1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.SByte System.Decimal::op_Explicit(System.Decimal)
extern "C" int8_t Decimal_op_Explicit_m1824467517 (RuntimeObject * __this /* static, unused */, Decimal_t2948259380 ___value0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.SByte System.SByte::Parse(System.String,System.IFormatProvider)
extern "C" int8_t SByte_Parse_m3250497834 (RuntimeObject * __this /* static, unused */, String_t* ___s0, RuntimeObject* ___provider1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Single System.Decimal::op_Explicit(System.Decimal)
extern "C" float Decimal_op_Explicit_m3488287464 (RuntimeObject * __this /* static, unused */, Decimal_t2948259380 ___value0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.Single System.Single::Parse(System.String,System.IFormatProvider)
extern "C" float Single_Parse_m3840407583 (RuntimeObject * __this /* static, unused */, String_t* ___s0, RuntimeObject* ___provider1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.String System.Convert::ToString(System.Object,System.IFormatProvider)
extern "C" String_t* Convert_ToString_m1854379141 (RuntimeObject * __this /* static, unused */, RuntimeObject * ___value0, RuntimeObject* ___provider1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.UInt16 System.Decimal::op_Explicit(System.Decimal)
extern "C" uint16_t Decimal_op_Explicit_m3716368008 (RuntimeObject * __this /* static, unused */, Decimal_t2948259380 ___value0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.UInt16 System.UInt16::Parse(System.String,System.IFormatProvider)
extern "C" uint16_t UInt16_Parse_m1613088384 (RuntimeObject * __this /* static, unused */, String_t* ___s0, RuntimeObject* ___provider1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.UInt32 System.Decimal::op_Explicit(System.Decimal)
extern "C" uint32_t Decimal_op_Explicit_m1639916169 (RuntimeObject * __this /* static, unused */, Decimal_t2948259380 ___value0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.UInt32 System.UInt32::Parse(System.String,System.IFormatProvider)
extern "C" uint32_t UInt32_Parse_m1373460382 (RuntimeObject * __this /* static, unused */, String_t* ___s0, RuntimeObject* ___provider1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.UInt64 System.Decimal::op_Explicit(System.Decimal)
extern "C" uint64_t Decimal_op_Explicit_m1503081942 (RuntimeObject * __this /* static, unused */, Decimal_t2948259380 ___value0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.UInt64 System.UInt64::Parse(System.String,System.IFormatProvider)
extern "C" uint64_t UInt64_Parse_m819899889 (RuntimeObject * __this /* static, unused */, String_t* ___s0, RuntimeObject* ___provider1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
// System.UInt64 System.Convert::ToUInt64(System.Object,System.IFormatProvider)
extern "C" uint64_t Convert_ToUInt64_m3170916409 (RuntimeObject * __this /* static, unused */, RuntimeObject * ___value0, RuntimeObject* ___provider1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR;
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void Mono.Security.X509.PKCS12/DeriveBytes::.ctor()
extern "C" void DeriveBytes__ctor_m3611803810 (DeriveBytes_t1492915135 * __this, const RuntimeMethod* method)
{
{
Object__ctor_m297566312(__this, /*hidden argument*/NULL);
return;
}
}
// System.Void Mono.Security.X509.PKCS12/DeriveBytes::.cctor()
extern "C" void DeriveBytes__cctor_m1212925033 (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (DeriveBytes__cctor_m1212925033_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
ByteU5BU5D_t4116647657* L_0 = ((ByteU5BU5D_t4116647657*)SZArrayNew(ByteU5BU5D_t4116647657_il2cpp_TypeInfo_var, (uint32_t)((int32_t)64)));
RuntimeFieldHandle_t1871169219 L_1 = { reinterpret_cast<intptr_t> (U3CPrivateImplementationDetailsU3E_t3057255361____U24U24fieldU2D20_12_FieldInfo_var) };
RuntimeHelpers_InitializeArray_m3117905507(NULL /*static, unused*/, (RuntimeArray *)(RuntimeArray *)L_0, L_1, /*hidden argument*/NULL);
((DeriveBytes_t1492915135_StaticFields*)il2cpp_codegen_static_fields_for(DeriveBytes_t1492915135_il2cpp_TypeInfo_var))->set_keyDiversifier_0(L_0);
ByteU5BU5D_t4116647657* L_2 = ((ByteU5BU5D_t4116647657*)SZArrayNew(ByteU5BU5D_t4116647657_il2cpp_TypeInfo_var, (uint32_t)((int32_t)64)));
RuntimeFieldHandle_t1871169219 L_3 = { reinterpret_cast<intptr_t> (U3CPrivateImplementationDetailsU3E_t3057255361____U24U24fieldU2D21_13_FieldInfo_var) };
RuntimeHelpers_InitializeArray_m3117905507(NULL /*static, unused*/, (RuntimeArray *)(RuntimeArray *)L_2, L_3, /*hidden argument*/NULL);
((DeriveBytes_t1492915135_StaticFields*)il2cpp_codegen_static_fields_for(DeriveBytes_t1492915135_il2cpp_TypeInfo_var))->set_ivDiversifier_1(L_2);
ByteU5BU5D_t4116647657* L_4 = ((ByteU5BU5D_t4116647657*)SZArrayNew(ByteU5BU5D_t4116647657_il2cpp_TypeInfo_var, (uint32_t)((int32_t)64)));
RuntimeFieldHandle_t1871169219 L_5 = { reinterpret_cast<intptr_t> (U3CPrivateImplementationDetailsU3E_t3057255361____U24U24fieldU2D22_14_FieldInfo_var) };
RuntimeHelpers_InitializeArray_m3117905507(NULL /*static, unused*/, (RuntimeArray *)(RuntimeArray *)L_4, L_5, /*hidden argument*/NULL);
((DeriveBytes_t1492915135_StaticFields*)il2cpp_codegen_static_fields_for(DeriveBytes_t1492915135_il2cpp_TypeInfo_var))->set_macDiversifier_2(L_4);
return;
}
}
// System.Void Mono.Security.X509.PKCS12/DeriveBytes::set_HashName(System.String)
extern "C" void DeriveBytes_set_HashName_m3752780137 (DeriveBytes_t1492915135 * __this, String_t* ___value0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___value0;
__this->set__hashName_3(L_0);
return;
}
}
// System.Void Mono.Security.X509.PKCS12/DeriveBytes::set_IterationCount(System.Int32)
extern "C" void DeriveBytes_set_IterationCount_m3235108425 (DeriveBytes_t1492915135 * __this, int32_t ___value0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___value0;
__this->set__iterations_4(L_0);
return;
}
}
// System.Void Mono.Security.X509.PKCS12/DeriveBytes::set_Password(System.Byte[])
extern "C" void DeriveBytes_set_Password_m3005258189 (DeriveBytes_t1492915135 * __this, ByteU5BU5D_t4116647657* ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (DeriveBytes_set_Password_m3005258189_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
ByteU5BU5D_t4116647657* L_0 = ___value0;
if (L_0)
{
goto IL_0017;
}
}
{
__this->set__password_5(((ByteU5BU5D_t4116647657*)SZArrayNew(ByteU5BU5D_t4116647657_il2cpp_TypeInfo_var, (uint32_t)0)));
goto IL_0028;
}
IL_0017:
{
ByteU5BU5D_t4116647657* L_1 = ___value0;
RuntimeObject * L_2 = Array_Clone_m2672907798((RuntimeArray *)(RuntimeArray *)L_1, /*hidden argument*/NULL);
__this->set__password_5(((ByteU5BU5D_t4116647657*)Castclass((RuntimeObject*)L_2, ByteU5BU5D_t4116647657_il2cpp_TypeInfo_var)));
}
IL_0028:
{
return;
}
}
// System.Void Mono.Security.X509.PKCS12/DeriveBytes::set_Salt(System.Byte[])
extern "C" void DeriveBytes_set_Salt_m441577179 (DeriveBytes_t1492915135 * __this, ByteU5BU5D_t4116647657* ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (DeriveBytes_set_Salt_m441577179_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
ByteU5BU5D_t4116647657* L_0 = ___value0;
if (!L_0)
{
goto IL_001c;
}
}
{
ByteU5BU5D_t4116647657* L_1 = ___value0;
RuntimeObject * L_2 = Array_Clone_m2672907798((RuntimeArray *)(RuntimeArray *)L_1, /*hidden argument*/NULL);
__this->set__salt_6(((ByteU5BU5D_t4116647657*)Castclass((RuntimeObject*)L_2, ByteU5BU5D_t4116647657_il2cpp_TypeInfo_var)));
goto IL_0023;
}
IL_001c:
{
__this->set__salt_6((ByteU5BU5D_t4116647657*)NULL);
}
IL_0023:
{
return;
}
}
// System.Void Mono.Security.X509.PKCS12/DeriveBytes::Adjust(System.Byte[],System.Int32,System.Byte[])
extern "C" void DeriveBytes_Adjust_m640796917 (DeriveBytes_t1492915135 * __this, ByteU5BU5D_t4116647657* ___a0, int32_t ___aOff1, ByteU5BU5D_t4116647657* ___b2, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
{
ByteU5BU5D_t4116647657* L_0 = ___b2;
ByteU5BU5D_t4116647657* L_1 = ___b2;
int32_t L_2 = ((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_1)->max_length)))), (int32_t)1));
uint8_t L_3 = (L_0)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_2));
ByteU5BU5D_t4116647657* L_4 = ___a0;
int32_t L_5 = ___aOff1;
ByteU5BU5D_t4116647657* L_6 = ___b2;
int32_t L_7 = ((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_5, (int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_6)->max_length)))))), (int32_t)1));
uint8_t L_8 = (L_4)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_7));
V_0 = ((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)((int32_t)L_3&(int32_t)((int32_t)255))), (int32_t)((int32_t)((int32_t)L_8&(int32_t)((int32_t)255))))), (int32_t)1));
ByteU5BU5D_t4116647657* L_9 = ___a0;
int32_t L_10 = ___aOff1;
ByteU5BU5D_t4116647657* L_11 = ___b2;
int32_t L_12 = V_0;
(L_9)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_10, (int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_11)->max_length)))))), (int32_t)1))), (uint8_t)(((int32_t)((uint8_t)L_12))));
int32_t L_13 = V_0;
V_0 = ((int32_t)((int32_t)L_13>>(int32_t)8));
ByteU5BU5D_t4116647657* L_14 = ___b2;
V_1 = ((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_14)->max_length)))), (int32_t)2));
goto IL_0061;
}
IL_003a:
{
int32_t L_15 = V_0;
ByteU5BU5D_t4116647657* L_16 = ___b2;
int32_t L_17 = V_1;
int32_t L_18 = L_17;
uint8_t L_19 = (L_16)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_18));
ByteU5BU5D_t4116647657* L_20 = ___a0;
int32_t L_21 = ___aOff1;
int32_t L_22 = V_1;
int32_t L_23 = ((int32_t)il2cpp_codegen_add((int32_t)L_21, (int32_t)L_22));
uint8_t L_24 = (L_20)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_23));
V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_15, (int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)((int32_t)L_19&(int32_t)((int32_t)255))), (int32_t)((int32_t)((int32_t)L_24&(int32_t)((int32_t)255)))))));
ByteU5BU5D_t4116647657* L_25 = ___a0;
int32_t L_26 = ___aOff1;
int32_t L_27 = V_1;
int32_t L_28 = V_0;
(L_25)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(((int32_t)il2cpp_codegen_add((int32_t)L_26, (int32_t)L_27))), (uint8_t)(((int32_t)((uint8_t)L_28))));
int32_t L_29 = V_0;
V_0 = ((int32_t)((int32_t)L_29>>(int32_t)8));
int32_t L_30 = V_1;
V_1 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_30, (int32_t)1));
}
IL_0061:
{
int32_t L_31 = V_1;
if ((((int32_t)L_31) >= ((int32_t)0)))
{
goto IL_003a;
}
}
{
return;
}
}
// System.Byte[] Mono.Security.X509.PKCS12/DeriveBytes::Derive(System.Byte[],System.Int32)
extern "C" ByteU5BU5D_t4116647657* DeriveBytes_Derive_m408582823 (DeriveBytes_t1492915135 * __this, ByteU5BU5D_t4116647657* ___diversifier0, int32_t ___n1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (DeriveBytes_Derive_m408582823_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
HashAlgorithm_t1432317219 * V_0 = NULL;
int32_t V_1 = 0;
int32_t V_2 = 0;
ByteU5BU5D_t4116647657* V_3 = NULL;
ByteU5BU5D_t4116647657* V_4 = NULL;
int32_t V_5 = 0;
ByteU5BU5D_t4116647657* V_6 = NULL;
int32_t V_7 = 0;
ByteU5BU5D_t4116647657* V_8 = NULL;
ByteU5BU5D_t4116647657* V_9 = NULL;
int32_t V_10 = 0;
int32_t V_11 = 0;
ByteU5BU5D_t4116647657* V_12 = NULL;
int32_t V_13 = 0;
int32_t V_14 = 0;
int32_t V_15 = 0;
{
String_t* L_0 = __this->get__hashName_3();
HashAlgorithm_t1432317219 * L_1 = HashAlgorithm_Create_m644612360(NULL /*static, unused*/, L_0, /*hidden argument*/NULL);
V_0 = L_1;
HashAlgorithm_t1432317219 * L_2 = V_0;
int32_t L_3 = VirtFuncInvoker0< int32_t >::Invoke(12 /* System.Int32 System.Security.Cryptography.HashAlgorithm::get_HashSize() */, L_2);
V_1 = ((int32_t)((int32_t)L_3>>(int32_t)3));
V_2 = ((int32_t)64);
int32_t L_4 = ___n1;
V_3 = ((ByteU5BU5D_t4116647657*)SZArrayNew(ByteU5BU5D_t4116647657_il2cpp_TypeInfo_var, (uint32_t)L_4));
ByteU5BU5D_t4116647657* L_5 = __this->get__salt_6();
if (!L_5)
{
goto IL_0083;
}
}
{
ByteU5BU5D_t4116647657* L_6 = __this->get__salt_6();
if (!(((int32_t)((int32_t)(((RuntimeArray *)L_6)->max_length)))))
{
goto IL_0083;
}
}
{
int32_t L_7 = V_2;
ByteU5BU5D_t4116647657* L_8 = __this->get__salt_6();
int32_t L_9 = V_2;
int32_t L_10 = V_2;
V_4 = ((ByteU5BU5D_t4116647657*)SZArrayNew(ByteU5BU5D_t4116647657_il2cpp_TypeInfo_var, (uint32_t)((int32_t)il2cpp_codegen_multiply((int32_t)L_7, (int32_t)((int32_t)((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_add((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_8)->max_length)))), (int32_t)L_9)), (int32_t)1))/(int32_t)L_10))))));
V_5 = 0;
goto IL_0073;
}
IL_0056:
{
ByteU5BU5D_t4116647657* L_11 = V_4;
int32_t L_12 = V_5;
ByteU5BU5D_t4116647657* L_13 = __this->get__salt_6();
int32_t L_14 = V_5;
ByteU5BU5D_t4116647657* L_15 = __this->get__salt_6();
int32_t L_16 = ((int32_t)((int32_t)L_14%(int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_15)->max_length))))));
uint8_t L_17 = (L_13)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_16));
(L_11)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(L_12), (uint8_t)L_17);
int32_t L_18 = V_5;
V_5 = ((int32_t)il2cpp_codegen_add((int32_t)L_18, (int32_t)1));
}
IL_0073:
{
int32_t L_19 = V_5;
ByteU5BU5D_t4116647657* L_20 = V_4;
if ((!(((uint32_t)L_19) == ((uint32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_20)->max_length))))))))
{
goto IL_0056;
}
}
{
goto IL_008b;
}
IL_0083:
{
V_4 = ((ByteU5BU5D_t4116647657*)SZArrayNew(ByteU5BU5D_t4116647657_il2cpp_TypeInfo_var, (uint32_t)0));
}
IL_008b:
{
ByteU5BU5D_t4116647657* L_21 = __this->get__password_5();
if (!L_21)
{
goto IL_00ef;
}
}
{
ByteU5BU5D_t4116647657* L_22 = __this->get__password_5();
if (!(((int32_t)((int32_t)(((RuntimeArray *)L_22)->max_length)))))
{
goto IL_00ef;
}
}
{
int32_t L_23 = V_2;
ByteU5BU5D_t4116647657* L_24 = __this->get__password_5();
int32_t L_25 = V_2;
int32_t L_26 = V_2;
V_6 = ((ByteU5BU5D_t4116647657*)SZArrayNew(ByteU5BU5D_t4116647657_il2cpp_TypeInfo_var, (uint32_t)((int32_t)il2cpp_codegen_multiply((int32_t)L_23, (int32_t)((int32_t)((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_add((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_24)->max_length)))), (int32_t)L_25)), (int32_t)1))/(int32_t)L_26))))));
V_7 = 0;
goto IL_00df;
}
IL_00c2:
{
ByteU5BU5D_t4116647657* L_27 = V_6;
int32_t L_28 = V_7;
ByteU5BU5D_t4116647657* L_29 = __this->get__password_5();
int32_t L_30 = V_7;
ByteU5BU5D_t4116647657* L_31 = __this->get__password_5();
int32_t L_32 = ((int32_t)((int32_t)L_30%(int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_31)->max_length))))));
uint8_t L_33 = (L_29)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_32));
(L_27)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(L_28), (uint8_t)L_33);
int32_t L_34 = V_7;
V_7 = ((int32_t)il2cpp_codegen_add((int32_t)L_34, (int32_t)1));
}
IL_00df:
{
int32_t L_35 = V_7;
ByteU5BU5D_t4116647657* L_36 = V_6;
if ((!(((uint32_t)L_35) == ((uint32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_36)->max_length))))))))
{
goto IL_00c2;
}
}
{
goto IL_00f7;
}
IL_00ef:
{
V_6 = ((ByteU5BU5D_t4116647657*)SZArrayNew(ByteU5BU5D_t4116647657_il2cpp_TypeInfo_var, (uint32_t)0));
}
IL_00f7:
{
ByteU5BU5D_t4116647657* L_37 = V_4;
ByteU5BU5D_t4116647657* L_38 = V_6;
V_8 = ((ByteU5BU5D_t4116647657*)SZArrayNew(ByteU5BU5D_t4116647657_il2cpp_TypeInfo_var, (uint32_t)((int32_t)il2cpp_codegen_add((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_37)->max_length)))), (int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_38)->max_length))))))));
ByteU5BU5D_t4116647657* L_39 = V_4;
ByteU5BU5D_t4116647657* L_40 = V_8;
ByteU5BU5D_t4116647657* L_41 = V_4;
Buffer_BlockCopy_m2884209081(NULL /*static, unused*/, (RuntimeArray *)(RuntimeArray *)L_39, 0, (RuntimeArray *)(RuntimeArray *)L_40, 0, (((int32_t)((int32_t)(((RuntimeArray *)L_41)->max_length)))), /*hidden argument*/NULL);
ByteU5BU5D_t4116647657* L_42 = V_6;
ByteU5BU5D_t4116647657* L_43 = V_8;
ByteU5BU5D_t4116647657* L_44 = V_4;
ByteU5BU5D_t4116647657* L_45 = V_6;
Buffer_BlockCopy_m2884209081(NULL /*static, unused*/, (RuntimeArray *)(RuntimeArray *)L_42, 0, (RuntimeArray *)(RuntimeArray *)L_43, (((int32_t)((int32_t)(((RuntimeArray *)L_44)->max_length)))), (((int32_t)((int32_t)(((RuntimeArray *)L_45)->max_length)))), /*hidden argument*/NULL);
int32_t L_46 = V_2;
V_9 = ((ByteU5BU5D_t4116647657*)SZArrayNew(ByteU5BU5D_t4116647657_il2cpp_TypeInfo_var, (uint32_t)L_46));
int32_t L_47 = ___n1;
int32_t L_48 = V_1;
int32_t L_49 = V_1;
V_10 = ((int32_t)((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_47, (int32_t)L_48)), (int32_t)1))/(int32_t)L_49));
V_11 = 1;
goto IL_0226;
}
IL_0141:
{
HashAlgorithm_t1432317219 * L_50 = V_0;
ByteU5BU5D_t4116647657* L_51 = ___diversifier0;
ByteU5BU5D_t4116647657* L_52 = ___diversifier0;
ByteU5BU5D_t4116647657* L_53 = ___diversifier0;
HashAlgorithm_TransformBlock_m4006041779(L_50, L_51, 0, (((int32_t)((int32_t)(((RuntimeArray *)L_52)->max_length)))), L_53, 0, /*hidden argument*/NULL);
HashAlgorithm_t1432317219 * L_54 = V_0;
ByteU5BU5D_t4116647657* L_55 = V_8;
ByteU5BU5D_t4116647657* L_56 = V_8;
HashAlgorithm_TransformFinalBlock_m3005451348(L_54, L_55, 0, (((int32_t)((int32_t)(((RuntimeArray *)L_56)->max_length)))), /*hidden argument*/NULL);
HashAlgorithm_t1432317219 * L_57 = V_0;
ByteU5BU5D_t4116647657* L_58 = VirtFuncInvoker0< ByteU5BU5D_t4116647657* >::Invoke(9 /* System.Byte[] System.Security.Cryptography.HashAlgorithm::get_Hash() */, L_57);
V_12 = L_58;
HashAlgorithm_t1432317219 * L_59 = V_0;
VirtActionInvoker0::Invoke(13 /* System.Void System.Security.Cryptography.HashAlgorithm::Initialize() */, L_59);
V_13 = 1;
goto IL_0188;
}
IL_0173:
{
HashAlgorithm_t1432317219 * L_60 = V_0;
ByteU5BU5D_t4116647657* L_61 = V_12;
ByteU5BU5D_t4116647657* L_62 = V_12;
ByteU5BU5D_t4116647657* L_63 = HashAlgorithm_ComputeHash_m2044824070(L_60, L_61, 0, (((int32_t)((int32_t)(((RuntimeArray *)L_62)->max_length)))), /*hidden argument*/NULL);
V_12 = L_63;
int32_t L_64 = V_13;
V_13 = ((int32_t)il2cpp_codegen_add((int32_t)L_64, (int32_t)1));
}
IL_0188:
{
int32_t L_65 = V_13;
int32_t L_66 = __this->get__iterations_4();
if ((!(((uint32_t)L_65) == ((uint32_t)L_66))))
{
goto IL_0173;
}
}
{
V_14 = 0;
goto IL_01b2;
}
IL_019d:
{
ByteU5BU5D_t4116647657* L_67 = V_9;
int32_t L_68 = V_14;
ByteU5BU5D_t4116647657* L_69 = V_12;
int32_t L_70 = V_14;
ByteU5BU5D_t4116647657* L_71 = V_12;
int32_t L_72 = ((int32_t)((int32_t)L_70%(int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_71)->max_length))))));
uint8_t L_73 = (L_69)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_72));
(L_67)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(L_68), (uint8_t)L_73);
int32_t L_74 = V_14;
V_14 = ((int32_t)il2cpp_codegen_add((int32_t)L_74, (int32_t)1));
}
IL_01b2:
{
int32_t L_75 = V_14;
ByteU5BU5D_t4116647657* L_76 = V_9;
if ((!(((uint32_t)L_75) == ((uint32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_76)->max_length))))))))
{
goto IL_019d;
}
}
{
V_15 = 0;
goto IL_01d9;
}
IL_01c5:
{
ByteU5BU5D_t4116647657* L_77 = V_8;
int32_t L_78 = V_15;
int32_t L_79 = V_2;
ByteU5BU5D_t4116647657* L_80 = V_9;
DeriveBytes_Adjust_m640796917(__this, L_77, ((int32_t)il2cpp_codegen_multiply((int32_t)L_78, (int32_t)L_79)), L_80, /*hidden argument*/NULL);
int32_t L_81 = V_15;
V_15 = ((int32_t)il2cpp_codegen_add((int32_t)L_81, (int32_t)1));
}
IL_01d9:
{
int32_t L_82 = V_15;
ByteU5BU5D_t4116647657* L_83 = V_8;
int32_t L_84 = V_2;
if ((!(((uint32_t)L_82) == ((uint32_t)((int32_t)((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_83)->max_length))))/(int32_t)L_84))))))
{
goto IL_01c5;
}
}
{
int32_t L_85 = V_11;
int32_t L_86 = V_10;
if ((!(((uint32_t)L_85) == ((uint32_t)L_86))))
{
goto IL_020d;
}
}
{
ByteU5BU5D_t4116647657* L_87 = V_12;
ByteU5BU5D_t4116647657* L_88 = V_3;
int32_t L_89 = V_11;
int32_t L_90 = V_1;
ByteU5BU5D_t4116647657* L_91 = V_3;
int32_t L_92 = V_11;
int32_t L_93 = V_1;
Buffer_BlockCopy_m2884209081(NULL /*static, unused*/, (RuntimeArray *)(RuntimeArray *)L_87, 0, (RuntimeArray *)(RuntimeArray *)L_88, ((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_89, (int32_t)1)), (int32_t)L_90)), ((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_91)->max_length)))), (int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_92, (int32_t)1)), (int32_t)L_93)))), /*hidden argument*/NULL);
goto IL_0220;
}
IL_020d:
{
ByteU5BU5D_t4116647657* L_94 = V_12;
ByteU5BU5D_t4116647657* L_95 = V_3;
int32_t L_96 = V_11;
int32_t L_97 = V_1;
ByteU5BU5D_t4116647657* L_98 = V_12;
Buffer_BlockCopy_m2884209081(NULL /*static, unused*/, (RuntimeArray *)(RuntimeArray *)L_94, 0, (RuntimeArray *)(RuntimeArray *)L_95, ((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_96, (int32_t)1)), (int32_t)L_97)), (((int32_t)((int32_t)(((RuntimeArray *)L_98)->max_length)))), /*hidden argument*/NULL);
}
IL_0220:
{
int32_t L_99 = V_11;
V_11 = ((int32_t)il2cpp_codegen_add((int32_t)L_99, (int32_t)1));
}
IL_0226:
{
int32_t L_100 = V_11;
int32_t L_101 = V_10;
if ((((int32_t)L_100) <= ((int32_t)L_101)))
{
goto IL_0141;
}
}
{
ByteU5BU5D_t4116647657* L_102 = V_3;
return L_102;
}
}
// System.Byte[] Mono.Security.X509.PKCS12/DeriveBytes::DeriveKey(System.Int32)
extern "C" ByteU5BU5D_t4116647657* DeriveBytes_DeriveKey_m2238010581 (DeriveBytes_t1492915135 * __this, int32_t ___size0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (DeriveBytes_DeriveKey_m2238010581_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(DeriveBytes_t1492915135_il2cpp_TypeInfo_var);
ByteU5BU5D_t4116647657* L_0 = ((DeriveBytes_t1492915135_StaticFields*)il2cpp_codegen_static_fields_for(DeriveBytes_t1492915135_il2cpp_TypeInfo_var))->get_keyDiversifier_0();
int32_t L_1 = ___size0;
ByteU5BU5D_t4116647657* L_2 = DeriveBytes_Derive_m408582823(__this, L_0, L_1, /*hidden argument*/NULL);
return L_2;
}
}
// System.Byte[] Mono.Security.X509.PKCS12/DeriveBytes::DeriveIV(System.Int32)
extern "C" ByteU5BU5D_t4116647657* DeriveBytes_DeriveIV_m3639813821 (DeriveBytes_t1492915135 * __this, int32_t ___size0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (DeriveBytes_DeriveIV_m3639813821_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(DeriveBytes_t1492915135_il2cpp_TypeInfo_var);
ByteU5BU5D_t4116647657* L_0 = ((DeriveBytes_t1492915135_StaticFields*)il2cpp_codegen_static_fields_for(DeriveBytes_t1492915135_il2cpp_TypeInfo_var))->get_ivDiversifier_1();
int32_t L_1 = ___size0;
ByteU5BU5D_t4116647657* L_2 = DeriveBytes_Derive_m408582823(__this, L_0, L_1, /*hidden argument*/NULL);
return L_2;
}
}
// System.Byte[] Mono.Security.X509.PKCS12/DeriveBytes::DeriveMAC(System.Int32)
extern "C" ByteU5BU5D_t4116647657* DeriveBytes_DeriveMAC_m694919248 (DeriveBytes_t1492915135 * __this, int32_t ___size0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (DeriveBytes_DeriveMAC_m694919248_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(DeriveBytes_t1492915135_il2cpp_TypeInfo_var);
ByteU5BU5D_t4116647657* L_0 = ((DeriveBytes_t1492915135_StaticFields*)il2cpp_codegen_static_fields_for(DeriveBytes_t1492915135_il2cpp_TypeInfo_var))->get_macDiversifier_2();
int32_t L_1 = ___size0;
ByteU5BU5D_t4116647657* L_2 = DeriveBytes_Derive_m408582823(__this, L_0, L_1, /*hidden argument*/NULL);
return L_2;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void Mono.Security.X509.SafeBag::.ctor(System.String,Mono.Security.ASN1)
extern "C" void SafeBag__ctor_m369012969 (SafeBag_t3961248199 * __this, String_t* ___bagOID0, ASN1_t2114160832 * ___asn11, const RuntimeMethod* method)
{
{
Object__ctor_m297566312(__this, /*hidden argument*/NULL);
String_t* L_0 = ___bagOID0;
__this->set__bagOID_0(L_0);
ASN1_t2114160832 * L_1 = ___asn11;
__this->set__asn1_1(L_1);
return;
}
}
// System.String Mono.Security.X509.SafeBag::get_BagOID()
extern "C" String_t* SafeBag_get_BagOID_m2165567310 (SafeBag_t3961248199 * __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->get__bagOID_0();
return L_0;
}
}
// Mono.Security.ASN1 Mono.Security.X509.SafeBag::get_ASN1()
extern "C" ASN1_t2114160832 * SafeBag_get_ASN1_m3167501969 (SafeBag_t3961248199 * __this, const RuntimeMethod* method)
{
{
ASN1_t2114160832 * L_0 = __this->get__asn1_1();
return L_0;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void Mono.Security.X509.X501::.cctor()
extern "C" void X501__cctor_m1166912714 (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (X501__cctor_m1166912714_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
ByteU5BU5D_t4116647657* L_0 = ((ByteU5BU5D_t4116647657*)SZArrayNew(ByteU5BU5D_t4116647657_il2cpp_TypeInfo_var, (uint32_t)3));
(L_0)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(0), (uint8_t)((int32_t)85));
ByteU5BU5D_t4116647657* L_1 = L_0;
(L_1)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(1), (uint8_t)4);
ByteU5BU5D_t4116647657* L_2 = L_1;
(L_2)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(2), (uint8_t)6);
((X501_t1758824425_StaticFields*)il2cpp_codegen_static_fields_for(X501_t1758824425_il2cpp_TypeInfo_var))->set_countryName_0(L_2);
ByteU5BU5D_t4116647657* L_3 = ((ByteU5BU5D_t4116647657*)SZArrayNew(ByteU5BU5D_t4116647657_il2cpp_TypeInfo_var, (uint32_t)3));
(L_3)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(0), (uint8_t)((int32_t)85));
ByteU5BU5D_t4116647657* L_4 = L_3;
(L_4)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(1), (uint8_t)4);
ByteU5BU5D_t4116647657* L_5 = L_4;
(L_5)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(2), (uint8_t)((int32_t)10));
((X501_t1758824425_StaticFields*)il2cpp_codegen_static_fields_for(X501_t1758824425_il2cpp_TypeInfo_var))->set_organizationName_1(L_5);
ByteU5BU5D_t4116647657* L_6 = ((ByteU5BU5D_t4116647657*)SZArrayNew(ByteU5BU5D_t4116647657_il2cpp_TypeInfo_var, (uint32_t)3));
(L_6)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(0), (uint8_t)((int32_t)85));
ByteU5BU5D_t4116647657* L_7 = L_6;
(L_7)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(1), (uint8_t)4);
ByteU5BU5D_t4116647657* L_8 = L_7;
(L_8)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(2), (uint8_t)((int32_t)11));
((X501_t1758824425_StaticFields*)il2cpp_codegen_static_fields_for(X501_t1758824425_il2cpp_TypeInfo_var))->set_organizationalUnitName_2(L_8);
ByteU5BU5D_t4116647657* L_9 = ((ByteU5BU5D_t4116647657*)SZArrayNew(ByteU5BU5D_t4116647657_il2cpp_TypeInfo_var, (uint32_t)3));
(L_9)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(0), (uint8_t)((int32_t)85));
ByteU5BU5D_t4116647657* L_10 = L_9;
(L_10)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(1), (uint8_t)4);
ByteU5BU5D_t4116647657* L_11 = L_10;
(L_11)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(2), (uint8_t)3);
((X501_t1758824425_StaticFields*)il2cpp_codegen_static_fields_for(X501_t1758824425_il2cpp_TypeInfo_var))->set_commonName_3(L_11);
ByteU5BU5D_t4116647657* L_12 = ((ByteU5BU5D_t4116647657*)SZArrayNew(ByteU5BU5D_t4116647657_il2cpp_TypeInfo_var, (uint32_t)3));
(L_12)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(0), (uint8_t)((int32_t)85));
ByteU5BU5D_t4116647657* L_13 = L_12;
(L_13)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(1), (uint8_t)4);
ByteU5BU5D_t4116647657* L_14 = L_13;
(L_14)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(2), (uint8_t)7);
((X501_t1758824425_StaticFields*)il2cpp_codegen_static_fields_for(X501_t1758824425_il2cpp_TypeInfo_var))->set_localityName_4(L_14);
ByteU5BU5D_t4116647657* L_15 = ((ByteU5BU5D_t4116647657*)SZArrayNew(ByteU5BU5D_t4116647657_il2cpp_TypeInfo_var, (uint32_t)3));
(L_15)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(0), (uint8_t)((int32_t)85));
ByteU5BU5D_t4116647657* L_16 = L_15;
(L_16)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(1), (uint8_t)4);
ByteU5BU5D_t4116647657* L_17 = L_16;
(L_17)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(2), (uint8_t)8);
((X501_t1758824425_StaticFields*)il2cpp_codegen_static_fields_for(X501_t1758824425_il2cpp_TypeInfo_var))->set_stateOrProvinceName_5(L_17);
ByteU5BU5D_t4116647657* L_18 = ((ByteU5BU5D_t4116647657*)SZArrayNew(ByteU5BU5D_t4116647657_il2cpp_TypeInfo_var, (uint32_t)3));
(L_18)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(0), (uint8_t)((int32_t)85));
ByteU5BU5D_t4116647657* L_19 = L_18;
(L_19)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(1), (uint8_t)4);
ByteU5BU5D_t4116647657* L_20 = L_19;
(L_20)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(2), (uint8_t)((int32_t)9));
((X501_t1758824425_StaticFields*)il2cpp_codegen_static_fields_for(X501_t1758824425_il2cpp_TypeInfo_var))->set_streetAddress_6(L_20);
ByteU5BU5D_t4116647657* L_21 = ((ByteU5BU5D_t4116647657*)SZArrayNew(ByteU5BU5D_t4116647657_il2cpp_TypeInfo_var, (uint32_t)((int32_t)10)));
RuntimeFieldHandle_t1871169219 L_22 = { reinterpret_cast<intptr_t> (U3CPrivateImplementationDetailsU3E_t3057255361____U24U24fieldU2D23_15_FieldInfo_var) };
RuntimeHelpers_InitializeArray_m3117905507(NULL /*static, unused*/, (RuntimeArray *)(RuntimeArray *)L_21, L_22, /*hidden argument*/NULL);
((X501_t1758824425_StaticFields*)il2cpp_codegen_static_fields_for(X501_t1758824425_il2cpp_TypeInfo_var))->set_domainComponent_7(L_21);
ByteU5BU5D_t4116647657* L_23 = ((ByteU5BU5D_t4116647657*)SZArrayNew(ByteU5BU5D_t4116647657_il2cpp_TypeInfo_var, (uint32_t)((int32_t)10)));
RuntimeFieldHandle_t1871169219 L_24 = { reinterpret_cast<intptr_t> (U3CPrivateImplementationDetailsU3E_t3057255361____U24U24fieldU2D24_16_FieldInfo_var) };
RuntimeHelpers_InitializeArray_m3117905507(NULL /*static, unused*/, (RuntimeArray *)(RuntimeArray *)L_23, L_24, /*hidden argument*/NULL);
((X501_t1758824425_StaticFields*)il2cpp_codegen_static_fields_for(X501_t1758824425_il2cpp_TypeInfo_var))->set_userid_8(L_23);
ByteU5BU5D_t4116647657* L_25 = ((ByteU5BU5D_t4116647657*)SZArrayNew(ByteU5BU5D_t4116647657_il2cpp_TypeInfo_var, (uint32_t)((int32_t)9)));
RuntimeFieldHandle_t1871169219 L_26 = { reinterpret_cast<intptr_t> (U3CPrivateImplementationDetailsU3E_t3057255361____U24U24fieldU2D25_17_FieldInfo_var) };
RuntimeHelpers_InitializeArray_m3117905507(NULL /*static, unused*/, (RuntimeArray *)(RuntimeArray *)L_25, L_26, /*hidden argument*/NULL);
((X501_t1758824425_StaticFields*)il2cpp_codegen_static_fields_for(X501_t1758824425_il2cpp_TypeInfo_var))->set_email_9(L_25);
ByteU5BU5D_t4116647657* L_27 = ((ByteU5BU5D_t4116647657*)SZArrayNew(ByteU5BU5D_t4116647657_il2cpp_TypeInfo_var, (uint32_t)3));
(L_27)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(0), (uint8_t)((int32_t)85));
ByteU5BU5D_t4116647657* L_28 = L_27;
(L_28)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(1), (uint8_t)4);
ByteU5BU5D_t4116647657* L_29 = L_28;
(L_29)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(2), (uint8_t)((int32_t)46));
((X501_t1758824425_StaticFields*)il2cpp_codegen_static_fields_for(X501_t1758824425_il2cpp_TypeInfo_var))->set_dnQualifier_10(L_29);
ByteU5BU5D_t4116647657* L_30 = ((ByteU5BU5D_t4116647657*)SZArrayNew(ByteU5BU5D_t4116647657_il2cpp_TypeInfo_var, (uint32_t)3));
(L_30)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(0), (uint8_t)((int32_t)85));
ByteU5BU5D_t4116647657* L_31 = L_30;
(L_31)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(1), (uint8_t)4);
ByteU5BU5D_t4116647657* L_32 = L_31;
(L_32)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(2), (uint8_t)((int32_t)12));
((X501_t1758824425_StaticFields*)il2cpp_codegen_static_fields_for(X501_t1758824425_il2cpp_TypeInfo_var))->set_title_11(L_32);
ByteU5BU5D_t4116647657* L_33 = ((ByteU5BU5D_t4116647657*)SZArrayNew(ByteU5BU5D_t4116647657_il2cpp_TypeInfo_var, (uint32_t)3));
(L_33)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(0), (uint8_t)((int32_t)85));
ByteU5BU5D_t4116647657* L_34 = L_33;
(L_34)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(1), (uint8_t)4);
ByteU5BU5D_t4116647657* L_35 = L_34;
(L_35)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(2), (uint8_t)4);
((X501_t1758824425_StaticFields*)il2cpp_codegen_static_fields_for(X501_t1758824425_il2cpp_TypeInfo_var))->set_surname_12(L_35);
ByteU5BU5D_t4116647657* L_36 = ((ByteU5BU5D_t4116647657*)SZArrayNew(ByteU5BU5D_t4116647657_il2cpp_TypeInfo_var, (uint32_t)3));
(L_36)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(0), (uint8_t)((int32_t)85));
ByteU5BU5D_t4116647657* L_37 = L_36;
(L_37)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(1), (uint8_t)4);
ByteU5BU5D_t4116647657* L_38 = L_37;
(L_38)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(2), (uint8_t)((int32_t)42));
((X501_t1758824425_StaticFields*)il2cpp_codegen_static_fields_for(X501_t1758824425_il2cpp_TypeInfo_var))->set_givenName_13(L_38);
ByteU5BU5D_t4116647657* L_39 = ((ByteU5BU5D_t4116647657*)SZArrayNew(ByteU5BU5D_t4116647657_il2cpp_TypeInfo_var, (uint32_t)3));
(L_39)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(0), (uint8_t)((int32_t)85));
ByteU5BU5D_t4116647657* L_40 = L_39;
(L_40)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(1), (uint8_t)4);
ByteU5BU5D_t4116647657* L_41 = L_40;
(L_41)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(2), (uint8_t)((int32_t)43));
((X501_t1758824425_StaticFields*)il2cpp_codegen_static_fields_for(X501_t1758824425_il2cpp_TypeInfo_var))->set_initial_14(L_41);
return;
}
}
// System.String Mono.Security.X509.X501::ToString(Mono.Security.ASN1)
extern "C" String_t* X501_ToString_m4186311521 (RuntimeObject * __this /* static, unused */, ASN1_t2114160832 * ___seq0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (X501_ToString_m4186311521_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
StringBuilder_t * V_0 = NULL;
int32_t V_1 = 0;
ASN1_t2114160832 * V_2 = NULL;
{
StringBuilder_t * L_0 = (StringBuilder_t *)il2cpp_codegen_object_new(StringBuilder_t_il2cpp_TypeInfo_var);
StringBuilder__ctor_m3121283359(L_0, /*hidden argument*/NULL);
V_0 = L_0;
V_1 = 0;
goto IL_003b;
}
IL_000d:
{
ASN1_t2114160832 * L_1 = ___seq0;
int32_t L_2 = V_1;
ASN1_t2114160832 * L_3 = ASN1_get_Item_m3901126023(L_1, L_2, /*hidden argument*/NULL);
V_2 = L_3;
StringBuilder_t * L_4 = V_0;
ASN1_t2114160832 * L_5 = V_2;
IL2CPP_RUNTIME_CLASS_INIT(X501_t1758824425_il2cpp_TypeInfo_var);
X501_AppendEntry_m2470239841(NULL /*static, unused*/, L_4, L_5, (bool)1, /*hidden argument*/NULL);
int32_t L_6 = V_1;
ASN1_t2114160832 * L_7 = ___seq0;
int32_t L_8 = ASN1_get_Count_m3580979881(L_7, /*hidden argument*/NULL);
if ((((int32_t)L_6) >= ((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_8, (int32_t)1)))))
{
goto IL_0037;
}
}
{
StringBuilder_t * L_9 = V_0;
StringBuilder_Append_m1965104174(L_9, _stringLiteral3450517380, /*hidden argument*/NULL);
}
IL_0037:
{
int32_t L_10 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_10, (int32_t)1));
}
IL_003b:
{
int32_t L_11 = V_1;
ASN1_t2114160832 * L_12 = ___seq0;
int32_t L_13 = ASN1_get_Count_m3580979881(L_12, /*hidden argument*/NULL);
if ((((int32_t)L_11) < ((int32_t)L_13)))
{
goto IL_000d;
}
}
{
StringBuilder_t * L_14 = V_0;
String_t* L_15 = StringBuilder_ToString_m3317489284(L_14, /*hidden argument*/NULL);
return L_15;
}
}
// System.String Mono.Security.X509.X501::ToString(Mono.Security.ASN1,System.Boolean,System.String,System.Boolean)
extern "C" String_t* X501_ToString_m2278029064 (RuntimeObject * __this /* static, unused */, ASN1_t2114160832 * ___seq0, bool ___reversed1, String_t* ___separator2, bool ___quotes3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (X501_ToString_m2278029064_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
StringBuilder_t * V_0 = NULL;
int32_t V_1 = 0;
ASN1_t2114160832 * V_2 = NULL;
int32_t V_3 = 0;
ASN1_t2114160832 * V_4 = NULL;
{
StringBuilder_t * L_0 = (StringBuilder_t *)il2cpp_codegen_object_new(StringBuilder_t_il2cpp_TypeInfo_var);
StringBuilder__ctor_m3121283359(L_0, /*hidden argument*/NULL);
V_0 = L_0;
bool L_1 = ___reversed1;
if (!L_1)
{
goto IL_0049;
}
}
{
ASN1_t2114160832 * L_2 = ___seq0;
int32_t L_3 = ASN1_get_Count_m3580979881(L_2, /*hidden argument*/NULL);
V_1 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_3, (int32_t)1));
goto IL_003d;
}
IL_001a:
{
ASN1_t2114160832 * L_4 = ___seq0;
int32_t L_5 = V_1;
ASN1_t2114160832 * L_6 = ASN1_get_Item_m3901126023(L_4, L_5, /*hidden argument*/NULL);
V_2 = L_6;
StringBuilder_t * L_7 = V_0;
ASN1_t2114160832 * L_8 = V_2;
bool L_9 = ___quotes3;
IL2CPP_RUNTIME_CLASS_INIT(X501_t1758824425_il2cpp_TypeInfo_var);
X501_AppendEntry_m2470239841(NULL /*static, unused*/, L_7, L_8, L_9, /*hidden argument*/NULL);
int32_t L_10 = V_1;
if ((((int32_t)L_10) <= ((int32_t)0)))
{
goto IL_0039;
}
}
{
StringBuilder_t * L_11 = V_0;
String_t* L_12 = ___separator2;
StringBuilder_Append_m1965104174(L_11, L_12, /*hidden argument*/NULL);
}
IL_0039:
{
int32_t L_13 = V_1;
V_1 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_13, (int32_t)1));
}
IL_003d:
{
int32_t L_14 = V_1;
if ((((int32_t)L_14) >= ((int32_t)0)))
{
goto IL_001a;
}
}
{
goto IL_0088;
}
IL_0049:
{
V_3 = 0;
goto IL_007c;
}
IL_0050:
{
ASN1_t2114160832 * L_15 = ___seq0;
int32_t L_16 = V_3;
ASN1_t2114160832 * L_17 = ASN1_get_Item_m3901126023(L_15, L_16, /*hidden argument*/NULL);
V_4 = L_17;
StringBuilder_t * L_18 = V_0;
ASN1_t2114160832 * L_19 = V_4;
bool L_20 = ___quotes3;
IL2CPP_RUNTIME_CLASS_INIT(X501_t1758824425_il2cpp_TypeInfo_var);
X501_AppendEntry_m2470239841(NULL /*static, unused*/, L_18, L_19, L_20, /*hidden argument*/NULL);
int32_t L_21 = V_3;
ASN1_t2114160832 * L_22 = ___seq0;
int32_t L_23 = ASN1_get_Count_m3580979881(L_22, /*hidden argument*/NULL);
if ((((int32_t)L_21) >= ((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_23, (int32_t)1)))))
{
goto IL_0078;
}
}
{
StringBuilder_t * L_24 = V_0;
String_t* L_25 = ___separator2;
StringBuilder_Append_m1965104174(L_24, L_25, /*hidden argument*/NULL);
}
IL_0078:
{
int32_t L_26 = V_3;
V_3 = ((int32_t)il2cpp_codegen_add((int32_t)L_26, (int32_t)1));
}
IL_007c:
{
int32_t L_27 = V_3;
ASN1_t2114160832 * L_28 = ___seq0;
int32_t L_29 = ASN1_get_Count_m3580979881(L_28, /*hidden argument*/NULL);
if ((((int32_t)L_27) < ((int32_t)L_29)))
{
goto IL_0050;
}
}
IL_0088:
{
StringBuilder_t * L_30 = V_0;
String_t* L_31 = StringBuilder_ToString_m3317489284(L_30, /*hidden argument*/NULL);
return L_31;
}
}
// System.Void Mono.Security.X509.X501::AppendEntry(System.Text.StringBuilder,Mono.Security.ASN1,System.Boolean)
extern "C" void X501_AppendEntry_m2470239841 (RuntimeObject * __this /* static, unused */, StringBuilder_t * ___sb0, ASN1_t2114160832 * ___entry1, bool ___quotes2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (X501_AppendEntry_m2470239841_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
ASN1_t2114160832 * V_1 = NULL;
ASN1_t2114160832 * V_2 = NULL;
ASN1_t2114160832 * V_3 = NULL;
String_t* V_4 = NULL;
StringBuilder_t * V_5 = NULL;
int32_t V_6 = 0;
CharU5BU5D_t3528271667* V_7 = NULL;
{
V_0 = 0;
goto IL_035f;
}
IL_0007:
{
ASN1_t2114160832 * L_0 = ___entry1;
int32_t L_1 = V_0;
ASN1_t2114160832 * L_2 = ASN1_get_Item_m3901126023(L_0, L_1, /*hidden argument*/NULL);
V_1 = L_2;
ASN1_t2114160832 * L_3 = V_1;
ASN1_t2114160832 * L_4 = ASN1_get_Item_m3901126023(L_3, 1, /*hidden argument*/NULL);
V_2 = L_4;
ASN1_t2114160832 * L_5 = V_2;
if (L_5)
{
goto IL_0022;
}
}
{
goto IL_035b;
}
IL_0022:
{
ASN1_t2114160832 * L_6 = V_1;
ASN1_t2114160832 * L_7 = ASN1_get_Item_m3901126023(L_6, 0, /*hidden argument*/NULL);
V_3 = L_7;
ASN1_t2114160832 * L_8 = V_3;
if (L_8)
{
goto IL_0035;
}
}
{
goto IL_035b;
}
IL_0035:
{
ASN1_t2114160832 * L_9 = V_3;
IL2CPP_RUNTIME_CLASS_INIT(X501_t1758824425_il2cpp_TypeInfo_var);
ByteU5BU5D_t4116647657* L_10 = ((X501_t1758824425_StaticFields*)il2cpp_codegen_static_fields_for(X501_t1758824425_il2cpp_TypeInfo_var))->get_countryName_0();
bool L_11 = ASN1_CompareValue_m251306338(L_9, L_10, /*hidden argument*/NULL);
if (!L_11)
{
goto IL_0056;
}
}
{
StringBuilder_t * L_12 = ___sb0;
StringBuilder_Append_m1965104174(L_12, _stringLiteral3451762653, /*hidden argument*/NULL);
goto IL_0249;
}
IL_0056:
{
ASN1_t2114160832 * L_13 = V_3;
IL2CPP_RUNTIME_CLASS_INIT(X501_t1758824425_il2cpp_TypeInfo_var);
ByteU5BU5D_t4116647657* L_14 = ((X501_t1758824425_StaticFields*)il2cpp_codegen_static_fields_for(X501_t1758824425_il2cpp_TypeInfo_var))->get_organizationName_1();
bool L_15 = ASN1_CompareValue_m251306338(L_13, L_14, /*hidden argument*/NULL);
if (!L_15)
{
goto IL_0077;
}
}
{
StringBuilder_t * L_16 = ___sb0;
StringBuilder_Append_m1965104174(L_16, _stringLiteral3451762657, /*hidden argument*/NULL);
goto IL_0249;
}
IL_0077:
{
ASN1_t2114160832 * L_17 = V_3;
IL2CPP_RUNTIME_CLASS_INIT(X501_t1758824425_il2cpp_TypeInfo_var);
ByteU5BU5D_t4116647657* L_18 = ((X501_t1758824425_StaticFields*)il2cpp_codegen_static_fields_for(X501_t1758824425_il2cpp_TypeInfo_var))->get_organizationalUnitName_2();
bool L_19 = ASN1_CompareValue_m251306338(L_17, L_18, /*hidden argument*/NULL);
if (!L_19)
{
goto IL_0098;
}
}
{
StringBuilder_t * L_20 = ___sb0;
StringBuilder_Append_m1965104174(L_20, _stringLiteral3483892138, /*hidden argument*/NULL);
goto IL_0249;
}
IL_0098:
{
ASN1_t2114160832 * L_21 = V_3;
IL2CPP_RUNTIME_CLASS_INIT(X501_t1758824425_il2cpp_TypeInfo_var);
ByteU5BU5D_t4116647657* L_22 = ((X501_t1758824425_StaticFields*)il2cpp_codegen_static_fields_for(X501_t1758824425_il2cpp_TypeInfo_var))->get_commonName_3();
bool L_23 = ASN1_CompareValue_m251306338(L_21, L_22, /*hidden argument*/NULL);
if (!L_23)
{
goto IL_00b9;
}
}
{
StringBuilder_t * L_24 = ___sb0;
StringBuilder_Append_m1965104174(L_24, _stringLiteral3483302310, /*hidden argument*/NULL);
goto IL_0249;
}
IL_00b9:
{
ASN1_t2114160832 * L_25 = V_3;
IL2CPP_RUNTIME_CLASS_INIT(X501_t1758824425_il2cpp_TypeInfo_var);
ByteU5BU5D_t4116647657* L_26 = ((X501_t1758824425_StaticFields*)il2cpp_codegen_static_fields_for(X501_t1758824425_il2cpp_TypeInfo_var))->get_localityName_4();
bool L_27 = ASN1_CompareValue_m251306338(L_25, L_26, /*hidden argument*/NULL);
if (!L_27)
{
goto IL_00da;
}
}
{
StringBuilder_t * L_28 = ___sb0;
StringBuilder_Append_m1965104174(L_28, _stringLiteral3451762660, /*hidden argument*/NULL);
goto IL_0249;
}
IL_00da:
{
ASN1_t2114160832 * L_29 = V_3;
IL2CPP_RUNTIME_CLASS_INIT(X501_t1758824425_il2cpp_TypeInfo_var);
ByteU5BU5D_t4116647657* L_30 = ((X501_t1758824425_StaticFields*)il2cpp_codegen_static_fields_for(X501_t1758824425_il2cpp_TypeInfo_var))->get_stateOrProvinceName_5();
bool L_31 = ASN1_CompareValue_m251306338(L_29, L_30, /*hidden argument*/NULL);
if (!L_31)
{
goto IL_00fb;
}
}
{
StringBuilder_t * L_32 = ___sb0;
StringBuilder_Append_m1965104174(L_32, _stringLiteral3451762669, /*hidden argument*/NULL);
goto IL_0249;
}
IL_00fb:
{
ASN1_t2114160832 * L_33 = V_3;
IL2CPP_RUNTIME_CLASS_INIT(X501_t1758824425_il2cpp_TypeInfo_var);
ByteU5BU5D_t4116647657* L_34 = ((X501_t1758824425_StaticFields*)il2cpp_codegen_static_fields_for(X501_t1758824425_il2cpp_TypeInfo_var))->get_streetAddress_6();
bool L_35 = ASN1_CompareValue_m251306338(L_33, L_34, /*hidden argument*/NULL);
if (!L_35)
{
goto IL_011c;
}
}
{
StringBuilder_t * L_36 = ___sb0;
StringBuilder_Append_m1965104174(L_36, _stringLiteral4091040253, /*hidden argument*/NULL);
goto IL_0249;
}
IL_011c:
{
ASN1_t2114160832 * L_37 = V_3;
IL2CPP_RUNTIME_CLASS_INIT(X501_t1758824425_il2cpp_TypeInfo_var);
ByteU5BU5D_t4116647657* L_38 = ((X501_t1758824425_StaticFields*)il2cpp_codegen_static_fields_for(X501_t1758824425_il2cpp_TypeInfo_var))->get_domainComponent_7();
bool L_39 = ASN1_CompareValue_m251306338(L_37, L_38, /*hidden argument*/NULL);
if (!L_39)
{
goto IL_013d;
}
}
{
StringBuilder_t * L_40 = ___sb0;
StringBuilder_Append_m1965104174(L_40, _stringLiteral3482974629, /*hidden argument*/NULL);
goto IL_0249;
}
IL_013d:
{
ASN1_t2114160832 * L_41 = V_3;
IL2CPP_RUNTIME_CLASS_INIT(X501_t1758824425_il2cpp_TypeInfo_var);
ByteU5BU5D_t4116647657* L_42 = ((X501_t1758824425_StaticFields*)il2cpp_codegen_static_fields_for(X501_t1758824425_il2cpp_TypeInfo_var))->get_userid_8();
bool L_43 = ASN1_CompareValue_m251306338(L_41, L_42, /*hidden argument*/NULL);
if (!L_43)
{
goto IL_015e;
}
}
{
StringBuilder_t * L_44 = ___sb0;
StringBuilder_Append_m1965104174(L_44, _stringLiteral1505933697, /*hidden argument*/NULL);
goto IL_0249;
}
IL_015e:
{
ASN1_t2114160832 * L_45 = V_3;
IL2CPP_RUNTIME_CLASS_INIT(X501_t1758824425_il2cpp_TypeInfo_var);
ByteU5BU5D_t4116647657* L_46 = ((X501_t1758824425_StaticFields*)il2cpp_codegen_static_fields_for(X501_t1758824425_il2cpp_TypeInfo_var))->get_email_9();
bool L_47 = ASN1_CompareValue_m251306338(L_45, L_46, /*hidden argument*/NULL);
if (!L_47)
{
goto IL_017f;
}
}
{
StringBuilder_t * L_48 = ___sb0;
StringBuilder_Append_m1965104174(L_48, _stringLiteral3451762651, /*hidden argument*/NULL);
goto IL_0249;
}
IL_017f:
{
ASN1_t2114160832 * L_49 = V_3;
IL2CPP_RUNTIME_CLASS_INIT(X501_t1758824425_il2cpp_TypeInfo_var);
ByteU5BU5D_t4116647657* L_50 = ((X501_t1758824425_StaticFields*)il2cpp_codegen_static_fields_for(X501_t1758824425_il2cpp_TypeInfo_var))->get_dnQualifier_10();
bool L_51 = ASN1_CompareValue_m251306338(L_49, L_50, /*hidden argument*/NULL);
if (!L_51)
{
goto IL_01a0;
}
}
{
StringBuilder_t * L_52 = ___sb0;
StringBuilder_Append_m1965104174(L_52, _stringLiteral4248496721, /*hidden argument*/NULL);
goto IL_0249;
}
IL_01a0:
{
ASN1_t2114160832 * L_53 = V_3;
IL2CPP_RUNTIME_CLASS_INIT(X501_t1758824425_il2cpp_TypeInfo_var);
ByteU5BU5D_t4116647657* L_54 = ((X501_t1758824425_StaticFields*)il2cpp_codegen_static_fields_for(X501_t1758824425_il2cpp_TypeInfo_var))->get_title_11();
bool L_55 = ASN1_CompareValue_m251306338(L_53, L_54, /*hidden argument*/NULL);
if (!L_55)
{
goto IL_01c1;
}
}
{
StringBuilder_t * L_56 = ___sb0;
StringBuilder_Append_m1965104174(L_56, _stringLiteral3451762668, /*hidden argument*/NULL);
goto IL_0249;
}
IL_01c1:
{
ASN1_t2114160832 * L_57 = V_3;
IL2CPP_RUNTIME_CLASS_INIT(X501_t1758824425_il2cpp_TypeInfo_var);
ByteU5BU5D_t4116647657* L_58 = ((X501_t1758824425_StaticFields*)il2cpp_codegen_static_fields_for(X501_t1758824425_il2cpp_TypeInfo_var))->get_surname_12();
bool L_59 = ASN1_CompareValue_m251306338(L_57, L_58, /*hidden argument*/NULL);
if (!L_59)
{
goto IL_01e2;
}
}
{
StringBuilder_t * L_60 = ___sb0;
StringBuilder_Append_m1965104174(L_60, _stringLiteral3483302326, /*hidden argument*/NULL);
goto IL_0249;
}
IL_01e2:
{
ASN1_t2114160832 * L_61 = V_3;
IL2CPP_RUNTIME_CLASS_INIT(X501_t1758824425_il2cpp_TypeInfo_var);
ByteU5BU5D_t4116647657* L_62 = ((X501_t1758824425_StaticFields*)il2cpp_codegen_static_fields_for(X501_t1758824425_il2cpp_TypeInfo_var))->get_givenName_13();
bool L_63 = ASN1_CompareValue_m251306338(L_61, L_62, /*hidden argument*/NULL);
if (!L_63)
{
goto IL_0203;
}
}
{
StringBuilder_t * L_64 = ___sb0;
StringBuilder_Append_m1965104174(L_64, _stringLiteral3451762649, /*hidden argument*/NULL);
goto IL_0249;
}
IL_0203:
{
ASN1_t2114160832 * L_65 = V_3;
IL2CPP_RUNTIME_CLASS_INIT(X501_t1758824425_il2cpp_TypeInfo_var);
ByteU5BU5D_t4116647657* L_66 = ((X501_t1758824425_StaticFields*)il2cpp_codegen_static_fields_for(X501_t1758824425_il2cpp_TypeInfo_var))->get_initial_14();
bool L_67 = ASN1_CompareValue_m251306338(L_65, L_66, /*hidden argument*/NULL);
if (!L_67)
{
goto IL_0224;
}
}
{
StringBuilder_t * L_68 = ___sb0;
StringBuilder_Append_m1965104174(L_68, _stringLiteral3451762663, /*hidden argument*/NULL);
goto IL_0249;
}
IL_0224:
{
StringBuilder_t * L_69 = ___sb0;
StringBuilder_Append_m1965104174(L_69, _stringLiteral403552631, /*hidden argument*/NULL);
StringBuilder_t * L_70 = ___sb0;
ASN1_t2114160832 * L_71 = V_3;
String_t* L_72 = ASN1Convert_ToOid_m1223840396(NULL /*static, unused*/, L_71, /*hidden argument*/NULL);
StringBuilder_Append_m1965104174(L_70, L_72, /*hidden argument*/NULL);
StringBuilder_t * L_73 = ___sb0;
StringBuilder_Append_m1965104174(L_73, _stringLiteral3452614547, /*hidden argument*/NULL);
}
IL_0249:
{
V_4 = (String_t*)NULL;
ASN1_t2114160832 * L_74 = V_2;
uint8_t L_75 = ASN1_get_Tag_m1032367219(L_74, /*hidden argument*/NULL);
if ((!(((uint32_t)L_75) == ((uint32_t)((int32_t)30)))))
{
goto IL_029d;
}
}
{
StringBuilder_t * L_76 = (StringBuilder_t *)il2cpp_codegen_object_new(StringBuilder_t_il2cpp_TypeInfo_var);
StringBuilder__ctor_m3121283359(L_76, /*hidden argument*/NULL);
V_5 = L_76;
V_6 = 1;
goto IL_0280;
}
IL_0268:
{
StringBuilder_t * L_77 = V_5;
ASN1_t2114160832 * L_78 = V_2;
ByteU5BU5D_t4116647657* L_79 = ASN1_get_Value_m1857007406(L_78, /*hidden argument*/NULL);
int32_t L_80 = V_6;
int32_t L_81 = L_80;
uint8_t L_82 = (L_79)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_81));
StringBuilder_Append_m2383614642(L_77, (((int32_t)((uint16_t)L_82))), /*hidden argument*/NULL);
int32_t L_83 = V_6;
V_6 = ((int32_t)il2cpp_codegen_add((int32_t)L_83, (int32_t)2));
}
IL_0280:
{
int32_t L_84 = V_6;
ASN1_t2114160832 * L_85 = V_2;
ByteU5BU5D_t4116647657* L_86 = ASN1_get_Value_m1857007406(L_85, /*hidden argument*/NULL);
if ((((int32_t)L_84) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_86)->max_length)))))))
{
goto IL_0268;
}
}
{
StringBuilder_t * L_87 = V_5;
String_t* L_88 = StringBuilder_ToString_m3317489284(L_87, /*hidden argument*/NULL);
V_4 = L_88;
goto IL_0338;
}
IL_029d:
{
ASN1_t2114160832 * L_89 = V_2;
uint8_t L_90 = ASN1_get_Tag_m1032367219(L_89, /*hidden argument*/NULL);
if ((!(((uint32_t)L_90) == ((uint32_t)((int32_t)20)))))
{
goto IL_02c1;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(Encoding_t1523322056_il2cpp_TypeInfo_var);
Encoding_t1523322056 * L_91 = Encoding_get_UTF7_m1817790803(NULL /*static, unused*/, /*hidden argument*/NULL);
ASN1_t2114160832 * L_92 = V_2;
ByteU5BU5D_t4116647657* L_93 = ASN1_get_Value_m1857007406(L_92, /*hidden argument*/NULL);
String_t* L_94 = VirtFuncInvoker1< String_t*, ByteU5BU5D_t4116647657* >::Invoke(22 /* System.String System.Text.Encoding::GetString(System.Byte[]) */, L_91, L_93);
V_4 = L_94;
goto IL_02d3;
}
IL_02c1:
{
IL2CPP_RUNTIME_CLASS_INIT(Encoding_t1523322056_il2cpp_TypeInfo_var);
Encoding_t1523322056 * L_95 = Encoding_get_UTF8_m1008486739(NULL /*static, unused*/, /*hidden argument*/NULL);
ASN1_t2114160832 * L_96 = V_2;
ByteU5BU5D_t4116647657* L_97 = ASN1_get_Value_m1857007406(L_96, /*hidden argument*/NULL);
String_t* L_98 = VirtFuncInvoker1< String_t*, ByteU5BU5D_t4116647657* >::Invoke(22 /* System.String System.Text.Encoding::GetString(System.Byte[]) */, L_95, L_97);
V_4 = L_98;
}
IL_02d3:
{
CharU5BU5D_t3528271667* L_99 = ((CharU5BU5D_t3528271667*)SZArrayNew(CharU5BU5D_t3528271667_il2cpp_TypeInfo_var, (uint32_t)7));
RuntimeFieldHandle_t1871169219 L_100 = { reinterpret_cast<intptr_t> (U3CPrivateImplementationDetailsU3E_t3057255361____U24U24fieldU2D26_18_FieldInfo_var) };
RuntimeHelpers_InitializeArray_m3117905507(NULL /*static, unused*/, (RuntimeArray *)(RuntimeArray *)L_99, L_100, /*hidden argument*/NULL);
V_7 = L_99;
bool L_101 = ___quotes2;
if (!L_101)
{
goto IL_0338;
}
}
{
String_t* L_102 = V_4;
CharU5BU5D_t3528271667* L_103 = V_7;
String_t* L_104 = V_4;
int32_t L_105 = String_get_Length_m3847582255(L_104, /*hidden argument*/NULL);
int32_t L_106 = String_IndexOfAny_m2882391940(L_102, L_103, 0, L_105, /*hidden argument*/NULL);
if ((((int32_t)L_106) > ((int32_t)0)))
{
goto IL_0325;
}
}
{
String_t* L_107 = V_4;
bool L_108 = String_StartsWith_m1759067526(L_107, _stringLiteral3452614528, /*hidden argument*/NULL);
if (L_108)
{
goto IL_0325;
}
}
{
String_t* L_109 = V_4;
bool L_110 = String_EndsWith_m1901926500(L_109, _stringLiteral3452614528, /*hidden argument*/NULL);
if (!L_110)
{
goto IL_0338;
}
}
IL_0325:
{
String_t* L_111 = V_4;
IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
String_t* L_112 = String_Concat_m3755062657(NULL /*static, unused*/, _stringLiteral3452614526, L_111, _stringLiteral3452614526, /*hidden argument*/NULL);
V_4 = L_112;
}
IL_0338:
{
StringBuilder_t * L_113 = ___sb0;
String_t* L_114 = V_4;
StringBuilder_Append_m1965104174(L_113, L_114, /*hidden argument*/NULL);
int32_t L_115 = V_0;
ASN1_t2114160832 * L_116 = ___entry1;
int32_t L_117 = ASN1_get_Count_m3580979881(L_116, /*hidden argument*/NULL);
if ((((int32_t)L_115) >= ((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_117, (int32_t)1)))))
{
goto IL_035b;
}
}
{
StringBuilder_t * L_118 = ___sb0;
StringBuilder_Append_m1965104174(L_118, _stringLiteral3450517380, /*hidden argument*/NULL);
}
IL_035b:
{
int32_t L_119 = V_0;
V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_119, (int32_t)1));
}
IL_035f:
{
int32_t L_120 = V_0;
ASN1_t2114160832 * L_121 = ___entry1;
int32_t L_122 = ASN1_get_Count_m3580979881(L_121, /*hidden argument*/NULL);
if ((((int32_t)L_120) < ((int32_t)L_122)))
{
goto IL_0007;
}
}
{
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void Mono.Security.X509.X509Certificate::.ctor(System.Byte[])
extern "C" void X509Certificate__ctor_m3656389950 (X509Certificate_t489243024 * __this, ByteU5BU5D_t4116647657* ___data0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (X509Certificate__ctor_m3656389950_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Exception_t * V_0 = NULL;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = 0;
NO_UNUSED_WARNING (__leave_target);
{
Object__ctor_m297566312(__this, /*hidden argument*/NULL);
ByteU5BU5D_t4116647657* L_0 = ___data0;
if (!L_0)
{
goto IL_004a;
}
}
{
ByteU5BU5D_t4116647657* L_1 = ___data0;
if ((((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_1)->max_length))))) <= ((int32_t)0)))
{
goto IL_0043;
}
}
{
ByteU5BU5D_t4116647657* L_2 = ___data0;
int32_t L_3 = 0;
uint8_t L_4 = (L_2)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_3));
if ((((int32_t)L_4) == ((int32_t)((int32_t)48))))
{
goto IL_0043;
}
}
IL_001f:
try
{ // begin try (depth: 1)
ByteU5BU5D_t4116647657* L_5 = ___data0;
IL2CPP_RUNTIME_CLASS_INIT(X509Certificate_t489243024_il2cpp_TypeInfo_var);
ByteU5BU5D_t4116647657* L_6 = X509Certificate_PEM_m1177570576(NULL /*static, unused*/, _stringLiteral1735138889, L_5, /*hidden argument*/NULL);
___data0 = L_6;
goto IL_0043;
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__exception_local = (Exception_t *)e.ex;
if(il2cpp_codegen_class_is_assignable_from (Exception_t_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex)))
goto CATCH_0031;
throw e;
}
CATCH_0031:
{ // begin catch(System.Exception)
{
V_0 = ((Exception_t *)__exception_local);
IL2CPP_RUNTIME_CLASS_INIT(X509Certificate_t489243024_il2cpp_TypeInfo_var);
String_t* L_7 = ((X509Certificate_t489243024_StaticFields*)il2cpp_codegen_static_fields_for(X509Certificate_t489243024_il2cpp_TypeInfo_var))->get_encoding_error_20();
Exception_t * L_8 = V_0;
CryptographicException_t248831461 * L_9 = (CryptographicException_t248831461 *)il2cpp_codegen_object_new(CryptographicException_t248831461_il2cpp_TypeInfo_var);
CryptographicException__ctor_m1422015889(L_9, L_7, L_8, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_9,X509Certificate__ctor_m3656389950_RuntimeMethod_var);
}
IL_003e:
{
goto IL_0043;
}
} // end catch (depth: 1)
IL_0043:
{
ByteU5BU5D_t4116647657* L_10 = ___data0;
X509Certificate_Parse_m1106379228(__this, L_10, /*hidden argument*/NULL);
}
IL_004a:
{
return;
}
}
// System.Void Mono.Security.X509.X509Certificate::.cctor()
extern "C" void X509Certificate__cctor_m198658613 (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (X509Certificate__cctor_m198658613_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = Locale_GetText_m3374010885(NULL /*static, unused*/, _stringLiteral1185035339, /*hidden argument*/NULL);
((X509Certificate_t489243024_StaticFields*)il2cpp_codegen_static_fields_for(X509Certificate_t489243024_il2cpp_TypeInfo_var))->set_encoding_error_20(L_0);
return;
}
}
// System.Void Mono.Security.X509.X509Certificate::Parse(System.Byte[])
extern "C" void X509Certificate_Parse_m1106379228 (X509Certificate_t489243024 * __this, ByteU5BU5D_t4116647657* ___data0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (X509Certificate_Parse_m1106379228_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ASN1_t2114160832 * V_0 = NULL;
int32_t V_1 = 0;
ASN1_t2114160832 * V_2 = NULL;
ASN1_t2114160832 * V_3 = NULL;
ASN1_t2114160832 * V_4 = NULL;
ASN1_t2114160832 * V_5 = NULL;
ASN1_t2114160832 * V_6 = NULL;
ASN1_t2114160832 * V_7 = NULL;
ASN1_t2114160832 * V_8 = NULL;
ASN1_t2114160832 * V_9 = NULL;
ASN1_t2114160832 * V_10 = NULL;
ASN1_t2114160832 * V_11 = NULL;
int32_t V_12 = 0;
ByteU5BU5D_t4116647657* V_13 = NULL;
ASN1_t2114160832 * V_14 = NULL;
ASN1_t2114160832 * V_15 = NULL;
ASN1_t2114160832 * V_16 = NULL;
Exception_t * V_17 = NULL;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = 0;
NO_UNUSED_WARNING (__leave_target);
X509Certificate_t489243024 * G_B11_0 = NULL;
X509Certificate_t489243024 * G_B10_0 = NULL;
ByteU5BU5D_t4116647657* G_B12_0 = NULL;
X509Certificate_t489243024 * G_B12_1 = NULL;
IL_0000:
try
{ // begin try (depth: 1)
{
ByteU5BU5D_t4116647657* L_0 = ___data0;
ASN1_t2114160832 * L_1 = (ASN1_t2114160832 *)il2cpp_codegen_object_new(ASN1_t2114160832_il2cpp_TypeInfo_var);
ASN1__ctor_m1601690794(L_1, L_0, /*hidden argument*/NULL);
__this->set_decoder_0(L_1);
ASN1_t2114160832 * L_2 = __this->get_decoder_0();
uint8_t L_3 = ASN1_get_Tag_m1032367219(L_2, /*hidden argument*/NULL);
if ((((int32_t)L_3) == ((int32_t)((int32_t)48))))
{
goto IL_0029;
}
}
IL_001e:
{
IL2CPP_RUNTIME_CLASS_INIT(X509Certificate_t489243024_il2cpp_TypeInfo_var);
String_t* L_4 = ((X509Certificate_t489243024_StaticFields*)il2cpp_codegen_static_fields_for(X509Certificate_t489243024_il2cpp_TypeInfo_var))->get_encoding_error_20();
CryptographicException_t248831461 * L_5 = (CryptographicException_t248831461 *)il2cpp_codegen_object_new(CryptographicException_t248831461_il2cpp_TypeInfo_var);
CryptographicException__ctor_m503735289(L_5, L_4, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5,X509Certificate_Parse_m1106379228_RuntimeMethod_var);
}
IL_0029:
{
ASN1_t2114160832 * L_6 = __this->get_decoder_0();
ASN1_t2114160832 * L_7 = ASN1_get_Item_m3901126023(L_6, 0, /*hidden argument*/NULL);
uint8_t L_8 = ASN1_get_Tag_m1032367219(L_7, /*hidden argument*/NULL);
if ((((int32_t)L_8) == ((int32_t)((int32_t)48))))
{
goto IL_004c;
}
}
IL_0041:
{
IL2CPP_RUNTIME_CLASS_INIT(X509Certificate_t489243024_il2cpp_TypeInfo_var);
String_t* L_9 = ((X509Certificate_t489243024_StaticFields*)il2cpp_codegen_static_fields_for(X509Certificate_t489243024_il2cpp_TypeInfo_var))->get_encoding_error_20();
CryptographicException_t248831461 * L_10 = (CryptographicException_t248831461 *)il2cpp_codegen_object_new(CryptographicException_t248831461_il2cpp_TypeInfo_var);
CryptographicException__ctor_m503735289(L_10, L_9, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_10,X509Certificate_Parse_m1106379228_RuntimeMethod_var);
}
IL_004c:
{
ASN1_t2114160832 * L_11 = __this->get_decoder_0();
ASN1_t2114160832 * L_12 = ASN1_get_Item_m3901126023(L_11, 0, /*hidden argument*/NULL);
V_0 = L_12;
V_1 = 0;
ASN1_t2114160832 * L_13 = __this->get_decoder_0();
ASN1_t2114160832 * L_14 = ASN1_get_Item_m3901126023(L_13, 0, /*hidden argument*/NULL);
int32_t L_15 = V_1;
ASN1_t2114160832 * L_16 = ASN1_get_Item_m3901126023(L_14, L_15, /*hidden argument*/NULL);
V_2 = L_16;
__this->set_version_15(1);
ASN1_t2114160832 * L_17 = V_2;
uint8_t L_18 = ASN1_get_Tag_m1032367219(L_17, /*hidden argument*/NULL);
if ((!(((uint32_t)L_18) == ((uint32_t)((int32_t)160)))))
{
goto IL_00b0;
}
}
IL_0085:
{
ASN1_t2114160832 * L_19 = V_2;
int32_t L_20 = ASN1_get_Count_m3580979881(L_19, /*hidden argument*/NULL);
if ((((int32_t)L_20) <= ((int32_t)0)))
{
goto IL_00b0;
}
}
IL_0091:
{
int32_t L_21 = __this->get_version_15();
ASN1_t2114160832 * L_22 = V_2;
ASN1_t2114160832 * L_23 = ASN1_get_Item_m3901126023(L_22, 0, /*hidden argument*/NULL);
ByteU5BU5D_t4116647657* L_24 = ASN1_get_Value_m1857007406(L_23, /*hidden argument*/NULL);
int32_t L_25 = 0;
uint8_t L_26 = (L_24)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_25));
__this->set_version_15(((int32_t)il2cpp_codegen_add((int32_t)L_21, (int32_t)L_26)));
int32_t L_27 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_27, (int32_t)1));
}
IL_00b0:
{
ASN1_t2114160832 * L_28 = __this->get_decoder_0();
ASN1_t2114160832 * L_29 = ASN1_get_Item_m3901126023(L_28, 0, /*hidden argument*/NULL);
int32_t L_30 = V_1;
int32_t L_31 = L_30;
V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_31, (int32_t)1));
ASN1_t2114160832 * L_32 = ASN1_get_Item_m3901126023(L_29, L_31, /*hidden argument*/NULL);
V_3 = L_32;
ASN1_t2114160832 * L_33 = V_3;
uint8_t L_34 = ASN1_get_Tag_m1032367219(L_33, /*hidden argument*/NULL);
if ((((int32_t)L_34) == ((int32_t)2)))
{
goto IL_00de;
}
}
IL_00d3:
{
IL2CPP_RUNTIME_CLASS_INIT(X509Certificate_t489243024_il2cpp_TypeInfo_var);
String_t* L_35 = ((X509Certificate_t489243024_StaticFields*)il2cpp_codegen_static_fields_for(X509Certificate_t489243024_il2cpp_TypeInfo_var))->get_encoding_error_20();
CryptographicException_t248831461 * L_36 = (CryptographicException_t248831461 *)il2cpp_codegen_object_new(CryptographicException_t248831461_il2cpp_TypeInfo_var);
CryptographicException__ctor_m503735289(L_36, L_35, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_36,X509Certificate_Parse_m1106379228_RuntimeMethod_var);
}
IL_00de:
{
ASN1_t2114160832 * L_37 = V_3;
ByteU5BU5D_t4116647657* L_38 = ASN1_get_Value_m1857007406(L_37, /*hidden argument*/NULL);
__this->set_serialnumber_16(L_38);
ByteU5BU5D_t4116647657* L_39 = __this->get_serialnumber_16();
ByteU5BU5D_t4116647657* L_40 = __this->get_serialnumber_16();
Array_Reverse_m816310962(NULL /*static, unused*/, (RuntimeArray *)(RuntimeArray *)L_39, 0, (((int32_t)((int32_t)(((RuntimeArray *)L_40)->max_length)))), /*hidden argument*/NULL);
int32_t L_41 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_41, (int32_t)1));
ASN1_t2114160832 * L_42 = V_0;
int32_t L_43 = V_1;
int32_t L_44 = L_43;
V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_44, (int32_t)1));
ASN1_t2114160832 * L_45 = ASN1_Element_m2680269109(L_42, L_44, (uint8_t)((int32_t)48), /*hidden argument*/NULL);
__this->set_issuer_4(L_45);
ASN1_t2114160832 * L_46 = __this->get_issuer_4();
IL2CPP_RUNTIME_CLASS_INIT(X501_t1758824425_il2cpp_TypeInfo_var);
String_t* L_47 = X501_ToString_m4186311521(NULL /*static, unused*/, L_46, /*hidden argument*/NULL);
__this->set_m_issuername_5(L_47);
ASN1_t2114160832 * L_48 = V_0;
int32_t L_49 = V_1;
int32_t L_50 = L_49;
V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_50, (int32_t)1));
ASN1_t2114160832 * L_51 = ASN1_Element_m2680269109(L_48, L_50, (uint8_t)((int32_t)48), /*hidden argument*/NULL);
V_4 = L_51;
ASN1_t2114160832 * L_52 = V_4;
ASN1_t2114160832 * L_53 = ASN1_get_Item_m3901126023(L_52, 0, /*hidden argument*/NULL);
V_5 = L_53;
ASN1_t2114160832 * L_54 = V_5;
DateTime_t3738529785 L_55 = ASN1Convert_ToDateTime_m3103388320(NULL /*static, unused*/, L_54, /*hidden argument*/NULL);
__this->set_m_from_2(L_55);
ASN1_t2114160832 * L_56 = V_4;
ASN1_t2114160832 * L_57 = ASN1_get_Item_m3901126023(L_56, 1, /*hidden argument*/NULL);
V_6 = L_57;
ASN1_t2114160832 * L_58 = V_6;
DateTime_t3738529785 L_59 = ASN1Convert_ToDateTime_m3103388320(NULL /*static, unused*/, L_58, /*hidden argument*/NULL);
__this->set_m_until_3(L_59);
ASN1_t2114160832 * L_60 = V_0;
int32_t L_61 = V_1;
int32_t L_62 = L_61;
V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_62, (int32_t)1));
ASN1_t2114160832 * L_63 = ASN1_Element_m2680269109(L_60, L_62, (uint8_t)((int32_t)48), /*hidden argument*/NULL);
__this->set_subject_8(L_63);
ASN1_t2114160832 * L_64 = __this->get_subject_8();
String_t* L_65 = X501_ToString_m4186311521(NULL /*static, unused*/, L_64, /*hidden argument*/NULL);
__this->set_m_subject_9(L_65);
ASN1_t2114160832 * L_66 = V_0;
int32_t L_67 = V_1;
int32_t L_68 = L_67;
V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_68, (int32_t)1));
ASN1_t2114160832 * L_69 = ASN1_Element_m2680269109(L_66, L_68, (uint8_t)((int32_t)48), /*hidden argument*/NULL);
V_7 = L_69;
ASN1_t2114160832 * L_70 = V_7;
ASN1_t2114160832 * L_71 = ASN1_Element_m2680269109(L_70, 0, (uint8_t)((int32_t)48), /*hidden argument*/NULL);
V_8 = L_71;
ASN1_t2114160832 * L_72 = V_8;
ASN1_t2114160832 * L_73 = ASN1_Element_m2680269109(L_72, 0, (uint8_t)6, /*hidden argument*/NULL);
V_9 = L_73;
ASN1_t2114160832 * L_74 = V_9;
String_t* L_75 = ASN1Convert_ToOid_m1223840396(NULL /*static, unused*/, L_74, /*hidden argument*/NULL);
__this->set_m_keyalgo_6(L_75);
ASN1_t2114160832 * L_76 = V_8;
ASN1_t2114160832 * L_77 = ASN1_get_Item_m3901126023(L_76, 1, /*hidden argument*/NULL);
V_10 = L_77;
ASN1_t2114160832 * L_78 = V_8;
int32_t L_79 = ASN1_get_Count_m3580979881(L_78, /*hidden argument*/NULL);
G_B10_0 = __this;
if ((((int32_t)L_79) <= ((int32_t)1)))
{
G_B11_0 = __this;
goto IL_01de;
}
}
IL_01d2:
{
ASN1_t2114160832 * L_80 = V_10;
ByteU5BU5D_t4116647657* L_81 = VirtFuncInvoker0< ByteU5BU5D_t4116647657* >::Invoke(4 /* System.Byte[] Mono.Security.ASN1::GetBytes() */, L_80);
G_B12_0 = L_81;
G_B12_1 = G_B10_0;
goto IL_01df;
}
IL_01de:
{
G_B12_0 = ((ByteU5BU5D_t4116647657*)(NULL));
G_B12_1 = G_B11_0;
}
IL_01df:
{
G_B12_1->set_m_keyalgoparams_7(G_B12_0);
ASN1_t2114160832 * L_82 = V_7;
ASN1_t2114160832 * L_83 = ASN1_Element_m2680269109(L_82, 1, (uint8_t)3, /*hidden argument*/NULL);
V_11 = L_83;
ASN1_t2114160832 * L_84 = V_11;
int32_t L_85 = ASN1_get_Length_m1923878580(L_84, /*hidden argument*/NULL);
V_12 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_85, (int32_t)1));
int32_t L_86 = V_12;
__this->set_m_publickey_10(((ByteU5BU5D_t4116647657*)SZArrayNew(ByteU5BU5D_t4116647657_il2cpp_TypeInfo_var, (uint32_t)L_86)));
ASN1_t2114160832 * L_87 = V_11;
ByteU5BU5D_t4116647657* L_88 = ASN1_get_Value_m1857007406(L_87, /*hidden argument*/NULL);
ByteU5BU5D_t4116647657* L_89 = __this->get_m_publickey_10();
int32_t L_90 = V_12;
Buffer_BlockCopy_m2884209081(NULL /*static, unused*/, (RuntimeArray *)(RuntimeArray *)L_88, 1, (RuntimeArray *)(RuntimeArray *)L_89, 0, L_90, /*hidden argument*/NULL);
ASN1_t2114160832 * L_91 = __this->get_decoder_0();
ASN1_t2114160832 * L_92 = ASN1_get_Item_m3901126023(L_91, 2, /*hidden argument*/NULL);
ByteU5BU5D_t4116647657* L_93 = ASN1_get_Value_m1857007406(L_92, /*hidden argument*/NULL);
V_13 = L_93;
ByteU5BU5D_t4116647657* L_94 = V_13;
__this->set_signature_11(((ByteU5BU5D_t4116647657*)SZArrayNew(ByteU5BU5D_t4116647657_il2cpp_TypeInfo_var, (uint32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_94)->max_length)))), (int32_t)1)))));
ByteU5BU5D_t4116647657* L_95 = V_13;
ByteU5BU5D_t4116647657* L_96 = __this->get_signature_11();
ByteU5BU5D_t4116647657* L_97 = __this->get_signature_11();
Buffer_BlockCopy_m2884209081(NULL /*static, unused*/, (RuntimeArray *)(RuntimeArray *)L_95, 1, (RuntimeArray *)(RuntimeArray *)L_96, 0, (((int32_t)((int32_t)(((RuntimeArray *)L_97)->max_length)))), /*hidden argument*/NULL);
ASN1_t2114160832 * L_98 = __this->get_decoder_0();
ASN1_t2114160832 * L_99 = ASN1_get_Item_m3901126023(L_98, 1, /*hidden argument*/NULL);
V_8 = L_99;
ASN1_t2114160832 * L_100 = V_8;
ASN1_t2114160832 * L_101 = ASN1_Element_m2680269109(L_100, 0, (uint8_t)6, /*hidden argument*/NULL);
V_9 = L_101;
ASN1_t2114160832 * L_102 = V_9;
String_t* L_103 = ASN1Convert_ToOid_m1223840396(NULL /*static, unused*/, L_102, /*hidden argument*/NULL);
__this->set_m_signaturealgo_12(L_103);
ASN1_t2114160832 * L_104 = V_8;
ASN1_t2114160832 * L_105 = ASN1_get_Item_m3901126023(L_104, 1, /*hidden argument*/NULL);
V_10 = L_105;
ASN1_t2114160832 * L_106 = V_10;
if (!L_106)
{
goto IL_02a1;
}
}
IL_028f:
{
ASN1_t2114160832 * L_107 = V_10;
ByteU5BU5D_t4116647657* L_108 = VirtFuncInvoker0< ByteU5BU5D_t4116647657* >::Invoke(4 /* System.Byte[] Mono.Security.ASN1::GetBytes() */, L_107);
__this->set_m_signaturealgoparams_13(L_108);
goto IL_02a8;
}
IL_02a1:
{
__this->set_m_signaturealgoparams_13((ByteU5BU5D_t4116647657*)NULL);
}
IL_02a8:
{
ASN1_t2114160832 * L_109 = V_0;
int32_t L_110 = V_1;
ASN1_t2114160832 * L_111 = ASN1_Element_m2680269109(L_109, L_110, (uint8_t)((int32_t)129), /*hidden argument*/NULL);
V_14 = L_111;
ASN1_t2114160832 * L_112 = V_14;
if (!L_112)
{
goto IL_02ce;
}
}
IL_02bd:
{
int32_t L_113 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_113, (int32_t)1));
ASN1_t2114160832 * L_114 = V_14;
ByteU5BU5D_t4116647657* L_115 = ASN1_get_Value_m1857007406(L_114, /*hidden argument*/NULL);
__this->set_issuerUniqueID_17(L_115);
}
IL_02ce:
{
ASN1_t2114160832 * L_116 = V_0;
int32_t L_117 = V_1;
ASN1_t2114160832 * L_118 = ASN1_Element_m2680269109(L_116, L_117, (uint8_t)((int32_t)130), /*hidden argument*/NULL);
V_15 = L_118;
ASN1_t2114160832 * L_119 = V_15;
if (!L_119)
{
goto IL_02f4;
}
}
IL_02e3:
{
int32_t L_120 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_120, (int32_t)1));
ASN1_t2114160832 * L_121 = V_15;
ByteU5BU5D_t4116647657* L_122 = ASN1_get_Value_m1857007406(L_121, /*hidden argument*/NULL);
__this->set_subjectUniqueID_18(L_122);
}
IL_02f4:
{
ASN1_t2114160832 * L_123 = V_0;
int32_t L_124 = V_1;
ASN1_t2114160832 * L_125 = ASN1_Element_m2680269109(L_123, L_124, (uint8_t)((int32_t)163), /*hidden argument*/NULL);
V_16 = L_125;
ASN1_t2114160832 * L_126 = V_16;
if (!L_126)
{
goto IL_032e;
}
}
IL_0309:
{
ASN1_t2114160832 * L_127 = V_16;
int32_t L_128 = ASN1_get_Count_m3580979881(L_127, /*hidden argument*/NULL);
if ((!(((uint32_t)L_128) == ((uint32_t)1))))
{
goto IL_032e;
}
}
IL_0316:
{
ASN1_t2114160832 * L_129 = V_16;
ASN1_t2114160832 * L_130 = ASN1_get_Item_m3901126023(L_129, 0, /*hidden argument*/NULL);
X509ExtensionCollection_t609554708 * L_131 = (X509ExtensionCollection_t609554708 *)il2cpp_codegen_object_new(X509ExtensionCollection_t609554708_il2cpp_TypeInfo_var);
X509ExtensionCollection__ctor_m3315097415(L_131, L_130, /*hidden argument*/NULL);
__this->set_extensions_19(L_131);
goto IL_033a;
}
IL_032e:
{
X509ExtensionCollection_t609554708 * L_132 = (X509ExtensionCollection_t609554708 *)il2cpp_codegen_object_new(X509ExtensionCollection_t609554708_il2cpp_TypeInfo_var);
X509ExtensionCollection__ctor_m3315097415(L_132, (ASN1_t2114160832 *)NULL, /*hidden argument*/NULL);
__this->set_extensions_19(L_132);
}
IL_033a:
{
ByteU5BU5D_t4116647657* L_133 = ___data0;
RuntimeObject * L_134 = Array_Clone_m2672907798((RuntimeArray *)(RuntimeArray *)L_133, /*hidden argument*/NULL);
__this->set_m_encodedcert_1(((ByteU5BU5D_t4116647657*)Castclass((RuntimeObject*)L_134, ByteU5BU5D_t4116647657_il2cpp_TypeInfo_var)));
goto IL_0364;
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__exception_local = (Exception_t *)e.ex;
if(il2cpp_codegen_class_is_assignable_from (Exception_t_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex)))
goto CATCH_0350;
throw e;
}
CATCH_0350:
{ // begin catch(System.Exception)
{
V_17 = ((Exception_t *)__exception_local);
IL2CPP_RUNTIME_CLASS_INIT(X509Certificate_t489243024_il2cpp_TypeInfo_var);
String_t* L_135 = ((X509Certificate_t489243024_StaticFields*)il2cpp_codegen_static_fields_for(X509Certificate_t489243024_il2cpp_TypeInfo_var))->get_encoding_error_20();
Exception_t * L_136 = V_17;
CryptographicException_t248831461 * L_137 = (CryptographicException_t248831461 *)il2cpp_codegen_object_new(CryptographicException_t248831461_il2cpp_TypeInfo_var);
CryptographicException__ctor_m1422015889(L_137, L_135, L_136, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_137,X509Certificate_Parse_m1106379228_RuntimeMethod_var);
}
IL_035f:
{
goto IL_0364;
}
} // end catch (depth: 1)
IL_0364:
{
return;
}
}
// System.Byte[] Mono.Security.X509.X509Certificate::GetUnsignedBigInteger(System.Byte[])
extern "C" ByteU5BU5D_t4116647657* X509Certificate_GetUnsignedBigInteger_m1025066663 (X509Certificate_t489243024 * __this, ByteU5BU5D_t4116647657* ___integer0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (X509Certificate_GetUnsignedBigInteger_m1025066663_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
ByteU5BU5D_t4116647657* V_1 = NULL;
{
ByteU5BU5D_t4116647657* L_0 = ___integer0;
int32_t L_1 = 0;
uint8_t L_2 = (L_0)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_1));
if (L_2)
{
goto IL_0021;
}
}
{
ByteU5BU5D_t4116647657* L_3 = ___integer0;
V_0 = ((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_3)->max_length)))), (int32_t)1));
int32_t L_4 = V_0;
V_1 = ((ByteU5BU5D_t4116647657*)SZArrayNew(ByteU5BU5D_t4116647657_il2cpp_TypeInfo_var, (uint32_t)L_4));
ByteU5BU5D_t4116647657* L_5 = ___integer0;
ByteU5BU5D_t4116647657* L_6 = V_1;
int32_t L_7 = V_0;
Buffer_BlockCopy_m2884209081(NULL /*static, unused*/, (RuntimeArray *)(RuntimeArray *)L_5, 1, (RuntimeArray *)(RuntimeArray *)L_6, 0, L_7, /*hidden argument*/NULL);
ByteU5BU5D_t4116647657* L_8 = V_1;
return L_8;
}
IL_0021:
{
ByteU5BU5D_t4116647657* L_9 = ___integer0;
return L_9;
}
}
// System.Security.Cryptography.DSA Mono.Security.X509.X509Certificate::get_DSA()
extern "C" DSA_t2386879874 * X509Certificate_get_DSA_m1760272844 (X509Certificate_t489243024 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (X509Certificate_get_DSA_m1760272844_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
DSAParameters_t1885824122 V_0;
memset(&V_0, 0, sizeof(V_0));
ASN1_t2114160832 * V_1 = NULL;
ASN1_t2114160832 * V_2 = NULL;
{
ByteU5BU5D_t4116647657* L_0 = __this->get_m_keyalgoparams_7();
if (L_0)
{
goto IL_0016;
}
}
{
CryptographicException_t248831461 * L_1 = (CryptographicException_t248831461 *)il2cpp_codegen_object_new(CryptographicException_t248831461_il2cpp_TypeInfo_var);
CryptographicException__ctor_m503735289(L_1, _stringLiteral683764801, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1,X509Certificate_get_DSA_m1760272844_RuntimeMethod_var);
}
IL_0016:
{
DSA_t2386879874 * L_2 = __this->get__dsa_14();
if (L_2)
{
goto IL_012e;
}
}
{
il2cpp_codegen_initobj((&V_0), sizeof(DSAParameters_t1885824122 ));
ByteU5BU5D_t4116647657* L_3 = __this->get_m_publickey_10();
ASN1_t2114160832 * L_4 = (ASN1_t2114160832 *)il2cpp_codegen_object_new(ASN1_t2114160832_il2cpp_TypeInfo_var);
ASN1__ctor_m1601690794(L_4, L_3, /*hidden argument*/NULL);
V_1 = L_4;
ASN1_t2114160832 * L_5 = V_1;
if (!L_5)
{
goto IL_0047;
}
}
{
ASN1_t2114160832 * L_6 = V_1;
uint8_t L_7 = ASN1_get_Tag_m1032367219(L_6, /*hidden argument*/NULL);
if ((((int32_t)L_7) == ((int32_t)2)))
{
goto IL_0049;
}
}
IL_0047:
{
return (DSA_t2386879874 *)NULL;
}
IL_0049:
{
ASN1_t2114160832 * L_8 = V_1;
ByteU5BU5D_t4116647657* L_9 = ASN1_get_Value_m1857007406(L_8, /*hidden argument*/NULL);
ByteU5BU5D_t4116647657* L_10 = X509Certificate_GetUnsignedBigInteger_m1025066663(__this, L_9, /*hidden argument*/NULL);
(&V_0)->set_Y_7(L_10);
ByteU5BU5D_t4116647657* L_11 = __this->get_m_keyalgoparams_7();
ASN1_t2114160832 * L_12 = (ASN1_t2114160832 *)il2cpp_codegen_object_new(ASN1_t2114160832_il2cpp_TypeInfo_var);
ASN1__ctor_m1601690794(L_12, L_11, /*hidden argument*/NULL);
V_2 = L_12;
ASN1_t2114160832 * L_13 = V_2;
if (!L_13)
{
goto IL_0087;
}
}
{
ASN1_t2114160832 * L_14 = V_2;
uint8_t L_15 = ASN1_get_Tag_m1032367219(L_14, /*hidden argument*/NULL);
if ((!(((uint32_t)L_15) == ((uint32_t)((int32_t)48)))))
{
goto IL_0087;
}
}
{
ASN1_t2114160832 * L_16 = V_2;
int32_t L_17 = ASN1_get_Count_m3580979881(L_16, /*hidden argument*/NULL);
if ((((int32_t)L_17) >= ((int32_t)3)))
{
goto IL_0089;
}
}
IL_0087:
{
return (DSA_t2386879874 *)NULL;
}
IL_0089:
{
ASN1_t2114160832 * L_18 = V_2;
ASN1_t2114160832 * L_19 = ASN1_get_Item_m3901126023(L_18, 0, /*hidden argument*/NULL);
uint8_t L_20 = ASN1_get_Tag_m1032367219(L_19, /*hidden argument*/NULL);
if ((!(((uint32_t)L_20) == ((uint32_t)2))))
{
goto IL_00bf;
}
}
{
ASN1_t2114160832 * L_21 = V_2;
ASN1_t2114160832 * L_22 = ASN1_get_Item_m3901126023(L_21, 1, /*hidden argument*/NULL);
uint8_t L_23 = ASN1_get_Tag_m1032367219(L_22, /*hidden argument*/NULL);
if ((!(((uint32_t)L_23) == ((uint32_t)2))))
{
goto IL_00bf;
}
}
{
ASN1_t2114160832 * L_24 = V_2;
ASN1_t2114160832 * L_25 = ASN1_get_Item_m3901126023(L_24, 2, /*hidden argument*/NULL);
uint8_t L_26 = ASN1_get_Tag_m1032367219(L_25, /*hidden argument*/NULL);
if ((((int32_t)L_26) == ((int32_t)2)))
{
goto IL_00c1;
}
}
IL_00bf:
{
return (DSA_t2386879874 *)NULL;
}
IL_00c1:
{
ASN1_t2114160832 * L_27 = V_2;
ASN1_t2114160832 * L_28 = ASN1_get_Item_m3901126023(L_27, 0, /*hidden argument*/NULL);
ByteU5BU5D_t4116647657* L_29 = ASN1_get_Value_m1857007406(L_28, /*hidden argument*/NULL);
ByteU5BU5D_t4116647657* L_30 = X509Certificate_GetUnsignedBigInteger_m1025066663(__this, L_29, /*hidden argument*/NULL);
(&V_0)->set_P_3(L_30);
ASN1_t2114160832 * L_31 = V_2;
ASN1_t2114160832 * L_32 = ASN1_get_Item_m3901126023(L_31, 1, /*hidden argument*/NULL);
ByteU5BU5D_t4116647657* L_33 = ASN1_get_Value_m1857007406(L_32, /*hidden argument*/NULL);
ByteU5BU5D_t4116647657* L_34 = X509Certificate_GetUnsignedBigInteger_m1025066663(__this, L_33, /*hidden argument*/NULL);
(&V_0)->set_Q_4(L_34);
ASN1_t2114160832 * L_35 = V_2;
ASN1_t2114160832 * L_36 = ASN1_get_Item_m3901126023(L_35, 2, /*hidden argument*/NULL);
ByteU5BU5D_t4116647657* L_37 = ASN1_get_Value_m1857007406(L_36, /*hidden argument*/NULL);
ByteU5BU5D_t4116647657* L_38 = X509Certificate_GetUnsignedBigInteger_m1025066663(__this, L_37, /*hidden argument*/NULL);
(&V_0)->set_G_1(L_38);
ByteU5BU5D_t4116647657* L_39 = (&V_0)->get_Y_7();
DSACryptoServiceProvider_t3992668923 * L_40 = (DSACryptoServiceProvider_t3992668923 *)il2cpp_codegen_object_new(DSACryptoServiceProvider_t3992668923_il2cpp_TypeInfo_var);
DSACryptoServiceProvider__ctor_m1139102382(L_40, ((int32_t)((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_39)->max_length))))<<(int32_t)3)), /*hidden argument*/NULL);
__this->set__dsa_14(L_40);
DSA_t2386879874 * L_41 = __this->get__dsa_14();
DSAParameters_t1885824122 L_42 = V_0;
VirtActionInvoker1< DSAParameters_t1885824122 >::Invoke(12 /* System.Void System.Security.Cryptography.DSA::ImportParameters(System.Security.Cryptography.DSAParameters) */, L_41, L_42);
}
IL_012e:
{
DSA_t2386879874 * L_43 = __this->get__dsa_14();
return L_43;
}
}
// System.String Mono.Security.X509.X509Certificate::get_IssuerName()
extern "C" String_t* X509Certificate_get_IssuerName_m605048065 (X509Certificate_t489243024 * __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->get_m_issuername_5();
return L_0;
}
}
// System.Byte[] Mono.Security.X509.X509Certificate::get_KeyAlgorithmParameters()
extern "C" ByteU5BU5D_t4116647657* X509Certificate_get_KeyAlgorithmParameters_m681676289 (X509Certificate_t489243024 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (X509Certificate_get_KeyAlgorithmParameters_m681676289_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
ByteU5BU5D_t4116647657* L_0 = __this->get_m_keyalgoparams_7();
if (L_0)
{
goto IL_000d;
}
}
{
return (ByteU5BU5D_t4116647657*)NULL;
}
IL_000d:
{
ByteU5BU5D_t4116647657* L_1 = __this->get_m_keyalgoparams_7();
RuntimeObject * L_2 = Array_Clone_m2672907798((RuntimeArray *)(RuntimeArray *)L_1, /*hidden argument*/NULL);
return ((ByteU5BU5D_t4116647657*)Castclass((RuntimeObject*)L_2, ByteU5BU5D_t4116647657_il2cpp_TypeInfo_var));
}
}
// System.Byte[] Mono.Security.X509.X509Certificate::get_PublicKey()
extern "C" ByteU5BU5D_t4116647657* X509Certificate_get_PublicKey_m1627137142 (X509Certificate_t489243024 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (X509Certificate_get_PublicKey_m1627137142_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
ByteU5BU5D_t4116647657* L_0 = __this->get_m_publickey_10();
if (L_0)
{
goto IL_000d;
}
}
{
return (ByteU5BU5D_t4116647657*)NULL;
}
IL_000d:
{
ByteU5BU5D_t4116647657* L_1 = __this->get_m_publickey_10();
RuntimeObject * L_2 = Array_Clone_m2672907798((RuntimeArray *)(RuntimeArray *)L_1, /*hidden argument*/NULL);
return ((ByteU5BU5D_t4116647657*)Castclass((RuntimeObject*)L_2, ByteU5BU5D_t4116647657_il2cpp_TypeInfo_var));
}
}
// System.Byte[] Mono.Security.X509.X509Certificate::get_RawData()
extern "C" ByteU5BU5D_t4116647657* X509Certificate_get_RawData_m2387471414 (X509Certificate_t489243024 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (X509Certificate_get_RawData_m2387471414_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
ByteU5BU5D_t4116647657* L_0 = __this->get_m_encodedcert_1();
if (L_0)
{
goto IL_000d;
}
}
{
return (ByteU5BU5D_t4116647657*)NULL;
}
IL_000d:
{
ByteU5BU5D_t4116647657* L_1 = __this->get_m_encodedcert_1();
RuntimeObject * L_2 = Array_Clone_m2672907798((RuntimeArray *)(RuntimeArray *)L_1, /*hidden argument*/NULL);
return ((ByteU5BU5D_t4116647657*)Castclass((RuntimeObject*)L_2, ByteU5BU5D_t4116647657_il2cpp_TypeInfo_var));
}
}
// System.String Mono.Security.X509.X509Certificate::get_SubjectName()
extern "C" String_t* X509Certificate_get_SubjectName_m3160893681 (X509Certificate_t489243024 * __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->get_m_subject_9();
return L_0;
}
}
// System.DateTime Mono.Security.X509.X509Certificate::get_ValidFrom()
extern "C" DateTime_t3738529785 X509Certificate_get_ValidFrom_m1469376000 (X509Certificate_t489243024 * __this, const RuntimeMethod* method)
{
{
DateTime_t3738529785 L_0 = __this->get_m_from_2();
return L_0;
}
}
// System.DateTime Mono.Security.X509.X509Certificate::get_ValidUntil()
extern "C" DateTime_t3738529785 X509Certificate_get_ValidUntil_m678342786 (X509Certificate_t489243024 * __this, const RuntimeMethod* method)
{
{
DateTime_t3738529785 L_0 = __this->get_m_until_3();
return L_0;
}
}
// Mono.Security.ASN1 Mono.Security.X509.X509Certificate::GetIssuerName()
extern "C" ASN1_t2114160832 * X509Certificate_GetIssuerName_m4238857993 (X509Certificate_t489243024 * __this, const RuntimeMethod* method)
{
{
ASN1_t2114160832 * L_0 = __this->get_issuer_4();
return L_0;
}
}
// Mono.Security.ASN1 Mono.Security.X509.X509Certificate::GetSubjectName()
extern "C" ASN1_t2114160832 * X509Certificate_GetSubjectName_m584504796 (X509Certificate_t489243024 * __this, const RuntimeMethod* method)
{
{
ASN1_t2114160832 * L_0 = __this->get_subject_8();
return L_0;
}
}
// System.Byte[] Mono.Security.X509.X509Certificate::PEM(System.String,System.Byte[])
extern "C" ByteU5BU5D_t4116647657* X509Certificate_PEM_m1177570576 (RuntimeObject * __this /* static, unused */, String_t* ___type0, ByteU5BU5D_t4116647657* ___data1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (X509Certificate_PEM_m1177570576_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
String_t* V_1 = NULL;
String_t* V_2 = NULL;
int32_t V_3 = 0;
int32_t V_4 = 0;
String_t* V_5 = NULL;
{
IL2CPP_RUNTIME_CLASS_INIT(Encoding_t1523322056_il2cpp_TypeInfo_var);
Encoding_t1523322056 * L_0 = Encoding_get_ASCII_m3595602635(NULL /*static, unused*/, /*hidden argument*/NULL);
ByteU5BU5D_t4116647657* L_1 = ___data1;
String_t* L_2 = VirtFuncInvoker1< String_t*, ByteU5BU5D_t4116647657* >::Invoke(22 /* System.String System.Text.Encoding::GetString(System.Byte[]) */, L_0, L_1);
V_0 = L_2;
String_t* L_3 = ___type0;
IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
String_t* L_4 = String_Format_m2844511972(NULL /*static, unused*/, _stringLiteral418672143, L_3, /*hidden argument*/NULL);
V_1 = L_4;
String_t* L_5 = ___type0;
String_t* L_6 = String_Format_m2844511972(NULL /*static, unused*/, _stringLiteral2710142936, L_5, /*hidden argument*/NULL);
V_2 = L_6;
String_t* L_7 = V_0;
String_t* L_8 = V_1;
int32_t L_9 = String_IndexOf_m1977622757(L_7, L_8, /*hidden argument*/NULL);
String_t* L_10 = V_1;
int32_t L_11 = String_get_Length_m3847582255(L_10, /*hidden argument*/NULL);
V_3 = ((int32_t)il2cpp_codegen_add((int32_t)L_9, (int32_t)L_11));
String_t* L_12 = V_0;
String_t* L_13 = V_2;
int32_t L_14 = V_3;
int32_t L_15 = String_IndexOf_m3406607758(L_12, L_13, L_14, /*hidden argument*/NULL);
V_4 = L_15;
String_t* L_16 = V_0;
int32_t L_17 = V_3;
int32_t L_18 = V_4;
int32_t L_19 = V_3;
String_t* L_20 = String_Substring_m1610150815(L_16, L_17, ((int32_t)il2cpp_codegen_subtract((int32_t)L_18, (int32_t)L_19)), /*hidden argument*/NULL);
V_5 = L_20;
String_t* L_21 = V_5;
IL2CPP_RUNTIME_CLASS_INIT(Convert_t2465617642_il2cpp_TypeInfo_var);
ByteU5BU5D_t4116647657* L_22 = Convert_FromBase64String_m3685135396(NULL /*static, unused*/, L_21, /*hidden argument*/NULL);
return L_22;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void Mono.Security.X509.X509CertificateCollection::.ctor()
extern "C" void X509CertificateCollection__ctor_m3365535796 (X509CertificateCollection_t1542168549 * __this, const RuntimeMethod* method)
{
{
CollectionBase__ctor_m3343513710(__this, /*hidden argument*/NULL);
return;
}
}
// System.Collections.IEnumerator Mono.Security.X509.X509CertificateCollection::System.Collections.IEnumerable.GetEnumerator()
extern "C" RuntimeObject* X509CertificateCollection_System_Collections_IEnumerable_GetEnumerator_m279447643 (X509CertificateCollection_t1542168549 * __this, const RuntimeMethod* method)
{
{
ArrayList_t2718874744 * L_0 = CollectionBase_get_InnerList_m132195395(__this, /*hidden argument*/NULL);
RuntimeObject* L_1 = VirtFuncInvoker0< RuntimeObject* >::Invoke(43 /* System.Collections.IEnumerator System.Collections.ArrayList::GetEnumerator() */, L_0);
return L_1;
}
}
// Mono.Security.X509.X509Certificate Mono.Security.X509.X509CertificateCollection::get_Item(System.Int32)
extern "C" X509Certificate_t489243024 * X509CertificateCollection_get_Item_m3219599455 (X509CertificateCollection_t1542168549 * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (X509CertificateCollection_get_Item_m3219599455_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
ArrayList_t2718874744 * L_0 = CollectionBase_get_InnerList_m132195395(__this, /*hidden argument*/NULL);
int32_t L_1 = ___index0;
RuntimeObject * L_2 = VirtFuncInvoker1< RuntimeObject *, int32_t >::Invoke(21 /* System.Object System.Collections.ArrayList::get_Item(System.Int32) */, L_0, L_1);
return ((X509Certificate_t489243024 *)CastclassClass((RuntimeObject*)L_2, X509Certificate_t489243024_il2cpp_TypeInfo_var));
}
}
// System.Int32 Mono.Security.X509.X509CertificateCollection::Add(Mono.Security.X509.X509Certificate)
extern "C" int32_t X509CertificateCollection_Add_m3136524580 (X509CertificateCollection_t1542168549 * __this, X509Certificate_t489243024 * ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (X509CertificateCollection_Add_m3136524580_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
X509Certificate_t489243024 * L_0 = ___value0;
if (L_0)
{
goto IL_0011;
}
}
{
ArgumentNullException_t1615371798 * L_1 = (ArgumentNullException_t1615371798 *)il2cpp_codegen_object_new(ArgumentNullException_t1615371798_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m1170824041(L_1, _stringLiteral3493618073, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1,X509CertificateCollection_Add_m3136524580_RuntimeMethod_var);
}
IL_0011:
{
ArrayList_t2718874744 * L_2 = CollectionBase_get_InnerList_m132195395(__this, /*hidden argument*/NULL);
X509Certificate_t489243024 * L_3 = ___value0;
int32_t L_4 = VirtFuncInvoker1< int32_t, RuntimeObject * >::Invoke(30 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_2, L_3);
return L_4;
}
}
// Mono.Security.X509.X509CertificateCollection/X509CertificateEnumerator Mono.Security.X509.X509CertificateCollection::GetEnumerator()
extern "C" X509CertificateEnumerator_t3515934697 * X509CertificateCollection_GetEnumerator_m4229251522 (X509CertificateCollection_t1542168549 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (X509CertificateCollection_GetEnumerator_m4229251522_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
X509CertificateEnumerator_t3515934697 * L_0 = (X509CertificateEnumerator_t3515934697 *)il2cpp_codegen_object_new(X509CertificateEnumerator_t3515934697_il2cpp_TypeInfo_var);
X509CertificateEnumerator__ctor_m3747779152(L_0, __this, /*hidden argument*/NULL);
return L_0;
}
}
// System.Int32 Mono.Security.X509.X509CertificateCollection::GetHashCode()
extern "C" int32_t X509CertificateCollection_GetHashCode_m324533873 (X509CertificateCollection_t1542168549 * __this, const RuntimeMethod* method)
{
{
ArrayList_t2718874744 * L_0 = CollectionBase_get_InnerList_m132195395(__this, /*hidden argument*/NULL);
int32_t L_1 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, L_0);
return L_1;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void Mono.Security.X509.X509CertificateCollection/X509CertificateEnumerator::.ctor(Mono.Security.X509.X509CertificateCollection)
extern "C" void X509CertificateEnumerator__ctor_m3747779152 (X509CertificateEnumerator_t3515934697 * __this, X509CertificateCollection_t1542168549 * ___mappings0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (X509CertificateEnumerator__ctor_m3747779152_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Object__ctor_m297566312(__this, /*hidden argument*/NULL);
X509CertificateCollection_t1542168549 * L_0 = ___mappings0;
RuntimeObject* L_1 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.IEnumerator System.Collections.IEnumerable::GetEnumerator() */, IEnumerable_t1941168011_il2cpp_TypeInfo_var, L_0);
__this->set_enumerator_0(L_1);
return;
}
}
// System.Object Mono.Security.X509.X509CertificateCollection/X509CertificateEnumerator::System.Collections.IEnumerator.get_Current()
extern "C" RuntimeObject * X509CertificateEnumerator_System_Collections_IEnumerator_get_Current_m418791713 (X509CertificateEnumerator_t3515934697 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (X509CertificateEnumerator_System_Collections_IEnumerator_get_Current_m418791713_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = __this->get_enumerator_0();
RuntimeObject * L_1 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(0 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t1853284238_il2cpp_TypeInfo_var, L_0);
return L_1;
}
}
// System.Boolean Mono.Security.X509.X509CertificateCollection/X509CertificateEnumerator::System.Collections.IEnumerator.MoveNext()
extern "C" bool X509CertificateEnumerator_System_Collections_IEnumerator_MoveNext_m708500216 (X509CertificateEnumerator_t3515934697 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (X509CertificateEnumerator_System_Collections_IEnumerator_MoveNext_m708500216_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = __this->get_enumerator_0();
bool L_1 = InterfaceFuncInvoker0< bool >::Invoke(1 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t1853284238_il2cpp_TypeInfo_var, L_0);
return L_1;
}
}
// System.Void Mono.Security.X509.X509CertificateCollection/X509CertificateEnumerator::System.Collections.IEnumerator.Reset()
extern "C" void X509CertificateEnumerator_System_Collections_IEnumerator_Reset_m2928805663 (X509CertificateEnumerator_t3515934697 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (X509CertificateEnumerator_System_Collections_IEnumerator_Reset_m2928805663_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = __this->get_enumerator_0();
InterfaceActionInvoker0::Invoke(2 /* System.Void System.Collections.IEnumerator::Reset() */, IEnumerator_t1853284238_il2cpp_TypeInfo_var, L_0);
return;
}
}
// Mono.Security.X509.X509Certificate Mono.Security.X509.X509CertificateCollection/X509CertificateEnumerator::get_Current()
extern "C" X509Certificate_t489243024 * X509CertificateEnumerator_get_Current_m3041233561 (X509CertificateEnumerator_t3515934697 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (X509CertificateEnumerator_get_Current_m3041233561_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = __this->get_enumerator_0();
RuntimeObject * L_1 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(0 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t1853284238_il2cpp_TypeInfo_var, L_0);
return ((X509Certificate_t489243024 *)CastclassClass((RuntimeObject*)L_1, X509Certificate_t489243024_il2cpp_TypeInfo_var));
}
}
// System.Boolean Mono.Security.X509.X509CertificateCollection/X509CertificateEnumerator::MoveNext()
extern "C" bool X509CertificateEnumerator_MoveNext_m2269241175 (X509CertificateEnumerator_t3515934697 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (X509CertificateEnumerator_MoveNext_m2269241175_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = __this->get_enumerator_0();
bool L_1 = InterfaceFuncInvoker0< bool >::Invoke(1 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t1853284238_il2cpp_TypeInfo_var, L_0);
return L_1;
}
}
// System.Void Mono.Security.X509.X509CertificateCollection/X509CertificateEnumerator::Reset()
extern "C" void X509CertificateEnumerator_Reset_m122774664 (X509CertificateEnumerator_t3515934697 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (X509CertificateEnumerator_Reset_m122774664_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = __this->get_enumerator_0();
InterfaceActionInvoker0::Invoke(2 /* System.Void System.Collections.IEnumerator::Reset() */, IEnumerator_t1853284238_il2cpp_TypeInfo_var, L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void Mono.Security.X509.X509Extension::.ctor(Mono.Security.ASN1)
extern "C" void X509Extension__ctor_m1750445243 (X509Extension_t3173393652 * __this, ASN1_t2114160832 * ___asn10, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (X509Extension__ctor_m1750445243_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ASN1_t2114160832 * V_0 = NULL;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = 0;
NO_UNUSED_WARNING (__leave_target);
X509Extension_t3173393652 * G_B7_0 = NULL;
X509Extension_t3173393652 * G_B6_0 = NULL;
int32_t G_B8_0 = 0;
X509Extension_t3173393652 * G_B8_1 = NULL;
{
Object__ctor_m297566312(__this, /*hidden argument*/NULL);
ASN1_t2114160832 * L_0 = ___asn10;
uint8_t L_1 = ASN1_get_Tag_m1032367219(L_0, /*hidden argument*/NULL);
if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)48)))))
{
goto IL_001f;
}
}
{
ASN1_t2114160832 * L_2 = ___asn10;
int32_t L_3 = ASN1_get_Count_m3580979881(L_2, /*hidden argument*/NULL);
if ((((int32_t)L_3) >= ((int32_t)2)))
{
goto IL_002f;
}
}
IL_001f:
{
String_t* L_4 = Locale_GetText_m3374010885(NULL /*static, unused*/, _stringLiteral1590810976, /*hidden argument*/NULL);
ArgumentException_t132251570 * L_5 = (ArgumentException_t132251570 *)il2cpp_codegen_object_new(ArgumentException_t132251570_il2cpp_TypeInfo_var);
ArgumentException__ctor_m1312628991(L_5, L_4, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5,X509Extension__ctor_m1750445243_RuntimeMethod_var);
}
IL_002f:
{
ASN1_t2114160832 * L_6 = ___asn10;
ASN1_t2114160832 * L_7 = ASN1_get_Item_m3901126023(L_6, 0, /*hidden argument*/NULL);
uint8_t L_8 = ASN1_get_Tag_m1032367219(L_7, /*hidden argument*/NULL);
if ((((int32_t)L_8) == ((int32_t)6)))
{
goto IL_0051;
}
}
{
String_t* L_9 = Locale_GetText_m3374010885(NULL /*static, unused*/, _stringLiteral1590810976, /*hidden argument*/NULL);
ArgumentException_t132251570 * L_10 = (ArgumentException_t132251570 *)il2cpp_codegen_object_new(ArgumentException_t132251570_il2cpp_TypeInfo_var);
ArgumentException__ctor_m1312628991(L_10, L_9, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_10,X509Extension__ctor_m1750445243_RuntimeMethod_var);
}
IL_0051:
{
ASN1_t2114160832 * L_11 = ___asn10;
ASN1_t2114160832 * L_12 = ASN1_get_Item_m3901126023(L_11, 0, /*hidden argument*/NULL);
String_t* L_13 = ASN1Convert_ToOid_m1223840396(NULL /*static, unused*/, L_12, /*hidden argument*/NULL);
__this->set_extnOid_0(L_13);
ASN1_t2114160832 * L_14 = ___asn10;
ASN1_t2114160832 * L_15 = ASN1_get_Item_m3901126023(L_14, 1, /*hidden argument*/NULL);
uint8_t L_16 = ASN1_get_Tag_m1032367219(L_15, /*hidden argument*/NULL);
G_B6_0 = __this;
if ((!(((uint32_t)L_16) == ((uint32_t)1))))
{
G_B7_0 = __this;
goto IL_008d;
}
}
{
ASN1_t2114160832 * L_17 = ___asn10;
ASN1_t2114160832 * L_18 = ASN1_get_Item_m3901126023(L_17, 1, /*hidden argument*/NULL);
ByteU5BU5D_t4116647657* L_19 = ASN1_get_Value_m1857007406(L_18, /*hidden argument*/NULL);
int32_t L_20 = 0;
uint8_t L_21 = (L_19)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_20));
G_B8_0 = ((((int32_t)L_21) == ((int32_t)((int32_t)255)))? 1 : 0);
G_B8_1 = G_B6_0;
goto IL_008e;
}
IL_008d:
{
G_B8_0 = 0;
G_B8_1 = G_B7_0;
}
IL_008e:
{
G_B8_1->set_extnCritical_1((bool)G_B8_0);
ASN1_t2114160832 * L_22 = ___asn10;
ASN1_t2114160832 * L_23 = ___asn10;
int32_t L_24 = ASN1_get_Count_m3580979881(L_23, /*hidden argument*/NULL);
ASN1_t2114160832 * L_25 = ASN1_get_Item_m3901126023(L_22, ((int32_t)il2cpp_codegen_subtract((int32_t)L_24, (int32_t)1)), /*hidden argument*/NULL);
__this->set_extnValue_2(L_25);
ASN1_t2114160832 * L_26 = __this->get_extnValue_2();
uint8_t L_27 = ASN1_get_Tag_m1032367219(L_26, /*hidden argument*/NULL);
if ((!(((uint32_t)L_27) == ((uint32_t)4))))
{
goto IL_010e;
}
}
{
ASN1_t2114160832 * L_28 = __this->get_extnValue_2();
int32_t L_29 = ASN1_get_Length_m1923878580(L_28, /*hidden argument*/NULL);
if ((((int32_t)L_29) <= ((int32_t)0)))
{
goto IL_010e;
}
}
{
ASN1_t2114160832 * L_30 = __this->get_extnValue_2();
int32_t L_31 = ASN1_get_Count_m3580979881(L_30, /*hidden argument*/NULL);
if (L_31)
{
goto IL_010e;
}
}
IL_00d9:
try
{ // begin try (depth: 1)
ASN1_t2114160832 * L_32 = __this->get_extnValue_2();
ByteU5BU5D_t4116647657* L_33 = ASN1_get_Value_m1857007406(L_32, /*hidden argument*/NULL);
ASN1_t2114160832 * L_34 = (ASN1_t2114160832 *)il2cpp_codegen_object_new(ASN1_t2114160832_il2cpp_TypeInfo_var);
ASN1__ctor_m1601690794(L_34, L_33, /*hidden argument*/NULL);
V_0 = L_34;
ASN1_t2114160832 * L_35 = __this->get_extnValue_2();
ASN1_set_Value_m2803403806(L_35, (ByteU5BU5D_t4116647657*)(ByteU5BU5D_t4116647657*)NULL, /*hidden argument*/NULL);
ASN1_t2114160832 * L_36 = __this->get_extnValue_2();
ASN1_t2114160832 * L_37 = V_0;
ASN1_Add_m3468571571(L_36, L_37, /*hidden argument*/NULL);
goto IL_010e;
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__exception_local = (Exception_t *)e.ex;
if(il2cpp_codegen_class_is_assignable_from (RuntimeObject_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex)))
goto CATCH_0108;
throw e;
}
CATCH_0108:
{ // begin catch(System.Object)
goto IL_010e;
} // end catch (depth: 1)
IL_010e:
{
VirtActionInvoker0::Invoke(4 /* System.Void Mono.Security.X509.X509Extension::Decode() */, __this);
return;
}
}
// System.Void Mono.Security.X509.X509Extension::Decode()
extern "C" void X509Extension_Decode_m833805412 (X509Extension_t3173393652 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean Mono.Security.X509.X509Extension::Equals(System.Object)
extern "C" bool X509Extension_Equals_m1222951829 (X509Extension_t3173393652 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (X509Extension_Equals_m1222951829_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
X509Extension_t3173393652 * V_0 = NULL;
int32_t V_1 = 0;
{
RuntimeObject * L_0 = ___obj0;
if (L_0)
{
goto IL_0008;
}
}
{
return (bool)0;
}
IL_0008:
{
RuntimeObject * L_1 = ___obj0;
V_0 = ((X509Extension_t3173393652 *)IsInstClass((RuntimeObject*)L_1, X509Extension_t3173393652_il2cpp_TypeInfo_var));
X509Extension_t3173393652 * L_2 = V_0;
if (L_2)
{
goto IL_0017;
}
}
{
return (bool)0;
}
IL_0017:
{
bool L_3 = __this->get_extnCritical_1();
X509Extension_t3173393652 * L_4 = V_0;
bool L_5 = L_4->get_extnCritical_1();
if ((((int32_t)L_3) == ((int32_t)L_5)))
{
goto IL_002a;
}
}
{
return (bool)0;
}
IL_002a:
{
String_t* L_6 = __this->get_extnOid_0();
X509Extension_t3173393652 * L_7 = V_0;
String_t* L_8 = L_7->get_extnOid_0();
IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
bool L_9 = String_op_Inequality_m215368492(NULL /*static, unused*/, L_6, L_8, /*hidden argument*/NULL);
if (!L_9)
{
goto IL_0042;
}
}
{
return (bool)0;
}
IL_0042:
{
ASN1_t2114160832 * L_10 = __this->get_extnValue_2();
int32_t L_11 = ASN1_get_Length_m1923878580(L_10, /*hidden argument*/NULL);
X509Extension_t3173393652 * L_12 = V_0;
ASN1_t2114160832 * L_13 = L_12->get_extnValue_2();
int32_t L_14 = ASN1_get_Length_m1923878580(L_13, /*hidden argument*/NULL);
if ((((int32_t)L_11) == ((int32_t)L_14)))
{
goto IL_005f;
}
}
{
return (bool)0;
}
IL_005f:
{
V_1 = 0;
goto IL_0089;
}
IL_0066:
{
ASN1_t2114160832 * L_15 = __this->get_extnValue_2();
int32_t L_16 = V_1;
ASN1_t2114160832 * L_17 = ASN1_get_Item_m3901126023(L_15, L_16, /*hidden argument*/NULL);
X509Extension_t3173393652 * L_18 = V_0;
ASN1_t2114160832 * L_19 = L_18->get_extnValue_2();
int32_t L_20 = V_1;
ASN1_t2114160832 * L_21 = ASN1_get_Item_m3901126023(L_19, L_20, /*hidden argument*/NULL);
if ((((RuntimeObject*)(ASN1_t2114160832 *)L_17) == ((RuntimeObject*)(ASN1_t2114160832 *)L_21)))
{
goto IL_0085;
}
}
{
return (bool)0;
}
IL_0085:
{
int32_t L_22 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_22, (int32_t)1));
}
IL_0089:
{
int32_t L_23 = V_1;
ASN1_t2114160832 * L_24 = __this->get_extnValue_2();
int32_t L_25 = ASN1_get_Length_m1923878580(L_24, /*hidden argument*/NULL);
if ((((int32_t)L_23) < ((int32_t)L_25)))
{
goto IL_0066;
}
}
{
return (bool)1;
}
}
// System.Int32 Mono.Security.X509.X509Extension::GetHashCode()
extern "C" int32_t X509Extension_GetHashCode_m2866442052 (X509Extension_t3173393652 * __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->get_extnOid_0();
int32_t L_1 = String_GetHashCode_m1906374149(L_0, /*hidden argument*/NULL);
return L_1;
}
}
// System.Void Mono.Security.X509.X509Extension::WriteLine(System.Text.StringBuilder,System.Int32,System.Int32)
extern "C" void X509Extension_WriteLine_m1400196767 (X509Extension_t3173393652 * __this, StringBuilder_t * ___sb0, int32_t ___n1, int32_t ___pos2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (X509Extension_WriteLine_m1400196767_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ByteU5BU5D_t4116647657* V_0 = NULL;
int32_t V_1 = 0;
int32_t V_2 = 0;
int32_t V_3 = 0;
uint8_t V_4 = 0x0;
{
ASN1_t2114160832 * L_0 = __this->get_extnValue_2();
ByteU5BU5D_t4116647657* L_1 = ASN1_get_Value_m1857007406(L_0, /*hidden argument*/NULL);
V_0 = L_1;
int32_t L_2 = ___pos2;
V_1 = L_2;
V_2 = 0;
goto IL_005e;
}
IL_0015:
{
int32_t L_3 = V_2;
int32_t L_4 = ___n1;
if ((((int32_t)L_3) >= ((int32_t)L_4)))
{
goto IL_004e;
}
}
{
StringBuilder_t * L_5 = ___sb0;
ByteU5BU5D_t4116647657* L_6 = V_0;
int32_t L_7 = V_1;
int32_t L_8 = L_7;
V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_8, (int32_t)1));
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t4157843068_il2cpp_TypeInfo_var);
CultureInfo_t4157843068 * L_9 = CultureInfo_get_InvariantCulture_m3532445182(NULL /*static, unused*/, /*hidden argument*/NULL);
String_t* L_10 = Byte_ToString_m4063101981(((L_6)->GetAddressAtUnchecked(static_cast<il2cpp_array_size_t>(L_8))), _stringLiteral3451435000, L_9, /*hidden argument*/NULL);
StringBuilder_Append_m1965104174(L_5, L_10, /*hidden argument*/NULL);
StringBuilder_t * L_11 = ___sb0;
StringBuilder_Append_m1965104174(L_11, _stringLiteral3452614528, /*hidden argument*/NULL);
goto IL_005a;
}
IL_004e:
{
StringBuilder_t * L_12 = ___sb0;
StringBuilder_Append_m1965104174(L_12, _stringLiteral3786055882, /*hidden argument*/NULL);
}
IL_005a:
{
int32_t L_13 = V_2;
V_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)1));
}
IL_005e:
{
int32_t L_14 = V_2;
if ((((int32_t)L_14) < ((int32_t)8)))
{
goto IL_0015;
}
}
{
StringBuilder_t * L_15 = ___sb0;
StringBuilder_Append_m1965104174(L_15, _stringLiteral3450517376, /*hidden argument*/NULL);
int32_t L_16 = ___pos2;
V_1 = L_16;
V_3 = 0;
goto IL_00af;
}
IL_007a:
{
ByteU5BU5D_t4116647657* L_17 = V_0;
int32_t L_18 = V_1;
int32_t L_19 = L_18;
V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_19, (int32_t)1));
int32_t L_20 = L_19;
uint8_t L_21 = (L_17)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_20));
V_4 = L_21;
uint8_t L_22 = V_4;
if ((((int32_t)L_22) >= ((int32_t)((int32_t)32))))
{
goto IL_009d;
}
}
{
StringBuilder_t * L_23 = ___sb0;
StringBuilder_Append_m1965104174(L_23, _stringLiteral3452614530, /*hidden argument*/NULL);
goto IL_00ab;
}
IL_009d:
{
StringBuilder_t * L_24 = ___sb0;
uint8_t L_25 = V_4;
IL2CPP_RUNTIME_CLASS_INIT(Convert_t2465617642_il2cpp_TypeInfo_var);
Il2CppChar L_26 = Convert_ToChar_m2532412511(NULL /*static, unused*/, L_25, /*hidden argument*/NULL);
StringBuilder_Append_m2383614642(L_24, L_26, /*hidden argument*/NULL);
}
IL_00ab:
{
int32_t L_27 = V_3;
V_3 = ((int32_t)il2cpp_codegen_add((int32_t)L_27, (int32_t)1));
}
IL_00af:
{
int32_t L_28 = V_3;
int32_t L_29 = ___n1;
if ((((int32_t)L_28) < ((int32_t)L_29)))
{
goto IL_007a;
}
}
{
StringBuilder_t * L_30 = ___sb0;
String_t* L_31 = Environment_get_NewLine_m3211016485(NULL /*static, unused*/, /*hidden argument*/NULL);
StringBuilder_Append_m1965104174(L_30, L_31, /*hidden argument*/NULL);
return;
}
}
// System.String Mono.Security.X509.X509Extension::ToString()
extern "C" String_t* X509Extension_ToString_m3664524823 (X509Extension_t3173393652 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (X509Extension_ToString_m3664524823_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
StringBuilder_t * V_0 = NULL;
int32_t V_1 = 0;
int32_t V_2 = 0;
int32_t V_3 = 0;
int32_t V_4 = 0;
{
StringBuilder_t * L_0 = (StringBuilder_t *)il2cpp_codegen_object_new(StringBuilder_t_il2cpp_TypeInfo_var);
StringBuilder__ctor_m3121283359(L_0, /*hidden argument*/NULL);
V_0 = L_0;
ASN1_t2114160832 * L_1 = __this->get_extnValue_2();
int32_t L_2 = ASN1_get_Length_m1923878580(L_1, /*hidden argument*/NULL);
V_1 = ((int32_t)((int32_t)L_2>>(int32_t)3));
ASN1_t2114160832 * L_3 = __this->get_extnValue_2();
int32_t L_4 = ASN1_get_Length_m1923878580(L_3, /*hidden argument*/NULL);
int32_t L_5 = V_1;
V_2 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)((int32_t)((int32_t)L_5<<(int32_t)3))));
V_3 = 0;
V_4 = 0;
goto IL_0041;
}
IL_002e:
{
StringBuilder_t * L_6 = V_0;
int32_t L_7 = V_3;
X509Extension_WriteLine_m1400196767(__this, L_6, 8, L_7, /*hidden argument*/NULL);
int32_t L_8 = V_3;
V_3 = ((int32_t)il2cpp_codegen_add((int32_t)L_8, (int32_t)8));
int32_t L_9 = V_4;
V_4 = ((int32_t)il2cpp_codegen_add((int32_t)L_9, (int32_t)1));
}
IL_0041:
{
int32_t L_10 = V_4;
int32_t L_11 = V_1;
if ((((int32_t)L_10) < ((int32_t)L_11)))
{
goto IL_002e;
}
}
{
StringBuilder_t * L_12 = V_0;
int32_t L_13 = V_2;
int32_t L_14 = V_3;
X509Extension_WriteLine_m1400196767(__this, L_12, L_13, L_14, /*hidden argument*/NULL);
StringBuilder_t * L_15 = V_0;
String_t* L_16 = StringBuilder_ToString_m3317489284(L_15, /*hidden argument*/NULL);
return L_16;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void Mono.Security.X509.X509ExtensionCollection::.ctor()
extern "C" void X509ExtensionCollection__ctor_m2416193357 (X509ExtensionCollection_t609554708 * __this, const RuntimeMethod* method)
{
{
CollectionBase__ctor_m3343513710(__this, /*hidden argument*/NULL);
return;
}
}
// System.Void Mono.Security.X509.X509ExtensionCollection::.ctor(Mono.Security.ASN1)
extern "C" void X509ExtensionCollection__ctor_m3315097415 (X509ExtensionCollection_t609554708 * __this, ASN1_t2114160832 * ___asn10, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (X509ExtensionCollection__ctor_m3315097415_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
X509Extension_t3173393652 * V_1 = NULL;
{
X509ExtensionCollection__ctor_m2416193357(__this, /*hidden argument*/NULL);
__this->set_readOnly_1((bool)1);
ASN1_t2114160832 * L_0 = ___asn10;
if (L_0)
{
goto IL_0014;
}
}
{
return;
}
IL_0014:
{
ASN1_t2114160832 * L_1 = ___asn10;
uint8_t L_2 = ASN1_get_Tag_m1032367219(L_1, /*hidden argument*/NULL);
if ((((int32_t)L_2) == ((int32_t)((int32_t)48))))
{
goto IL_002c;
}
}
{
Exception_t * L_3 = (Exception_t *)il2cpp_codegen_object_new(Exception_t_il2cpp_TypeInfo_var);
Exception__ctor_m1152696503(L_3, _stringLiteral632220839, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3,X509ExtensionCollection__ctor_m3315097415_RuntimeMethod_var);
}
IL_002c:
{
V_0 = 0;
goto IL_0051;
}
IL_0033:
{
ASN1_t2114160832 * L_4 = ___asn10;
int32_t L_5 = V_0;
ASN1_t2114160832 * L_6 = ASN1_get_Item_m3901126023(L_4, L_5, /*hidden argument*/NULL);
X509Extension_t3173393652 * L_7 = (X509Extension_t3173393652 *)il2cpp_codegen_object_new(X509Extension_t3173393652_il2cpp_TypeInfo_var);
X509Extension__ctor_m1750445243(L_7, L_6, /*hidden argument*/NULL);
V_1 = L_7;
ArrayList_t2718874744 * L_8 = CollectionBase_get_InnerList_m132195395(__this, /*hidden argument*/NULL);
X509Extension_t3173393652 * L_9 = V_1;
VirtFuncInvoker1< int32_t, RuntimeObject * >::Invoke(30 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_8, L_9);
int32_t L_10 = V_0;
V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_10, (int32_t)1));
}
IL_0051:
{
int32_t L_11 = V_0;
ASN1_t2114160832 * L_12 = ___asn10;
int32_t L_13 = ASN1_get_Count_m3580979881(L_12, /*hidden argument*/NULL);
if ((((int32_t)L_11) < ((int32_t)L_13)))
{
goto IL_0033;
}
}
{
return;
}
}
// System.Collections.IEnumerator Mono.Security.X509.X509ExtensionCollection::System.Collections.IEnumerable.GetEnumerator()
extern "C" RuntimeObject* X509ExtensionCollection_System_Collections_IEnumerable_GetEnumerator_m2696143383 (X509ExtensionCollection_t609554708 * __this, const RuntimeMethod* method)
{
{
ArrayList_t2718874744 * L_0 = CollectionBase_get_InnerList_m132195395(__this, /*hidden argument*/NULL);
RuntimeObject* L_1 = VirtFuncInvoker0< RuntimeObject* >::Invoke(43 /* System.Collections.IEnumerator System.Collections.ArrayList::GetEnumerator() */, L_0);
return L_1;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void Mono.Xml.SecurityParser::.ctor()
extern "C" void SecurityParser__ctor_m1786039976 (SecurityParser_t4124480077 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (SecurityParser__ctor_m1786039976_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
SmallXmlParser__ctor_m202236734(__this, /*hidden argument*/NULL);
Stack_t2329662280 * L_0 = (Stack_t2329662280 *)il2cpp_codegen_object_new(Stack_t2329662280_il2cpp_TypeInfo_var);
Stack__ctor_m2907601956(L_0, /*hidden argument*/NULL);
__this->set_stack_15(L_0);
return;
}
}
// System.Void Mono.Xml.SecurityParser::LoadXml(System.String)
extern "C" void SecurityParser_LoadXml_m1638830459 (SecurityParser_t4124480077 * __this, String_t* ___xml0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (SecurityParser_LoadXml_m1638830459_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
__this->set_root_13((SecurityElement_t1046076091 *)NULL);
Stack_t2329662280 * L_0 = __this->get_stack_15();
VirtActionInvoker0::Invoke(13 /* System.Void System.Collections.Stack::Clear() */, L_0);
String_t* L_1 = ___xml0;
StringReader_t3465604688 * L_2 = (StringReader_t3465604688 *)il2cpp_codegen_object_new(StringReader_t3465604688_il2cpp_TypeInfo_var);
StringReader__ctor_m126993932(L_2, L_1, /*hidden argument*/NULL);
SmallXmlParser_Parse_m2140493703(__this, L_2, __this, /*hidden argument*/NULL);
return;
}
}
// System.Security.SecurityElement Mono.Xml.SecurityParser::ToXml()
extern "C" SecurityElement_t1046076091 * SecurityParser_ToXml_m3880004309 (SecurityParser_t4124480077 * __this, const RuntimeMethod* method)
{
{
SecurityElement_t1046076091 * L_0 = __this->get_root_13();
return L_0;
}
}
// System.Void Mono.Xml.SecurityParser::OnStartParsing(Mono.Xml.SmallXmlParser)
extern "C" void SecurityParser_OnStartParsing_m160443947 (SecurityParser_t4124480077 * __this, SmallXmlParser_t973787839 * ___parser0, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void Mono.Xml.SecurityParser::OnProcessingInstruction(System.String,System.String)
extern "C" void SecurityParser_OnProcessingInstruction_m2327827622 (SecurityParser_t4124480077 * __this, String_t* ___name0, String_t* ___text1, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void Mono.Xml.SecurityParser::OnIgnorableWhitespace(System.String)
extern "C" void SecurityParser_OnIgnorableWhitespace_m1130543143 (SecurityParser_t4124480077 * __this, String_t* ___s0, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void Mono.Xml.SecurityParser::OnStartElement(System.String,Mono.Xml.SmallXmlParser/IAttrList)
extern "C" void SecurityParser_OnStartElement_m2534612579 (SecurityParser_t4124480077 * __this, String_t* ___name0, RuntimeObject* ___attrs1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (SecurityParser_OnStartElement_m2534612579_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
SecurityElement_t1046076091 * V_0 = NULL;
SecurityElement_t1046076091 * V_1 = NULL;
int32_t V_2 = 0;
int32_t V_3 = 0;
{
String_t* L_0 = ___name0;
SecurityElement_t1046076091 * L_1 = (SecurityElement_t1046076091 *)il2cpp_codegen_object_new(SecurityElement_t1046076091_il2cpp_TypeInfo_var);
SecurityElement__ctor_m6516005(L_1, L_0, /*hidden argument*/NULL);
V_0 = L_1;
SecurityElement_t1046076091 * L_2 = __this->get_root_13();
if (L_2)
{
goto IL_0025;
}
}
{
SecurityElement_t1046076091 * L_3 = V_0;
__this->set_root_13(L_3);
SecurityElement_t1046076091 * L_4 = V_0;
__this->set_current_14(L_4);
goto IL_003d;
}
IL_0025:
{
Stack_t2329662280 * L_5 = __this->get_stack_15();
RuntimeObject * L_6 = VirtFuncInvoker0< RuntimeObject * >::Invoke(17 /* System.Object System.Collections.Stack::Peek() */, L_5);
V_1 = ((SecurityElement_t1046076091 *)CastclassSealed((RuntimeObject*)L_6, SecurityElement_t1046076091_il2cpp_TypeInfo_var));
SecurityElement_t1046076091 * L_7 = V_1;
SecurityElement_t1046076091 * L_8 = V_0;
SecurityElement_AddChild_m1606852781(L_7, L_8, /*hidden argument*/NULL);
}
IL_003d:
{
Stack_t2329662280 * L_9 = __this->get_stack_15();
SecurityElement_t1046076091 * L_10 = V_0;
VirtActionInvoker1< RuntimeObject * >::Invoke(19 /* System.Void System.Collections.Stack::Push(System.Object) */, L_9, L_10);
SecurityElement_t1046076091 * L_11 = V_0;
__this->set_current_14(L_11);
RuntimeObject* L_12 = ___attrs1;
int32_t L_13 = InterfaceFuncInvoker0< int32_t >::Invoke(0 /* System.Int32 Mono.Xml.SmallXmlParser/IAttrList::get_Length() */, IAttrList_t3807428360_il2cpp_TypeInfo_var, L_12);
V_2 = L_13;
V_3 = 0;
goto IL_0080;
}
IL_005e:
{
SecurityElement_t1046076091 * L_14 = __this->get_current_14();
RuntimeObject* L_15 = ___attrs1;
int32_t L_16 = V_3;
String_t* L_17 = InterfaceFuncInvoker1< String_t*, int32_t >::Invoke(1 /* System.String Mono.Xml.SmallXmlParser/IAttrList::GetName(System.Int32) */, IAttrList_t3807428360_il2cpp_TypeInfo_var, L_15, L_16);
RuntimeObject* L_18 = ___attrs1;
int32_t L_19 = V_3;
String_t* L_20 = InterfaceFuncInvoker1< String_t*, int32_t >::Invoke(2 /* System.String Mono.Xml.SmallXmlParser/IAttrList::GetValue(System.Int32) */, IAttrList_t3807428360_il2cpp_TypeInfo_var, L_18, L_19);
IL2CPP_RUNTIME_CLASS_INIT(SecurityElement_t1046076091_il2cpp_TypeInfo_var);
String_t* L_21 = SecurityElement_Escape_m1342311983(NULL /*static, unused*/, L_20, /*hidden argument*/NULL);
SecurityElement_AddAttribute_m311510562(L_14, L_17, L_21, /*hidden argument*/NULL);
int32_t L_22 = V_3;
V_3 = ((int32_t)il2cpp_codegen_add((int32_t)L_22, (int32_t)1));
}
IL_0080:
{
int32_t L_23 = V_3;
int32_t L_24 = V_2;
if ((((int32_t)L_23) < ((int32_t)L_24)))
{
goto IL_005e;
}
}
{
return;
}
}
// System.Void Mono.Xml.SecurityParser::OnEndElement(System.String)
extern "C" void SecurityParser_OnEndElement_m2088612360 (SecurityParser_t4124480077 * __this, String_t* ___name0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (SecurityParser_OnEndElement_m2088612360_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Stack_t2329662280 * L_0 = __this->get_stack_15();
RuntimeObject * L_1 = VirtFuncInvoker0< RuntimeObject * >::Invoke(18 /* System.Object System.Collections.Stack::Pop() */, L_0);
__this->set_current_14(((SecurityElement_t1046076091 *)CastclassSealed((RuntimeObject*)L_1, SecurityElement_t1046076091_il2cpp_TypeInfo_var)));
return;
}
}
// System.Void Mono.Xml.SecurityParser::OnChars(System.String)
extern "C" void SecurityParser_OnChars_m396174937 (SecurityParser_t4124480077 * __this, String_t* ___ch0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (SecurityParser_OnChars_m396174937_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
SecurityElement_t1046076091 * L_0 = __this->get_current_14();
String_t* L_1 = ___ch0;
IL2CPP_RUNTIME_CLASS_INIT(SecurityElement_t1046076091_il2cpp_TypeInfo_var);
String_t* L_2 = SecurityElement_Escape_m1342311983(NULL /*static, unused*/, L_1, /*hidden argument*/NULL);
SecurityElement_set_Text_m3975773934(L_0, L_2, /*hidden argument*/NULL);
return;
}
}
// System.Void Mono.Xml.SecurityParser::OnEndParsing(Mono.Xml.SmallXmlParser)
extern "C" void SecurityParser_OnEndParsing_m2521892142 (SecurityParser_t4124480077 * __this, SmallXmlParser_t973787839 * ___parser0, const RuntimeMethod* method)
{
{
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void Mono.Xml.SmallXmlParser::.ctor()
extern "C" void SmallXmlParser__ctor_m202236734 (SmallXmlParser_t973787839 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (SmallXmlParser__ctor_m202236734_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Stack_t2329662280 * L_0 = (Stack_t2329662280 *)il2cpp_codegen_object_new(Stack_t2329662280_il2cpp_TypeInfo_var);
Stack__ctor_m2907601956(L_0, /*hidden argument*/NULL);
__this->set_elementNames_2(L_0);
Stack_t2329662280 * L_1 = (Stack_t2329662280 *)il2cpp_codegen_object_new(Stack_t2329662280_il2cpp_TypeInfo_var);
Stack__ctor_m2907601956(L_1, /*hidden argument*/NULL);
__this->set_xmlSpaces_3(L_1);
StringBuilder_t * L_2 = (StringBuilder_t *)il2cpp_codegen_object_new(StringBuilder_t_il2cpp_TypeInfo_var);
StringBuilder__ctor_m2367297767(L_2, ((int32_t)200), /*hidden argument*/NULL);
__this->set_buffer_5(L_2);
__this->set_nameBuffer_6(((CharU5BU5D_t3528271667*)SZArrayNew(CharU5BU5D_t3528271667_il2cpp_TypeInfo_var, (uint32_t)((int32_t)30))));
AttrListImpl_t567962447 * L_3 = (AttrListImpl_t567962447 *)il2cpp_codegen_object_new(AttrListImpl_t567962447_il2cpp_TypeInfo_var);
AttrListImpl__ctor_m3844427077(L_3, /*hidden argument*/NULL);
__this->set_attributes_8(L_3);
__this->set_line_9(1);
Object__ctor_m297566312(__this, /*hidden argument*/NULL);
return;
}
}
// System.Exception Mono.Xml.SmallXmlParser::Error(System.String)
extern "C" Exception_t * SmallXmlParser_Error_m3899025466 (SmallXmlParser_t973787839 * __this, String_t* ___msg0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (SmallXmlParser_Error_m3899025466_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = ___msg0;
int32_t L_1 = __this->get_line_9();
int32_t L_2 = __this->get_column_10();
SmallXmlParserException_t1329648272 * L_3 = (SmallXmlParserException_t1329648272 *)il2cpp_codegen_object_new(SmallXmlParserException_t1329648272_il2cpp_TypeInfo_var);
SmallXmlParserException__ctor_m1976648878(L_3, L_0, L_1, L_2, /*hidden argument*/NULL);
return L_3;
}
}
// System.Exception Mono.Xml.SmallXmlParser::UnexpectedEndError()
extern "C" Exception_t * SmallXmlParser_UnexpectedEndError_m1914362401 (SmallXmlParser_t973787839 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (SmallXmlParser_UnexpectedEndError_m1914362401_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
StringU5BU5D_t1281789340* V_0 = NULL;
{
Stack_t2329662280 * L_0 = __this->get_elementNames_2();
int32_t L_1 = VirtFuncInvoker0< int32_t >::Invoke(10 /* System.Int32 System.Collections.Stack::get_Count() */, L_0);
V_0 = ((StringU5BU5D_t1281789340*)SZArrayNew(StringU5BU5D_t1281789340_il2cpp_TypeInfo_var, (uint32_t)L_1));
Stack_t2329662280 * L_2 = __this->get_elementNames_2();
StringU5BU5D_t1281789340* L_3 = V_0;
VirtActionInvoker2< RuntimeArray *, int32_t >::Invoke(15 /* System.Void System.Collections.Stack::CopyTo(System.Array,System.Int32) */, L_2, (RuntimeArray *)(RuntimeArray *)L_3, 0);
StringU5BU5D_t1281789340* L_4 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
String_t* L_5 = String_Join_m2050845953(NULL /*static, unused*/, _stringLiteral3452614532, L_4, /*hidden argument*/NULL);
String_t* L_6 = String_Format_m2844511972(NULL /*static, unused*/, _stringLiteral2888367018, L_5, /*hidden argument*/NULL);
Exception_t * L_7 = SmallXmlParser_Error_m3899025466(__this, L_6, /*hidden argument*/NULL);
return L_7;
}
}
// System.Boolean Mono.Xml.SmallXmlParser::IsNameChar(System.Char,System.Boolean)
extern "C" bool SmallXmlParser_IsNameChar_m2946368541 (SmallXmlParser_t973787839 * __this, Il2CppChar ___c0, bool ___start1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (SmallXmlParser_IsNameChar_m2946368541_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Il2CppChar V_0 = 0x0;
int32_t V_1 = 0;
{
Il2CppChar L_0 = ___c0;
V_0 = L_0;
Il2CppChar L_1 = V_0;
if ((((int32_t)L_1) == ((int32_t)((int32_t)45))))
{
goto IL_0029;
}
}
{
Il2CppChar L_2 = V_0;
if ((((int32_t)L_2) == ((int32_t)((int32_t)46))))
{
goto IL_0029;
}
}
{
Il2CppChar L_3 = V_0;
if ((((int32_t)L_3) == ((int32_t)((int32_t)58))))
{
goto IL_0027;
}
}
{
Il2CppChar L_4 = V_0;
if ((((int32_t)L_4) == ((int32_t)((int32_t)95))))
{
goto IL_0027;
}
}
{
goto IL_002e;
}
IL_0027:
{
return (bool)1;
}
IL_0029:
{
bool L_5 = ___start1;
return (bool)((((int32_t)L_5) == ((int32_t)0))? 1 : 0);
}
IL_002e:
{
Il2CppChar L_6 = ___c0;
if ((((int32_t)L_6) <= ((int32_t)((int32_t)256))))
{
goto IL_007b;
}
}
{
Il2CppChar L_7 = ___c0;
V_0 = L_7;
Il2CppChar L_8 = V_0;
if ((((int32_t)L_8) == ((int32_t)((int32_t)1765))))
{
goto IL_0061;
}
}
{
Il2CppChar L_9 = V_0;
if ((((int32_t)L_9) == ((int32_t)((int32_t)1766))))
{
goto IL_0061;
}
}
{
Il2CppChar L_10 = V_0;
if ((((int32_t)L_10) == ((int32_t)((int32_t)1369))))
{
goto IL_0061;
}
}
{
goto IL_0063;
}
IL_0061:
{
return (bool)1;
}
IL_0063:
{
Il2CppChar L_11 = ___c0;
if ((((int32_t)((int32_t)699)) > ((int32_t)L_11)))
{
goto IL_007b;
}
}
{
Il2CppChar L_12 = ___c0;
if ((((int32_t)L_12) > ((int32_t)((int32_t)705))))
{
goto IL_007b;
}
}
{
return (bool)1;
}
IL_007b:
{
Il2CppChar L_13 = ___c0;
IL2CPP_RUNTIME_CLASS_INIT(Char_t3634460470_il2cpp_TypeInfo_var);
int32_t L_14 = Char_GetUnicodeCategory_m57882613(NULL /*static, unused*/, L_13, /*hidden argument*/NULL);
V_1 = L_14;
int32_t L_15 = V_1;
switch (L_15)
{
case 0:
{
goto IL_00b5;
}
case 1:
{
goto IL_00b5;
}
case 2:
{
goto IL_00b5;
}
case 3:
{
goto IL_00b7;
}
case 4:
{
goto IL_00b5;
}
case 5:
{
goto IL_00b7;
}
case 6:
{
goto IL_00b7;
}
case 7:
{
goto IL_00b7;
}
case 8:
{
goto IL_00b7;
}
case 9:
{
goto IL_00b5;
}
}
}
{
goto IL_00bc;
}
IL_00b5:
{
return (bool)1;
}
IL_00b7:
{
bool L_16 = ___start1;
return (bool)((((int32_t)L_16) == ((int32_t)0))? 1 : 0);
}
IL_00bc:
{
return (bool)0;
}
}
// System.Boolean Mono.Xml.SmallXmlParser::IsWhitespace(System.Int32)
extern "C" bool SmallXmlParser_IsWhitespace_m156831381 (SmallXmlParser_t973787839 * __this, int32_t ___c0, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
int32_t L_0 = ___c0;
V_0 = L_0;
int32_t L_1 = V_0;
switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_1, (int32_t)((int32_t)9))))
{
case 0:
{
goto IL_002c;
}
case 1:
{
goto IL_002c;
}
case 2:
{
goto IL_001f;
}
case 3:
{
goto IL_001f;
}
case 4:
{
goto IL_002c;
}
}
}
IL_001f:
{
int32_t L_2 = V_0;
if ((((int32_t)L_2) == ((int32_t)((int32_t)32))))
{
goto IL_002c;
}
}
{
goto IL_002e;
}
IL_002c:
{
return (bool)1;
}
IL_002e:
{
return (bool)0;
}
}
// System.Void Mono.Xml.SmallXmlParser::SkipWhitespaces()
extern "C" void SmallXmlParser_SkipWhitespaces_m990960618 (SmallXmlParser_t973787839 * __this, const RuntimeMethod* method)
{
{
SmallXmlParser_SkipWhitespaces_m4243606597(__this, (bool)0, /*hidden argument*/NULL);
return;
}
}
// System.Void Mono.Xml.SmallXmlParser::HandleWhitespaces()
extern "C" void SmallXmlParser_HandleWhitespaces_m549588711 (SmallXmlParser_t973787839 * __this, const RuntimeMethod* method)
{
{
goto IL_0018;
}
IL_0005:
{
StringBuilder_t * L_0 = __this->get_buffer_5();
int32_t L_1 = SmallXmlParser_Read_m3485223434(__this, /*hidden argument*/NULL);
StringBuilder_Append_m2383614642(L_0, (((int32_t)((uint16_t)L_1))), /*hidden argument*/NULL);
}
IL_0018:
{
int32_t L_2 = SmallXmlParser_Peek_m1303779789(__this, /*hidden argument*/NULL);
bool L_3 = SmallXmlParser_IsWhitespace_m156831381(__this, L_2, /*hidden argument*/NULL);
if (L_3)
{
goto IL_0005;
}
}
{
int32_t L_4 = SmallXmlParser_Peek_m1303779789(__this, /*hidden argument*/NULL);
if ((((int32_t)L_4) == ((int32_t)((int32_t)60))))
{
goto IL_0049;
}
}
{
int32_t L_5 = SmallXmlParser_Peek_m1303779789(__this, /*hidden argument*/NULL);
if ((((int32_t)L_5) < ((int32_t)0)))
{
goto IL_0049;
}
}
{
__this->set_isWhitespace_7((bool)0);
}
IL_0049:
{
return;
}
}
// System.Void Mono.Xml.SmallXmlParser::SkipWhitespaces(System.Boolean)
extern "C" void SmallXmlParser_SkipWhitespaces_m4243606597 (SmallXmlParser_t973787839 * __this, bool ___expected0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (SmallXmlParser_SkipWhitespaces_m4243606597_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
IL_0000:
{
int32_t L_0 = SmallXmlParser_Peek_m1303779789(__this, /*hidden argument*/NULL);
V_0 = L_0;
int32_t L_1 = V_0;
switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_1, (int32_t)((int32_t)9))))
{
case 0:
{
goto IL_0031;
}
case 1:
{
goto IL_0031;
}
case 2:
{
goto IL_0024;
}
case 3:
{
goto IL_0024;
}
case 4:
{
goto IL_0031;
}
}
}
IL_0024:
{
int32_t L_2 = V_0;
if ((((int32_t)L_2) == ((int32_t)((int32_t)32))))
{
goto IL_0031;
}
}
{
goto IL_0046;
}
IL_0031:
{
SmallXmlParser_Read_m3485223434(__this, /*hidden argument*/NULL);
bool L_3 = ___expected0;
if (!L_3)
{
goto IL_0041;
}
}
{
___expected0 = (bool)0;
}
IL_0041:
{
goto IL_0000;
}
IL_0046:
{
bool L_4 = ___expected0;
if (!L_4)
{
goto IL_0058;
}
}
{
Exception_t * L_5 = SmallXmlParser_Error_m3899025466(__this, _stringLiteral2234486756, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5,SmallXmlParser_SkipWhitespaces_m4243606597_RuntimeMethod_var);
}
IL_0058:
{
return;
}
// Dead block : IL_0059: br IL_0000
}
// System.Int32 Mono.Xml.SmallXmlParser::Peek()
extern "C" int32_t SmallXmlParser_Peek_m1303779789 (SmallXmlParser_t973787839 * __this, const RuntimeMethod* method)
{
{
TextReader_t283511965 * L_0 = __this->get_reader_1();
int32_t L_1 = VirtFuncInvoker0< int32_t >::Invoke(6 /* System.Int32 System.IO.TextReader::Peek() */, L_0);
return L_1;
}
}
// System.Int32 Mono.Xml.SmallXmlParser::Read()
extern "C" int32_t SmallXmlParser_Read_m3485223434 (SmallXmlParser_t973787839 * __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
TextReader_t283511965 * L_0 = __this->get_reader_1();
int32_t L_1 = VirtFuncInvoker0< int32_t >::Invoke(7 /* System.Int32 System.IO.TextReader::Read() */, L_0);
V_0 = L_1;
int32_t L_2 = V_0;
if ((!(((uint32_t)L_2) == ((uint32_t)((int32_t)10)))))
{
goto IL_001b;
}
}
{
__this->set_resetColumn_11((bool)1);
}
IL_001b:
{
bool L_3 = __this->get_resetColumn_11();
if (!L_3)
{
goto IL_0047;
}
}
{
int32_t L_4 = __this->get_line_9();
__this->set_line_9(((int32_t)il2cpp_codegen_add((int32_t)L_4, (int32_t)1)));
__this->set_resetColumn_11((bool)0);
__this->set_column_10(1);
goto IL_0055;
}
IL_0047:
{
int32_t L_5 = __this->get_column_10();
__this->set_column_10(((int32_t)il2cpp_codegen_add((int32_t)L_5, (int32_t)1)));
}
IL_0055:
{
int32_t L_6 = V_0;
return L_6;
}
}
// System.Void Mono.Xml.SmallXmlParser::Expect(System.Int32)
extern "C" void SmallXmlParser_Expect_m674880652 (SmallXmlParser_t973787839 * __this, int32_t ___c0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (SmallXmlParser_Expect_m674880652_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
{
int32_t L_0 = SmallXmlParser_Read_m3485223434(__this, /*hidden argument*/NULL);
V_0 = L_0;
int32_t L_1 = V_0;
if ((((int32_t)L_1) >= ((int32_t)0)))
{
goto IL_0015;
}
}
{
Exception_t * L_2 = SmallXmlParser_UnexpectedEndError_m1914362401(__this, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2,SmallXmlParser_Expect_m674880652_RuntimeMethod_var);
}
IL_0015:
{
int32_t L_3 = V_0;
int32_t L_4 = ___c0;
if ((((int32_t)L_3) == ((int32_t)L_4)))
{
goto IL_003b;
}
}
{
int32_t L_5 = ___c0;
Il2CppChar L_6 = ((Il2CppChar)(((int32_t)((uint16_t)L_5))));
RuntimeObject * L_7 = Box(Char_t3634460470_il2cpp_TypeInfo_var, &L_6);
int32_t L_8 = V_0;
Il2CppChar L_9 = ((Il2CppChar)(((int32_t)((uint16_t)L_8))));
RuntimeObject * L_10 = Box(Char_t3634460470_il2cpp_TypeInfo_var, &L_9);
IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
String_t* L_11 = String_Format_m2556382932(NULL /*static, unused*/, _stringLiteral3607331757, L_7, L_10, /*hidden argument*/NULL);
Exception_t * L_12 = SmallXmlParser_Error_m3899025466(__this, L_11, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_12,SmallXmlParser_Expect_m674880652_RuntimeMethod_var);
}
IL_003b:
{
return;
}
}
// System.String Mono.Xml.SmallXmlParser::ReadUntil(System.Char,System.Boolean)
extern "C" String_t* SmallXmlParser_ReadUntil_m2715581630 (SmallXmlParser_t973787839 * __this, Il2CppChar ___until0, bool ___handleReferences1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (SmallXmlParser_ReadUntil_m2715581630_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Il2CppChar V_0 = 0x0;
String_t* V_1 = NULL;
IL_0000:
{
int32_t L_0 = SmallXmlParser_Peek_m1303779789(__this, /*hidden argument*/NULL);
if ((((int32_t)L_0) >= ((int32_t)0)))
{
goto IL_0013;
}
}
{
Exception_t * L_1 = SmallXmlParser_UnexpectedEndError_m1914362401(__this, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1,SmallXmlParser_ReadUntil_m2715581630_RuntimeMethod_var);
}
IL_0013:
{
int32_t L_2 = SmallXmlParser_Read_m3485223434(__this, /*hidden argument*/NULL);
V_0 = (((int32_t)((uint16_t)L_2)));
Il2CppChar L_3 = V_0;
Il2CppChar L_4 = ___until0;
if ((!(((uint32_t)L_3) == ((uint32_t)L_4))))
{
goto IL_0027;
}
}
{
goto IL_0052;
}
IL_0027:
{
bool L_5 = ___handleReferences1;
if (!L_5)
{
goto IL_0040;
}
}
{
Il2CppChar L_6 = V_0;
if ((!(((uint32_t)L_6) == ((uint32_t)((int32_t)38)))))
{
goto IL_0040;
}
}
{
SmallXmlParser_ReadReference_m1750252339(__this, /*hidden argument*/NULL);
goto IL_004d;
}
IL_0040:
{
StringBuilder_t * L_7 = __this->get_buffer_5();
Il2CppChar L_8 = V_0;
StringBuilder_Append_m2383614642(L_7, L_8, /*hidden argument*/NULL);
}
IL_004d:
{
goto IL_0000;
}
IL_0052:
{
StringBuilder_t * L_9 = __this->get_buffer_5();
String_t* L_10 = StringBuilder_ToString_m3317489284(L_9, /*hidden argument*/NULL);
V_1 = L_10;
StringBuilder_t * L_11 = __this->get_buffer_5();
StringBuilder_set_Length_m1410065908(L_11, 0, /*hidden argument*/NULL);
String_t* L_12 = V_1;
return L_12;
}
}
// System.String Mono.Xml.SmallXmlParser::ReadName()
extern "C" String_t* SmallXmlParser_ReadName_m3409228522 (SmallXmlParser_t973787839 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (SmallXmlParser_ReadName_m3409228522_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
Il2CppChar V_2 = 0x0;
CharU5BU5D_t3528271667* V_3 = NULL;
{
V_0 = 0;
int32_t L_0 = SmallXmlParser_Peek_m1303779789(__this, /*hidden argument*/NULL);
if ((((int32_t)L_0) < ((int32_t)0)))
{
goto IL_0021;
}
}
{
int32_t L_1 = SmallXmlParser_Peek_m1303779789(__this, /*hidden argument*/NULL);
bool L_2 = SmallXmlParser_IsNameChar_m2946368541(__this, (((int32_t)((uint16_t)L_1))), (bool)1, /*hidden argument*/NULL);
if (L_2)
{
goto IL_002d;
}
}
IL_0021:
{
Exception_t * L_3 = SmallXmlParser_Error_m3899025466(__this, _stringLiteral178613742, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3,SmallXmlParser_ReadName_m3409228522_RuntimeMethod_var);
}
IL_002d:
{
int32_t L_4 = SmallXmlParser_Peek_m1303779789(__this, /*hidden argument*/NULL);
V_1 = L_4;
goto IL_0094;
}
IL_0039:
{
int32_t L_5 = V_1;
V_2 = (((int32_t)((uint16_t)L_5)));
Il2CppChar L_6 = V_2;
bool L_7 = SmallXmlParser_IsNameChar_m2946368541(__this, L_6, (bool)0, /*hidden argument*/NULL);
if (L_7)
{
goto IL_004e;
}
}
{
goto IL_009b;
}
IL_004e:
{
int32_t L_8 = V_0;
CharU5BU5D_t3528271667* L_9 = __this->get_nameBuffer_6();
if ((!(((uint32_t)L_8) == ((uint32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_9)->max_length))))))))
{
goto IL_0079;
}
}
{
int32_t L_10 = V_0;
V_3 = ((CharU5BU5D_t3528271667*)SZArrayNew(CharU5BU5D_t3528271667_il2cpp_TypeInfo_var, (uint32_t)((int32_t)il2cpp_codegen_multiply((int32_t)L_10, (int32_t)2))));
CharU5BU5D_t3528271667* L_11 = __this->get_nameBuffer_6();
CharU5BU5D_t3528271667* L_12 = V_3;
int32_t L_13 = V_0;
Array_Copy_m1988217701(NULL /*static, unused*/, (RuntimeArray *)(RuntimeArray *)L_11, (RuntimeArray *)(RuntimeArray *)L_12, L_13, /*hidden argument*/NULL);
CharU5BU5D_t3528271667* L_14 = V_3;
__this->set_nameBuffer_6(L_14);
}
IL_0079:
{
CharU5BU5D_t3528271667* L_15 = __this->get_nameBuffer_6();
int32_t L_16 = V_0;
int32_t L_17 = L_16;
V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_17, (int32_t)1));
Il2CppChar L_18 = V_2;
(L_15)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(L_17), (Il2CppChar)L_18);
SmallXmlParser_Read_m3485223434(__this, /*hidden argument*/NULL);
int32_t L_19 = SmallXmlParser_Peek_m1303779789(__this, /*hidden argument*/NULL);
V_1 = L_19;
}
IL_0094:
{
int32_t L_20 = V_1;
if ((((int32_t)L_20) >= ((int32_t)0)))
{
goto IL_0039;
}
}
IL_009b:
{
int32_t L_21 = V_0;
if (L_21)
{
goto IL_00ad;
}
}
{
Exception_t * L_22 = SmallXmlParser_Error_m3899025466(__this, _stringLiteral2257131301, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_22,SmallXmlParser_ReadName_m3409228522_RuntimeMethod_var);
}
IL_00ad:
{
CharU5BU5D_t3528271667* L_23 = __this->get_nameBuffer_6();
int32_t L_24 = V_0;
String_t* L_25 = String_CreateString_m860434552(NULL, L_23, 0, L_24, /*hidden argument*/NULL);
return L_25;
}
}
// System.Void Mono.Xml.SmallXmlParser::Parse(System.IO.TextReader,Mono.Xml.SmallXmlParser/IContentHandler)
extern "C" void SmallXmlParser_Parse_m2140493703 (SmallXmlParser_t973787839 * __this, TextReader_t283511965 * ___input0, RuntimeObject* ___handler1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (SmallXmlParser_Parse_m2140493703_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
TextReader_t283511965 * L_0 = ___input0;
__this->set_reader_1(L_0);
RuntimeObject* L_1 = ___handler1;
__this->set_handler_0(L_1);
RuntimeObject* L_2 = ___handler1;
InterfaceActionInvoker1< SmallXmlParser_t973787839 * >::Invoke(0 /* System.Void Mono.Xml.SmallXmlParser/IContentHandler::OnStartParsing(Mono.Xml.SmallXmlParser) */, IContentHandler_t2787973995_il2cpp_TypeInfo_var, L_2, __this);
goto IL_0020;
}
IL_001a:
{
SmallXmlParser_ReadContent_m1631445300(__this, /*hidden argument*/NULL);
}
IL_0020:
{
int32_t L_3 = SmallXmlParser_Peek_m1303779789(__this, /*hidden argument*/NULL);
if ((((int32_t)L_3) >= ((int32_t)0)))
{
goto IL_001a;
}
}
{
SmallXmlParser_HandleBufferedContent_m3185158999(__this, /*hidden argument*/NULL);
Stack_t2329662280 * L_4 = __this->get_elementNames_2();
int32_t L_5 = VirtFuncInvoker0< int32_t >::Invoke(10 /* System.Int32 System.Collections.Stack::get_Count() */, L_4);
if ((((int32_t)L_5) <= ((int32_t)0)))
{
goto IL_005f;
}
}
{
Stack_t2329662280 * L_6 = __this->get_elementNames_2();
RuntimeObject * L_7 = VirtFuncInvoker0< RuntimeObject * >::Invoke(17 /* System.Object System.Collections.Stack::Peek() */, L_6);
IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
String_t* L_8 = String_Format_m2844511972(NULL /*static, unused*/, _stringLiteral1840238834, L_7, /*hidden argument*/NULL);
Exception_t * L_9 = SmallXmlParser_Error_m3899025466(__this, L_8, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_9,SmallXmlParser_Parse_m2140493703_RuntimeMethod_var);
}
IL_005f:
{
RuntimeObject* L_10 = ___handler1;
InterfaceActionInvoker1< SmallXmlParser_t973787839 * >::Invoke(1 /* System.Void Mono.Xml.SmallXmlParser/IContentHandler::OnEndParsing(Mono.Xml.SmallXmlParser) */, IContentHandler_t2787973995_il2cpp_TypeInfo_var, L_10, __this);
SmallXmlParser_Cleanup_m2310464878(__this, /*hidden argument*/NULL);
return;
}
}
// System.Void Mono.Xml.SmallXmlParser::Cleanup()
extern "C" void SmallXmlParser_Cleanup_m2310464878 (SmallXmlParser_t973787839 * __this, const RuntimeMethod* method)
{
{
__this->set_line_9(1);
__this->set_column_10(0);
__this->set_handler_0((RuntimeObject*)NULL);
__this->set_reader_1((TextReader_t283511965 *)NULL);
Stack_t2329662280 * L_0 = __this->get_elementNames_2();
VirtActionInvoker0::Invoke(13 /* System.Void System.Collections.Stack::Clear() */, L_0);
Stack_t2329662280 * L_1 = __this->get_xmlSpaces_3();
VirtActionInvoker0::Invoke(13 /* System.Void System.Collections.Stack::Clear() */, L_1);
AttrListImpl_t567962447 * L_2 = __this->get_attributes_8();
AttrListImpl_Clear_m2260362286(L_2, /*hidden argument*/NULL);
StringBuilder_t * L_3 = __this->get_buffer_5();
StringBuilder_set_Length_m1410065908(L_3, 0, /*hidden argument*/NULL);
__this->set_xmlSpace_4((String_t*)NULL);
__this->set_isWhitespace_7((bool)0);
return;
}
}
// System.Void Mono.Xml.SmallXmlParser::ReadContent()
extern "C" void SmallXmlParser_ReadContent_m1631445300 (SmallXmlParser_t973787839 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (SmallXmlParser_ReadContent_m1631445300_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
String_t* V_1 = NULL;
String_t* V_2 = NULL;
int32_t V_3 = 0;
{
int32_t L_0 = SmallXmlParser_Peek_m1303779789(__this, /*hidden argument*/NULL);
bool L_1 = SmallXmlParser_IsWhitespace_m156831381(__this, L_0, /*hidden argument*/NULL);
if (!L_1)
{
goto IL_002e;
}
}
{
StringBuilder_t * L_2 = __this->get_buffer_5();
int32_t L_3 = StringBuilder_get_Length_m3238060835(L_2, /*hidden argument*/NULL);
if (L_3)
{
goto IL_0028;
}
}
{
__this->set_isWhitespace_7((bool)1);
}
IL_0028:
{
SmallXmlParser_HandleWhitespaces_m549588711(__this, /*hidden argument*/NULL);
}
IL_002e:
{
int32_t L_4 = SmallXmlParser_Peek_m1303779789(__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_4) == ((uint32_t)((int32_t)60)))))
{
goto IL_02c3;
}
}
{
SmallXmlParser_Read_m3485223434(__this, /*hidden argument*/NULL);
int32_t L_5 = SmallXmlParser_Peek_m1303779789(__this, /*hidden argument*/NULL);
V_3 = L_5;
int32_t L_6 = V_3;
if ((((int32_t)L_6) == ((int32_t)((int32_t)33))))
{
goto IL_0066;
}
}
{
int32_t L_7 = V_3;
if ((((int32_t)L_7) == ((int32_t)((int32_t)47))))
{
goto IL_0168;
}
}
{
int32_t L_8 = V_3;
if ((((int32_t)L_8) == ((int32_t)((int32_t)63))))
{
goto IL_00f2;
}
}
{
goto IL_021d;
}
IL_0066:
{
SmallXmlParser_Read_m3485223434(__this, /*hidden argument*/NULL);
int32_t L_9 = SmallXmlParser_Peek_m1303779789(__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_9) == ((uint32_t)((int32_t)91)))))
{
goto IL_00b1;
}
}
{
SmallXmlParser_Read_m3485223434(__this, /*hidden argument*/NULL);
String_t* L_10 = SmallXmlParser_ReadName_m3409228522(__this, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
bool L_11 = String_op_Inequality_m215368492(NULL /*static, unused*/, L_10, _stringLiteral2757040089, /*hidden argument*/NULL);
if (!L_11)
{
goto IL_00a2;
}
}
{
Exception_t * L_12 = SmallXmlParser_Error_m3899025466(__this, _stringLiteral2151608716, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_12,SmallXmlParser_ReadContent_m1631445300_RuntimeMethod_var);
}
IL_00a2:
{
SmallXmlParser_Expect_m674880652(__this, ((int32_t)91), /*hidden argument*/NULL);
SmallXmlParser_ReadCDATASection_m138715165(__this, /*hidden argument*/NULL);
return;
}
IL_00b1:
{
int32_t L_13 = SmallXmlParser_Peek_m1303779789(__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_13) == ((uint32_t)((int32_t)45)))))
{
goto IL_00c5;
}
}
{
SmallXmlParser_ReadComment_m1578426707(__this, /*hidden argument*/NULL);
return;
}
IL_00c5:
{
String_t* L_14 = SmallXmlParser_ReadName_m3409228522(__this, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
bool L_15 = String_op_Inequality_m215368492(NULL /*static, unused*/, L_14, _stringLiteral2857192859, /*hidden argument*/NULL);
if (!L_15)
{
goto IL_00e6;
}
}
{
Exception_t * L_16 = SmallXmlParser_Error_m3899025466(__this, _stringLiteral1056387298, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_16,SmallXmlParser_ReadContent_m1631445300_RuntimeMethod_var);
}
IL_00e6:
{
Exception_t * L_17 = SmallXmlParser_Error_m3899025466(__this, _stringLiteral703883227, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_17,SmallXmlParser_ReadContent_m1631445300_RuntimeMethod_var);
}
IL_00f2:
{
SmallXmlParser_HandleBufferedContent_m3185158999(__this, /*hidden argument*/NULL);
SmallXmlParser_Read_m3485223434(__this, /*hidden argument*/NULL);
String_t* L_18 = SmallXmlParser_ReadName_m3409228522(__this, /*hidden argument*/NULL);
V_0 = L_18;
SmallXmlParser_SkipWhitespaces_m990960618(__this, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
String_t* L_19 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_2();
V_1 = L_19;
int32_t L_20 = SmallXmlParser_Peek_m1303779789(__this, /*hidden argument*/NULL);
if ((((int32_t)L_20) == ((int32_t)((int32_t)63))))
{
goto IL_0152;
}
}
IL_011f:
{
String_t* L_21 = V_1;
String_t* L_22 = SmallXmlParser_ReadUntil_m2715581630(__this, ((int32_t)63), (bool)0, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
String_t* L_23 = String_Concat_m3937257545(NULL /*static, unused*/, L_21, L_22, /*hidden argument*/NULL);
V_1 = L_23;
int32_t L_24 = SmallXmlParser_Peek_m1303779789(__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_24) == ((uint32_t)((int32_t)62)))))
{
goto IL_0141;
}
}
{
goto IL_0152;
}
IL_0141:
{
String_t* L_25 = V_1;
IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
String_t* L_26 = String_Concat_m3937257545(NULL /*static, unused*/, L_25, _stringLiteral3452614545, /*hidden argument*/NULL);
V_1 = L_26;
goto IL_011f;
}
IL_0152:
{
RuntimeObject* L_27 = __this->get_handler_0();
String_t* L_28 = V_0;
String_t* L_29 = V_1;
InterfaceActionInvoker2< String_t*, String_t* >::Invoke(4 /* System.Void Mono.Xml.SmallXmlParser/IContentHandler::OnProcessingInstruction(System.String,System.String) */, IContentHandler_t2787973995_il2cpp_TypeInfo_var, L_27, L_28, L_29);
SmallXmlParser_Expect_m674880652(__this, ((int32_t)62), /*hidden argument*/NULL);
return;
}
IL_0168:
{
SmallXmlParser_HandleBufferedContent_m3185158999(__this, /*hidden argument*/NULL);
Stack_t2329662280 * L_30 = __this->get_elementNames_2();
int32_t L_31 = VirtFuncInvoker0< int32_t >::Invoke(10 /* System.Int32 System.Collections.Stack::get_Count() */, L_30);
if (L_31)
{
goto IL_0185;
}
}
{
Exception_t * L_32 = SmallXmlParser_UnexpectedEndError_m1914362401(__this, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_32,SmallXmlParser_ReadContent_m1631445300_RuntimeMethod_var);
}
IL_0185:
{
SmallXmlParser_Read_m3485223434(__this, /*hidden argument*/NULL);
String_t* L_33 = SmallXmlParser_ReadName_m3409228522(__this, /*hidden argument*/NULL);
V_0 = L_33;
SmallXmlParser_SkipWhitespaces_m990960618(__this, /*hidden argument*/NULL);
Stack_t2329662280 * L_34 = __this->get_elementNames_2();
RuntimeObject * L_35 = VirtFuncInvoker0< RuntimeObject * >::Invoke(18 /* System.Object System.Collections.Stack::Pop() */, L_34);
V_2 = ((String_t*)CastclassSealed((RuntimeObject*)L_35, String_t_il2cpp_TypeInfo_var));
Stack_t2329662280 * L_36 = __this->get_xmlSpaces_3();
VirtFuncInvoker0< RuntimeObject * >::Invoke(18 /* System.Object System.Collections.Stack::Pop() */, L_36);
Stack_t2329662280 * L_37 = __this->get_xmlSpaces_3();
int32_t L_38 = VirtFuncInvoker0< int32_t >::Invoke(10 /* System.Int32 System.Collections.Stack::get_Count() */, L_37);
if ((((int32_t)L_38) <= ((int32_t)0)))
{
goto IL_01e2;
}
}
{
Stack_t2329662280 * L_39 = __this->get_xmlSpaces_3();
RuntimeObject * L_40 = VirtFuncInvoker0< RuntimeObject * >::Invoke(17 /* System.Object System.Collections.Stack::Peek() */, L_39);
__this->set_xmlSpace_4(((String_t*)CastclassSealed((RuntimeObject*)L_40, String_t_il2cpp_TypeInfo_var)));
goto IL_01e9;
}
IL_01e2:
{
__this->set_xmlSpace_4((String_t*)NULL);
}
IL_01e9:
{
String_t* L_41 = V_0;
String_t* L_42 = V_2;
IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
bool L_43 = String_op_Inequality_m215368492(NULL /*static, unused*/, L_41, L_42, /*hidden argument*/NULL);
if (!L_43)
{
goto IL_0208;
}
}
{
String_t* L_44 = V_2;
String_t* L_45 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
String_t* L_46 = String_Format_m2556382932(NULL /*static, unused*/, _stringLiteral2270729185, L_44, L_45, /*hidden argument*/NULL);
Exception_t * L_47 = SmallXmlParser_Error_m3899025466(__this, L_46, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_47,SmallXmlParser_ReadContent_m1631445300_RuntimeMethod_var);
}
IL_0208:
{
RuntimeObject* L_48 = __this->get_handler_0();
String_t* L_49 = V_0;
InterfaceActionInvoker1< String_t* >::Invoke(3 /* System.Void Mono.Xml.SmallXmlParser/IContentHandler::OnEndElement(System.String) */, IContentHandler_t2787973995_il2cpp_TypeInfo_var, L_48, L_49);
SmallXmlParser_Expect_m674880652(__this, ((int32_t)62), /*hidden argument*/NULL);
return;
}
IL_021d:
{
SmallXmlParser_HandleBufferedContent_m3185158999(__this, /*hidden argument*/NULL);
String_t* L_50 = SmallXmlParser_ReadName_m3409228522(__this, /*hidden argument*/NULL);
V_0 = L_50;
goto IL_023b;
}
IL_022f:
{
AttrListImpl_t567962447 * L_51 = __this->get_attributes_8();
SmallXmlParser_ReadAttribute_m3518350607(__this, L_51, /*hidden argument*/NULL);
}
IL_023b:
{
int32_t L_52 = SmallXmlParser_Peek_m1303779789(__this, /*hidden argument*/NULL);
if ((((int32_t)L_52) == ((int32_t)((int32_t)62))))
{
goto IL_0255;
}
}
{
int32_t L_53 = SmallXmlParser_Peek_m1303779789(__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_53) == ((uint32_t)((int32_t)47)))))
{
goto IL_022f;
}
}
IL_0255:
{
RuntimeObject* L_54 = __this->get_handler_0();
String_t* L_55 = V_0;
AttrListImpl_t567962447 * L_56 = __this->get_attributes_8();
InterfaceActionInvoker2< String_t*, RuntimeObject* >::Invoke(2 /* System.Void Mono.Xml.SmallXmlParser/IContentHandler::OnStartElement(System.String,Mono.Xml.SmallXmlParser/IAttrList) */, IContentHandler_t2787973995_il2cpp_TypeInfo_var, L_54, L_55, L_56);
AttrListImpl_t567962447 * L_57 = __this->get_attributes_8();
AttrListImpl_Clear_m2260362286(L_57, /*hidden argument*/NULL);
SmallXmlParser_SkipWhitespaces_m990960618(__this, /*hidden argument*/NULL);
int32_t L_58 = SmallXmlParser_Peek_m1303779789(__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_58) == ((uint32_t)((int32_t)47)))))
{
goto IL_029d;
}
}
{
SmallXmlParser_Read_m3485223434(__this, /*hidden argument*/NULL);
RuntimeObject* L_59 = __this->get_handler_0();
String_t* L_60 = V_0;
InterfaceActionInvoker1< String_t* >::Invoke(3 /* System.Void Mono.Xml.SmallXmlParser/IContentHandler::OnEndElement(System.String) */, IContentHandler_t2787973995_il2cpp_TypeInfo_var, L_59, L_60);
goto IL_02ba;
}
IL_029d:
{
Stack_t2329662280 * L_61 = __this->get_elementNames_2();
String_t* L_62 = V_0;
VirtActionInvoker1< RuntimeObject * >::Invoke(19 /* System.Void System.Collections.Stack::Push(System.Object) */, L_61, L_62);
Stack_t2329662280 * L_63 = __this->get_xmlSpaces_3();
String_t* L_64 = __this->get_xmlSpace_4();
VirtActionInvoker1< RuntimeObject * >::Invoke(19 /* System.Void System.Collections.Stack::Push(System.Object) */, L_63, L_64);
}
IL_02ba:
{
SmallXmlParser_Expect_m674880652(__this, ((int32_t)62), /*hidden argument*/NULL);
return;
}
IL_02c3:
{
SmallXmlParser_ReadCharacters_m3318286261(__this, /*hidden argument*/NULL);
return;
}
}
// System.Void Mono.Xml.SmallXmlParser::HandleBufferedContent()
extern "C" void SmallXmlParser_HandleBufferedContent_m3185158999 (SmallXmlParser_t973787839 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (SmallXmlParser_HandleBufferedContent_m3185158999_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
StringBuilder_t * L_0 = __this->get_buffer_5();
int32_t L_1 = StringBuilder_get_Length_m3238060835(L_0, /*hidden argument*/NULL);
if (L_1)
{
goto IL_0011;
}
}
{
return;
}
IL_0011:
{
bool L_2 = __this->get_isWhitespace_7();
if (!L_2)
{
goto IL_0037;
}
}
{
RuntimeObject* L_3 = __this->get_handler_0();
StringBuilder_t * L_4 = __this->get_buffer_5();
String_t* L_5 = StringBuilder_ToString_m3317489284(L_4, /*hidden argument*/NULL);
InterfaceActionInvoker1< String_t* >::Invoke(6 /* System.Void Mono.Xml.SmallXmlParser/IContentHandler::OnIgnorableWhitespace(System.String) */, IContentHandler_t2787973995_il2cpp_TypeInfo_var, L_3, L_5);
goto IL_004d;
}
IL_0037:
{
RuntimeObject* L_6 = __this->get_handler_0();
StringBuilder_t * L_7 = __this->get_buffer_5();
String_t* L_8 = StringBuilder_ToString_m3317489284(L_7, /*hidden argument*/NULL);
InterfaceActionInvoker1< String_t* >::Invoke(5 /* System.Void Mono.Xml.SmallXmlParser/IContentHandler::OnChars(System.String) */, IContentHandler_t2787973995_il2cpp_TypeInfo_var, L_6, L_8);
}
IL_004d:
{
StringBuilder_t * L_9 = __this->get_buffer_5();
StringBuilder_set_Length_m1410065908(L_9, 0, /*hidden argument*/NULL);
__this->set_isWhitespace_7((bool)0);
return;
}
}
// System.Void Mono.Xml.SmallXmlParser::ReadCharacters()
extern "C" void SmallXmlParser_ReadCharacters_m3318286261 (SmallXmlParser_t973787839 * __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
{
__this->set_isWhitespace_7((bool)0);
}
IL_0007:
{
int32_t L_0 = SmallXmlParser_Peek_m1303779789(__this, /*hidden argument*/NULL);
V_0 = L_0;
int32_t L_1 = V_0;
V_1 = L_1;
int32_t L_2 = V_1;
if ((((int32_t)L_2) == ((int32_t)(-1))))
{
goto IL_002c;
}
}
{
int32_t L_3 = V_1;
if ((((int32_t)L_3) == ((int32_t)((int32_t)38))))
{
goto IL_002e;
}
}
{
int32_t L_4 = V_1;
if ((((int32_t)L_4) == ((int32_t)((int32_t)60))))
{
goto IL_002d;
}
}
{
goto IL_0040;
}
IL_002c:
{
return;
}
IL_002d:
{
return;
}
IL_002e:
{
SmallXmlParser_Read_m3485223434(__this, /*hidden argument*/NULL);
SmallXmlParser_ReadReference_m1750252339(__this, /*hidden argument*/NULL);
goto IL_0007;
}
IL_0040:
{
StringBuilder_t * L_5 = __this->get_buffer_5();
int32_t L_6 = SmallXmlParser_Read_m3485223434(__this, /*hidden argument*/NULL);
StringBuilder_Append_m2383614642(L_5, (((int32_t)((uint16_t)L_6))), /*hidden argument*/NULL);
goto IL_0007;
}
// Dead block : IL_0058: br IL_0007
}
// System.Void Mono.Xml.SmallXmlParser::ReadReference()
extern "C" void SmallXmlParser_ReadReference_m1750252339 (SmallXmlParser_t973787839 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (SmallXmlParser_ReadReference_m1750252339_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
String_t* V_1 = NULL;
Dictionary_2_t2736202052 * V_2 = NULL;
int32_t V_3 = 0;
{
int32_t L_0 = SmallXmlParser_Peek_m1303779789(__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)35)))))
{
goto IL_0020;
}
}
{
SmallXmlParser_Read_m3485223434(__this, /*hidden argument*/NULL);
SmallXmlParser_ReadCharacterReference_m548953186(__this, /*hidden argument*/NULL);
goto IL_0126;
}
IL_0020:
{
String_t* L_1 = SmallXmlParser_ReadName_m3409228522(__this, /*hidden argument*/NULL);
V_0 = L_1;
SmallXmlParser_Expect_m674880652(__this, ((int32_t)59), /*hidden argument*/NULL);
String_t* L_2 = V_0;
V_1 = L_2;
String_t* L_3 = V_1;
if (!L_3)
{
goto IL_011a;
}
}
{
Dictionary_2_t2736202052 * L_4 = ((SmallXmlParser_t973787839_StaticFields*)il2cpp_codegen_static_fields_for(SmallXmlParser_t973787839_il2cpp_TypeInfo_var))->get_U3CU3Ef__switchU24map18_12();
if (L_4)
{
goto IL_008a;
}
}
{
Dictionary_2_t2736202052 * L_5 = (Dictionary_2_t2736202052 *)il2cpp_codegen_object_new(Dictionary_2_t2736202052_il2cpp_TypeInfo_var);
Dictionary_2__ctor_m2392909825(L_5, 5, /*hidden argument*/Dictionary_2__ctor_m2392909825_RuntimeMethod_var);
V_2 = L_5;
Dictionary_2_t2736202052 * L_6 = V_2;
Dictionary_2_Add_m282647386(L_6, _stringLiteral228143257, 0, /*hidden argument*/Dictionary_2_Add_m282647386_RuntimeMethod_var);
Dictionary_2_t2736202052 * L_7 = V_2;
Dictionary_2_Add_m282647386(L_7, _stringLiteral2328692158, 1, /*hidden argument*/Dictionary_2_Add_m282647386_RuntimeMethod_var);
Dictionary_2_t2736202052 * L_8 = V_2;
Dictionary_2_Add_m282647386(L_8, _stringLiteral372704686, 2, /*hidden argument*/Dictionary_2_Add_m282647386_RuntimeMethod_var);
Dictionary_2_t2736202052 * L_9 = V_2;
Dictionary_2_Add_m282647386(L_9, _stringLiteral3455498180, 3, /*hidden argument*/Dictionary_2_Add_m282647386_RuntimeMethod_var);
Dictionary_2_t2736202052 * L_10 = V_2;
Dictionary_2_Add_m282647386(L_10, _stringLiteral3455498169, 4, /*hidden argument*/Dictionary_2_Add_m282647386_RuntimeMethod_var);
Dictionary_2_t2736202052 * L_11 = V_2;
((SmallXmlParser_t973787839_StaticFields*)il2cpp_codegen_static_fields_for(SmallXmlParser_t973787839_il2cpp_TypeInfo_var))->set_U3CU3Ef__switchU24map18_12(L_11);
}
IL_008a:
{
Dictionary_2_t2736202052 * L_12 = ((SmallXmlParser_t973787839_StaticFields*)il2cpp_codegen_static_fields_for(SmallXmlParser_t973787839_il2cpp_TypeInfo_var))->get_U3CU3Ef__switchU24map18_12();
String_t* L_13 = V_1;
bool L_14 = Dictionary_2_TryGetValue_m1013208020(L_12, L_13, (&V_3), /*hidden argument*/Dictionary_2_TryGetValue_m1013208020_RuntimeMethod_var);
if (!L_14)
{
goto IL_011a;
}
}
{
int32_t L_15 = V_3;
switch (L_15)
{
case 0:
{
goto IL_00bb;
}
case 1:
{
goto IL_00ce;
}
case 2:
{
goto IL_00e1;
}
case 3:
{
goto IL_00f4;
}
case 4:
{
goto IL_0107;
}
}
}
{
goto IL_011a;
}
IL_00bb:
{
StringBuilder_t * L_16 = __this->get_buffer_5();
StringBuilder_Append_m2383614642(L_16, ((int32_t)38), /*hidden argument*/NULL);
goto IL_0126;
}
IL_00ce:
{
StringBuilder_t * L_17 = __this->get_buffer_5();
StringBuilder_Append_m2383614642(L_17, ((int32_t)34), /*hidden argument*/NULL);
goto IL_0126;
}
IL_00e1:
{
StringBuilder_t * L_18 = __this->get_buffer_5();
StringBuilder_Append_m2383614642(L_18, ((int32_t)39), /*hidden argument*/NULL);
goto IL_0126;
}
IL_00f4:
{
StringBuilder_t * L_19 = __this->get_buffer_5();
StringBuilder_Append_m2383614642(L_19, ((int32_t)60), /*hidden argument*/NULL);
goto IL_0126;
}
IL_0107:
{
StringBuilder_t * L_20 = __this->get_buffer_5();
StringBuilder_Append_m2383614642(L_20, ((int32_t)62), /*hidden argument*/NULL);
goto IL_0126;
}
IL_011a:
{
Exception_t * L_21 = SmallXmlParser_Error_m3899025466(__this, _stringLiteral203507977, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_21,SmallXmlParser_ReadReference_m1750252339_RuntimeMethod_var);
}
IL_0126:
{
return;
}
}
// System.Int32 Mono.Xml.SmallXmlParser::ReadCharacterReference()
extern "C" int32_t SmallXmlParser_ReadCharacterReference_m548953186 (SmallXmlParser_t973787839 * __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
int32_t V_2 = 0;
{
V_0 = 0;
int32_t L_0 = SmallXmlParser_Peek_m1303779789(__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)120)))))
{
goto IL_00aa;
}
}
{
SmallXmlParser_Read_m3485223434(__this, /*hidden argument*/NULL);
int32_t L_1 = SmallXmlParser_Peek_m1303779789(__this, /*hidden argument*/NULL);
V_1 = L_1;
goto IL_009e;
}
IL_0022:
{
int32_t L_2 = V_1;
if ((((int32_t)((int32_t)48)) > ((int32_t)L_2)))
{
goto IL_0043;
}
}
{
int32_t L_3 = V_1;
if ((((int32_t)L_3) > ((int32_t)((int32_t)57))))
{
goto IL_0043;
}
}
{
int32_t L_4 = V_0;
int32_t L_5 = V_1;
V_0 = ((int32_t)((int32_t)L_4<<(int32_t)((int32_t)((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_add((int32_t)4, (int32_t)L_5)), (int32_t)((int32_t)48)))&(int32_t)((int32_t)31)))));
goto IL_0090;
}
IL_0043:
{
int32_t L_6 = V_1;
if ((((int32_t)((int32_t)65)) > ((int32_t)L_6)))
{
goto IL_0067;
}
}
{
int32_t L_7 = V_1;
if ((((int32_t)L_7) > ((int32_t)((int32_t)70))))
{
goto IL_0067;
}
}
{
int32_t L_8 = V_0;
int32_t L_9 = V_1;
V_0 = ((int32_t)((int32_t)L_8<<(int32_t)((int32_t)((int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_add((int32_t)4, (int32_t)L_9)), (int32_t)((int32_t)65))), (int32_t)((int32_t)10)))&(int32_t)((int32_t)31)))));
goto IL_0090;
}
IL_0067:
{
int32_t L_10 = V_1;
if ((((int32_t)((int32_t)97)) > ((int32_t)L_10)))
{
goto IL_008b;
}
}
{
int32_t L_11 = V_1;
if ((((int32_t)L_11) > ((int32_t)((int32_t)102))))
{
goto IL_008b;
}
}
{
int32_t L_12 = V_0;
int32_t L_13 = V_1;
V_0 = ((int32_t)((int32_t)L_12<<(int32_t)((int32_t)((int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_add((int32_t)4, (int32_t)L_13)), (int32_t)((int32_t)97))), (int32_t)((int32_t)10)))&(int32_t)((int32_t)31)))));
goto IL_0090;
}
IL_008b:
{
goto IL_00a5;
}
IL_0090:
{
SmallXmlParser_Read_m3485223434(__this, /*hidden argument*/NULL);
int32_t L_14 = SmallXmlParser_Peek_m1303779789(__this, /*hidden argument*/NULL);
V_1 = L_14;
}
IL_009e:
{
int32_t L_15 = V_1;
if ((((int32_t)L_15) >= ((int32_t)0)))
{
goto IL_0022;
}
}
IL_00a5:
{
goto IL_00f1;
}
IL_00aa:
{
int32_t L_16 = SmallXmlParser_Peek_m1303779789(__this, /*hidden argument*/NULL);
V_2 = L_16;
goto IL_00ea;
}
IL_00b6:
{
int32_t L_17 = V_2;
if ((((int32_t)((int32_t)48)) > ((int32_t)L_17)))
{
goto IL_00d7;
}
}
{
int32_t L_18 = V_2;
if ((((int32_t)L_18) > ((int32_t)((int32_t)57))))
{
goto IL_00d7;
}
}
{
int32_t L_19 = V_0;
int32_t L_20 = V_2;
V_0 = ((int32_t)((int32_t)L_19<<(int32_t)((int32_t)((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_add((int32_t)4, (int32_t)L_20)), (int32_t)((int32_t)48)))&(int32_t)((int32_t)31)))));
goto IL_00dc;
}
IL_00d7:
{
goto IL_00f1;
}
IL_00dc:
{
SmallXmlParser_Read_m3485223434(__this, /*hidden argument*/NULL);
int32_t L_21 = SmallXmlParser_Peek_m1303779789(__this, /*hidden argument*/NULL);
V_2 = L_21;
}
IL_00ea:
{
int32_t L_22 = V_2;
if ((((int32_t)L_22) >= ((int32_t)0)))
{
goto IL_00b6;
}
}
IL_00f1:
{
int32_t L_23 = V_0;
return L_23;
}
}
// System.Void Mono.Xml.SmallXmlParser::ReadAttribute(Mono.Xml.SmallXmlParser/AttrListImpl)
extern "C" void SmallXmlParser_ReadAttribute_m3518350607 (SmallXmlParser_t973787839 * __this, AttrListImpl_t567962447 * ___a0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (SmallXmlParser_ReadAttribute_m3518350607_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
String_t* V_1 = NULL;
int32_t V_2 = 0;
{
SmallXmlParser_SkipWhitespaces_m4243606597(__this, (bool)1, /*hidden argument*/NULL);
int32_t L_0 = SmallXmlParser_Peek_m1303779789(__this, /*hidden argument*/NULL);
if ((((int32_t)L_0) == ((int32_t)((int32_t)47))))
{
goto IL_0021;
}
}
{
int32_t L_1 = SmallXmlParser_Peek_m1303779789(__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)62)))))
{
goto IL_0022;
}
}
IL_0021:
{
return;
}
IL_0022:
{
String_t* L_2 = SmallXmlParser_ReadName_m3409228522(__this, /*hidden argument*/NULL);
V_0 = L_2;
SmallXmlParser_SkipWhitespaces_m990960618(__this, /*hidden argument*/NULL);
SmallXmlParser_Expect_m674880652(__this, ((int32_t)61), /*hidden argument*/NULL);
SmallXmlParser_SkipWhitespaces_m990960618(__this, /*hidden argument*/NULL);
int32_t L_3 = SmallXmlParser_Read_m3485223434(__this, /*hidden argument*/NULL);
V_2 = L_3;
int32_t L_4 = V_2;
if ((((int32_t)L_4) == ((int32_t)((int32_t)34))))
{
goto IL_0068;
}
}
{
int32_t L_5 = V_2;
if ((((int32_t)L_5) == ((int32_t)((int32_t)39))))
{
goto IL_0059;
}
}
{
goto IL_0077;
}
IL_0059:
{
String_t* L_6 = SmallXmlParser_ReadUntil_m2715581630(__this, ((int32_t)39), (bool)1, /*hidden argument*/NULL);
V_1 = L_6;
goto IL_0083;
}
IL_0068:
{
String_t* L_7 = SmallXmlParser_ReadUntil_m2715581630(__this, ((int32_t)34), (bool)1, /*hidden argument*/NULL);
V_1 = L_7;
goto IL_0083;
}
IL_0077:
{
Exception_t * L_8 = SmallXmlParser_Error_m3899025466(__this, _stringLiteral4028743167, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_8,SmallXmlParser_ReadAttribute_m3518350607_RuntimeMethod_var);
}
IL_0083:
{
String_t* L_9 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
bool L_10 = String_op_Equality_m920492651(NULL /*static, unused*/, L_9, _stringLiteral1942376246, /*hidden argument*/NULL);
if (!L_10)
{
goto IL_009a;
}
}
{
String_t* L_11 = V_1;
__this->set_xmlSpace_4(L_11);
}
IL_009a:
{
AttrListImpl_t567962447 * L_12 = ___a0;
String_t* L_13 = V_0;
String_t* L_14 = V_1;
AttrListImpl_Add_m3378108236(L_12, L_13, L_14, /*hidden argument*/NULL);
return;
}
}
// System.Void Mono.Xml.SmallXmlParser::ReadCDATASection()
extern "C" void SmallXmlParser_ReadCDATASection_m138715165 (SmallXmlParser_t973787839 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (SmallXmlParser_ReadCDATASection_m138715165_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
Il2CppChar V_1 = 0x0;
int32_t V_2 = 0;
int32_t V_3 = 0;
{
V_0 = 0;
}
IL_0002:
{
int32_t L_0 = SmallXmlParser_Peek_m1303779789(__this, /*hidden argument*/NULL);
if ((((int32_t)L_0) >= ((int32_t)0)))
{
goto IL_0015;
}
}
{
Exception_t * L_1 = SmallXmlParser_UnexpectedEndError_m1914362401(__this, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1,SmallXmlParser_ReadCDATASection_m138715165_RuntimeMethod_var);
}
IL_0015:
{
int32_t L_2 = SmallXmlParser_Read_m3485223434(__this, /*hidden argument*/NULL);
V_1 = (((int32_t)((uint16_t)L_2)));
Il2CppChar L_3 = V_1;
if ((!(((uint32_t)L_3) == ((uint32_t)((int32_t)93)))))
{
goto IL_002e;
}
}
{
int32_t L_4 = V_0;
V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_4, (int32_t)1));
goto IL_0091;
}
IL_002e:
{
Il2CppChar L_5 = V_1;
if ((!(((uint32_t)L_5) == ((uint32_t)((int32_t)62)))))
{
goto IL_0062;
}
}
{
int32_t L_6 = V_0;
if ((((int32_t)L_6) <= ((int32_t)1)))
{
goto IL_0062;
}
}
{
int32_t L_7 = V_0;
V_2 = L_7;
goto IL_0056;
}
IL_0044:
{
StringBuilder_t * L_8 = __this->get_buffer_5();
StringBuilder_Append_m2383614642(L_8, ((int32_t)93), /*hidden argument*/NULL);
int32_t L_9 = V_2;
V_2 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_9, (int32_t)1));
}
IL_0056:
{
int32_t L_10 = V_2;
if ((((int32_t)L_10) > ((int32_t)2)))
{
goto IL_0044;
}
}
{
goto IL_0096;
}
IL_0062:
{
V_3 = 0;
goto IL_007b;
}
IL_0069:
{
StringBuilder_t * L_11 = __this->get_buffer_5();
StringBuilder_Append_m2383614642(L_11, ((int32_t)93), /*hidden argument*/NULL);
int32_t L_12 = V_3;
V_3 = ((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1));
}
IL_007b:
{
int32_t L_13 = V_3;
int32_t L_14 = V_0;
if ((((int32_t)L_13) < ((int32_t)L_14)))
{
goto IL_0069;
}
}
{
V_0 = 0;
StringBuilder_t * L_15 = __this->get_buffer_5();
Il2CppChar L_16 = V_1;
StringBuilder_Append_m2383614642(L_15, L_16, /*hidden argument*/NULL);
}
IL_0091:
{
goto IL_0002;
}
IL_0096:
{
return;
}
}
// System.Void Mono.Xml.SmallXmlParser::ReadComment()
extern "C" void SmallXmlParser_ReadComment_m1578426707 (SmallXmlParser_t973787839 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (SmallXmlParser_ReadComment_m1578426707_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
SmallXmlParser_Expect_m674880652(__this, ((int32_t)45), /*hidden argument*/NULL);
SmallXmlParser_Expect_m674880652(__this, ((int32_t)45), /*hidden argument*/NULL);
}
IL_0010:
{
int32_t L_0 = SmallXmlParser_Read_m3485223434(__this, /*hidden argument*/NULL);
if ((((int32_t)L_0) == ((int32_t)((int32_t)45))))
{
goto IL_0022;
}
}
{
goto IL_0010;
}
IL_0022:
{
int32_t L_1 = SmallXmlParser_Read_m3485223434(__this, /*hidden argument*/NULL);
if ((((int32_t)L_1) == ((int32_t)((int32_t)45))))
{
goto IL_0034;
}
}
{
goto IL_0010;
}
IL_0034:
{
int32_t L_2 = SmallXmlParser_Read_m3485223434(__this, /*hidden argument*/NULL);
if ((((int32_t)L_2) == ((int32_t)((int32_t)62))))
{
goto IL_004d;
}
}
{
Exception_t * L_3 = SmallXmlParser_Error_m3899025466(__this, _stringLiteral2372855559, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3,SmallXmlParser_ReadComment_m1578426707_RuntimeMethod_var);
}
IL_004d:
{
goto IL_0057;
}
// Dead block : IL_0052: br IL_0010
IL_0057:
{
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void Mono.Xml.SmallXmlParser/AttrListImpl::.ctor()
extern "C" void AttrListImpl__ctor_m3844427077 (AttrListImpl_t567962447 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (AttrListImpl__ctor_m3844427077_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
ArrayList_t2718874744 * L_0 = (ArrayList_t2718874744 *)il2cpp_codegen_object_new(ArrayList_t2718874744_il2cpp_TypeInfo_var);
ArrayList__ctor_m4254721275(L_0, /*hidden argument*/NULL);
__this->set_attrNames_0(L_0);
ArrayList_t2718874744 * L_1 = (ArrayList_t2718874744 *)il2cpp_codegen_object_new(ArrayList_t2718874744_il2cpp_TypeInfo_var);
ArrayList__ctor_m4254721275(L_1, /*hidden argument*/NULL);
__this->set_attrValues_1(L_1);
Object__ctor_m297566312(__this, /*hidden argument*/NULL);
return;
}
}
// System.Int32 Mono.Xml.SmallXmlParser/AttrListImpl::get_Length()
extern "C" int32_t AttrListImpl_get_Length_m1163071530 (AttrListImpl_t567962447 * __this, const RuntimeMethod* method)
{
{
ArrayList_t2718874744 * L_0 = __this->get_attrNames_0();
int32_t L_1 = VirtFuncInvoker0< int32_t >::Invoke(23 /* System.Int32 System.Collections.ArrayList::get_Count() */, L_0);
return L_1;
}
}
// System.String Mono.Xml.SmallXmlParser/AttrListImpl::GetName(System.Int32)
extern "C" String_t* AttrListImpl_GetName_m2880551319 (AttrListImpl_t567962447 * __this, int32_t ___i0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (AttrListImpl_GetName_m2880551319_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
ArrayList_t2718874744 * L_0 = __this->get_attrNames_0();
int32_t L_1 = ___i0;
RuntimeObject * L_2 = VirtFuncInvoker1< RuntimeObject *, int32_t >::Invoke(21 /* System.Object System.Collections.ArrayList::get_Item(System.Int32) */, L_0, L_1);
return ((String_t*)CastclassSealed((RuntimeObject*)L_2, String_t_il2cpp_TypeInfo_var));
}
}
// System.String Mono.Xml.SmallXmlParser/AttrListImpl::GetValue(System.Int32)
extern "C" String_t* AttrListImpl_GetValue_m3657391095 (AttrListImpl_t567962447 * __this, int32_t ___i0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (AttrListImpl_GetValue_m3657391095_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
ArrayList_t2718874744 * L_0 = __this->get_attrValues_1();
int32_t L_1 = ___i0;
RuntimeObject * L_2 = VirtFuncInvoker1< RuntimeObject *, int32_t >::Invoke(21 /* System.Object System.Collections.ArrayList::get_Item(System.Int32) */, L_0, L_1);
return ((String_t*)CastclassSealed((RuntimeObject*)L_2, String_t_il2cpp_TypeInfo_var));
}
}
// System.String Mono.Xml.SmallXmlParser/AttrListImpl::GetValue(System.String)
extern "C" String_t* AttrListImpl_GetValue_m215192361 (AttrListImpl_t567962447 * __this, String_t* ___name0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (AttrListImpl_GetValue_m215192361_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
{
V_0 = 0;
goto IL_0039;
}
IL_0007:
{
ArrayList_t2718874744 * L_0 = __this->get_attrNames_0();
int32_t L_1 = V_0;
RuntimeObject * L_2 = VirtFuncInvoker1< RuntimeObject *, int32_t >::Invoke(21 /* System.Object System.Collections.ArrayList::get_Item(System.Int32) */, L_0, L_1);
String_t* L_3 = ___name0;
IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
bool L_4 = String_op_Equality_m920492651(NULL /*static, unused*/, ((String_t*)CastclassSealed((RuntimeObject*)L_2, String_t_il2cpp_TypeInfo_var)), L_3, /*hidden argument*/NULL);
if (!L_4)
{
goto IL_0035;
}
}
{
ArrayList_t2718874744 * L_5 = __this->get_attrValues_1();
int32_t L_6 = V_0;
RuntimeObject * L_7 = VirtFuncInvoker1< RuntimeObject *, int32_t >::Invoke(21 /* System.Object System.Collections.ArrayList::get_Item(System.Int32) */, L_5, L_6);
return ((String_t*)CastclassSealed((RuntimeObject*)L_7, String_t_il2cpp_TypeInfo_var));
}
IL_0035:
{
int32_t L_8 = V_0;
V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_8, (int32_t)1));
}
IL_0039:
{
int32_t L_9 = V_0;
ArrayList_t2718874744 * L_10 = __this->get_attrNames_0();
int32_t L_11 = VirtFuncInvoker0< int32_t >::Invoke(23 /* System.Int32 System.Collections.ArrayList::get_Count() */, L_10);
if ((((int32_t)L_9) < ((int32_t)L_11)))
{
goto IL_0007;
}
}
{
return (String_t*)NULL;
}
}
// System.String[] Mono.Xml.SmallXmlParser/AttrListImpl::get_Names()
extern "C" StringU5BU5D_t1281789340* AttrListImpl_get_Names_m977594476 (AttrListImpl_t567962447 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (AttrListImpl_get_Names_m977594476_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
ArrayList_t2718874744 * L_0 = __this->get_attrNames_0();
RuntimeTypeHandle_t3027515415 L_1 = { reinterpret_cast<intptr_t> (String_t_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_2 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, L_1, /*hidden argument*/NULL);
RuntimeArray * L_3 = VirtFuncInvoker1< RuntimeArray *, Type_t * >::Invoke(48 /* System.Array System.Collections.ArrayList::ToArray(System.Type) */, L_0, L_2);
return ((StringU5BU5D_t1281789340*)Castclass((RuntimeObject*)L_3, StringU5BU5D_t1281789340_il2cpp_TypeInfo_var));
}
}
// System.String[] Mono.Xml.SmallXmlParser/AttrListImpl::get_Values()
extern "C" StringU5BU5D_t1281789340* AttrListImpl_get_Values_m3139810172 (AttrListImpl_t567962447 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (AttrListImpl_get_Values_m3139810172_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
ArrayList_t2718874744 * L_0 = __this->get_attrValues_1();
RuntimeTypeHandle_t3027515415 L_1 = { reinterpret_cast<intptr_t> (String_t_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_2 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, L_1, /*hidden argument*/NULL);
RuntimeArray * L_3 = VirtFuncInvoker1< RuntimeArray *, Type_t * >::Invoke(48 /* System.Array System.Collections.ArrayList::ToArray(System.Type) */, L_0, L_2);
return ((StringU5BU5D_t1281789340*)Castclass((RuntimeObject*)L_3, StringU5BU5D_t1281789340_il2cpp_TypeInfo_var));
}
}
// System.Void Mono.Xml.SmallXmlParser/AttrListImpl::Clear()
extern "C" void AttrListImpl_Clear_m2260362286 (AttrListImpl_t567962447 * __this, const RuntimeMethod* method)
{
{
ArrayList_t2718874744 * L_0 = __this->get_attrNames_0();
VirtActionInvoker0::Invoke(31 /* System.Void System.Collections.ArrayList::Clear() */, L_0);
ArrayList_t2718874744 * L_1 = __this->get_attrValues_1();
VirtActionInvoker0::Invoke(31 /* System.Void System.Collections.ArrayList::Clear() */, L_1);
return;
}
}
// System.Void Mono.Xml.SmallXmlParser/AttrListImpl::Add(System.String,System.String)
extern "C" void AttrListImpl_Add_m3378108236 (AttrListImpl_t567962447 * __this, String_t* ___name0, String_t* ___value1, const RuntimeMethod* method)
{
{
ArrayList_t2718874744 * L_0 = __this->get_attrNames_0();
String_t* L_1 = ___name0;
VirtFuncInvoker1< int32_t, RuntimeObject * >::Invoke(30 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_0, L_1);
ArrayList_t2718874744 * L_2 = __this->get_attrValues_1();
String_t* L_3 = ___value1;
VirtFuncInvoker1< int32_t, RuntimeObject * >::Invoke(30 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_2, L_3);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void Mono.Xml.SmallXmlParserException::.ctor(System.String,System.Int32,System.Int32)
extern "C" void SmallXmlParserException__ctor_m1976648878 (SmallXmlParserException_t1329648272 * __this, String_t* ___msg0, int32_t ___line1, int32_t ___column2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (SmallXmlParserException__ctor_m1976648878_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = ___msg0;
int32_t L_1 = ___line1;
int32_t L_2 = L_1;
RuntimeObject * L_3 = Box(Int32_t2950945753_il2cpp_TypeInfo_var, &L_2);
int32_t L_4 = ___column2;
int32_t L_5 = L_4;
RuntimeObject * L_6 = Box(Int32_t2950945753_il2cpp_TypeInfo_var, &L_5);
IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
String_t* L_7 = String_Format_m3339413201(NULL /*static, unused*/, _stringLiteral3493700598, L_0, L_3, L_6, /*hidden argument*/NULL);
SystemException__ctor_m3298527747(__this, L_7, /*hidden argument*/NULL);
int32_t L_8 = ___line1;
__this->set_line_11(L_8);
int32_t L_9 = ___column2;
__this->set_column_12(L_9);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.__Il2CppComDelegate::Finalize()
extern "C" void __Il2CppComDelegate_Finalize_m2460829410 (__Il2CppComDelegate_t1102178620 * __this, const RuntimeMethod* method)
{
__Il2CppComObject_Finalize_m2923638372(__this, NULL);
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.__Il2CppComObject::Finalize()
extern "C" void __Il2CppComObject_Finalize_m2923638372 (Il2CppComObject * __this, const RuntimeMethod* method)
{
if (__this->identity != NULL)
{
if (il2cpp_codegen_is_import_or_windows_runtime((RuntimeObject*)__this))
{
il2cpp_codegen_il2cpp_com_object_cleanup(__this);
}
__this->identity->Release();
__this->identity = NULL;
}
Object_Finalize_m3076187857(__this, NULL);
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.AccessViolationException::.ctor()
extern "C" void AccessViolationException__ctor_m459401853 (AccessViolationException_t339633883 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (AccessViolationException__ctor_m459401853_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = Locale_GetText_m3374010885(NULL /*static, unused*/, _stringLiteral2452977534, /*hidden argument*/NULL);
SystemException__ctor_m3298527747(__this, L_0, /*hidden argument*/NULL);
Exception_set_HResult_m3489164646(__this, ((int32_t)-2147467261), /*hidden argument*/NULL);
return;
}
}
// System.Void System.AccessViolationException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
extern "C" void AccessViolationException__ctor_m506103991 (AccessViolationException_t339633883 * __this, SerializationInfo_t950877179 * ___info0, StreamingContext_t3711869237 ___context1, const RuntimeMethod* method)
{
{
SerializationInfo_t950877179 * L_0 = ___info0;
StreamingContext_t3711869237 L_1 = ___context1;
SystemException__ctor_m1515048899(__this, L_0, L_1, /*hidden argument*/NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.ActivationContext::Finalize()
extern "C" void ActivationContext_Finalize_m1527946098 (ActivationContext_t976916018 * __this, const RuntimeMethod* method)
{
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = 0;
NO_UNUSED_WARNING (__leave_target);
IL_0000:
try
{ // begin try (depth: 1)
ActivationContext_Dispose_m2038725770(__this, (bool)0, /*hidden argument*/NULL);
IL2CPP_LEAVE(0x13, FINALLY_000c);
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_000c;
}
FINALLY_000c:
{ // begin finally (depth: 1)
Object_Finalize_m3076187857(__this, /*hidden argument*/NULL);
IL2CPP_END_FINALLY(12)
} // end finally (depth: 1)
IL2CPP_CLEANUP(12)
{
IL2CPP_JUMP_TBL(0x13, IL_0013)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_0013:
{
return;
}
}
// System.Void System.ActivationContext::Dispose()
extern "C" void ActivationContext_Dispose_m827530843 (ActivationContext_t976916018 * __this, const RuntimeMethod* method)
{
{
ActivationContext_Dispose_m2038725770(__this, (bool)1, /*hidden argument*/NULL);
GC_SuppressFinalize_m1177400158(NULL /*static, unused*/, __this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.ActivationContext::Dispose(System.Boolean)
extern "C" void ActivationContext_Dispose_m2038725770 (ActivationContext_t976916018 * __this, bool ___disposing0, const RuntimeMethod* method)
{
{
bool L_0 = __this->get__disposed_0();
if (!L_0)
{
goto IL_0018;
}
}
{
bool L_1 = ___disposing0;
if (!L_1)
{
goto IL_0011;
}
}
IL_0011:
{
__this->set__disposed_0((bool)1);
}
IL_0018:
{
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Object System.Activator::CreateInstance(System.Type)
extern "C" RuntimeObject * Activator_CreateInstance_m3631483688 (RuntimeObject * __this /* static, unused */, Type_t * ___type0, const RuntimeMethod* method)
{
{
Type_t * L_0 = ___type0;
RuntimeObject * L_1 = Activator_CreateInstance_m2597605935(NULL /*static, unused*/, L_0, (bool)0, /*hidden argument*/NULL);
return L_1;
}
}
// System.Object System.Activator::CreateInstance(System.Type,System.Object[])
extern "C" RuntimeObject * Activator_CreateInstance_m94526014 (RuntimeObject * __this /* static, unused */, Type_t * ___type0, ObjectU5BU5D_t2843939325* ___args1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Activator_CreateInstance_m94526014_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Type_t * L_0 = ___type0;
ObjectU5BU5D_t2843939325* L_1 = ___args1;
RuntimeObject * L_2 = Activator_CreateInstance_m3736402505(NULL /*static, unused*/, L_0, L_1, ((ObjectU5BU5D_t2843939325*)SZArrayNew(ObjectU5BU5D_t2843939325_il2cpp_TypeInfo_var, (uint32_t)0)), /*hidden argument*/NULL);
return L_2;
}
}
// System.Object System.Activator::CreateInstance(System.Type,System.Object[],System.Object[])
extern "C" RuntimeObject * Activator_CreateInstance_m3736402505 (RuntimeObject * __this /* static, unused */, Type_t * ___type0, ObjectU5BU5D_t2843939325* ___args1, ObjectU5BU5D_t2843939325* ___activationAttributes2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Activator_CreateInstance_m3736402505_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Type_t * L_0 = ___type0;
IL2CPP_RUNTIME_CLASS_INIT(Binder_t2999457153_il2cpp_TypeInfo_var);
Binder_t2999457153 * L_1 = Binder_get_DefaultBinder_m950908649(NULL /*static, unused*/, /*hidden argument*/NULL);
ObjectU5BU5D_t2843939325* L_2 = ___args1;
ObjectU5BU5D_t2843939325* L_3 = ___activationAttributes2;
RuntimeObject * L_4 = Activator_CreateInstance_m2998273980(NULL /*static, unused*/, L_0, 0, L_1, L_2, (CultureInfo_t4157843068 *)NULL, L_3, /*hidden argument*/NULL);
return L_4;
}
}
// System.Object System.Activator::CreateInstance(System.Type,System.Reflection.BindingFlags,System.Reflection.Binder,System.Object[],System.Globalization.CultureInfo,System.Object[])
extern "C" RuntimeObject * Activator_CreateInstance_m2998273980 (RuntimeObject * __this /* static, unused */, Type_t * ___type0, int32_t ___bindingAttr1, Binder_t2999457153 * ___binder2, ObjectU5BU5D_t2843939325* ___args3, CultureInfo_t4157843068 * ___culture4, ObjectU5BU5D_t2843939325* ___activationAttributes5, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Activator_CreateInstance_m2998273980_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
TypeU5BU5D_t3940880105* V_1 = NULL;
int32_t V_2 = 0;
ConstructorInfo_t5769829 * V_3 = NULL;
StringBuilder_t * V_4 = NULL;
Type_t * V_5 = NULL;
TypeU5BU5D_t3940880105* V_6 = NULL;
int32_t V_7 = 0;
String_t* V_8 = NULL;
RuntimeObject * V_9 = NULL;
TypeU5BU5D_t3940880105* G_B9_0 = NULL;
StringBuilder_t * G_B23_0 = NULL;
StringBuilder_t * G_B22_0 = NULL;
String_t* G_B24_0 = NULL;
StringBuilder_t * G_B24_1 = NULL;
{
Type_t * L_0 = ___type0;
Activator_CheckType_m2787213785(NULL /*static, unused*/, L_0, /*hidden argument*/NULL);
Type_t * L_1 = ___type0;
bool L_2 = VirtFuncInvoker0< bool >::Invoke(76 /* System.Boolean System.Type::get_ContainsGenericParameters() */, L_1);
if (!L_2)
{
goto IL_0027;
}
}
{
Type_t * L_3 = ___type0;
IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
String_t* L_4 = String_Concat_m904156431(NULL /*static, unused*/, L_3, _stringLiteral2686827879, /*hidden argument*/NULL);
ArgumentException_t132251570 * L_5 = (ArgumentException_t132251570 *)il2cpp_codegen_object_new(ArgumentException_t132251570_il2cpp_TypeInfo_var);
ArgumentException__ctor_m1216717135(L_5, L_4, _stringLiteral3243520166, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5,Activator_CreateInstance_m2998273980_RuntimeMethod_var);
}
IL_0027:
{
int32_t L_6 = ___bindingAttr1;
if (((int32_t)((int32_t)L_6&(int32_t)((int32_t)127))))
{
goto IL_0036;
}
}
{
int32_t L_7 = ___bindingAttr1;
___bindingAttr1 = ((int32_t)((int32_t)L_7|(int32_t)((int32_t)20)));
}
IL_0036:
{
V_0 = 0;
ObjectU5BU5D_t2843939325* L_8 = ___args3;
if (!L_8)
{
goto IL_0042;
}
}
{
ObjectU5BU5D_t2843939325* L_9 = ___args3;
V_0 = (((int32_t)((int32_t)(((RuntimeArray *)L_9)->max_length))));
}
IL_0042:
{
int32_t L_10 = V_0;
if (L_10)
{
goto IL_0052;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
TypeU5BU5D_t3940880105* L_11 = ((Type_t_StaticFields*)il2cpp_codegen_static_fields_for(Type_t_il2cpp_TypeInfo_var))->get_EmptyTypes_3();
G_B9_0 = L_11;
goto IL_0058;
}
IL_0052:
{
int32_t L_12 = V_0;
G_B9_0 = ((TypeU5BU5D_t3940880105*)SZArrayNew(TypeU5BU5D_t3940880105_il2cpp_TypeInfo_var, (uint32_t)L_12));
}
IL_0058:
{
V_1 = G_B9_0;
V_2 = 0;
goto IL_0077;
}
IL_0060:
{
ObjectU5BU5D_t2843939325* L_13 = ___args3;
int32_t L_14 = V_2;
int32_t L_15 = L_14;
RuntimeObject * L_16 = (L_13)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_15));
if (!L_16)
{
goto IL_0073;
}
}
{
TypeU5BU5D_t3940880105* L_17 = V_1;
int32_t L_18 = V_2;
ObjectU5BU5D_t2843939325* L_19 = ___args3;
int32_t L_20 = V_2;
int32_t L_21 = L_20;
RuntimeObject * L_22 = (L_19)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_21));
Type_t * L_23 = Object_GetType_m88164663(L_22, /*hidden argument*/NULL);
ArrayElementTypeCheck (L_17, L_23);
(L_17)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(L_18), (Type_t *)L_23);
}
IL_0073:
{
int32_t L_24 = V_2;
V_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_24, (int32_t)1));
}
IL_0077:
{
int32_t L_25 = V_2;
int32_t L_26 = V_0;
if ((((int32_t)L_25) < ((int32_t)L_26)))
{
goto IL_0060;
}
}
{
Binder_t2999457153 * L_27 = ___binder2;
if (L_27)
{
goto IL_008b;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(Binder_t2999457153_il2cpp_TypeInfo_var);
Binder_t2999457153 * L_28 = Binder_get_DefaultBinder_m950908649(NULL /*static, unused*/, /*hidden argument*/NULL);
___binder2 = L_28;
}
IL_008b:
{
Binder_t2999457153 * L_29 = ___binder2;
int32_t L_30 = ___bindingAttr1;
Type_t * L_31 = ___type0;
int32_t L_32 = ___bindingAttr1;
ConstructorInfoU5BU5D_t881249896* L_33 = VirtFuncInvoker1< ConstructorInfoU5BU5D_t881249896*, int32_t >::Invoke(73 /* System.Reflection.ConstructorInfo[] System.Type::GetConstructors(System.Reflection.BindingFlags) */, L_31, L_32);
TypeU5BU5D_t3940880105* L_34 = V_1;
MethodBase_t * L_35 = VirtFuncInvoker4< MethodBase_t *, int32_t, MethodBaseU5BU5D_t779831733*, TypeU5BU5D_t3940880105*, ParameterModifierU5BU5D_t2943407543* >::Invoke(7 /* System.Reflection.MethodBase System.Reflection.Binder::SelectMethod(System.Reflection.BindingFlags,System.Reflection.MethodBase[],System.Type[],System.Reflection.ParameterModifier[]) */, L_29, L_30, (MethodBaseU5BU5D_t779831733*)(MethodBaseU5BU5D_t779831733*)L_33, L_34, (ParameterModifierU5BU5D_t2943407543*)(ParameterModifierU5BU5D_t2943407543*)NULL);
V_3 = ((ConstructorInfo_t5769829 *)CastclassClass((RuntimeObject*)L_35, ConstructorInfo_t5769829_il2cpp_TypeInfo_var));
ConstructorInfo_t5769829 * L_36 = V_3;
if (L_36)
{
goto IL_0151;
}
}
{
Type_t * L_37 = ___type0;
bool L_38 = Type_get_IsValueType_m3108065642(L_37, /*hidden argument*/NULL);
if (!L_38)
{
goto IL_00c1;
}
}
{
TypeU5BU5D_t3940880105* L_39 = V_1;
if ((((int32_t)((int32_t)(((RuntimeArray *)L_39)->max_length)))))
{
goto IL_00c1;
}
}
{
Type_t * L_40 = ___type0;
RuntimeObject * L_41 = Activator_CreateInstanceInternal_m1337209899(NULL /*static, unused*/, L_40, /*hidden argument*/NULL);
return L_41;
}
IL_00c1:
{
StringBuilder_t * L_42 = (StringBuilder_t *)il2cpp_codegen_object_new(StringBuilder_t_il2cpp_TypeInfo_var);
StringBuilder__ctor_m3121283359(L_42, /*hidden argument*/NULL);
V_4 = L_42;
TypeU5BU5D_t3940880105* L_43 = V_1;
V_6 = L_43;
V_7 = 0;
goto IL_010d;
}
IL_00d3:
{
TypeU5BU5D_t3940880105* L_44 = V_6;
int32_t L_45 = V_7;
int32_t L_46 = L_45;
Type_t * L_47 = (L_44)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_46));
V_5 = L_47;
StringBuilder_t * L_48 = V_4;
Type_t * L_49 = V_5;
G_B22_0 = L_48;
if (!L_49)
{
G_B23_0 = L_48;
goto IL_00ef;
}
}
{
Type_t * L_50 = V_5;
String_t* L_51 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Type::ToString() */, L_50);
G_B24_0 = L_51;
G_B24_1 = G_B22_0;
goto IL_00f4;
}
IL_00ef:
{
G_B24_0 = _stringLiteral2788501656;
G_B24_1 = G_B23_0;
}
IL_00f4:
{
StringBuilder_Append_m1965104174(G_B24_1, G_B24_0, /*hidden argument*/NULL);
StringBuilder_t * L_52 = V_4;
StringBuilder_Append_m1965104174(L_52, _stringLiteral3450517380, /*hidden argument*/NULL);
int32_t L_53 = V_7;
V_7 = ((int32_t)il2cpp_codegen_add((int32_t)L_53, (int32_t)1));
}
IL_010d:
{
int32_t L_54 = V_7;
TypeU5BU5D_t3940880105* L_55 = V_6;
if ((((int32_t)L_54) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_55)->max_length)))))))
{
goto IL_00d3;
}
}
{
StringBuilder_t * L_56 = V_4;
int32_t L_57 = StringBuilder_get_Length_m3238060835(L_56, /*hidden argument*/NULL);
if ((((int32_t)L_57) <= ((int32_t)2)))
{
goto IL_0134;
}
}
{
StringBuilder_t * L_58 = V_4;
StringBuilder_t * L_59 = L_58;
int32_t L_60 = StringBuilder_get_Length_m3238060835(L_59, /*hidden argument*/NULL);
StringBuilder_set_Length_m1410065908(L_59, ((int32_t)il2cpp_codegen_subtract((int32_t)L_60, (int32_t)2)), /*hidden argument*/NULL);
}
IL_0134:
{
String_t* L_61 = Locale_GetText_m3374010885(NULL /*static, unused*/, _stringLiteral576173281, /*hidden argument*/NULL);
Type_t * L_62 = ___type0;
String_t* L_63 = VirtFuncInvoker0< String_t* >::Invoke(18 /* System.String System.Type::get_FullName() */, L_62);
StringBuilder_t * L_64 = V_4;
IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
String_t* L_65 = String_Format_m2556382932(NULL /*static, unused*/, L_61, L_63, L_64, /*hidden argument*/NULL);
MissingMethodException_t1274661534 * L_66 = (MissingMethodException_t1274661534 *)il2cpp_codegen_object_new(MissingMethodException_t1274661534_il2cpp_TypeInfo_var);
MissingMethodException__ctor_m3234469579(L_66, L_65, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_66,Activator_CreateInstance_m2998273980_RuntimeMethod_var);
}
IL_0151:
{
Type_t * L_67 = ___type0;
Activator_CheckAbstractType_m2015247896(NULL /*static, unused*/, L_67, /*hidden argument*/NULL);
ObjectU5BU5D_t2843939325* L_68 = ___activationAttributes5;
if (!L_68)
{
goto IL_01b8;
}
}
{
ObjectU5BU5D_t2843939325* L_69 = ___activationAttributes5;
if ((((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_69)->max_length))))) <= ((int32_t)0)))
{
goto IL_01b8;
}
}
{
Type_t * L_70 = ___type0;
bool L_71 = Type_get_IsMarshalByRef_m1681525688(L_70, /*hidden argument*/NULL);
if (L_71)
{
goto IL_0196;
}
}
{
ObjectU5BU5D_t2843939325* L_72 = ((ObjectU5BU5D_t2843939325*)SZArrayNew(ObjectU5BU5D_t2843939325_il2cpp_TypeInfo_var, (uint32_t)1));
Type_t * L_73 = ___type0;
String_t* L_74 = VirtFuncInvoker0< String_t* >::Invoke(18 /* System.String System.Type::get_FullName() */, L_73);
ArrayElementTypeCheck (L_72, L_74);
(L_72)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_74);
String_t* L_75 = Locale_GetText_m1601577974(NULL /*static, unused*/, _stringLiteral3861759892, L_72, /*hidden argument*/NULL);
V_8 = L_75;
String_t* L_76 = V_8;
NotSupportedException_t1314879016 * L_77 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var);
NotSupportedException__ctor_m2494070935(L_77, L_76, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_77,Activator_CreateInstance_m2998273980_RuntimeMethod_var);
}
IL_0196:
{
Type_t * L_78 = ___type0;
ObjectU5BU5D_t2843939325* L_79 = ___activationAttributes5;
RuntimeObject * L_80 = ActivationServices_CreateProxyFromAttributes_m3864561181(NULL /*static, unused*/, L_78, L_79, /*hidden argument*/NULL);
V_9 = L_80;
RuntimeObject * L_81 = V_9;
if (!L_81)
{
goto IL_01b8;
}
}
{
ConstructorInfo_t5769829 * L_82 = V_3;
RuntimeObject * L_83 = V_9;
int32_t L_84 = ___bindingAttr1;
Binder_t2999457153 * L_85 = ___binder2;
ObjectU5BU5D_t2843939325* L_86 = ___args3;
CultureInfo_t4157843068 * L_87 = ___culture4;
VirtFuncInvoker5< RuntimeObject *, RuntimeObject *, int32_t, Binder_t2999457153 *, ObjectU5BU5D_t2843939325*, CultureInfo_t4157843068 * >::Invoke(17 /* System.Object System.Reflection.MethodBase::Invoke(System.Object,System.Reflection.BindingFlags,System.Reflection.Binder,System.Object[],System.Globalization.CultureInfo) */, L_82, L_83, L_84, L_85, L_86, L_87);
RuntimeObject * L_88 = V_9;
return L_88;
}
IL_01b8:
{
ConstructorInfo_t5769829 * L_89 = V_3;
int32_t L_90 = ___bindingAttr1;
Binder_t2999457153 * L_91 = ___binder2;
ObjectU5BU5D_t2843939325* L_92 = ___args3;
CultureInfo_t4157843068 * L_93 = ___culture4;
RuntimeObject * L_94 = VirtFuncInvoker4< RuntimeObject *, int32_t, Binder_t2999457153 *, ObjectU5BU5D_t2843939325*, CultureInfo_t4157843068 * >::Invoke(30 /* System.Object System.Reflection.ConstructorInfo::Invoke(System.Reflection.BindingFlags,System.Reflection.Binder,System.Object[],System.Globalization.CultureInfo) */, L_89, L_90, L_91, L_92, L_93);
return L_94;
}
}
// System.Object System.Activator::CreateInstance(System.Type,System.Boolean)
extern "C" RuntimeObject * Activator_CreateInstance_m2597605935 (RuntimeObject * __this /* static, unused */, Type_t * ___type0, bool ___nonPublic1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Activator_CreateInstance_m2597605935_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ConstructorInfo_t5769829 * V_0 = NULL;
MonoType_t * V_1 = NULL;
int32_t V_2 = 0;
{
Type_t * L_0 = ___type0;
Activator_CheckType_m2787213785(NULL /*static, unused*/, L_0, /*hidden argument*/NULL);
Type_t * L_1 = ___type0;
bool L_2 = VirtFuncInvoker0< bool >::Invoke(76 /* System.Boolean System.Type::get_ContainsGenericParameters() */, L_1);
if (!L_2)
{
goto IL_0027;
}
}
{
Type_t * L_3 = ___type0;
IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
String_t* L_4 = String_Concat_m904156431(NULL /*static, unused*/, L_3, _stringLiteral2686827879, /*hidden argument*/NULL);
ArgumentException_t132251570 * L_5 = (ArgumentException_t132251570 *)il2cpp_codegen_object_new(ArgumentException_t132251570_il2cpp_TypeInfo_var);
ArgumentException__ctor_m1216717135(L_5, L_4, _stringLiteral3243520166, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5,Activator_CreateInstance_m2597605935_RuntimeMethod_var);
}
IL_0027:
{
Type_t * L_6 = ___type0;
Activator_CheckAbstractType_m2015247896(NULL /*static, unused*/, L_6, /*hidden argument*/NULL);
Type_t * L_7 = ___type0;
V_1 = ((MonoType_t *)IsInstClass((RuntimeObject*)L_7, MonoType_t_il2cpp_TypeInfo_var));
MonoType_t * L_8 = V_1;
if (!L_8)
{
goto IL_005f;
}
}
{
MonoType_t * L_9 = V_1;
ConstructorInfo_t5769829 * L_10 = MonoType_GetDefaultConstructor_m1616852582(L_9, /*hidden argument*/NULL);
V_0 = L_10;
bool L_11 = ___nonPublic1;
if (L_11)
{
goto IL_005a;
}
}
{
ConstructorInfo_t5769829 * L_12 = V_0;
if (!L_12)
{
goto IL_005a;
}
}
{
ConstructorInfo_t5769829 * L_13 = V_0;
bool L_14 = MethodBase_get_IsPublic_m2180846589(L_13, /*hidden argument*/NULL);
if (L_14)
{
goto IL_005a;
}
}
{
V_0 = (ConstructorInfo_t5769829 *)NULL;
}
IL_005a:
{
goto IL_007d;
}
IL_005f:
{
V_2 = ((int32_t)20);
bool L_15 = ___nonPublic1;
if (!L_15)
{
goto IL_006d;
}
}
{
int32_t L_16 = V_2;
V_2 = ((int32_t)((int32_t)L_16|(int32_t)((int32_t)32)));
}
IL_006d:
{
Type_t * L_17 = ___type0;
int32_t L_18 = V_2;
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
TypeU5BU5D_t3940880105* L_19 = ((Type_t_StaticFields*)il2cpp_codegen_static_fields_for(Type_t_il2cpp_TypeInfo_var))->get_EmptyTypes_3();
ConstructorInfo_t5769829 * L_20 = Type_GetConstructor_m1195697116(L_17, L_18, (Binder_t2999457153 *)NULL, 3, L_19, (ParameterModifierU5BU5D_t2943407543*)(ParameterModifierU5BU5D_t2943407543*)NULL, /*hidden argument*/NULL);
V_0 = L_20;
}
IL_007d:
{
ConstructorInfo_t5769829 * L_21 = V_0;
if (L_21)
{
goto IL_00b5;
}
}
{
Type_t * L_22 = ___type0;
bool L_23 = Type_get_IsValueType_m3108065642(L_22, /*hidden argument*/NULL);
if (!L_23)
{
goto IL_0095;
}
}
{
Type_t * L_24 = ___type0;
RuntimeObject * L_25 = Activator_CreateInstanceInternal_m1337209899(NULL /*static, unused*/, L_24, /*hidden argument*/NULL);
return L_25;
}
IL_0095:
{
String_t* L_26 = Locale_GetText_m3374010885(NULL /*static, unused*/, _stringLiteral940967826, /*hidden argument*/NULL);
Type_t * L_27 = ___type0;
String_t* L_28 = VirtFuncInvoker0< String_t* >::Invoke(18 /* System.String System.Type::get_FullName() */, L_27);
IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
String_t* L_29 = String_Concat_m3937257545(NULL /*static, unused*/, _stringLiteral882111926, L_28, /*hidden argument*/NULL);
MissingMethodException_t1274661534 * L_30 = (MissingMethodException_t1274661534 *)il2cpp_codegen_object_new(MissingMethodException_t1274661534_il2cpp_TypeInfo_var);
MissingMethodException__ctor_m41689610(L_30, L_26, L_29, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_30,Activator_CreateInstance_m2597605935_RuntimeMethod_var);
}
IL_00b5:
{
ConstructorInfo_t5769829 * L_31 = V_0;
RuntimeObject * L_32 = ConstructorInfo_Invoke_m4089836896(L_31, (ObjectU5BU5D_t2843939325*)(ObjectU5BU5D_t2843939325*)NULL, /*hidden argument*/NULL);
return L_32;
}
}
// System.Void System.Activator::CheckType(System.Type)
extern "C" void Activator_CheckType_m2787213785 (RuntimeObject * __this /* static, unused */, Type_t * ___type0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Activator_CheckType_m2787213785_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
{
Type_t * L_0 = ___type0;
if (L_0)
{
goto IL_0011;
}
}
{
ArgumentNullException_t1615371798 * L_1 = (ArgumentNullException_t1615371798 *)il2cpp_codegen_object_new(ArgumentNullException_t1615371798_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m1170824041(L_1, _stringLiteral3243520166, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1,Activator_CheckType_m2787213785_RuntimeMethod_var);
}
IL_0011:
{
Type_t * L_2 = ___type0;
RuntimeTypeHandle_t3027515415 L_3 = { reinterpret_cast<intptr_t> (TypedReference_t1491108119_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_4 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, L_3, /*hidden argument*/NULL);
if ((((RuntimeObject*)(Type_t *)L_2) == ((RuntimeObject*)(Type_t *)L_4)))
{
goto IL_0051;
}
}
{
Type_t * L_5 = ___type0;
RuntimeTypeHandle_t3027515415 L_6 = { reinterpret_cast<intptr_t> (ArgIterator_t539591376_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_7 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, L_6, /*hidden argument*/NULL);
if ((((RuntimeObject*)(Type_t *)L_5) == ((RuntimeObject*)(Type_t *)L_7)))
{
goto IL_0051;
}
}
{
Type_t * L_8 = ___type0;
RuntimeTypeHandle_t3027515415 L_9 = { reinterpret_cast<intptr_t> (Void_t1185182177_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_10 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, L_9, /*hidden argument*/NULL);
if ((((RuntimeObject*)(Type_t *)L_8) == ((RuntimeObject*)(Type_t *)L_10)))
{
goto IL_0051;
}
}
{
Type_t * L_11 = ___type0;
RuntimeTypeHandle_t3027515415 L_12 = { reinterpret_cast<intptr_t> (RuntimeArgumentHandle_t3162137059_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_13 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, L_12, /*hidden argument*/NULL);
if ((!(((RuntimeObject*)(Type_t *)L_11) == ((RuntimeObject*)(Type_t *)L_13))))
{
goto IL_0072;
}
}
IL_0051:
{
ObjectU5BU5D_t2843939325* L_14 = ((ObjectU5BU5D_t2843939325*)SZArrayNew(ObjectU5BU5D_t2843939325_il2cpp_TypeInfo_var, (uint32_t)1));
Type_t * L_15 = ___type0;
String_t* L_16 = VirtFuncInvoker0< String_t* >::Invoke(18 /* System.String System.Type::get_FullName() */, L_15);
ArrayElementTypeCheck (L_14, L_16);
(L_14)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_16);
String_t* L_17 = Locale_GetText_m1601577974(NULL /*static, unused*/, _stringLiteral434156966, L_14, /*hidden argument*/NULL);
V_0 = L_17;
String_t* L_18 = V_0;
NotSupportedException_t1314879016 * L_19 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var);
NotSupportedException__ctor_m2494070935(L_19, L_18, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_19,Activator_CheckType_m2787213785_RuntimeMethod_var);
}
IL_0072:
{
return;
}
}
// System.Void System.Activator::CheckAbstractType(System.Type)
extern "C" void Activator_CheckAbstractType_m2015247896 (RuntimeObject * __this /* static, unused */, Type_t * ___type0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Activator_CheckAbstractType_m2015247896_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
{
Type_t * L_0 = ___type0;
bool L_1 = Type_get_IsAbstract_m1120089130(L_0, /*hidden argument*/NULL);
if (!L_1)
{
goto IL_002c;
}
}
{
ObjectU5BU5D_t2843939325* L_2 = ((ObjectU5BU5D_t2843939325*)SZArrayNew(ObjectU5BU5D_t2843939325_il2cpp_TypeInfo_var, (uint32_t)1));
Type_t * L_3 = ___type0;
String_t* L_4 = VirtFuncInvoker0< String_t* >::Invoke(18 /* System.String System.Type::get_FullName() */, L_3);
ArrayElementTypeCheck (L_2, L_4);
(L_2)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_4);
String_t* L_5 = Locale_GetText_m1601577974(NULL /*static, unused*/, _stringLiteral1908389171, L_2, /*hidden argument*/NULL);
V_0 = L_5;
String_t* L_6 = V_0;
MissingMethodException_t1274661534 * L_7 = (MissingMethodException_t1274661534 *)il2cpp_codegen_object_new(MissingMethodException_t1274661534_il2cpp_TypeInfo_var);
MissingMethodException__ctor_m3234469579(L_7, L_6, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_7,Activator_CheckAbstractType_m2015247896_RuntimeMethod_var);
}
IL_002c:
{
return;
}
}
// System.Object System.Activator::CreateInstanceInternal(System.Type)
extern "C" RuntimeObject * Activator_CreateInstanceInternal_m1337209899 (RuntimeObject * __this /* static, unused */, Type_t * ___type0, const RuntimeMethod* method)
{
typedef RuntimeObject * (*Activator_CreateInstanceInternal_m1337209899_ftn) (Type_t *);
using namespace il2cpp::icalls;
return ((Activator_CreateInstanceInternal_m1337209899_ftn)mscorlib::System::Activator::CreateInstanceInternal) (___type0);
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.AppDomain::.ctor()
extern "C" void AppDomain__ctor_m900298256 (AppDomain_t1571427825 * __this, const RuntimeMethod* method)
{
{
MarshalByRefObject__ctor_m3039543187(__this, /*hidden argument*/NULL);
return;
}
}
// System.String System.AppDomain::getFriendlyName()
extern "C" String_t* AppDomain_getFriendlyName_m248495153 (AppDomain_t1571427825 * __this, const RuntimeMethod* method)
{
typedef String_t* (*AppDomain_getFriendlyName_m248495153_ftn) (AppDomain_t1571427825 *);
using namespace il2cpp::icalls;
return ((AppDomain_getFriendlyName_m248495153_ftn)mscorlib::System::AppDomain::getFriendlyName) (__this);
}
// System.AppDomain System.AppDomain::getCurDomain()
extern "C" AppDomain_t1571427825 * AppDomain_getCurDomain_m1005431575 (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method)
{
typedef AppDomain_t1571427825 * (*AppDomain_getCurDomain_m1005431575_ftn) ();
using namespace il2cpp::icalls;
return ((AppDomain_getCurDomain_m1005431575_ftn)mscorlib::System::AppDomain::getCurDomain) ();
}
// System.AppDomain System.AppDomain::get_CurrentDomain()
extern "C" AppDomain_t1571427825 * AppDomain_get_CurrentDomain_m182766250 (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method)
{
{
AppDomain_t1571427825 * L_0 = AppDomain_getCurDomain_m1005431575(NULL /*static, unused*/, /*hidden argument*/NULL);
return L_0;
}
}
// System.Reflection.Assembly System.AppDomain::LoadAssembly(System.String,System.Security.Policy.Evidence,System.Boolean)
extern "C" Assembly_t * AppDomain_LoadAssembly_m1557889794 (AppDomain_t1571427825 * __this, String_t* ___assemblyRef0, Evidence_t2008144148 * ___securityEvidence1, bool ___refOnly2, const RuntimeMethod* method)
{
typedef Assembly_t * (*AppDomain_LoadAssembly_m1557889794_ftn) (AppDomain_t1571427825 *, String_t*, Evidence_t2008144148 *, bool);
using namespace il2cpp::icalls;
return ((AppDomain_LoadAssembly_m1557889794_ftn)mscorlib::System::AppDomain::LoadAssembly) (__this, ___assemblyRef0, ___securityEvidence1, ___refOnly2);
}
// System.Reflection.Assembly System.AppDomain::Load(System.String)
extern "C" Assembly_t * AppDomain_Load_m4174353770 (AppDomain_t1571427825 * __this, String_t* ___assemblyString0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___assemblyString0;
Assembly_t * L_1 = AppDomain_Load_m2969998014(__this, L_0, (Evidence_t2008144148 *)NULL, (bool)0, /*hidden argument*/NULL);
return L_1;
}
}
// System.Reflection.Assembly System.AppDomain::Load(System.String,System.Security.Policy.Evidence,System.Boolean)
extern "C" Assembly_t * AppDomain_Load_m2969998014 (AppDomain_t1571427825 * __this, String_t* ___assemblyString0, Evidence_t2008144148 * ___assemblySecurity1, bool ___refonly2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (AppDomain_Load_m2969998014_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Assembly_t * V_0 = NULL;
{
String_t* L_0 = ___assemblyString0;
if (L_0)
{
goto IL_0011;
}
}
{
ArgumentNullException_t1615371798 * L_1 = (ArgumentNullException_t1615371798 *)il2cpp_codegen_object_new(ArgumentNullException_t1615371798_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m1170824041(L_1, _stringLiteral1952006009, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1,AppDomain_Load_m2969998014_RuntimeMethod_var);
}
IL_0011:
{
String_t* L_2 = ___assemblyString0;
int32_t L_3 = String_get_Length_m3847582255(L_2, /*hidden argument*/NULL);
if (L_3)
{
goto IL_0027;
}
}
{
ArgumentException_t132251570 * L_4 = (ArgumentException_t132251570 *)il2cpp_codegen_object_new(ArgumentException_t132251570_il2cpp_TypeInfo_var);
ArgumentException__ctor_m1312628991(L_4, _stringLiteral248753636, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_4,AppDomain_Load_m2969998014_RuntimeMethod_var);
}
IL_0027:
{
String_t* L_5 = ___assemblyString0;
Evidence_t2008144148 * L_6 = ___assemblySecurity1;
bool L_7 = ___refonly2;
Assembly_t * L_8 = AppDomain_LoadAssembly_m1557889794(__this, L_5, L_6, L_7, /*hidden argument*/NULL);
V_0 = L_8;
Assembly_t * L_9 = V_0;
if (L_9)
{
goto IL_003f;
}
}
{
String_t* L_10 = ___assemblyString0;
FileNotFoundException_t225391025 * L_11 = (FileNotFoundException_t225391025 *)il2cpp_codegen_object_new(FileNotFoundException_t225391025_il2cpp_TypeInfo_var);
FileNotFoundException__ctor_m1953317719(L_11, (String_t*)NULL, L_10, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_11,AppDomain_Load_m2969998014_RuntimeMethod_var);
}
IL_003f:
{
Assembly_t * L_12 = V_0;
return L_12;
}
}
// System.Runtime.Remoting.Contexts.Context System.AppDomain::InternalSetContext(System.Runtime.Remoting.Contexts.Context)
extern "C" Context_t3285446944 * AppDomain_InternalSetContext_m139827955 (RuntimeObject * __this /* static, unused */, Context_t3285446944 * ___context0, const RuntimeMethod* method)
{
typedef Context_t3285446944 * (*AppDomain_InternalSetContext_m139827955_ftn) (Context_t3285446944 *);
using namespace il2cpp::icalls;
return ((AppDomain_InternalSetContext_m139827955_ftn)mscorlib::System::AppDomain::InternalSetContext) (___context0);
}
// System.Runtime.Remoting.Contexts.Context System.AppDomain::InternalGetContext()
extern "C" Context_t3285446944 * AppDomain_InternalGetContext_m114897961 (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method)
{
typedef Context_t3285446944 * (*AppDomain_InternalGetContext_m114897961_ftn) ();
using namespace il2cpp::icalls;
return ((AppDomain_InternalGetContext_m114897961_ftn)mscorlib::System::AppDomain::InternalGetContext) ();
}
// System.Runtime.Remoting.Contexts.Context System.AppDomain::InternalGetDefaultContext()
extern "C" Context_t3285446944 * AppDomain_InternalGetDefaultContext_m1679027951 (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method)
{
typedef Context_t3285446944 * (*AppDomain_InternalGetDefaultContext_m1679027951_ftn) ();
using namespace il2cpp::icalls;
return ((AppDomain_InternalGetDefaultContext_m1679027951_ftn)mscorlib::System::AppDomain::InternalGetDefaultContext) ();
}
// System.String System.AppDomain::InternalGetProcessGuid(System.String)
extern "C" String_t* AppDomain_InternalGetProcessGuid_m1352630171 (RuntimeObject * __this /* static, unused */, String_t* ___newguid0, const RuntimeMethod* method)
{
typedef String_t* (*AppDomain_InternalGetProcessGuid_m1352630171_ftn) (String_t*);
using namespace il2cpp::icalls;
return ((AppDomain_InternalGetProcessGuid_m1352630171_ftn)mscorlib::System::AppDomain::InternalGetProcessGuid) (___newguid0);
}
// System.String System.AppDomain::GetProcessGuid()
extern "C" String_t* AppDomain_GetProcessGuid_m3316193837 (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (AppDomain_GetProcessGuid_m3316193837_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Guid_t V_0;
memset(&V_0, 0, sizeof(V_0));
{
String_t* L_0 = ((AppDomain_t1571427825_StaticFields*)il2cpp_codegen_static_fields_for(AppDomain_t1571427825_il2cpp_TypeInfo_var))->get__process_guid_2();
if (L_0)
{
goto IL_0021;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(Guid_t_il2cpp_TypeInfo_var);
Guid_t L_1 = Guid_NewGuid_m923091018(NULL /*static, unused*/, /*hidden argument*/NULL);
V_0 = L_1;
String_t* L_2 = Guid_ToString_m3279186591((&V_0), /*hidden argument*/NULL);
String_t* L_3 = AppDomain_InternalGetProcessGuid_m1352630171(NULL /*static, unused*/, L_2, /*hidden argument*/NULL);
((AppDomain_t1571427825_StaticFields*)il2cpp_codegen_static_fields_for(AppDomain_t1571427825_il2cpp_TypeInfo_var))->set__process_guid_2(L_3);
}
IL_0021:
{
String_t* L_4 = ((AppDomain_t1571427825_StaticFields*)il2cpp_codegen_static_fields_for(AppDomain_t1571427825_il2cpp_TypeInfo_var))->get__process_guid_2();
return L_4;
}
}
// System.String System.AppDomain::ToString()
extern "C" String_t* AppDomain_ToString_m1389451889 (AppDomain_t1571427825 * __this, const RuntimeMethod* method)
{
{
String_t* L_0 = AppDomain_getFriendlyName_m248495153(__this, /*hidden argument*/NULL);
return L_0;
}
}
// System.Reflection.Assembly System.AppDomain::DoTypeResolve(System.Object)
extern "C" Assembly_t * AppDomain_DoTypeResolve_m1335093328 (AppDomain_t1571427825 * __this, RuntimeObject * ___name_or_tb0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (AppDomain_DoTypeResolve_m1335093328_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
Hashtable_t1853889766 * V_1 = NULL;
Delegate_t1188392813 * V_2 = NULL;
DelegateU5BU5D_t1703627840* V_3 = NULL;
int32_t V_4 = 0;
ResolveEventHandler_t2775508208 * V_5 = NULL;
Assembly_t * V_6 = NULL;
Assembly_t * V_7 = NULL;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = 0;
NO_UNUSED_WARNING (__leave_target);
{
ResolveEventHandler_t2775508208 * L_0 = __this->get_TypeResolve_19();
if (L_0)
{
goto IL_000d;
}
}
{
return (Assembly_t *)NULL;
}
IL_000d:
{
RuntimeObject * L_1 = ___name_or_tb0;
if (!((TypeBuilder_t1073948154 *)IsInstSealed((RuntimeObject*)L_1, TypeBuilder_t1073948154_il2cpp_TypeInfo_var)))
{
goto IL_0029;
}
}
{
RuntimeObject * L_2 = ___name_or_tb0;
String_t* L_3 = TypeBuilder_get_FullName_m420272554(((TypeBuilder_t1073948154 *)CastclassSealed((RuntimeObject*)L_2, TypeBuilder_t1073948154_il2cpp_TypeInfo_var)), /*hidden argument*/NULL);
V_0 = L_3;
goto IL_0030;
}
IL_0029:
{
RuntimeObject * L_4 = ___name_or_tb0;
V_0 = ((String_t*)CastclassSealed((RuntimeObject*)L_4, String_t_il2cpp_TypeInfo_var));
}
IL_0030:
{
Hashtable_t1853889766 * L_5 = ((AppDomain_t1571427825_ThreadStaticFields*)il2cpp_codegen_get_thread_static_data(AppDomain_t1571427825_il2cpp_TypeInfo_var))->get_type_resolve_in_progress_3();
V_1 = L_5;
Hashtable_t1853889766 * L_6 = V_1;
if (L_6)
{
goto IL_0048;
}
}
{
Hashtable_t1853889766 * L_7 = (Hashtable_t1853889766 *)il2cpp_codegen_object_new(Hashtable_t1853889766_il2cpp_TypeInfo_var);
Hashtable__ctor_m1815022027(L_7, /*hidden argument*/NULL);
V_1 = L_7;
Hashtable_t1853889766 * L_8 = V_1;
((AppDomain_t1571427825_ThreadStaticFields*)il2cpp_codegen_get_thread_static_data(AppDomain_t1571427825_il2cpp_TypeInfo_var))->set_type_resolve_in_progress_3(L_8);
}
IL_0048:
{
Hashtable_t1853889766 * L_9 = V_1;
String_t* L_10 = V_0;
bool L_11 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(26 /* System.Boolean System.Collections.Hashtable::Contains(System.Object) */, L_9, L_10);
if (!L_11)
{
goto IL_0056;
}
}
{
return (Assembly_t *)NULL;
}
IL_0056:
{
Hashtable_t1853889766 * L_12 = V_1;
String_t* L_13 = V_0;
String_t* L_14 = V_0;
VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(22 /* System.Void System.Collections.Hashtable::set_Item(System.Object,System.Object) */, L_12, L_13, L_14);
}
IL_005e:
try
{ // begin try (depth: 1)
{
ResolveEventHandler_t2775508208 * L_15 = __this->get_TypeResolve_19();
DelegateU5BU5D_t1703627840* L_16 = MulticastDelegate_GetInvocationList_m4256593605(L_15, /*hidden argument*/NULL);
V_3 = L_16;
V_4 = 0;
goto IL_00a5;
}
IL_0072:
{
DelegateU5BU5D_t1703627840* L_17 = V_3;
int32_t L_18 = V_4;
int32_t L_19 = L_18;
Delegate_t1188392813 * L_20 = (L_17)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_19));
V_2 = L_20;
Delegate_t1188392813 * L_21 = V_2;
V_5 = ((ResolveEventHandler_t2775508208 *)CastclassSealed((RuntimeObject*)L_21, ResolveEventHandler_t2775508208_il2cpp_TypeInfo_var));
ResolveEventHandler_t2775508208 * L_22 = V_5;
String_t* L_23 = V_0;
ResolveEventArgs_t1779456501 * L_24 = (ResolveEventArgs_t1779456501 *)il2cpp_codegen_object_new(ResolveEventArgs_t1779456501_il2cpp_TypeInfo_var);
ResolveEventArgs__ctor_m1455935166(L_24, L_23, /*hidden argument*/NULL);
Assembly_t * L_25 = ResolveEventHandler_Invoke_m1337322179(L_22, __this, L_24, /*hidden argument*/NULL);
V_6 = L_25;
Assembly_t * L_26 = V_6;
if (!L_26)
{
goto IL_009f;
}
}
IL_0096:
{
Assembly_t * L_27 = V_6;
V_7 = L_27;
IL2CPP_LEAVE(0xC4, FINALLY_00bc);
}
IL_009f:
{
int32_t L_28 = V_4;
V_4 = ((int32_t)il2cpp_codegen_add((int32_t)L_28, (int32_t)1));
}
IL_00a5:
{
int32_t L_29 = V_4;
DelegateU5BU5D_t1703627840* L_30 = V_3;
if ((((int32_t)L_29) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_30)->max_length)))))))
{
goto IL_0072;
}
}
IL_00af:
{
V_7 = (Assembly_t *)NULL;
IL2CPP_LEAVE(0xC4, FINALLY_00bc);
}
IL_00b7:
{
; // IL_00b7: leave IL_00c4
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_00bc;
}
FINALLY_00bc:
{ // begin finally (depth: 1)
Hashtable_t1853889766 * L_31 = V_1;
String_t* L_32 = V_0;
VirtActionInvoker1< RuntimeObject * >::Invoke(28 /* System.Void System.Collections.Hashtable::Remove(System.Object) */, L_31, L_32);
IL2CPP_END_FINALLY(188)
} // end finally (depth: 1)
IL2CPP_CLEANUP(188)
{
IL2CPP_JUMP_TBL(0xC4, IL_00c4)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_00c4:
{
Assembly_t * L_33 = V_7;
return L_33;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
extern "C" void DelegatePInvokeWrapper_AppDomainInitializer_t682969308 (AppDomainInitializer_t682969308 * __this, StringU5BU5D_t1281789340* ___args0, const RuntimeMethod* method)
{
typedef void (STDCALL *PInvokeFunc)(char**);
PInvokeFunc il2cppPInvokeFunc = reinterpret_cast<PInvokeFunc>(il2cpp_codegen_get_method_pointer(((RuntimeDelegate*)__this)->method));
// Marshaling of parameter '___args0' to native representation
char** ____args0_marshaled = NULL;
if (___args0 != NULL)
{
il2cpp_array_size_t ____args0_Length = (___args0)->max_length;
____args0_marshaled = il2cpp_codegen_marshal_allocate_array<char*>(____args0_Length + 1);
(____args0_marshaled)[____args0_Length] = NULL;
for (int32_t i = 0; i < ARRAY_LENGTH_AS_INT32(____args0_Length); i++)
{
(____args0_marshaled)[i] = il2cpp_codegen_marshal_string((___args0)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(i)));
}
}
else
{
____args0_marshaled = NULL;
}
// Native function invocation
il2cppPInvokeFunc(____args0_marshaled);
// Marshaling cleanup of parameter '___args0' native representation
if (____args0_marshaled != NULL)
{
const il2cpp_array_size_t ____args0_marshaled_CleanupLoopCount = (___args0 != NULL) ? (___args0)->max_length : 0;
for (int32_t i = 0; i < ARRAY_LENGTH_AS_INT32(____args0_marshaled_CleanupLoopCount); i++)
{
il2cpp_codegen_marshal_free((____args0_marshaled)[i]);
(____args0_marshaled)[i] = NULL;
}
il2cpp_codegen_marshal_free(____args0_marshaled);
____args0_marshaled = NULL;
}
}
// System.Void System.AppDomainInitializer::.ctor(System.Object,System.IntPtr)
extern "C" void AppDomainInitializer__ctor_m804756664 (AppDomainInitializer_t682969308 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
__this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1));
__this->set_method_3(___method1);
__this->set_m_target_2(___object0);
}
// System.Void System.AppDomainInitializer::Invoke(System.String[])
extern "C" void AppDomainInitializer_Invoke_m1036878490 (AppDomainInitializer_t682969308 * __this, StringU5BU5D_t1281789340* ___args0, const RuntimeMethod* method)
{
if(__this->get_prev_9() != NULL)
{
AppDomainInitializer_Invoke_m1036878490((AppDomainInitializer_t682969308 *)__this->get_prev_9(), ___args0, method);
}
Il2CppMethodPointer targetMethodPointer = __this->get_method_ptr_0();
RuntimeMethod* targetMethod = (RuntimeMethod*)(__this->get_method_3());
RuntimeObject* targetThis = __this->get_m_target_2();
il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod);
bool ___methodIsStatic = MethodIsStatic(targetMethod);
if (___methodIsStatic)
{
if (il2cpp_codegen_method_parameter_count(targetMethod) == 1)
{
// open
{
typedef void (*FunctionPointerType) (RuntimeObject *, StringU5BU5D_t1281789340*, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(NULL, ___args0, targetMethod);
}
}
else
{
// closed
{
typedef void (*FunctionPointerType) (RuntimeObject *, void*, StringU5BU5D_t1281789340*, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(NULL, targetThis, ___args0, targetMethod);
}
}
}
else
{
if (il2cpp_codegen_method_parameter_count(targetMethod) == 1)
{
// closed
if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
GenericInterfaceActionInvoker1< StringU5BU5D_t1281789340* >::Invoke(targetMethod, targetThis, ___args0);
else
GenericVirtActionInvoker1< StringU5BU5D_t1281789340* >::Invoke(targetMethod, targetThis, ___args0);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
InterfaceActionInvoker1< StringU5BU5D_t1281789340* >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___args0);
else
VirtActionInvoker1< StringU5BU5D_t1281789340* >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___args0);
}
}
else
{
typedef void (*FunctionPointerType) (void*, StringU5BU5D_t1281789340*, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetThis, ___args0, targetMethod);
}
}
else
{
// open
if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
GenericInterfaceActionInvoker0::Invoke(targetMethod, ___args0);
else
GenericVirtActionInvoker0::Invoke(targetMethod, ___args0);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
InterfaceActionInvoker0::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), ___args0);
else
VirtActionInvoker0::Invoke(il2cpp_codegen_method_get_slot(targetMethod), ___args0);
}
}
else
{
typedef void (*FunctionPointerType) (StringU5BU5D_t1281789340*, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(___args0, targetMethod);
}
}
}
}
// System.IAsyncResult System.AppDomainInitializer::BeginInvoke(System.String[],System.AsyncCallback,System.Object)
extern "C" RuntimeObject* AppDomainInitializer_BeginInvoke_m2460927216 (AppDomainInitializer_t682969308 * __this, StringU5BU5D_t1281789340* ___args0, AsyncCallback_t3962456242 * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method)
{
void *__d_args[2] = {0};
__d_args[0] = ___args0;
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2);
}
// System.Void System.AppDomainInitializer::EndInvoke(System.IAsyncResult)
extern "C" void AppDomainInitializer_EndInvoke_m2095010821 (AppDomainInitializer_t682969308 * __this, RuntimeObject* ___result0, const RuntimeMethod* method)
{
il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.AppDomainSetup::.ctor()
extern "C" void AppDomainSetup__ctor_m363420372 (AppDomainSetup_t123196401 * __this, const RuntimeMethod* method)
{
{
Object__ctor_m297566312(__this, /*hidden argument*/NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.ApplicationException::.ctor()
extern "C" void ApplicationException__ctor_m2557611022 (ApplicationException_t2339761290 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ApplicationException__ctor_m2557611022_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = Locale_GetText_m3374010885(NULL /*static, unused*/, _stringLiteral2760664194, /*hidden argument*/NULL);
Exception__ctor_m1152696503(__this, L_0, /*hidden argument*/NULL);
Exception_set_HResult_m3489164646(__this, ((int32_t)-2146232832), /*hidden argument*/NULL);
return;
}
}
// System.Void System.ApplicationException::.ctor(System.String)
extern "C" void ApplicationException__ctor_m2517758450 (ApplicationException_t2339761290 * __this, String_t* ___message0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___message0;
Exception__ctor_m1152696503(__this, L_0, /*hidden argument*/NULL);
Exception_set_HResult_m3489164646(__this, ((int32_t)-2146232832), /*hidden argument*/NULL);
return;
}
}
// System.Void System.ApplicationException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
extern "C" void ApplicationException__ctor_m1689533002 (ApplicationException_t2339761290 * __this, SerializationInfo_t950877179 * ___info0, StreamingContext_t3711869237 ___context1, const RuntimeMethod* method)
{
{
SerializationInfo_t950877179 * L_0 = ___info0;
StreamingContext_t3711869237 L_1 = ___context1;
Exception__ctor_m2499432361(__this, L_0, L_1, /*hidden argument*/NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.String System.ApplicationIdentity::ToString()
extern "C" String_t* ApplicationIdentity_ToString_m2074887951 (ApplicationIdentity_t1917735356 * __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->get__fullName_0();
return L_0;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Boolean System.ArgIterator::Equals(System.Object)
extern "C" bool ArgIterator_Equals_m4289772452 (ArgIterator_t539591376 * __this, RuntimeObject * ___o0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ArgIterator_Equals_m4289772452_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = Locale_GetText_m3374010885(NULL /*static, unused*/, _stringLiteral3728554605, /*hidden argument*/NULL);
NotSupportedException_t1314879016 * L_1 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var);
NotSupportedException__ctor_m2494070935(L_1, L_0, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1,ArgIterator_Equals_m4289772452_RuntimeMethod_var);
}
}
extern "C" bool ArgIterator_Equals_m4289772452_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___o0, const RuntimeMethod* method)
{
ArgIterator_t539591376 * _thisAdjusted = reinterpret_cast<ArgIterator_t539591376 *>(__this + 1);
return ArgIterator_Equals_m4289772452(_thisAdjusted, ___o0, method);
}
// System.Int32 System.ArgIterator::GetHashCode()
extern "C" int32_t ArgIterator_GetHashCode_m2630206016 (ArgIterator_t539591376 * __this, const RuntimeMethod* method)
{
{
intptr_t* L_0 = __this->get_address_of_sig_0();
int32_t L_1 = IntPtr_GetHashCode_m3588219647(L_0, /*hidden argument*/NULL);
return L_1;
}
}
extern "C" int32_t ArgIterator_GetHashCode_m2630206016_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
ArgIterator_t539591376 * _thisAdjusted = reinterpret_cast<ArgIterator_t539591376 *>(__this + 1);
return ArgIterator_GetHashCode_m2630206016(_thisAdjusted, method);
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.ArgumentException::.ctor()
extern "C" void ArgumentException__ctor_m3698743796 (ArgumentException_t132251570 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ArgumentException__ctor_m3698743796_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = Locale_GetText_m3374010885(NULL /*static, unused*/, _stringLiteral2953645311, /*hidden argument*/NULL);
SystemException__ctor_m3298527747(__this, L_0, /*hidden argument*/NULL);
Exception_set_HResult_m3489164646(__this, ((int32_t)-2147024809), /*hidden argument*/NULL);
return;
}
}
// System.Void System.ArgumentException::.ctor(System.String)
extern "C" void ArgumentException__ctor_m1312628991 (ArgumentException_t132251570 * __this, String_t* ___message0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___message0;
SystemException__ctor_m3298527747(__this, L_0, /*hidden argument*/NULL);
Exception_set_HResult_m3489164646(__this, ((int32_t)-2147024809), /*hidden argument*/NULL);
return;
}
}
// System.Void System.ArgumentException::.ctor(System.String,System.Exception)
extern "C" void ArgumentException__ctor_m1535060261 (ArgumentException_t132251570 * __this, String_t* ___message0, Exception_t * ___innerException1, const RuntimeMethod* method)
{
{
String_t* L_0 = ___message0;
Exception_t * L_1 = ___innerException1;
SystemException__ctor_m4132668650(__this, L_0, L_1, /*hidden argument*/NULL);
Exception_set_HResult_m3489164646(__this, ((int32_t)-2147024809), /*hidden argument*/NULL);
return;
}
}
// System.Void System.ArgumentException::.ctor(System.String,System.String)
extern "C" void ArgumentException__ctor_m1216717135 (ArgumentException_t132251570 * __this, String_t* ___message0, String_t* ___paramName1, const RuntimeMethod* method)
{
{
String_t* L_0 = ___message0;
SystemException__ctor_m3298527747(__this, L_0, /*hidden argument*/NULL);
String_t* L_1 = ___paramName1;
__this->set_param_name_12(L_1);
Exception_set_HResult_m3489164646(__this, ((int32_t)-2147024809), /*hidden argument*/NULL);
return;
}
}
// System.Void System.ArgumentException::.ctor(System.String,System.String,System.Exception)
extern "C" void ArgumentException__ctor_m3761792013 (ArgumentException_t132251570 * __this, String_t* ___message0, String_t* ___paramName1, Exception_t * ___innerException2, const RuntimeMethod* method)
{
{
String_t* L_0 = ___message0;
Exception_t * L_1 = ___innerException2;
SystemException__ctor_m4132668650(__this, L_0, L_1, /*hidden argument*/NULL);
String_t* L_2 = ___paramName1;
__this->set_param_name_12(L_2);
Exception_set_HResult_m3489164646(__this, ((int32_t)-2147024809), /*hidden argument*/NULL);
return;
}
}
// System.Void System.ArgumentException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
extern "C" void ArgumentException__ctor_m3200406061 (ArgumentException_t132251570 * __this, SerializationInfo_t950877179 * ___info0, StreamingContext_t3711869237 ___context1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ArgumentException__ctor_m3200406061_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
SerializationInfo_t950877179 * L_0 = ___info0;
StreamingContext_t3711869237 L_1 = ___context1;
SystemException__ctor_m1515048899(__this, L_0, L_1, /*hidden argument*/NULL);
SerializationInfo_t950877179 * L_2 = ___info0;
String_t* L_3 = SerializationInfo_GetString_m3155282843(L_2, _stringLiteral3227757242, /*hidden argument*/NULL);
__this->set_param_name_12(L_3);
return;
}
}
// System.String System.ArgumentException::get_ParamName()
extern "C" String_t* ArgumentException_get_ParamName_m2556126651 (ArgumentException_t132251570 * __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->get_param_name_12();
return L_0;
}
}
// System.String System.ArgumentException::get_Message()
extern "C" String_t* ArgumentException_get_Message_m520762021 (ArgumentException_t132251570 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ArgumentException_get_Message_m520762021_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = VirtFuncInvoker0< String_t* >::Invoke(8 /* System.String System.ArgumentException::get_ParamName() */, __this);
if (!L_0)
{
goto IL_003c;
}
}
{
String_t* L_1 = VirtFuncInvoker0< String_t* >::Invoke(8 /* System.String System.ArgumentException::get_ParamName() */, __this);
int32_t L_2 = String_get_Length_m3847582255(L_1, /*hidden argument*/NULL);
if (!L_2)
{
goto IL_003c;
}
}
{
String_t* L_3 = Exception_get_Message_m3320461627(__this, /*hidden argument*/NULL);
String_t* L_4 = Environment_get_NewLine_m3211016485(NULL /*static, unused*/, /*hidden argument*/NULL);
String_t* L_5 = Locale_GetText_m3374010885(NULL /*static, unused*/, _stringLiteral3659667674, /*hidden argument*/NULL);
String_t* L_6 = VirtFuncInvoker0< String_t* >::Invoke(8 /* System.String System.ArgumentException::get_ParamName() */, __this);
IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
String_t* L_7 = String_Concat_m2163913788(NULL /*static, unused*/, L_3, L_4, L_5, L_6, /*hidden argument*/NULL);
return L_7;
}
IL_003c:
{
String_t* L_8 = Exception_get_Message_m3320461627(__this, /*hidden argument*/NULL);
return L_8;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.ArgumentNullException::.ctor()
extern "C" void ArgumentNullException__ctor_m2751210921 (ArgumentNullException_t1615371798 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ArgumentNullException__ctor_m2751210921_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = Locale_GetText_m3374010885(NULL /*static, unused*/, _stringLiteral595465389, /*hidden argument*/NULL);
ArgumentException__ctor_m1312628991(__this, L_0, /*hidden argument*/NULL);
Exception_set_HResult_m3489164646(__this, ((int32_t)-2147467261), /*hidden argument*/NULL);
return;
}
}
// System.Void System.ArgumentNullException::.ctor(System.String)
extern "C" void ArgumentNullException__ctor_m1170824041 (ArgumentNullException_t1615371798 * __this, String_t* ___paramName0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ArgumentNullException__ctor_m1170824041_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = Locale_GetText_m3374010885(NULL /*static, unused*/, _stringLiteral595465389, /*hidden argument*/NULL);
String_t* L_1 = ___paramName0;
ArgumentException__ctor_m1216717135(__this, L_0, L_1, /*hidden argument*/NULL);
Exception_set_HResult_m3489164646(__this, ((int32_t)-2147467261), /*hidden argument*/NULL);
return;
}
}
// System.Void System.ArgumentNullException::.ctor(System.String,System.String)
extern "C" void ArgumentNullException__ctor_m2009621981 (ArgumentNullException_t1615371798 * __this, String_t* ___paramName0, String_t* ___message1, const RuntimeMethod* method)
{
{
String_t* L_0 = ___message1;
String_t* L_1 = ___paramName0;
ArgumentException__ctor_m1216717135(__this, L_0, L_1, /*hidden argument*/NULL);
Exception_set_HResult_m3489164646(__this, ((int32_t)-2147467261), /*hidden argument*/NULL);
return;
}
}
// System.Void System.ArgumentNullException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
extern "C" void ArgumentNullException__ctor_m520761569 (ArgumentNullException_t1615371798 * __this, SerializationInfo_t950877179 * ___info0, StreamingContext_t3711869237 ___context1, const RuntimeMethod* method)
{
{
SerializationInfo_t950877179 * L_0 = ___info0;
StreamingContext_t3711869237 L_1 = ___context1;
ArgumentException__ctor_m3200406061(__this, L_0, L_1, /*hidden argument*/NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.ArgumentOutOfRangeException::.ctor()
extern "C" void ArgumentOutOfRangeException__ctor_m2047740448 (ArgumentOutOfRangeException_t777629997 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ArgumentOutOfRangeException__ctor_m2047740448_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = Locale_GetText_m3374010885(NULL /*static, unused*/, _stringLiteral4256626985, /*hidden argument*/NULL);
ArgumentException__ctor_m1312628991(__this, L_0, /*hidden argument*/NULL);
Exception_set_HResult_m3489164646(__this, ((int32_t)-2146233086), /*hidden argument*/NULL);
return;
}
}
// System.Void System.ArgumentOutOfRangeException::.ctor(System.String)
extern "C" void ArgumentOutOfRangeException__ctor_m3628145864 (ArgumentOutOfRangeException_t777629997 * __this, String_t* ___paramName0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ArgumentOutOfRangeException__ctor_m3628145864_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = Locale_GetText_m3374010885(NULL /*static, unused*/, _stringLiteral4256626985, /*hidden argument*/NULL);
String_t* L_1 = ___paramName0;
ArgumentException__ctor_m1216717135(__this, L_0, L_1, /*hidden argument*/NULL);
Exception_set_HResult_m3489164646(__this, ((int32_t)-2146233086), /*hidden argument*/NULL);
return;
}
}
// System.Void System.ArgumentOutOfRangeException::.ctor(System.String,System.String)
extern "C" void ArgumentOutOfRangeException__ctor_m282481429 (ArgumentOutOfRangeException_t777629997 * __this, String_t* ___paramName0, String_t* ___message1, const RuntimeMethod* method)
{
{
String_t* L_0 = ___message1;
String_t* L_1 = ___paramName0;
ArgumentException__ctor_m1216717135(__this, L_0, L_1, /*hidden argument*/NULL);
Exception_set_HResult_m3489164646(__this, ((int32_t)-2146233086), /*hidden argument*/NULL);
return;
}
}
// System.Void System.ArgumentOutOfRangeException::.ctor(System.String,System.Object,System.String)
extern "C" void ArgumentOutOfRangeException__ctor_m4164965325 (ArgumentOutOfRangeException_t777629997 * __this, String_t* ___paramName0, RuntimeObject * ___actualValue1, String_t* ___message2, const RuntimeMethod* method)
{
{
String_t* L_0 = ___message2;
String_t* L_1 = ___paramName0;
ArgumentException__ctor_m1216717135(__this, L_0, L_1, /*hidden argument*/NULL);
RuntimeObject * L_2 = ___actualValue1;
__this->set_actual_value_13(L_2);
Exception_set_HResult_m3489164646(__this, ((int32_t)-2146233086), /*hidden argument*/NULL);
return;
}
}
// System.Void System.ArgumentOutOfRangeException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
extern "C" void ArgumentOutOfRangeException__ctor_m769015475 (ArgumentOutOfRangeException_t777629997 * __this, SerializationInfo_t950877179 * ___info0, StreamingContext_t3711869237 ___context1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ArgumentOutOfRangeException__ctor_m769015475_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
SerializationInfo_t950877179 * L_0 = ___info0;
StreamingContext_t3711869237 L_1 = ___context1;
ArgumentException__ctor_m3200406061(__this, L_0, L_1, /*hidden argument*/NULL);
SerializationInfo_t950877179 * L_2 = ___info0;
String_t* L_3 = SerializationInfo_GetString_m3155282843(L_2, _stringLiteral4139101678, /*hidden argument*/NULL);
__this->set_actual_value_13(L_3);
return;
}
}
// System.String System.ArgumentOutOfRangeException::get_Message()
extern "C" String_t* ArgumentOutOfRangeException_get_Message_m1913926628 (ArgumentOutOfRangeException_t777629997 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ArgumentOutOfRangeException_get_Message_m1913926628_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
{
String_t* L_0 = ArgumentException_get_Message_m520762021(__this, /*hidden argument*/NULL);
V_0 = L_0;
RuntimeObject * L_1 = __this->get_actual_value_13();
if (L_1)
{
goto IL_0014;
}
}
{
String_t* L_2 = V_0;
return L_2;
}
IL_0014:
{
String_t* L_3 = V_0;
String_t* L_4 = Environment_get_NewLine_m3211016485(NULL /*static, unused*/, /*hidden argument*/NULL);
RuntimeObject * L_5 = __this->get_actual_value_13();
IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
String_t* L_6 = String_Concat_m1715369213(NULL /*static, unused*/, L_3, L_4, L_5, /*hidden argument*/NULL);
return L_6;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.ArithmeticException::.ctor()
extern "C" void ArithmeticException__ctor_m479063094 (ArithmeticException_t4283546778 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ArithmeticException__ctor_m479063094_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = Locale_GetText_m3374010885(NULL /*static, unused*/, _stringLiteral3292752458, /*hidden argument*/NULL);
SystemException__ctor_m3298527747(__this, L_0, /*hidden argument*/NULL);
Exception_set_HResult_m3489164646(__this, ((int32_t)-2147024362), /*hidden argument*/NULL);
return;
}
}
// System.Void System.ArithmeticException::.ctor(System.String)
extern "C" void ArithmeticException__ctor_m3551809662 (ArithmeticException_t4283546778 * __this, String_t* ___message0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___message0;
SystemException__ctor_m3298527747(__this, L_0, /*hidden argument*/NULL);
Exception_set_HResult_m3489164646(__this, ((int32_t)-2147024362), /*hidden argument*/NULL);
return;
}
}
// System.Void System.ArithmeticException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
extern "C" void ArithmeticException__ctor_m1658426420 (ArithmeticException_t4283546778 * __this, SerializationInfo_t950877179 * ___info0, StreamingContext_t3711869237 ___context1, const RuntimeMethod* method)
{
{
SerializationInfo_t950877179 * L_0 = ___info0;
StreamingContext_t3711869237 L_1 = ___context1;
SystemException__ctor_m1515048899(__this, L_0, L_1, /*hidden argument*/NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array::.ctor()
extern "C" void Array__ctor_m2178462056 (RuntimeArray * __this, const RuntimeMethod* method)
{
{
Object__ctor_m297566312(__this, /*hidden argument*/NULL);
return;
}
}
// System.Object System.Array::System.Collections.IList.get_Item(System.Int32)
extern "C" RuntimeObject * Array_System_Collections_IList_get_Item_m631337679 (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_System_Collections_IList_get_Item_m631337679_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = ___index0;
int32_t L_1 = Array_get_Length_m21610649(__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0017;
}
}
{
IndexOutOfRangeException_t1578797820 * L_2 = (IndexOutOfRangeException_t1578797820 *)il2cpp_codegen_object_new(IndexOutOfRangeException_t1578797820_il2cpp_TypeInfo_var);
IndexOutOfRangeException__ctor_m3408750441(L_2, _stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2,Array_System_Collections_IList_get_Item_m631337679_RuntimeMethod_var);
}
IL_0017:
{
int32_t L_3 = Array_get_Rank_m3448755881(__this, /*hidden argument*/NULL);
if ((((int32_t)L_3) <= ((int32_t)1)))
{
goto IL_0033;
}
}
{
String_t* L_4 = Locale_GetText_m3374010885(NULL /*static, unused*/, _stringLiteral1684534236, /*hidden argument*/NULL);
ArgumentException_t132251570 * L_5 = (ArgumentException_t132251570 *)il2cpp_codegen_object_new(ArgumentException_t132251570_il2cpp_TypeInfo_var);
ArgumentException__ctor_m1312628991(L_5, L_4, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5,Array_System_Collections_IList_get_Item_m631337679_RuntimeMethod_var);
}
IL_0033:
{
int32_t L_6 = ___index0;
RuntimeObject * L_7 = Array_GetValueImpl_m3048550958(__this, L_6, /*hidden argument*/NULL);
return L_7;
}
}
// System.Void System.Array::System.Collections.IList.set_Item(System.Int32,System.Object)
extern "C" void Array_System_Collections_IList_set_Item_m2667455393 (RuntimeArray * __this, int32_t ___index0, RuntimeObject * ___value1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_System_Collections_IList_set_Item_m2667455393_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = ___index0;
int32_t L_1 = Array_get_Length_m21610649(__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_0017;
}
}
{
IndexOutOfRangeException_t1578797820 * L_2 = (IndexOutOfRangeException_t1578797820 *)il2cpp_codegen_object_new(IndexOutOfRangeException_t1578797820_il2cpp_TypeInfo_var);
IndexOutOfRangeException__ctor_m3408750441(L_2, _stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2,Array_System_Collections_IList_set_Item_m2667455393_RuntimeMethod_var);
}
IL_0017:
{
int32_t L_3 = Array_get_Rank_m3448755881(__this, /*hidden argument*/NULL);
if ((((int32_t)L_3) <= ((int32_t)1)))
{
goto IL_0033;
}
}
{
String_t* L_4 = Locale_GetText_m3374010885(NULL /*static, unused*/, _stringLiteral1684534236, /*hidden argument*/NULL);
ArgumentException_t132251570 * L_5 = (ArgumentException_t132251570 *)il2cpp_codegen_object_new(ArgumentException_t132251570_il2cpp_TypeInfo_var);
ArgumentException__ctor_m1312628991(L_5, L_4, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5,Array_System_Collections_IList_set_Item_m2667455393_RuntimeMethod_var);
}
IL_0033:
{
RuntimeObject * L_6 = ___value1;
int32_t L_7 = ___index0;
Array_SetValueImpl_m2791230289(__this, L_6, L_7, /*hidden argument*/NULL);
return;
}
}
// System.Int32 System.Array::System.Collections.IList.Add(System.Object)
extern "C" int32_t Array_System_Collections_IList_Add_m1063688101 (RuntimeArray * __this, RuntimeObject * ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_System_Collections_IList_Add_m1063688101_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_t1314879016 * L_0 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var);
NotSupportedException__ctor_m2730133172(L_0, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0,Array_System_Collections_IList_Add_m1063688101_RuntimeMethod_var);
}
}
// System.Void System.Array::System.Collections.IList.Clear()
extern "C" void Array_System_Collections_IList_Clear_m1278271623 (RuntimeArray * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = Array_GetLowerBound_m2045984623(__this, 0, /*hidden argument*/NULL);
int32_t L_1 = Array_get_Length_m21610649(__this, /*hidden argument*/NULL);
Array_Clear_m2231608178(NULL /*static, unused*/, __this, L_0, L_1, /*hidden argument*/NULL);
return;
}
}
// System.Boolean System.Array::System.Collections.IList.Contains(System.Object)
extern "C" bool Array_System_Collections_IList_Contains_m3297693594 (RuntimeArray * __this, RuntimeObject * ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_System_Collections_IList_Contains_m3297693594_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
{
int32_t L_0 = Array_get_Rank_m3448755881(__this, /*hidden argument*/NULL);
if ((((int32_t)L_0) <= ((int32_t)1)))
{
goto IL_001c;
}
}
{
String_t* L_1 = Locale_GetText_m3374010885(NULL /*static, unused*/, _stringLiteral1684534236, /*hidden argument*/NULL);
RankException_t3812021567 * L_2 = (RankException_t3812021567 *)il2cpp_codegen_object_new(RankException_t3812021567_il2cpp_TypeInfo_var);
RankException__ctor_m2226473861(L_2, L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2,Array_System_Collections_IList_Contains_m3297693594_RuntimeMethod_var);
}
IL_001c:
{
int32_t L_3 = Array_get_Length_m21610649(__this, /*hidden argument*/NULL);
V_0 = L_3;
V_1 = 0;
goto IL_0042;
}
IL_002a:
{
int32_t L_4 = V_1;
RuntimeObject * L_5 = Array_GetValueImpl_m3048550958(__this, L_4, /*hidden argument*/NULL);
RuntimeObject * L_6 = ___value0;
bool L_7 = Object_Equals_m1397037629(NULL /*static, unused*/, L_5, L_6, /*hidden argument*/NULL);
if (!L_7)
{
goto IL_003e;
}
}
{
return (bool)1;
}
IL_003e:
{
int32_t L_8 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_8, (int32_t)1));
}
IL_0042:
{
int32_t L_9 = V_1;
int32_t L_10 = V_0;
if ((((int32_t)L_9) < ((int32_t)L_10)))
{
goto IL_002a;
}
}
{
return (bool)0;
}
}
// System.Int32 System.Array::System.Collections.IList.IndexOf(System.Object)
extern "C" int32_t Array_System_Collections_IList_IndexOf_m3301661616 (RuntimeArray * __this, RuntimeObject * ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_System_Collections_IList_IndexOf_m3301661616_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
{
int32_t L_0 = Array_get_Rank_m3448755881(__this, /*hidden argument*/NULL);
if ((((int32_t)L_0) <= ((int32_t)1)))
{
goto IL_001c;
}
}
{
String_t* L_1 = Locale_GetText_m3374010885(NULL /*static, unused*/, _stringLiteral1684534236, /*hidden argument*/NULL);
RankException_t3812021567 * L_2 = (RankException_t3812021567 *)il2cpp_codegen_object_new(RankException_t3812021567_il2cpp_TypeInfo_var);
RankException__ctor_m2226473861(L_2, L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2,Array_System_Collections_IList_IndexOf_m3301661616_RuntimeMethod_var);
}
IL_001c:
{
int32_t L_3 = Array_get_Length_m21610649(__this, /*hidden argument*/NULL);
V_0 = L_3;
V_1 = 0;
goto IL_004a;
}
IL_002a:
{
int32_t L_4 = V_1;
RuntimeObject * L_5 = Array_GetValueImpl_m3048550958(__this, L_4, /*hidden argument*/NULL);
RuntimeObject * L_6 = ___value0;
bool L_7 = Object_Equals_m1397037629(NULL /*static, unused*/, L_5, L_6, /*hidden argument*/NULL);
if (!L_7)
{
goto IL_0046;
}
}
{
int32_t L_8 = V_1;
int32_t L_9 = Array_GetLowerBound_m2045984623(__this, 0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_8, (int32_t)L_9));
}
IL_0046:
{
int32_t L_10 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_10, (int32_t)1));
}
IL_004a:
{
int32_t L_11 = V_1;
int32_t L_12 = V_0;
if ((((int32_t)L_11) < ((int32_t)L_12)))
{
goto IL_002a;
}
}
{
int32_t L_13 = Array_GetLowerBound_m2045984623(__this, 0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_13, (int32_t)1));
}
}
// System.Void System.Array::System.Collections.IList.Insert(System.Int32,System.Object)
extern "C" void Array_System_Collections_IList_Insert_m2476478913 (RuntimeArray * __this, int32_t ___index0, RuntimeObject * ___value1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_System_Collections_IList_Insert_m2476478913_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_t1314879016 * L_0 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var);
NotSupportedException__ctor_m2730133172(L_0, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0,Array_System_Collections_IList_Insert_m2476478913_RuntimeMethod_var);
}
}
// System.Void System.Array::System.Collections.IList.Remove(System.Object)
extern "C" void Array_System_Collections_IList_Remove_m1479535418 (RuntimeArray * __this, RuntimeObject * ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_System_Collections_IList_Remove_m1479535418_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_t1314879016 * L_0 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var);
NotSupportedException__ctor_m2730133172(L_0, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0,Array_System_Collections_IList_Remove_m1479535418_RuntimeMethod_var);
}
}
// System.Void System.Array::System.Collections.IList.RemoveAt(System.Int32)
extern "C" void Array_System_Collections_IList_RemoveAt_m41405158 (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_System_Collections_IList_RemoveAt_m41405158_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_t1314879016 * L_0 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var);
NotSupportedException__ctor_m2730133172(L_0, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0,Array_System_Collections_IList_RemoveAt_m41405158_RuntimeMethod_var);
}
}
// System.Int32 System.Array::System.Collections.ICollection.get_Count()
extern "C" int32_t Array_System_Collections_ICollection_get_Count_m415154915 (RuntimeArray * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = Array_get_Length_m21610649(__this, /*hidden argument*/NULL);
return L_0;
}
}
// System.Int32 System.Array::InternalArray__ICollection_get_Count()
extern "C" int32_t Array_InternalArray__ICollection_get_Count_m2423031222 (RuntimeArray * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = Array_get_Length_m21610649(__this, /*hidden argument*/NULL);
return L_0;
}
}
// System.Boolean System.Array::InternalArray__ICollection_get_IsReadOnly()
extern "C" bool Array_InternalArray__ICollection_get_IsReadOnly_m4276975044 (RuntimeArray * __this, const RuntimeMethod* method)
{
{
return (bool)1;
}
}
// System.Void System.Array::InternalArray__ICollection_Clear()
extern "C" void Array_InternalArray__ICollection_Clear_m4058340337 (RuntimeArray * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Clear_m4058340337_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_t1314879016 * L_0 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var);
NotSupportedException__ctor_m2494070935(L_0, _stringLiteral2240313997, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0,Array_InternalArray__ICollection_Clear_m4058340337_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__RemoveAt(System.Int32)
extern "C" void Array_InternalArray__RemoveAt_m616137314 (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__RemoveAt_m616137314_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_t1314879016 * L_0 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var);
NotSupportedException__ctor_m2494070935(L_0, _stringLiteral2240313997, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0,Array_InternalArray__RemoveAt_m616137314_RuntimeMethod_var);
}
}
// System.Int32 System.Array::get_Length()
extern "C" int32_t Array_get_Length_m21610649 (RuntimeArray * __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
{
int32_t L_0 = Array_GetLength_m2178203778(__this, 0, /*hidden argument*/NULL);
V_0 = L_0;
V_1 = 1;
goto IL_001d;
}
IL_000f:
{
int32_t L_1 = V_0;
int32_t L_2 = V_1;
int32_t L_3 = Array_GetLength_m2178203778(__this, L_2, /*hidden argument*/NULL);
V_0 = ((int32_t)il2cpp_codegen_multiply((int32_t)L_1, (int32_t)L_3));
int32_t L_4 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_4, (int32_t)1));
}
IL_001d:
{
int32_t L_5 = V_1;
int32_t L_6 = Array_get_Rank_m3448755881(__this, /*hidden argument*/NULL);
if ((((int32_t)L_5) < ((int32_t)L_6)))
{
goto IL_000f;
}
}
{
int32_t L_7 = V_0;
return L_7;
}
}
// System.Int64 System.Array::get_LongLength()
extern "C" int64_t Array_get_LongLength_m978104875 (RuntimeArray * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = Array_get_Length_m21610649(__this, /*hidden argument*/NULL);
return (((int64_t)((int64_t)L_0)));
}
}
// System.Int32 System.Array::get_Rank()
extern "C" int32_t Array_get_Rank_m3448755881 (RuntimeArray * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = Array_GetRank_m2893148338(__this, /*hidden argument*/NULL);
return L_0;
}
}
// System.Int32 System.Array::GetRank()
extern "C" int32_t Array_GetRank_m2893148338 (RuntimeArray * __this, const RuntimeMethod* method)
{
typedef int32_t (*Array_GetRank_m2893148338_ftn) (RuntimeArray *);
using namespace il2cpp::icalls;
return ((Array_GetRank_m2893148338_ftn)mscorlib::System::Array::GetRank) (__this);
}
// System.Int32 System.Array::GetLength(System.Int32)
extern "C" int32_t Array_GetLength_m2178203778 (RuntimeArray * __this, int32_t ___dimension0, const RuntimeMethod* method)
{
typedef int32_t (*Array_GetLength_m2178203778_ftn) (RuntimeArray *, int32_t);
using namespace il2cpp::icalls;
return ((Array_GetLength_m2178203778_ftn)mscorlib::System::Array::GetLength) (__this, ___dimension0);
}
// System.Int64 System.Array::GetLongLength(System.Int32)
extern "C" int64_t Array_GetLongLength_m561139708 (RuntimeArray * __this, int32_t ___dimension0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___dimension0;
int32_t L_1 = Array_GetLength_m2178203778(__this, L_0, /*hidden argument*/NULL);
return (((int64_t)((int64_t)L_1)));
}
}
// System.Int32 System.Array::GetLowerBound(System.Int32)
extern "C" int32_t Array_GetLowerBound_m2045984623 (RuntimeArray * __this, int32_t ___dimension0, const RuntimeMethod* method)
{
typedef int32_t (*Array_GetLowerBound_m2045984623_ftn) (RuntimeArray *, int32_t);
using namespace il2cpp::icalls;
return ((Array_GetLowerBound_m2045984623_ftn)mscorlib::System::Array::GetLowerBound) (__this, ___dimension0);
}
// System.Object System.Array::GetValue(System.Int32[])
extern "C" RuntimeObject * Array_GetValue_m120423883 (RuntimeArray * __this, Int32U5BU5D_t385246372* ___indices0, const RuntimeMethod* method)
{
typedef RuntimeObject * (*Array_GetValue_m120423883_ftn) (RuntimeArray *, Int32U5BU5D_t385246372*);
using namespace il2cpp::icalls;
return ((Array_GetValue_m120423883_ftn)mscorlib::System::Array::GetValue) (__this, ___indices0);
}
// System.Void System.Array::SetValue(System.Object,System.Int32[])
extern "C" void Array_SetValue_m1804138688 (RuntimeArray * __this, RuntimeObject * ___value0, Int32U5BU5D_t385246372* ___indices1, const RuntimeMethod* method)
{
typedef void (*Array_SetValue_m1804138688_ftn) (RuntimeArray *, RuntimeObject *, Int32U5BU5D_t385246372*);
using namespace il2cpp::icalls;
((Array_SetValue_m1804138688_ftn)mscorlib::System::Array::SetValue) (__this, ___value0, ___indices1);
}
// System.Object System.Array::GetValueImpl(System.Int32)
extern "C" RuntimeObject * Array_GetValueImpl_m3048550958 (RuntimeArray * __this, int32_t ___pos0, const RuntimeMethod* method)
{
typedef RuntimeObject * (*Array_GetValueImpl_m3048550958_ftn) (RuntimeArray *, int32_t);
using namespace il2cpp::icalls;
return ((Array_GetValueImpl_m3048550958_ftn)mscorlib::System::Array::GetValueImpl) (__this, ___pos0);
}
// System.Void System.Array::SetValueImpl(System.Object,System.Int32)
extern "C" void Array_SetValueImpl_m2791230289 (RuntimeArray * __this, RuntimeObject * ___value0, int32_t ___pos1, const RuntimeMethod* method)
{
typedef void (*Array_SetValueImpl_m2791230289_ftn) (RuntimeArray *, RuntimeObject *, int32_t);
using namespace il2cpp::icalls;
((Array_SetValueImpl_m2791230289_ftn)mscorlib::System::Array::SetValueImpl) (__this, ___value0, ___pos1);
}
// System.Boolean System.Array::FastCopy(System.Array,System.Int32,System.Array,System.Int32,System.Int32)
extern "C" bool Array_FastCopy_m1662204957 (RuntimeObject * __this /* static, unused */, RuntimeArray * ___source0, int32_t ___source_idx1, RuntimeArray * ___dest2, int32_t ___dest_idx3, int32_t ___length4, const RuntimeMethod* method)
{
typedef bool (*Array_FastCopy_m1662204957_ftn) (RuntimeArray *, int32_t, RuntimeArray *, int32_t, int32_t);
using namespace il2cpp::icalls;
return ((Array_FastCopy_m1662204957_ftn)mscorlib::System::Array::FastCopy) (___source0, ___source_idx1, ___dest2, ___dest_idx3, ___length4);
}
// System.Array System.Array::CreateInstanceImpl(System.Type,System.Int32[],System.Int32[])
extern "C" RuntimeArray * Array_CreateInstanceImpl_m1073152296 (RuntimeObject * __this /* static, unused */, Type_t * ___elementType0, Int32U5BU5D_t385246372* ___lengths1, Int32U5BU5D_t385246372* ___bounds2, const RuntimeMethod* method)
{
typedef RuntimeArray * (*Array_CreateInstanceImpl_m1073152296_ftn) (Type_t *, Int32U5BU5D_t385246372*, Int32U5BU5D_t385246372*);
using namespace il2cpp::icalls;
return ((Array_CreateInstanceImpl_m1073152296_ftn)mscorlib::System::Array::CreateInstanceImpl) (___elementType0, ___lengths1, ___bounds2);
}
// System.Boolean System.Array::get_IsSynchronized()
extern "C" bool Array_get_IsSynchronized_m3066873806 (RuntimeArray * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// System.Object System.Array::get_SyncRoot()
extern "C" RuntimeObject * Array_get_SyncRoot_m1984189992 (RuntimeArray * __this, const RuntimeMethod* method)
{
{
return __this;
}
}
// System.Boolean System.Array::get_IsFixedSize()
extern "C" bool Array_get_IsFixedSize_m433207027 (RuntimeArray * __this, const RuntimeMethod* method)
{
{
return (bool)1;
}
}
// System.Boolean System.Array::get_IsReadOnly()
extern "C" bool Array_get_IsReadOnly_m1420176977 (RuntimeArray * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// System.Collections.IEnumerator System.Array::GetEnumerator()
extern "C" RuntimeObject* Array_GetEnumerator_m4277730612 (RuntimeArray * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_GetEnumerator_m4277730612_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
SimpleEnumerator_t433892249 * L_0 = (SimpleEnumerator_t433892249 *)il2cpp_codegen_object_new(SimpleEnumerator_t433892249_il2cpp_TypeInfo_var);
SimpleEnumerator__ctor_m353509656(L_0, __this, /*hidden argument*/NULL);
return L_0;
}
}
// System.Int32 System.Array::GetUpperBound(System.Int32)
extern "C" int32_t Array_GetUpperBound_m4018715963 (RuntimeArray * __this, int32_t ___dimension0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___dimension0;
int32_t L_1 = Array_GetLowerBound_m2045984623(__this, L_0, /*hidden argument*/NULL);
int32_t L_2 = ___dimension0;
int32_t L_3 = Array_GetLength_m2178203778(__this, L_2, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_1, (int32_t)L_3)), (int32_t)1));
}
}
// System.Object System.Array::GetValue(System.Int32)
extern "C" RuntimeObject * Array_GetValue_m2528546681 (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_GetValue_m2528546681_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = Array_get_Rank_m3448755881(__this, /*hidden argument*/NULL);
if ((((int32_t)L_0) == ((int32_t)1)))
{
goto IL_001c;
}
}
{
String_t* L_1 = Locale_GetText_m3374010885(NULL /*static, unused*/, _stringLiteral2455840074, /*hidden argument*/NULL);
ArgumentException_t132251570 * L_2 = (ArgumentException_t132251570 *)il2cpp_codegen_object_new(ArgumentException_t132251570_il2cpp_TypeInfo_var);
ArgumentException__ctor_m1312628991(L_2, L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2,Array_GetValue_m2528546681_RuntimeMethod_var);
}
IL_001c:
{
int32_t L_3 = ___index0;
int32_t L_4 = Array_GetLowerBound_m2045984623(__this, 0, /*hidden argument*/NULL);
if ((((int32_t)L_3) < ((int32_t)L_4)))
{
goto IL_0036;
}
}
{
int32_t L_5 = ___index0;
int32_t L_6 = Array_GetUpperBound_m4018715963(__this, 0, /*hidden argument*/NULL);
if ((((int32_t)L_5) <= ((int32_t)L_6)))
{
goto IL_0046;
}
}
IL_0036:
{
String_t* L_7 = Locale_GetText_m3374010885(NULL /*static, unused*/, _stringLiteral1145078360, /*hidden argument*/NULL);
IndexOutOfRangeException_t1578797820 * L_8 = (IndexOutOfRangeException_t1578797820 *)il2cpp_codegen_object_new(IndexOutOfRangeException_t1578797820_il2cpp_TypeInfo_var);
IndexOutOfRangeException__ctor_m3408750441(L_8, L_7, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_8,Array_GetValue_m2528546681_RuntimeMethod_var);
}
IL_0046:
{
int32_t L_9 = ___index0;
int32_t L_10 = Array_GetLowerBound_m2045984623(__this, 0, /*hidden argument*/NULL);
RuntimeObject * L_11 = Array_GetValueImpl_m3048550958(__this, ((int32_t)il2cpp_codegen_subtract((int32_t)L_9, (int32_t)L_10)), /*hidden argument*/NULL);
return L_11;
}
}
// System.Object System.Array::GetValue(System.Int32,System.Int32)
extern "C" RuntimeObject * Array_GetValue_m352525925 (RuntimeArray * __this, int32_t ___index10, int32_t ___index21, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_GetValue_m352525925_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Int32U5BU5D_t385246372* V_0 = NULL;
{
Int32U5BU5D_t385246372* L_0 = ((Int32U5BU5D_t385246372*)SZArrayNew(Int32U5BU5D_t385246372_il2cpp_TypeInfo_var, (uint32_t)2));
int32_t L_1 = ___index10;
(L_0)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(0), (int32_t)L_1);
Int32U5BU5D_t385246372* L_2 = L_0;
int32_t L_3 = ___index21;
(L_2)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(1), (int32_t)L_3);
V_0 = L_2;
Int32U5BU5D_t385246372* L_4 = V_0;
RuntimeObject * L_5 = Array_GetValue_m120423883(__this, L_4, /*hidden argument*/NULL);
return L_5;
}
}
// System.Object System.Array::GetValue(System.Int32,System.Int32,System.Int32)
extern "C" RuntimeObject * Array_GetValue_m793801589 (RuntimeArray * __this, int32_t ___index10, int32_t ___index21, int32_t ___index32, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_GetValue_m793801589_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Int32U5BU5D_t385246372* V_0 = NULL;
{
Int32U5BU5D_t385246372* L_0 = ((Int32U5BU5D_t385246372*)SZArrayNew(Int32U5BU5D_t385246372_il2cpp_TypeInfo_var, (uint32_t)3));
int32_t L_1 = ___index10;
(L_0)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(0), (int32_t)L_1);
Int32U5BU5D_t385246372* L_2 = L_0;
int32_t L_3 = ___index21;
(L_2)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(1), (int32_t)L_3);
Int32U5BU5D_t385246372* L_4 = L_2;
int32_t L_5 = ___index32;
(L_4)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(2), (int32_t)L_5);
V_0 = L_4;
Int32U5BU5D_t385246372* L_6 = V_0;
RuntimeObject * L_7 = Array_GetValue_m120423883(__this, L_6, /*hidden argument*/NULL);
return L_7;
}
}
// System.Object System.Array::GetValue(System.Int64)
extern "C" RuntimeObject * Array_GetValue_m2528415604 (RuntimeArray * __this, int64_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_GetValue_m2528415604_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int64_t L_0 = ___index0;
if ((((int64_t)L_0) < ((int64_t)(((int64_t)((int64_t)0))))))
{
goto IL_0014;
}
}
{
int64_t L_1 = ___index0;
if ((((int64_t)L_1) <= ((int64_t)(((int64_t)((int64_t)((int32_t)2147483647LL)))))))
{
goto IL_0029;
}
}
IL_0014:
{
String_t* L_2 = Locale_GetText_m3374010885(NULL /*static, unused*/, _stringLiteral1356516794, /*hidden argument*/NULL);
ArgumentOutOfRangeException_t777629997 * L_3 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m282481429(L_3, _stringLiteral797640427, L_2, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3,Array_GetValue_m2528415604_RuntimeMethod_var);
}
IL_0029:
{
int64_t L_4 = ___index0;
RuntimeObject * L_5 = Array_GetValue_m2528546681(__this, (((int32_t)((int32_t)L_4))), /*hidden argument*/NULL);
return L_5;
}
}
// System.Object System.Array::GetValue(System.Int64,System.Int64)
extern "C" RuntimeObject * Array_GetValue_m4249310555 (RuntimeArray * __this, int64_t ___index10, int64_t ___index21, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_GetValue_m4249310555_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int64_t L_0 = ___index10;
if ((((int64_t)L_0) < ((int64_t)(((int64_t)((int64_t)0))))))
{
goto IL_0014;
}
}
{
int64_t L_1 = ___index10;
if ((((int64_t)L_1) <= ((int64_t)(((int64_t)((int64_t)((int32_t)2147483647LL)))))))
{
goto IL_0029;
}
}
IL_0014:
{
String_t* L_2 = Locale_GetText_m3374010885(NULL /*static, unused*/, _stringLiteral1356516794, /*hidden argument*/NULL);
ArgumentOutOfRangeException_t777629997 * L_3 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m282481429(L_3, _stringLiteral800851691, L_2, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3,Array_GetValue_m4249310555_RuntimeMethod_var);
}
IL_0029:
{
int64_t L_4 = ___index21;
if ((((int64_t)L_4) < ((int64_t)(((int64_t)((int64_t)0))))))
{
goto IL_003d;
}
}
{
int64_t L_5 = ___index21;
if ((((int64_t)L_5) <= ((int64_t)(((int64_t)((int64_t)((int32_t)2147483647LL)))))))
{
goto IL_0052;
}
}
IL_003d:
{
String_t* L_6 = Locale_GetText_m3374010885(NULL /*static, unused*/, _stringLiteral1356516794, /*hidden argument*/NULL);
ArgumentOutOfRangeException_t777629997 * L_7 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m282481429(L_7, _stringLiteral800917227, L_6, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_7,Array_GetValue_m4249310555_RuntimeMethod_var);
}
IL_0052:
{
int64_t L_8 = ___index10;
int64_t L_9 = ___index21;
RuntimeObject * L_10 = Array_GetValue_m352525925(__this, (((int32_t)((int32_t)L_8))), (((int32_t)((int32_t)L_9))), /*hidden argument*/NULL);
return L_10;
}
}
// System.Object System.Array::GetValue(System.Int64,System.Int64,System.Int64)
extern "C" RuntimeObject * Array_GetValue_m1062368071 (RuntimeArray * __this, int64_t ___index10, int64_t ___index21, int64_t ___index32, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_GetValue_m1062368071_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int64_t L_0 = ___index10;
if ((((int64_t)L_0) < ((int64_t)(((int64_t)((int64_t)0))))))
{
goto IL_0014;
}
}
{
int64_t L_1 = ___index10;
if ((((int64_t)L_1) <= ((int64_t)(((int64_t)((int64_t)((int32_t)2147483647LL)))))))
{
goto IL_0029;
}
}
IL_0014:
{
String_t* L_2 = Locale_GetText_m3374010885(NULL /*static, unused*/, _stringLiteral1356516794, /*hidden argument*/NULL);
ArgumentOutOfRangeException_t777629997 * L_3 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m282481429(L_3, _stringLiteral800851691, L_2, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3,Array_GetValue_m1062368071_RuntimeMethod_var);
}
IL_0029:
{
int64_t L_4 = ___index21;
if ((((int64_t)L_4) < ((int64_t)(((int64_t)((int64_t)0))))))
{
goto IL_003d;
}
}
{
int64_t L_5 = ___index21;
if ((((int64_t)L_5) <= ((int64_t)(((int64_t)((int64_t)((int32_t)2147483647LL)))))))
{
goto IL_0052;
}
}
IL_003d:
{
String_t* L_6 = Locale_GetText_m3374010885(NULL /*static, unused*/, _stringLiteral1356516794, /*hidden argument*/NULL);
ArgumentOutOfRangeException_t777629997 * L_7 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m282481429(L_7, _stringLiteral800917227, L_6, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_7,Array_GetValue_m1062368071_RuntimeMethod_var);
}
IL_0052:
{
int64_t L_8 = ___index32;
if ((((int64_t)L_8) < ((int64_t)(((int64_t)((int64_t)0))))))
{
goto IL_0066;
}
}
{
int64_t L_9 = ___index32;
if ((((int64_t)L_9) <= ((int64_t)(((int64_t)((int64_t)((int32_t)2147483647LL)))))))
{
goto IL_007b;
}
}
IL_0066:
{
String_t* L_10 = Locale_GetText_m3374010885(NULL /*static, unused*/, _stringLiteral1356516794, /*hidden argument*/NULL);
ArgumentOutOfRangeException_t777629997 * L_11 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m282481429(L_11, _stringLiteral800982763, L_10, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_11,Array_GetValue_m1062368071_RuntimeMethod_var);
}
IL_007b:
{
int64_t L_12 = ___index10;
int64_t L_13 = ___index21;
int64_t L_14 = ___index32;
RuntimeObject * L_15 = Array_GetValue_m793801589(__this, (((int32_t)((int32_t)L_12))), (((int32_t)((int32_t)L_13))), (((int32_t)((int32_t)L_14))), /*hidden argument*/NULL);
return L_15;
}
}
// System.Void System.Array::SetValue(System.Object,System.Int64)
extern "C" void Array_SetValue_m3412648248 (RuntimeArray * __this, RuntimeObject * ___value0, int64_t ___index1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_SetValue_m3412648248_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int64_t L_0 = ___index1;
if ((((int64_t)L_0) < ((int64_t)(((int64_t)((int64_t)0))))))
{
goto IL_0014;
}
}
{
int64_t L_1 = ___index1;
if ((((int64_t)L_1) <= ((int64_t)(((int64_t)((int64_t)((int32_t)2147483647LL)))))))
{
goto IL_0029;
}
}
IL_0014:
{
String_t* L_2 = Locale_GetText_m3374010885(NULL /*static, unused*/, _stringLiteral1356516794, /*hidden argument*/NULL);
ArgumentOutOfRangeException_t777629997 * L_3 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m282481429(L_3, _stringLiteral797640427, L_2, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3,Array_SetValue_m3412648248_RuntimeMethod_var);
}
IL_0029:
{
RuntimeObject * L_4 = ___value0;
int64_t L_5 = ___index1;
Array_SetValue_m3412255035(__this, L_4, (((int32_t)((int32_t)L_5))), /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array::SetValue(System.Object,System.Int64,System.Int64)
extern "C" void Array_SetValue_m394135409 (RuntimeArray * __this, RuntimeObject * ___value0, int64_t ___index11, int64_t ___index22, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_SetValue_m394135409_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Int32U5BU5D_t385246372* V_0 = NULL;
{
int64_t L_0 = ___index11;
if ((((int64_t)L_0) < ((int64_t)(((int64_t)((int64_t)0))))))
{
goto IL_0014;
}
}
{
int64_t L_1 = ___index11;
if ((((int64_t)L_1) <= ((int64_t)(((int64_t)((int64_t)((int32_t)2147483647LL)))))))
{
goto IL_0029;
}
}
IL_0014:
{
String_t* L_2 = Locale_GetText_m3374010885(NULL /*static, unused*/, _stringLiteral1356516794, /*hidden argument*/NULL);
ArgumentOutOfRangeException_t777629997 * L_3 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m282481429(L_3, _stringLiteral800851691, L_2, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3,Array_SetValue_m394135409_RuntimeMethod_var);
}
IL_0029:
{
int64_t L_4 = ___index22;
if ((((int64_t)L_4) < ((int64_t)(((int64_t)((int64_t)0))))))
{
goto IL_003d;
}
}
{
int64_t L_5 = ___index22;
if ((((int64_t)L_5) <= ((int64_t)(((int64_t)((int64_t)((int32_t)2147483647LL)))))))
{
goto IL_0052;
}
}
IL_003d:
{
String_t* L_6 = Locale_GetText_m3374010885(NULL /*static, unused*/, _stringLiteral1356516794, /*hidden argument*/NULL);
ArgumentOutOfRangeException_t777629997 * L_7 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m282481429(L_7, _stringLiteral800917227, L_6, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_7,Array_SetValue_m394135409_RuntimeMethod_var);
}
IL_0052:
{
Int32U5BU5D_t385246372* L_8 = ((Int32U5BU5D_t385246372*)SZArrayNew(Int32U5BU5D_t385246372_il2cpp_TypeInfo_var, (uint32_t)2));
int64_t L_9 = ___index11;
(L_8)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(0), (int32_t)(((int32_t)((int32_t)L_9))));
Int32U5BU5D_t385246372* L_10 = L_8;
int64_t L_11 = ___index22;
(L_10)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(1), (int32_t)(((int32_t)((int32_t)L_11))));
V_0 = L_10;
RuntimeObject * L_12 = ___value0;
Int32U5BU5D_t385246372* L_13 = V_0;
Array_SetValue_m1804138688(__this, L_12, L_13, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array::SetValue(System.Object,System.Int64,System.Int64,System.Int64)
extern "C" void Array_SetValue_m282347242 (RuntimeArray * __this, RuntimeObject * ___value0, int64_t ___index11, int64_t ___index22, int64_t ___index33, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_SetValue_m282347242_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Int32U5BU5D_t385246372* V_0 = NULL;
{
int64_t L_0 = ___index11;
if ((((int64_t)L_0) < ((int64_t)(((int64_t)((int64_t)0))))))
{
goto IL_0014;
}
}
{
int64_t L_1 = ___index11;
if ((((int64_t)L_1) <= ((int64_t)(((int64_t)((int64_t)((int32_t)2147483647LL)))))))
{
goto IL_0029;
}
}
IL_0014:
{
String_t* L_2 = Locale_GetText_m3374010885(NULL /*static, unused*/, _stringLiteral1356516794, /*hidden argument*/NULL);
ArgumentOutOfRangeException_t777629997 * L_3 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m282481429(L_3, _stringLiteral800851691, L_2, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3,Array_SetValue_m282347242_RuntimeMethod_var);
}
IL_0029:
{
int64_t L_4 = ___index22;
if ((((int64_t)L_4) < ((int64_t)(((int64_t)((int64_t)0))))))
{
goto IL_003d;
}
}
{
int64_t L_5 = ___index22;
if ((((int64_t)L_5) <= ((int64_t)(((int64_t)((int64_t)((int32_t)2147483647LL)))))))
{
goto IL_0052;
}
}
IL_003d:
{
String_t* L_6 = Locale_GetText_m3374010885(NULL /*static, unused*/, _stringLiteral1356516794, /*hidden argument*/NULL);
ArgumentOutOfRangeException_t777629997 * L_7 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m282481429(L_7, _stringLiteral800917227, L_6, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_7,Array_SetValue_m282347242_RuntimeMethod_var);
}
IL_0052:
{
int64_t L_8 = ___index33;
if ((((int64_t)L_8) < ((int64_t)(((int64_t)((int64_t)0))))))
{
goto IL_0068;
}
}
{
int64_t L_9 = ___index33;
if ((((int64_t)L_9) <= ((int64_t)(((int64_t)((int64_t)((int32_t)2147483647LL)))))))
{
goto IL_007d;
}
}
IL_0068:
{
String_t* L_10 = Locale_GetText_m3374010885(NULL /*static, unused*/, _stringLiteral1356516794, /*hidden argument*/NULL);
ArgumentOutOfRangeException_t777629997 * L_11 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m282481429(L_11, _stringLiteral800982763, L_10, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_11,Array_SetValue_m282347242_RuntimeMethod_var);
}
IL_007d:
{
Int32U5BU5D_t385246372* L_12 = ((Int32U5BU5D_t385246372*)SZArrayNew(Int32U5BU5D_t385246372_il2cpp_TypeInfo_var, (uint32_t)3));
int64_t L_13 = ___index11;
(L_12)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(0), (int32_t)(((int32_t)((int32_t)L_13))));
Int32U5BU5D_t385246372* L_14 = L_12;
int64_t L_15 = ___index22;
(L_14)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(1), (int32_t)(((int32_t)((int32_t)L_15))));
Int32U5BU5D_t385246372* L_16 = L_14;
int64_t L_17 = ___index33;
(L_16)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(2), (int32_t)(((int32_t)((int32_t)L_17))));
V_0 = L_16;
RuntimeObject * L_18 = ___value0;
Int32U5BU5D_t385246372* L_19 = V_0;
Array_SetValue_m1804138688(__this, L_18, L_19, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array::SetValue(System.Object,System.Int32)
extern "C" void Array_SetValue_m3412255035 (RuntimeArray * __this, RuntimeObject * ___value0, int32_t ___index1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_SetValue_m3412255035_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = Array_get_Rank_m3448755881(__this, /*hidden argument*/NULL);
if ((((int32_t)L_0) == ((int32_t)1)))
{
goto IL_001c;
}
}
{
String_t* L_1 = Locale_GetText_m3374010885(NULL /*static, unused*/, _stringLiteral2455840074, /*hidden argument*/NULL);
ArgumentException_t132251570 * L_2 = (ArgumentException_t132251570 *)il2cpp_codegen_object_new(ArgumentException_t132251570_il2cpp_TypeInfo_var);
ArgumentException__ctor_m1312628991(L_2, L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2,Array_SetValue_m3412255035_RuntimeMethod_var);
}
IL_001c:
{
int32_t L_3 = ___index1;
int32_t L_4 = Array_GetLowerBound_m2045984623(__this, 0, /*hidden argument*/NULL);
if ((((int32_t)L_3) < ((int32_t)L_4)))
{
goto IL_0036;
}
}
{
int32_t L_5 = ___index1;
int32_t L_6 = Array_GetUpperBound_m4018715963(__this, 0, /*hidden argument*/NULL);
if ((((int32_t)L_5) <= ((int32_t)L_6)))
{
goto IL_0046;
}
}
IL_0036:
{
String_t* L_7 = Locale_GetText_m3374010885(NULL /*static, unused*/, _stringLiteral1537657916, /*hidden argument*/NULL);
IndexOutOfRangeException_t1578797820 * L_8 = (IndexOutOfRangeException_t1578797820 *)il2cpp_codegen_object_new(IndexOutOfRangeException_t1578797820_il2cpp_TypeInfo_var);
IndexOutOfRangeException__ctor_m3408750441(L_8, L_7, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_8,Array_SetValue_m3412255035_RuntimeMethod_var);
}
IL_0046:
{
RuntimeObject * L_9 = ___value0;
int32_t L_10 = ___index1;
int32_t L_11 = Array_GetLowerBound_m2045984623(__this, 0, /*hidden argument*/NULL);
Array_SetValueImpl_m2791230289(__this, L_9, ((int32_t)il2cpp_codegen_subtract((int32_t)L_10, (int32_t)L_11)), /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array::SetValue(System.Object,System.Int32,System.Int32)
extern "C" void Array_SetValue_m3998268557 (RuntimeArray * __this, RuntimeObject * ___value0, int32_t ___index11, int32_t ___index22, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_SetValue_m3998268557_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Int32U5BU5D_t385246372* V_0 = NULL;
{
Int32U5BU5D_t385246372* L_0 = ((Int32U5BU5D_t385246372*)SZArrayNew(Int32U5BU5D_t385246372_il2cpp_TypeInfo_var, (uint32_t)2));
int32_t L_1 = ___index11;
(L_0)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(0), (int32_t)L_1);
Int32U5BU5D_t385246372* L_2 = L_0;
int32_t L_3 = ___index22;
(L_2)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(1), (int32_t)L_3);
V_0 = L_2;
RuntimeObject * L_4 = ___value0;
Int32U5BU5D_t385246372* L_5 = V_0;
Array_SetValue_m1804138688(__this, L_4, L_5, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array::SetValue(System.Object,System.Int32,System.Int32,System.Int32)
extern "C" void Array_SetValue_m2601781200 (RuntimeArray * __this, RuntimeObject * ___value0, int32_t ___index11, int32_t ___index22, int32_t ___index33, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_SetValue_m2601781200_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Int32U5BU5D_t385246372* V_0 = NULL;
{
Int32U5BU5D_t385246372* L_0 = ((Int32U5BU5D_t385246372*)SZArrayNew(Int32U5BU5D_t385246372_il2cpp_TypeInfo_var, (uint32_t)3));
int32_t L_1 = ___index11;
(L_0)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(0), (int32_t)L_1);
Int32U5BU5D_t385246372* L_2 = L_0;
int32_t L_3 = ___index22;
(L_2)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(1), (int32_t)L_3);
Int32U5BU5D_t385246372* L_4 = L_2;
int32_t L_5 = ___index33;
(L_4)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(2), (int32_t)L_5);
V_0 = L_4;
RuntimeObject * L_6 = ___value0;
Int32U5BU5D_t385246372* L_7 = V_0;
Array_SetValue_m1804138688(__this, L_6, L_7, /*hidden argument*/NULL);
return;
}
}
// System.Array System.Array::CreateInstance(System.Type,System.Int32)
extern "C" RuntimeArray * Array_CreateInstance_m2750085942 (RuntimeObject * __this /* static, unused */, Type_t * ___elementType0, int32_t ___length1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_CreateInstance_m2750085942_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Int32U5BU5D_t385246372* V_0 = NULL;
{
Int32U5BU5D_t385246372* L_0 = ((Int32U5BU5D_t385246372*)SZArrayNew(Int32U5BU5D_t385246372_il2cpp_TypeInfo_var, (uint32_t)1));
int32_t L_1 = ___length1;
(L_0)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(0), (int32_t)L_1);
V_0 = L_0;
Type_t * L_2 = ___elementType0;
Int32U5BU5D_t385246372* L_3 = V_0;
RuntimeArray * L_4 = Array_CreateInstance_m2175520447(NULL /*static, unused*/, L_2, L_3, /*hidden argument*/NULL);
return L_4;
}
}
// System.Array System.Array::CreateInstance(System.Type,System.Int32,System.Int32)
extern "C" RuntimeArray * Array_CreateInstance_m1740754882 (RuntimeObject * __this /* static, unused */, Type_t * ___elementType0, int32_t ___length11, int32_t ___length22, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_CreateInstance_m1740754882_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Int32U5BU5D_t385246372* V_0 = NULL;
{
Int32U5BU5D_t385246372* L_0 = ((Int32U5BU5D_t385246372*)SZArrayNew(Int32U5BU5D_t385246372_il2cpp_TypeInfo_var, (uint32_t)2));
int32_t L_1 = ___length11;
(L_0)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(0), (int32_t)L_1);
Int32U5BU5D_t385246372* L_2 = L_0;
int32_t L_3 = ___length22;
(L_2)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(1), (int32_t)L_3);
V_0 = L_2;
Type_t * L_4 = ___elementType0;
Int32U5BU5D_t385246372* L_5 = V_0;
RuntimeArray * L_6 = Array_CreateInstance_m2175520447(NULL /*static, unused*/, L_4, L_5, /*hidden argument*/NULL);
return L_6;
}
}
// System.Array System.Array::CreateInstance(System.Type,System.Int32,System.Int32,System.Int32)
extern "C" RuntimeArray * Array_CreateInstance_m2696293787 (RuntimeObject * __this /* static, unused */, Type_t * ___elementType0, int32_t ___length11, int32_t ___length22, int32_t ___length33, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_CreateInstance_m2696293787_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Int32U5BU5D_t385246372* V_0 = NULL;
{
Int32U5BU5D_t385246372* L_0 = ((Int32U5BU5D_t385246372*)SZArrayNew(Int32U5BU5D_t385246372_il2cpp_TypeInfo_var, (uint32_t)3));
int32_t L_1 = ___length11;
(L_0)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(0), (int32_t)L_1);
Int32U5BU5D_t385246372* L_2 = L_0;
int32_t L_3 = ___length22;
(L_2)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(1), (int32_t)L_3);
Int32U5BU5D_t385246372* L_4 = L_2;
int32_t L_5 = ___length33;
(L_4)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(2), (int32_t)L_5);
V_0 = L_4;
Type_t * L_6 = ___elementType0;
Int32U5BU5D_t385246372* L_7 = V_0;
RuntimeArray * L_8 = Array_CreateInstance_m2175520447(NULL /*static, unused*/, L_6, L_7, /*hidden argument*/NULL);
return L_8;
}
}
// System.Array System.Array::CreateInstance(System.Type,System.Int32[])
extern "C" RuntimeArray * Array_CreateInstance_m2175520447 (RuntimeObject * __this /* static, unused */, Type_t * ___elementType0, Int32U5BU5D_t385246372* ___lengths1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_CreateInstance_m2175520447_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Int32U5BU5D_t385246372* V_0 = NULL;
{
Type_t * L_0 = ___elementType0;
if (L_0)
{
goto IL_0011;
}
}
{
ArgumentNullException_t1615371798 * L_1 = (ArgumentNullException_t1615371798 *)il2cpp_codegen_object_new(ArgumentNullException_t1615371798_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m1170824041(L_1, _stringLiteral1767760159, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1,Array_CreateInstance_m2175520447_RuntimeMethod_var);
}
IL_0011:
{
Int32U5BU5D_t385246372* L_2 = ___lengths1;
if (L_2)
{
goto IL_0022;
}
}
{
ArgumentNullException_t1615371798 * L_3 = (ArgumentNullException_t1615371798 *)il2cpp_codegen_object_new(ArgumentNullException_t1615371798_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m1170824041(L_3, _stringLiteral1151827249, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3,Array_CreateInstance_m2175520447_RuntimeMethod_var);
}
IL_0022:
{
Int32U5BU5D_t385246372* L_4 = ___lengths1;
if ((((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_4)->max_length))))) <= ((int32_t)((int32_t)255))))
{
goto IL_0035;
}
}
{
TypeLoadException_t3707937253 * L_5 = (TypeLoadException_t3707937253 *)il2cpp_codegen_object_new(TypeLoadException_t3707937253_il2cpp_TypeInfo_var);
TypeLoadException__ctor_m1802671078(L_5, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5,Array_CreateInstance_m2175520447_RuntimeMethod_var);
}
IL_0035:
{
V_0 = (Int32U5BU5D_t385246372*)NULL;
Type_t * L_6 = ___elementType0;
Type_t * L_7 = VirtFuncInvoker0< Type_t * >::Invoke(36 /* System.Type System.Type::get_UnderlyingSystemType() */, L_6);
___elementType0 = L_7;
Type_t * L_8 = ___elementType0;
bool L_9 = Type_get_IsSystemType_m624798880(L_8, /*hidden argument*/NULL);
if (L_9)
{
goto IL_005a;
}
}
{
ArgumentException_t132251570 * L_10 = (ArgumentException_t132251570 *)il2cpp_codegen_object_new(ArgumentException_t132251570_il2cpp_TypeInfo_var);
ArgumentException__ctor_m1216717135(L_10, _stringLiteral3410374040, _stringLiteral1767760159, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_10,Array_CreateInstance_m2175520447_RuntimeMethod_var);
}
IL_005a:
{
Type_t * L_11 = ___elementType0;
RuntimeTypeHandle_t3027515415 L_12 = { reinterpret_cast<intptr_t> (Void_t1185182177_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_13 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, L_12, /*hidden argument*/NULL);
bool L_14 = Type_Equals_m709225487(L_11, L_13, /*hidden argument*/NULL);
if (!L_14)
{
goto IL_007a;
}
}
{
NotSupportedException_t1314879016 * L_15 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var);
NotSupportedException__ctor_m2494070935(L_15, _stringLiteral408657276, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_15,Array_CreateInstance_m2175520447_RuntimeMethod_var);
}
IL_007a:
{
Type_t * L_16 = ___elementType0;
bool L_17 = VirtFuncInvoker0< bool >::Invoke(76 /* System.Boolean System.Type::get_ContainsGenericParameters() */, L_16);
if (!L_17)
{
goto IL_0090;
}
}
{
NotSupportedException_t1314879016 * L_18 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var);
NotSupportedException__ctor_m2494070935(L_18, _stringLiteral482725228, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_18,Array_CreateInstance_m2175520447_RuntimeMethod_var);
}
IL_0090:
{
Type_t * L_19 = ___elementType0;
Int32U5BU5D_t385246372* L_20 = ___lengths1;
Int32U5BU5D_t385246372* L_21 = V_0;
RuntimeArray * L_22 = Array_CreateInstanceImpl_m1073152296(NULL /*static, unused*/, L_19, L_20, L_21, /*hidden argument*/NULL);
return L_22;
}
}
// System.Array System.Array::CreateInstance(System.Type,System.Int32[],System.Int32[])
extern "C" RuntimeArray * Array_CreateInstance_m3395539612 (RuntimeObject * __this /* static, unused */, Type_t * ___elementType0, Int32U5BU5D_t385246372* ___lengths1, Int32U5BU5D_t385246372* ___lowerBounds2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_CreateInstance_m3395539612_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
{
Type_t * L_0 = ___elementType0;
if (L_0)
{
goto IL_0011;
}
}
{
ArgumentNullException_t1615371798 * L_1 = (ArgumentNullException_t1615371798 *)il2cpp_codegen_object_new(ArgumentNullException_t1615371798_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m1170824041(L_1, _stringLiteral1767760159, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1,Array_CreateInstance_m3395539612_RuntimeMethod_var);
}
IL_0011:
{
Int32U5BU5D_t385246372* L_2 = ___lengths1;
if (L_2)
{
goto IL_0022;
}
}
{
ArgumentNullException_t1615371798 * L_3 = (ArgumentNullException_t1615371798 *)il2cpp_codegen_object_new(ArgumentNullException_t1615371798_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m1170824041(L_3, _stringLiteral1151827249, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3,Array_CreateInstance_m3395539612_RuntimeMethod_var);
}
IL_0022:
{
Int32U5BU5D_t385246372* L_4 = ___lowerBounds2;
if (L_4)
{
goto IL_0033;
}
}
{
ArgumentNullException_t1615371798 * L_5 = (ArgumentNullException_t1615371798 *)il2cpp_codegen_object_new(ArgumentNullException_t1615371798_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m1170824041(L_5, _stringLiteral1784063431, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5,Array_CreateInstance_m3395539612_RuntimeMethod_var);
}
IL_0033:
{
Type_t * L_6 = ___elementType0;
Type_t * L_7 = VirtFuncInvoker0< Type_t * >::Invoke(36 /* System.Type System.Type::get_UnderlyingSystemType() */, L_6);
___elementType0 = L_7;
Type_t * L_8 = ___elementType0;
bool L_9 = Type_get_IsSystemType_m624798880(L_8, /*hidden argument*/NULL);
if (L_9)
{
goto IL_0056;
}
}
{
ArgumentException_t132251570 * L_10 = (ArgumentException_t132251570 *)il2cpp_codegen_object_new(ArgumentException_t132251570_il2cpp_TypeInfo_var);
ArgumentException__ctor_m1216717135(L_10, _stringLiteral3410374040, _stringLiteral1767760159, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_10,Array_CreateInstance_m3395539612_RuntimeMethod_var);
}
IL_0056:
{
Type_t * L_11 = ___elementType0;
RuntimeTypeHandle_t3027515415 L_12 = { reinterpret_cast<intptr_t> (Void_t1185182177_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_13 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, L_12, /*hidden argument*/NULL);
bool L_14 = Type_Equals_m709225487(L_11, L_13, /*hidden argument*/NULL);
if (!L_14)
{
goto IL_0076;
}
}
{
NotSupportedException_t1314879016 * L_15 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var);
NotSupportedException__ctor_m2494070935(L_15, _stringLiteral408657276, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_15,Array_CreateInstance_m3395539612_RuntimeMethod_var);
}
IL_0076:
{
Type_t * L_16 = ___elementType0;
bool L_17 = VirtFuncInvoker0< bool >::Invoke(76 /* System.Boolean System.Type::get_ContainsGenericParameters() */, L_16);
if (!L_17)
{
goto IL_008c;
}
}
{
NotSupportedException_t1314879016 * L_18 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var);
NotSupportedException__ctor_m2494070935(L_18, _stringLiteral482725228, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_18,Array_CreateInstance_m3395539612_RuntimeMethod_var);
}
IL_008c:
{
Int32U5BU5D_t385246372* L_19 = ___lengths1;
if ((((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_19)->max_length))))) >= ((int32_t)1)))
{
goto IL_00a5;
}
}
{
String_t* L_20 = Locale_GetText_m3374010885(NULL /*static, unused*/, _stringLiteral543129819, /*hidden argument*/NULL);
ArgumentException_t132251570 * L_21 = (ArgumentException_t132251570 *)il2cpp_codegen_object_new(ArgumentException_t132251570_il2cpp_TypeInfo_var);
ArgumentException__ctor_m1312628991(L_21, L_20, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_21,Array_CreateInstance_m3395539612_RuntimeMethod_var);
}
IL_00a5:
{
Int32U5BU5D_t385246372* L_22 = ___lengths1;
Int32U5BU5D_t385246372* L_23 = ___lowerBounds2;
if ((((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_22)->max_length))))) == ((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_23)->max_length)))))))
{
goto IL_00c0;
}
}
{
String_t* L_24 = Locale_GetText_m3374010885(NULL /*static, unused*/, _stringLiteral368171286, /*hidden argument*/NULL);
ArgumentException_t132251570 * L_25 = (ArgumentException_t132251570 *)il2cpp_codegen_object_new(ArgumentException_t132251570_il2cpp_TypeInfo_var);
ArgumentException__ctor_m1312628991(L_25, L_24, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_25,Array_CreateInstance_m3395539612_RuntimeMethod_var);
}
IL_00c0:
{
V_0 = 0;
goto IL_0112;
}
IL_00c7:
{
Int32U5BU5D_t385246372* L_26 = ___lengths1;
int32_t L_27 = V_0;
int32_t L_28 = L_27;
int32_t L_29 = (L_26)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_28));
if ((((int32_t)L_29) >= ((int32_t)0)))
{
goto IL_00e5;
}
}
{
String_t* L_30 = Locale_GetText_m3374010885(NULL /*static, unused*/, _stringLiteral2504639343, /*hidden argument*/NULL);
ArgumentOutOfRangeException_t777629997 * L_31 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m282481429(L_31, _stringLiteral1151827249, L_30, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_31,Array_CreateInstance_m3395539612_RuntimeMethod_var);
}
IL_00e5:
{
Int32U5BU5D_t385246372* L_32 = ___lowerBounds2;
int32_t L_33 = V_0;
int32_t L_34 = L_33;
int32_t L_35 = (L_32)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_34));
Int32U5BU5D_t385246372* L_36 = ___lengths1;
int32_t L_37 = V_0;
int32_t L_38 = L_37;
int32_t L_39 = (L_36)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_38));
if ((((int64_t)((int64_t)il2cpp_codegen_add((int64_t)(((int64_t)((int64_t)L_35))), (int64_t)(((int64_t)((int64_t)L_39)))))) <= ((int64_t)(((int64_t)((int64_t)((int32_t)2147483647LL)))))))
{
goto IL_010e;
}
}
{
String_t* L_40 = Locale_GetText_m3374010885(NULL /*static, unused*/, _stringLiteral3934254921, /*hidden argument*/NULL);
ArgumentOutOfRangeException_t777629997 * L_41 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m282481429(L_41, _stringLiteral1151827249, L_40, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_41,Array_CreateInstance_m3395539612_RuntimeMethod_var);
}
IL_010e:
{
int32_t L_42 = V_0;
V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_42, (int32_t)1));
}
IL_0112:
{
int32_t L_43 = V_0;
Int32U5BU5D_t385246372* L_44 = ___lowerBounds2;
if ((((int32_t)L_43) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_44)->max_length)))))))
{
goto IL_00c7;
}
}
{
Int32U5BU5D_t385246372* L_45 = ___lengths1;
if ((((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_45)->max_length))))) <= ((int32_t)((int32_t)255))))
{
goto IL_012e;
}
}
{
TypeLoadException_t3707937253 * L_46 = (TypeLoadException_t3707937253 *)il2cpp_codegen_object_new(TypeLoadException_t3707937253_il2cpp_TypeInfo_var);
TypeLoadException__ctor_m1802671078(L_46, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_46,Array_CreateInstance_m3395539612_RuntimeMethod_var);
}
IL_012e:
{
Type_t * L_47 = ___elementType0;
Int32U5BU5D_t385246372* L_48 = ___lengths1;
Int32U5BU5D_t385246372* L_49 = ___lowerBounds2;
RuntimeArray * L_50 = Array_CreateInstanceImpl_m1073152296(NULL /*static, unused*/, L_47, L_48, L_49, /*hidden argument*/NULL);
return L_50;
}
}
// System.Int32[] System.Array::GetIntArray(System.Int64[])
extern "C" Int32U5BU5D_t385246372* Array_GetIntArray_m1205726566 (RuntimeObject * __this /* static, unused */, Int64U5BU5D_t2559172825* ___values0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_GetIntArray_m1205726566_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
Int32U5BU5D_t385246372* V_1 = NULL;
int32_t V_2 = 0;
int64_t V_3 = 0;
{
Int64U5BU5D_t2559172825* L_0 = ___values0;
V_0 = (((int32_t)((int32_t)(((RuntimeArray *)L_0)->max_length))));
int32_t L_1 = V_0;
V_1 = ((Int32U5BU5D_t385246372*)SZArrayNew(Int32U5BU5D_t385246372_il2cpp_TypeInfo_var, (uint32_t)L_1));
V_2 = 0;
goto IL_0048;
}
IL_0012:
{
Int64U5BU5D_t2559172825* L_2 = ___values0;
int32_t L_3 = V_2;
int32_t L_4 = L_3;
int64_t L_5 = (L_2)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_4));
V_3 = L_5;
int64_t L_6 = V_3;
if ((((int64_t)L_6) < ((int64_t)(((int64_t)((int64_t)0))))))
{
goto IL_002a;
}
}
{
int64_t L_7 = V_3;
if ((((int64_t)L_7) <= ((int64_t)(((int64_t)((int64_t)((int32_t)2147483647LL)))))))
{
goto IL_003f;
}
}
IL_002a:
{
String_t* L_8 = Locale_GetText_m3374010885(NULL /*static, unused*/, _stringLiteral1633051326, /*hidden argument*/NULL);
ArgumentOutOfRangeException_t777629997 * L_9 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m282481429(L_9, _stringLiteral3498926489, L_8, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_9,Array_GetIntArray_m1205726566_RuntimeMethod_var);
}
IL_003f:
{
Int32U5BU5D_t385246372* L_10 = V_1;
int32_t L_11 = V_2;
int64_t L_12 = V_3;
(L_10)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(L_11), (int32_t)(((int32_t)((int32_t)L_12))));
int32_t L_13 = V_2;
V_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)1));
}
IL_0048:
{
int32_t L_14 = V_2;
int32_t L_15 = V_0;
if ((((int32_t)L_14) < ((int32_t)L_15)))
{
goto IL_0012;
}
}
{
Int32U5BU5D_t385246372* L_16 = V_1;
return L_16;
}
}
// System.Array System.Array::CreateInstance(System.Type,System.Int64[])
extern "C" RuntimeArray * Array_CreateInstance_m1027597705 (RuntimeObject * __this /* static, unused */, Type_t * ___elementType0, Int64U5BU5D_t2559172825* ___lengths1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_CreateInstance_m1027597705_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Int64U5BU5D_t2559172825* L_0 = ___lengths1;
if (L_0)
{
goto IL_0011;
}
}
{
ArgumentNullException_t1615371798 * L_1 = (ArgumentNullException_t1615371798 *)il2cpp_codegen_object_new(ArgumentNullException_t1615371798_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m1170824041(L_1, _stringLiteral1151827249, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1,Array_CreateInstance_m1027597705_RuntimeMethod_var);
}
IL_0011:
{
Type_t * L_2 = ___elementType0;
Int64U5BU5D_t2559172825* L_3 = ___lengths1;
Int32U5BU5D_t385246372* L_4 = Array_GetIntArray_m1205726566(NULL /*static, unused*/, L_3, /*hidden argument*/NULL);
RuntimeArray * L_5 = Array_CreateInstance_m2175520447(NULL /*static, unused*/, L_2, L_4, /*hidden argument*/NULL);
return L_5;
}
}
// System.Object System.Array::GetValue(System.Int64[])
extern "C" RuntimeObject * Array_GetValue_m116098292 (RuntimeArray * __this, Int64U5BU5D_t2559172825* ___indices0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_GetValue_m116098292_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Int64U5BU5D_t2559172825* L_0 = ___indices0;
if (L_0)
{
goto IL_0011;
}
}
{
ArgumentNullException_t1615371798 * L_1 = (ArgumentNullException_t1615371798 *)il2cpp_codegen_object_new(ArgumentNullException_t1615371798_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m1170824041(L_1, _stringLiteral3305999801, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1,Array_GetValue_m116098292_RuntimeMethod_var);
}
IL_0011:
{
Int64U5BU5D_t2559172825* L_2 = ___indices0;
Int32U5BU5D_t385246372* L_3 = Array_GetIntArray_m1205726566(NULL /*static, unused*/, L_2, /*hidden argument*/NULL);
RuntimeObject * L_4 = Array_GetValue_m120423883(__this, L_3, /*hidden argument*/NULL);
return L_4;
}
}
// System.Void System.Array::SetValue(System.Object,System.Int64[])
extern "C" void Array_SetValue_m1817114699 (RuntimeArray * __this, RuntimeObject * ___value0, Int64U5BU5D_t2559172825* ___indices1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_SetValue_m1817114699_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Int64U5BU5D_t2559172825* L_0 = ___indices1;
if (L_0)
{
goto IL_0011;
}
}
{
ArgumentNullException_t1615371798 * L_1 = (ArgumentNullException_t1615371798 *)il2cpp_codegen_object_new(ArgumentNullException_t1615371798_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m1170824041(L_1, _stringLiteral3305999801, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1,Array_SetValue_m1817114699_RuntimeMethod_var);
}
IL_0011:
{
RuntimeObject * L_2 = ___value0;
Int64U5BU5D_t2559172825* L_3 = ___indices1;
Int32U5BU5D_t385246372* L_4 = Array_GetIntArray_m1205726566(NULL /*static, unused*/, L_3, /*hidden argument*/NULL);
Array_SetValue_m1804138688(__this, L_2, L_4, /*hidden argument*/NULL);
return;
}
}
// System.Int32 System.Array::BinarySearch(System.Array,System.Object)
extern "C" int32_t Array_BinarySearch_m687718979 (RuntimeObject * __this /* static, unused */, RuntimeArray * ___array0, RuntimeObject * ___value1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_BinarySearch_m687718979_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeArray * L_0 = ___array0;
if (L_0)
{
goto IL_0011;
}
}
{
ArgumentNullException_t1615371798 * L_1 = (ArgumentNullException_t1615371798 *)il2cpp_codegen_object_new(ArgumentNullException_t1615371798_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m1170824041(L_1, _stringLiteral4007973390, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1,Array_BinarySearch_m687718979_RuntimeMethod_var);
}
IL_0011:
{
RuntimeObject * L_2 = ___value1;
if (L_2)
{
goto IL_0019;
}
}
{
return (-1);
}
IL_0019:
{
RuntimeArray * L_3 = ___array0;
int32_t L_4 = Array_get_Rank_m3448755881(L_3, /*hidden argument*/NULL);
if ((((int32_t)L_4) <= ((int32_t)1)))
{
goto IL_0035;
}
}
{
String_t* L_5 = Locale_GetText_m3374010885(NULL /*static, unused*/, _stringLiteral1684534236, /*hidden argument*/NULL);
RankException_t3812021567 * L_6 = (RankException_t3812021567 *)il2cpp_codegen_object_new(RankException_t3812021567_il2cpp_TypeInfo_var);
RankException__ctor_m2226473861(L_6, L_5, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_6,Array_BinarySearch_m687718979_RuntimeMethod_var);
}
IL_0035:
{
RuntimeArray * L_7 = ___array0;
int32_t L_8 = Array_get_Length_m21610649(L_7, /*hidden argument*/NULL);
if (L_8)
{
goto IL_0042;
}
}
{
return (-1);
}
IL_0042:
{
RuntimeObject * L_9 = ___value1;
if (((RuntimeObject*)IsInst((RuntimeObject*)L_9, IComparable_t36111218_il2cpp_TypeInfo_var)))
{
goto IL_005d;
}
}
{
String_t* L_10 = Locale_GetText_m3374010885(NULL /*static, unused*/, _stringLiteral3353253190, /*hidden argument*/NULL);
ArgumentException_t132251570 * L_11 = (ArgumentException_t132251570 *)il2cpp_codegen_object_new(ArgumentException_t132251570_il2cpp_TypeInfo_var);
ArgumentException__ctor_m1312628991(L_11, L_10, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_11,Array_BinarySearch_m687718979_RuntimeMethod_var);
}
IL_005d:
{
RuntimeArray * L_12 = ___array0;
RuntimeArray * L_13 = ___array0;
int32_t L_14 = Array_GetLowerBound_m2045984623(L_13, 0, /*hidden argument*/NULL);
RuntimeArray * L_15 = ___array0;
int32_t L_16 = Array_GetLength_m2178203778(L_15, 0, /*hidden argument*/NULL);
RuntimeObject * L_17 = ___value1;
int32_t L_18 = Array_DoBinarySearch_m3657328456(NULL /*static, unused*/, L_12, L_14, L_16, L_17, (RuntimeObject*)NULL, /*hidden argument*/NULL);
return L_18;
}
}
// System.Int32 System.Array::BinarySearch(System.Array,System.Object,System.Collections.IComparer)
extern "C" int32_t Array_BinarySearch_m157235616 (RuntimeObject * __this /* static, unused */, RuntimeArray * ___array0, RuntimeObject * ___value1, RuntimeObject* ___comparer2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_BinarySearch_m157235616_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeArray * L_0 = ___array0;
if (L_0)
{
goto IL_0011;
}
}
{
ArgumentNullException_t1615371798 * L_1 = (ArgumentNullException_t1615371798 *)il2cpp_codegen_object_new(ArgumentNullException_t1615371798_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m1170824041(L_1, _stringLiteral4007973390, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1,Array_BinarySearch_m157235616_RuntimeMethod_var);
}
IL_0011:
{
RuntimeArray * L_2 = ___array0;
int32_t L_3 = Array_get_Rank_m3448755881(L_2, /*hidden argument*/NULL);
if ((((int32_t)L_3) <= ((int32_t)1)))
{
goto IL_002d;
}
}
{
String_t* L_4 = Locale_GetText_m3374010885(NULL /*static, unused*/, _stringLiteral1684534236, /*hidden argument*/NULL);
RankException_t3812021567 * L_5 = (RankException_t3812021567 *)il2cpp_codegen_object_new(RankException_t3812021567_il2cpp_TypeInfo_var);
RankException__ctor_m2226473861(L_5, L_4, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5,Array_BinarySearch_m157235616_RuntimeMethod_var);
}
IL_002d:
{
RuntimeArray * L_6 = ___array0;
int32_t L_7 = Array_get_Length_m21610649(L_6, /*hidden argument*/NULL);
if (L_7)
{
goto IL_003a;
}
}
{
return (-1);
}
IL_003a:
{
RuntimeObject* L_8 = ___comparer2;
if (L_8)
{
goto IL_0061;
}
}
{
RuntimeObject * L_9 = ___value1;
if (!L_9)
{
goto IL_0061;
}
}
{
RuntimeObject * L_10 = ___value1;
if (((RuntimeObject*)IsInst((RuntimeObject*)L_10, IComparable_t36111218_il2cpp_TypeInfo_var)))
{
goto IL_0061;
}
}
{
String_t* L_11 = Locale_GetText_m3374010885(NULL /*static, unused*/, _stringLiteral2275762465, /*hidden argument*/NULL);
ArgumentException_t132251570 * L_12 = (ArgumentException_t132251570 *)il2cpp_codegen_object_new(ArgumentException_t132251570_il2cpp_TypeInfo_var);
ArgumentException__ctor_m1312628991(L_12, L_11, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_12,Array_BinarySearch_m157235616_RuntimeMethod_var);
}
IL_0061:
{
RuntimeArray * L_13 = ___array0;
RuntimeArray * L_14 = ___array0;
int32_t L_15 = Array_GetLowerBound_m2045984623(L_14, 0, /*hidden argument*/NULL);
RuntimeArray * L_16 = ___array0;
int32_t L_17 = Array_GetLength_m2178203778(L_16, 0, /*hidden argument*/NULL);
RuntimeObject * L_18 = ___value1;
RuntimeObject* L_19 = ___comparer2;
int32_t L_20 = Array_DoBinarySearch_m3657328456(NULL /*static, unused*/, L_13, L_15, L_17, L_18, L_19, /*hidden argument*/NULL);
return L_20;
}
}
// System.Int32 System.Array::BinarySearch(System.Array,System.Int32,System.Int32,System.Object)
extern "C" int32_t Array_BinarySearch_m3171087170 (RuntimeObject * __this /* static, unused */, RuntimeArray * ___array0, int32_t ___index1, int32_t ___length2, RuntimeObject * ___value3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_BinarySearch_m3171087170_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeArray * L_0 = ___array0;
if (L_0)
{
goto IL_0011;
}
}
{
ArgumentNullException_t1615371798 * L_1 = (ArgumentNullException_t1615371798 *)il2cpp_codegen_object_new(ArgumentNullException_t1615371798_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m1170824041(L_1, _stringLiteral4007973390, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1,Array_BinarySearch_m3171087170_RuntimeMethod_var);
}
IL_0011:
{
RuntimeArray * L_2 = ___array0;
int32_t L_3 = Array_get_Rank_m3448755881(L_2, /*hidden argument*/NULL);
if ((((int32_t)L_3) <= ((int32_t)1)))
{
goto IL_002d;
}
}
{
String_t* L_4 = Locale_GetText_m3374010885(NULL /*static, unused*/, _stringLiteral1684534236, /*hidden argument*/NULL);
RankException_t3812021567 * L_5 = (RankException_t3812021567 *)il2cpp_codegen_object_new(RankException_t3812021567_il2cpp_TypeInfo_var);
RankException__ctor_m2226473861(L_5, L_4, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5,Array_BinarySearch_m3171087170_RuntimeMethod_var);
}
IL_002d:
{
int32_t L_6 = ___index1;
RuntimeArray * L_7 = ___array0;
int32_t L_8 = Array_GetLowerBound_m2045984623(L_7, 0, /*hidden argument*/NULL);
if ((((int32_t)L_6) >= ((int32_t)L_8)))
{
goto IL_004f;
}
}
{
String_t* L_9 = Locale_GetText_m3374010885(NULL /*static, unused*/, _stringLiteral165262286, /*hidden argument*/NULL);
ArgumentOutOfRangeException_t777629997 * L_10 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m282481429(L_10, _stringLiteral797640427, L_9, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_10,Array_BinarySearch_m3171087170_RuntimeMethod_var);
}
IL_004f:
{
int32_t L_11 = ___length2;
if ((((int32_t)L_11) >= ((int32_t)0)))
{
goto IL_006b;
}
}
{
String_t* L_12 = Locale_GetText_m3374010885(NULL /*static, unused*/, _stringLiteral4139011980, /*hidden argument*/NULL);
ArgumentOutOfRangeException_t777629997 * L_13 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m282481429(L_13, _stringLiteral1212500642, L_12, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_13,Array_BinarySearch_m3171087170_RuntimeMethod_var);
}
IL_006b:
{
int32_t L_14 = ___index1;
RuntimeArray * L_15 = ___array0;
int32_t L_16 = Array_GetLowerBound_m2045984623(L_15, 0, /*hidden argument*/NULL);
RuntimeArray * L_17 = ___array0;
int32_t L_18 = Array_GetLength_m2178203778(L_17, 0, /*hidden argument*/NULL);
int32_t L_19 = ___length2;
if ((((int32_t)L_14) <= ((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)L_18)), (int32_t)L_19)))))
{
goto IL_0092;
}
}
{
String_t* L_20 = Locale_GetText_m3374010885(NULL /*static, unused*/, _stringLiteral764441593, /*hidden argument*/NULL);
ArgumentException_t132251570 * L_21 = (ArgumentException_t132251570 *)il2cpp_codegen_object_new(ArgumentException_t132251570_il2cpp_TypeInfo_var);
ArgumentException__ctor_m1312628991(L_21, L_20, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_21,Array_BinarySearch_m3171087170_RuntimeMethod_var);
}
IL_0092:
{
RuntimeArray * L_22 = ___array0;
int32_t L_23 = Array_get_Length_m21610649(L_22, /*hidden argument*/NULL);
if (L_23)
{
goto IL_009f;
}
}
{
return (-1);
}
IL_009f:
{
RuntimeObject * L_24 = ___value3;
if (!L_24)
{
goto IL_00c0;
}
}
{
RuntimeObject * L_25 = ___value3;
if (((RuntimeObject*)IsInst((RuntimeObject*)L_25, IComparable_t36111218_il2cpp_TypeInfo_var)))
{
goto IL_00c0;
}
}
{
String_t* L_26 = Locale_GetText_m3374010885(NULL /*static, unused*/, _stringLiteral4109807668, /*hidden argument*/NULL);
ArgumentException_t132251570 * L_27 = (ArgumentException_t132251570 *)il2cpp_codegen_object_new(ArgumentException_t132251570_il2cpp_TypeInfo_var);
ArgumentException__ctor_m1312628991(L_27, L_26, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_27,Array_BinarySearch_m3171087170_RuntimeMethod_var);
}
IL_00c0:
{
RuntimeArray * L_28 = ___array0;
int32_t L_29 = ___index1;
int32_t L_30 = ___length2;
RuntimeObject * L_31 = ___value3;
int32_t L_32 = Array_DoBinarySearch_m3657328456(NULL /*static, unused*/, L_28, L_29, L_30, L_31, (RuntimeObject*)NULL, /*hidden argument*/NULL);
return L_32;
}
}
// System.Int32 System.Array::BinarySearch(System.Array,System.Int32,System.Int32,System.Object,System.Collections.IComparer)
extern "C" int32_t Array_BinarySearch_m1987924169 (RuntimeObject * __this /* static, unused */, RuntimeArray * ___array0, int32_t ___index1, int32_t ___length2, RuntimeObject * ___value3, RuntimeObject* ___comparer4, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_BinarySearch_m1987924169_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeArray * L_0 = ___array0;
if (L_0)
{
goto IL_0011;
}
}
{
ArgumentNullException_t1615371798 * L_1 = (ArgumentNullException_t1615371798 *)il2cpp_codegen_object_new(ArgumentNullException_t1615371798_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m1170824041(L_1, _stringLiteral4007973390, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1,Array_BinarySearch_m1987924169_RuntimeMethod_var);
}
IL_0011:
{
RuntimeArray * L_2 = ___array0;
int32_t L_3 = Array_get_Rank_m3448755881(L_2, /*hidden argument*/NULL);
if ((((int32_t)L_3) <= ((int32_t)1)))
{
goto IL_002d;
}
}
{
String_t* L_4 = Locale_GetText_m3374010885(NULL /*static, unused*/, _stringLiteral1684534236, /*hidden argument*/NULL);
RankException_t3812021567 * L_5 = (RankException_t3812021567 *)il2cpp_codegen_object_new(RankException_t3812021567_il2cpp_TypeInfo_var);
RankException__ctor_m2226473861(L_5, L_4, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5,Array_BinarySearch_m1987924169_RuntimeMethod_var);
}
IL_002d:
{
int32_t L_6 = ___index1;
RuntimeArray * L_7 = ___array0;
int32_t L_8 = Array_GetLowerBound_m2045984623(L_7, 0, /*hidden argument*/NULL);
if ((((int32_t)L_6) >= ((int32_t)L_8)))
{
goto IL_004f;
}
}
{
String_t* L_9 = Locale_GetText_m3374010885(NULL /*static, unused*/, _stringLiteral165262286, /*hidden argument*/NULL);
ArgumentOutOfRangeException_t777629997 * L_10 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m282481429(L_10, _stringLiteral797640427, L_9, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_10,Array_BinarySearch_m1987924169_RuntimeMethod_var);
}
IL_004f:
{
int32_t L_11 = ___length2;
if ((((int32_t)L_11) >= ((int32_t)0)))
{
goto IL_006b;
}
}
{
String_t* L_12 = Locale_GetText_m3374010885(NULL /*static, unused*/, _stringLiteral4139011980, /*hidden argument*/NULL);
ArgumentOutOfRangeException_t777629997 * L_13 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m282481429(L_13, _stringLiteral1212500642, L_12, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_13,Array_BinarySearch_m1987924169_RuntimeMethod_var);
}
IL_006b:
{
int32_t L_14 = ___index1;
RuntimeArray * L_15 = ___array0;
int32_t L_16 = Array_GetLowerBound_m2045984623(L_15, 0, /*hidden argument*/NULL);
RuntimeArray * L_17 = ___array0;
int32_t L_18 = Array_GetLength_m2178203778(L_17, 0, /*hidden argument*/NULL);
int32_t L_19 = ___length2;
if ((((int32_t)L_14) <= ((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)L_18)), (int32_t)L_19)))))
{
goto IL_0092;
}
}
{
String_t* L_20 = Locale_GetText_m3374010885(NULL /*static, unused*/, _stringLiteral764441593, /*hidden argument*/NULL);
ArgumentException_t132251570 * L_21 = (ArgumentException_t132251570 *)il2cpp_codegen_object_new(ArgumentException_t132251570_il2cpp_TypeInfo_var);
ArgumentException__ctor_m1312628991(L_21, L_20, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_21,Array_BinarySearch_m1987924169_RuntimeMethod_var);
}
IL_0092:
{
RuntimeArray * L_22 = ___array0;
int32_t L_23 = Array_get_Length_m21610649(L_22, /*hidden argument*/NULL);
if (L_23)
{
goto IL_009f;
}
}
{
return (-1);
}
IL_009f:
{
RuntimeObject* L_24 = ___comparer4;
if (L_24)
{
goto IL_00c7;
}
}
{
RuntimeObject * L_25 = ___value3;
if (!L_25)
{
goto IL_00c7;
}
}
{
RuntimeObject * L_26 = ___value3;
if (((RuntimeObject*)IsInst((RuntimeObject*)L_26, IComparable_t36111218_il2cpp_TypeInfo_var)))
{
goto IL_00c7;
}
}
{
String_t* L_27 = Locale_GetText_m3374010885(NULL /*static, unused*/, _stringLiteral2275762465, /*hidden argument*/NULL);
ArgumentException_t132251570 * L_28 = (ArgumentException_t132251570 *)il2cpp_codegen_object_new(ArgumentException_t132251570_il2cpp_TypeInfo_var);
ArgumentException__ctor_m1312628991(L_28, L_27, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_28,Array_BinarySearch_m1987924169_RuntimeMethod_var);
}
IL_00c7:
{
RuntimeArray * L_29 = ___array0;
int32_t L_30 = ___index1;
int32_t L_31 = ___length2;
RuntimeObject * L_32 = ___value3;
RuntimeObject* L_33 = ___comparer4;
int32_t L_34 = Array_DoBinarySearch_m3657328456(NULL /*static, unused*/, L_29, L_30, L_31, L_32, L_33, /*hidden argument*/NULL);
return L_34;
}
}
// System.Int32 System.Array::DoBinarySearch(System.Array,System.Int32,System.Int32,System.Object,System.Collections.IComparer)
extern "C" int32_t Array_DoBinarySearch_m3657328456 (RuntimeObject * __this /* static, unused */, RuntimeArray * ___array0, int32_t ___index1, int32_t ___length2, RuntimeObject * ___value3, RuntimeObject* ___comparer4, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_DoBinarySearch_m3657328456_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
int32_t V_2 = 0;
int32_t V_3 = 0;
RuntimeObject * V_4 = NULL;
Exception_t * V_5 = NULL;
int32_t V_6 = 0;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = 0;
NO_UNUSED_WARNING (__leave_target);
{
RuntimeObject* L_0 = ___comparer4;
if (L_0)
{
goto IL_000e;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(Comparer_t1912461351_il2cpp_TypeInfo_var);
Comparer_t1912461351 * L_1 = ((Comparer_t1912461351_StaticFields*)il2cpp_codegen_static_fields_for(Comparer_t1912461351_il2cpp_TypeInfo_var))->get_Default_0();
___comparer4 = L_1;
}
IL_000e:
{
int32_t L_2 = ___index1;
V_0 = L_2;
int32_t L_3 = ___index1;
int32_t L_4 = ___length2;
V_1 = ((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)L_4)), (int32_t)1));
V_2 = 0;
}
IL_0018:
try
{ // begin try (depth: 1)
{
goto IL_005b;
}
IL_001d:
{
int32_t L_5 = V_0;
int32_t L_6 = V_1;
int32_t L_7 = V_0;
V_3 = ((int32_t)il2cpp_codegen_add((int32_t)L_5, (int32_t)((int32_t)((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)L_7))/(int32_t)2))));
RuntimeArray * L_8 = ___array0;
int32_t L_9 = V_3;
RuntimeObject * L_10 = Array_GetValueImpl_m3048550958(L_8, L_9, /*hidden argument*/NULL);
V_4 = L_10;
RuntimeObject* L_11 = ___comparer4;
RuntimeObject * L_12 = V_4;
RuntimeObject * L_13 = ___value3;
int32_t L_14 = InterfaceFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Int32 System.Collections.IComparer::Compare(System.Object,System.Object) */, IComparer_t1540313114_il2cpp_TypeInfo_var, L_11, L_12, L_13);
V_2 = L_14;
int32_t L_15 = V_2;
if (L_15)
{
goto IL_0047;
}
}
IL_003f:
{
int32_t L_16 = V_3;
V_6 = L_16;
goto IL_0083;
}
IL_0047:
{
int32_t L_17 = V_2;
if ((((int32_t)L_17) <= ((int32_t)0)))
{
goto IL_0057;
}
}
IL_004e:
{
int32_t L_18 = V_3;
V_1 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_18, (int32_t)1));
goto IL_005b;
}
IL_0057:
{
int32_t L_19 = V_3;
V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_19, (int32_t)1));
}
IL_005b:
{
int32_t L_20 = V_0;
int32_t L_21 = V_1;
if ((((int32_t)L_20) <= ((int32_t)L_21)))
{
goto IL_001d;
}
}
IL_0062:
{
goto IL_0080;
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__exception_local = (Exception_t *)e.ex;
if(il2cpp_codegen_class_is_assignable_from (Exception_t_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex)))
goto CATCH_0067;
throw e;
}
CATCH_0067:
{ // begin catch(System.Exception)
{
V_5 = ((Exception_t *)__exception_local);
String_t* L_22 = Locale_GetText_m3374010885(NULL /*static, unused*/, _stringLiteral525549249, /*hidden argument*/NULL);
Exception_t * L_23 = V_5;
InvalidOperationException_t56020091 * L_24 = (InvalidOperationException_t56020091 *)il2cpp_codegen_object_new(InvalidOperationException_t56020091_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m1685032583(L_24, L_22, L_23, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_24,Array_DoBinarySearch_m3657328456_RuntimeMethod_var);
}
IL_007b:
{
goto IL_0080;
}
} // end catch (depth: 1)
IL_0080:
{
int32_t L_25 = V_0;
return ((~L_25));
}
IL_0083:
{
int32_t L_26 = V_6;
return L_26;
}
}
// System.Void System.Array::Clear(System.Array,System.Int32,System.Int32)
extern "C" void Array_Clear_m2231608178 (RuntimeObject * __this /* static, unused */, RuntimeArray * ___array0, int32_t ___index1, int32_t ___length2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_Clear_m2231608178_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
{
RuntimeArray * L_0 = ___array0;
if (L_0)
{
goto IL_0011;
}
}
{
ArgumentNullException_t1615371798 * L_1 = (ArgumentNullException_t1615371798 *)il2cpp_codegen_object_new(ArgumentNullException_t1615371798_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m1170824041(L_1, _stringLiteral4007973390, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1,Array_Clear_m2231608178_RuntimeMethod_var);
}
IL_0011:
{
int32_t L_2 = ___length2;
if ((((int32_t)L_2) >= ((int32_t)0)))
{
goto IL_0023;
}
}
{
IndexOutOfRangeException_t1578797820 * L_3 = (IndexOutOfRangeException_t1578797820 *)il2cpp_codegen_object_new(IndexOutOfRangeException_t1578797820_il2cpp_TypeInfo_var);
IndexOutOfRangeException__ctor_m3408750441(L_3, _stringLiteral981375421, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3,Array_Clear_m2231608178_RuntimeMethod_var);
}
IL_0023:
{
RuntimeArray * L_4 = ___array0;
int32_t L_5 = Array_GetLowerBound_m2045984623(L_4, 0, /*hidden argument*/NULL);
V_0 = L_5;
int32_t L_6 = ___index1;
int32_t L_7 = V_0;
if ((((int32_t)L_6) >= ((int32_t)L_7)))
{
goto IL_003d;
}
}
{
IndexOutOfRangeException_t1578797820 * L_8 = (IndexOutOfRangeException_t1578797820 *)il2cpp_codegen_object_new(IndexOutOfRangeException_t1578797820_il2cpp_TypeInfo_var);
IndexOutOfRangeException__ctor_m3408750441(L_8, _stringLiteral3960923460, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_8,Array_Clear_m2231608178_RuntimeMethod_var);
}
IL_003d:
{
int32_t L_9 = ___index1;
int32_t L_10 = V_0;
___index1 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_9, (int32_t)L_10));
int32_t L_11 = ___index1;
RuntimeArray * L_12 = ___array0;
int32_t L_13 = Array_get_Length_m21610649(L_12, /*hidden argument*/NULL);
int32_t L_14 = ___length2;
if ((((int32_t)L_11) <= ((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_13, (int32_t)L_14)))))
{
goto IL_005b;
}
}
{
IndexOutOfRangeException_t1578797820 * L_15 = (IndexOutOfRangeException_t1578797820 *)il2cpp_codegen_object_new(IndexOutOfRangeException_t1578797820_il2cpp_TypeInfo_var);
IndexOutOfRangeException__ctor_m3408750441(L_15, _stringLiteral3722491601, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_15,Array_Clear_m2231608178_RuntimeMethod_var);
}
IL_005b:
{
RuntimeArray * L_16 = ___array0;
int32_t L_17 = ___index1;
int32_t L_18 = ___length2;
Array_ClearInternal_m532048538(NULL /*static, unused*/, L_16, L_17, L_18, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array::ClearInternal(System.Array,System.Int32,System.Int32)
extern "C" void Array_ClearInternal_m532048538 (RuntimeObject * __this /* static, unused */, RuntimeArray * ___a0, int32_t ___index1, int32_t ___count2, const RuntimeMethod* method)
{
typedef void (*Array_ClearInternal_m532048538_ftn) (RuntimeArray *, int32_t, int32_t);
using namespace il2cpp::icalls;
((Array_ClearInternal_m532048538_ftn)mscorlib::System::Array::ClearInternal) (___a0, ___index1, ___count2);
}
// System.Object System.Array::Clone()
extern "C" RuntimeObject * Array_Clone_m2672907798 (RuntimeArray * __this, const RuntimeMethod* method)
{
typedef RuntimeObject * (*Array_Clone_m2672907798_ftn) (RuntimeArray *);
using namespace il2cpp::icalls;
return ((Array_Clone_m2672907798_ftn)mscorlib::System::Array::Clone) (__this);
}
// System.Void System.Array::Copy(System.Array,System.Array,System.Int32)
extern "C" void Array_Copy_m1988217701 (RuntimeObject * __this /* static, unused */, RuntimeArray * ___sourceArray0, RuntimeArray * ___destinationArray1, int32_t ___length2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_Copy_m1988217701_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeArray * L_0 = ___sourceArray0;
if (L_0)
{
goto IL_0011;
}
}
{
ArgumentNullException_t1615371798 * L_1 = (ArgumentNullException_t1615371798 *)il2cpp_codegen_object_new(ArgumentNullException_t1615371798_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m1170824041(L_1, _stringLiteral530567594, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1,Array_Copy_m1988217701_RuntimeMethod_var);
}
IL_0011:
{
RuntimeArray * L_2 = ___destinationArray1;
if (L_2)
{
goto IL_0022;
}
}
{
ArgumentNullException_t1615371798 * L_3 = (ArgumentNullException_t1615371798 *)il2cpp_codegen_object_new(ArgumentNullException_t1615371798_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m1170824041(L_3, _stringLiteral1688126764, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3,Array_Copy_m1988217701_RuntimeMethod_var);
}
IL_0022:
{
RuntimeArray * L_4 = ___sourceArray0;
RuntimeArray * L_5 = ___sourceArray0;
int32_t L_6 = Array_GetLowerBound_m2045984623(L_5, 0, /*hidden argument*/NULL);
RuntimeArray * L_7 = ___destinationArray1;
RuntimeArray * L_8 = ___destinationArray1;
int32_t L_9 = Array_GetLowerBound_m2045984623(L_8, 0, /*hidden argument*/NULL);
int32_t L_10 = ___length2;
Array_Copy_m344457298(NULL /*static, unused*/, L_4, L_6, L_7, L_9, L_10, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array::Copy(System.Array,System.Int32,System.Array,System.Int32,System.Int32)
extern "C" void Array_Copy_m344457298 (RuntimeObject * __this /* static, unused */, RuntimeArray * ___sourceArray0, int32_t ___sourceIndex1, RuntimeArray * ___destinationArray2, int32_t ___destinationIndex3, int32_t ___length4, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_Copy_m344457298_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
String_t* V_2 = NULL;
Type_t * V_3 = NULL;
Type_t * V_4 = NULL;
int32_t V_5 = 0;
RuntimeObject * V_6 = NULL;
int32_t V_7 = 0;
RuntimeObject * V_8 = NULL;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = 0;
NO_UNUSED_WARNING (__leave_target);
{
RuntimeArray * L_0 = ___sourceArray0;
if (L_0)
{
goto IL_0011;
}
}
{
ArgumentNullException_t1615371798 * L_1 = (ArgumentNullException_t1615371798 *)il2cpp_codegen_object_new(ArgumentNullException_t1615371798_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m1170824041(L_1, _stringLiteral530567594, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1,Array_Copy_m344457298_RuntimeMethod_var);
}
IL_0011:
{
RuntimeArray * L_2 = ___destinationArray2;
if (L_2)
{
goto IL_0022;
}
}
{
ArgumentNullException_t1615371798 * L_3 = (ArgumentNullException_t1615371798 *)il2cpp_codegen_object_new(ArgumentNullException_t1615371798_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m1170824041(L_3, _stringLiteral1688126764, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3,Array_Copy_m344457298_RuntimeMethod_var);
}
IL_0022:
{
int32_t L_4 = ___length4;
if ((((int32_t)L_4) >= ((int32_t)0)))
{
goto IL_003f;
}
}
{
String_t* L_5 = Locale_GetText_m3374010885(NULL /*static, unused*/, _stringLiteral4139011980, /*hidden argument*/NULL);
ArgumentOutOfRangeException_t777629997 * L_6 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m282481429(L_6, _stringLiteral1212500642, L_5, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_6,Array_Copy_m344457298_RuntimeMethod_var);
}
IL_003f:
{
int32_t L_7 = ___sourceIndex1;
if ((((int32_t)L_7) >= ((int32_t)0)))
{
goto IL_005b;
}
}
{
String_t* L_8 = Locale_GetText_m3374010885(NULL /*static, unused*/, _stringLiteral4139011980, /*hidden argument*/NULL);
ArgumentOutOfRangeException_t777629997 * L_9 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m282481429(L_9, _stringLiteral4004074309, L_8, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_9,Array_Copy_m344457298_RuntimeMethod_var);
}
IL_005b:
{
int32_t L_10 = ___destinationIndex3;
if ((((int32_t)L_10) >= ((int32_t)0)))
{
goto IL_0077;
}
}
{
String_t* L_11 = Locale_GetText_m3374010885(NULL /*static, unused*/, _stringLiteral4139011980, /*hidden argument*/NULL);
ArgumentOutOfRangeException_t777629997 * L_12 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m282481429(L_12, _stringLiteral1511102372, L_11, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_12,Array_Copy_m344457298_RuntimeMethod_var);
}
IL_0077:
{
RuntimeArray * L_13 = ___sourceArray0;
int32_t L_14 = ___sourceIndex1;
RuntimeArray * L_15 = ___destinationArray2;
int32_t L_16 = ___destinationIndex3;
int32_t L_17 = ___length4;
bool L_18 = Array_FastCopy_m1662204957(NULL /*static, unused*/, L_13, L_14, L_15, L_16, L_17, /*hidden argument*/NULL);
if (!L_18)
{
goto IL_0088;
}
}
{
return;
}
IL_0088:
{
int32_t L_19 = ___sourceIndex1;
RuntimeArray * L_20 = ___sourceArray0;
int32_t L_21 = Array_GetLowerBound_m2045984623(L_20, 0, /*hidden argument*/NULL);
V_0 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)L_21));
int32_t L_22 = ___destinationIndex3;
RuntimeArray * L_23 = ___destinationArray2;
int32_t L_24 = Array_GetLowerBound_m2045984623(L_23, 0, /*hidden argument*/NULL);
V_1 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_22, (int32_t)L_24));
int32_t L_25 = V_0;
RuntimeArray * L_26 = ___sourceArray0;
int32_t L_27 = Array_get_Length_m21610649(L_26, /*hidden argument*/NULL);
int32_t L_28 = ___length4;
if ((((int32_t)L_25) <= ((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_27, (int32_t)L_28)))))
{
goto IL_00b6;
}
}
{
ArgumentException_t132251570 * L_29 = (ArgumentException_t132251570 *)il2cpp_codegen_object_new(ArgumentException_t132251570_il2cpp_TypeInfo_var);
ArgumentException__ctor_m1312628991(L_29, _stringLiteral1212500642, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_29,Array_Copy_m344457298_RuntimeMethod_var);
}
IL_00b6:
{
int32_t L_30 = V_1;
RuntimeArray * L_31 = ___destinationArray2;
int32_t L_32 = Array_get_Length_m21610649(L_31, /*hidden argument*/NULL);
int32_t L_33 = ___length4;
if ((((int32_t)L_30) <= ((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_32, (int32_t)L_33)))))
{
goto IL_00d7;
}
}
{
V_2 = _stringLiteral17874541;
String_t* L_34 = V_2;
IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
String_t* L_35 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_2();
ArgumentException_t132251570 * L_36 = (ArgumentException_t132251570 *)il2cpp_codegen_object_new(ArgumentException_t132251570_il2cpp_TypeInfo_var);
ArgumentException__ctor_m1216717135(L_36, L_34, L_35, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_36,Array_Copy_m344457298_RuntimeMethod_var);
}
IL_00d7:
{
RuntimeArray * L_37 = ___sourceArray0;
int32_t L_38 = Array_get_Rank_m3448755881(L_37, /*hidden argument*/NULL);
RuntimeArray * L_39 = ___destinationArray2;
int32_t L_40 = Array_get_Rank_m3448755881(L_39, /*hidden argument*/NULL);
if ((((int32_t)L_38) == ((int32_t)L_40)))
{
goto IL_00f8;
}
}
{
String_t* L_41 = Locale_GetText_m3374010885(NULL /*static, unused*/, _stringLiteral368171286, /*hidden argument*/NULL);
RankException_t3812021567 * L_42 = (RankException_t3812021567 *)il2cpp_codegen_object_new(RankException_t3812021567_il2cpp_TypeInfo_var);
RankException__ctor_m2226473861(L_42, L_41, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_42,Array_Copy_m344457298_RuntimeMethod_var);
}
IL_00f8:
{
RuntimeArray * L_43 = ___sourceArray0;
Type_t * L_44 = Object_GetType_m88164663(L_43, /*hidden argument*/NULL);
Type_t * L_45 = VirtFuncInvoker0< Type_t * >::Invoke(42 /* System.Type System.Type::GetElementType() */, L_44);
V_3 = L_45;
RuntimeArray * L_46 = ___destinationArray2;
Type_t * L_47 = Object_GetType_m88164663(L_46, /*hidden argument*/NULL);
Type_t * L_48 = VirtFuncInvoker0< Type_t * >::Invoke(42 /* System.Type System.Type::GetElementType() */, L_47);
V_4 = L_48;
RuntimeArray * L_49 = ___sourceArray0;
RuntimeArray * L_50 = ___destinationArray2;
bool L_51 = Object_ReferenceEquals_m610702577(NULL /*static, unused*/, L_49, L_50, /*hidden argument*/NULL);
if (!L_51)
{
goto IL_0124;
}
}
{
int32_t L_52 = V_0;
int32_t L_53 = V_1;
if ((((int32_t)L_52) <= ((int32_t)L_53)))
{
goto IL_01a0;
}
}
IL_0124:
{
V_5 = 0;
goto IL_0192;
}
IL_012c:
{
RuntimeArray * L_54 = ___sourceArray0;
int32_t L_55 = V_0;
int32_t L_56 = V_5;
RuntimeObject * L_57 = Array_GetValueImpl_m3048550958(L_54, ((int32_t)il2cpp_codegen_add((int32_t)L_55, (int32_t)L_56)), /*hidden argument*/NULL);
V_6 = L_57;
}
IL_0138:
try
{ // begin try (depth: 1)
RuntimeArray * L_58 = ___destinationArray2;
RuntimeObject * L_59 = V_6;
int32_t L_60 = V_1;
int32_t L_61 = V_5;
Array_SetValueImpl_m2791230289(L_58, L_59, ((int32_t)il2cpp_codegen_add((int32_t)L_60, (int32_t)L_61)), /*hidden argument*/NULL);
goto IL_018c;
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__exception_local = (Exception_t *)e.ex;
if(il2cpp_codegen_class_is_assignable_from (RuntimeObject_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex)))
goto CATCH_0149;
throw e;
}
CATCH_0149:
{ // begin catch(System.Object)
{
Type_t * L_62 = V_3;
RuntimeTypeHandle_t3027515415 L_63 = { reinterpret_cast<intptr_t> (RuntimeObject_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_64 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, L_63, /*hidden argument*/NULL);
bool L_65 = Type_Equals_m709225487(L_62, L_64, /*hidden argument*/NULL);
if (!L_65)
{
goto IL_0165;
}
}
IL_015f:
{
InvalidCastException_t3927145244 * L_66 = (InvalidCastException_t3927145244 *)il2cpp_codegen_object_new(InvalidCastException_t3927145244_il2cpp_TypeInfo_var);
InvalidCastException__ctor_m1807554410(L_66, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_66,Array_Copy_m344457298_RuntimeMethod_var);
}
IL_0165:
{
String_t* L_67 = Locale_GetText_m3374010885(NULL /*static, unused*/, _stringLiteral1039466911, /*hidden argument*/NULL);
Type_t * L_68 = V_3;
String_t* L_69 = VirtFuncInvoker0< String_t* >::Invoke(18 /* System.String System.Type::get_FullName() */, L_68);
Type_t * L_70 = V_4;
String_t* L_71 = VirtFuncInvoker0< String_t* >::Invoke(18 /* System.String System.Type::get_FullName() */, L_70);
IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
String_t* L_72 = String_Format_m2556382932(NULL /*static, unused*/, L_67, L_69, L_71, /*hidden argument*/NULL);
ArrayTypeMismatchException_t2342549375 * L_73 = (ArrayTypeMismatchException_t2342549375 *)il2cpp_codegen_object_new(ArrayTypeMismatchException_t2342549375_il2cpp_TypeInfo_var);
ArrayTypeMismatchException__ctor_m231257638(L_73, L_72, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_73,Array_Copy_m344457298_RuntimeMethod_var);
}
IL_0187:
{
goto IL_018c;
}
} // end catch (depth: 1)
IL_018c:
{
int32_t L_74 = V_5;
V_5 = ((int32_t)il2cpp_codegen_add((int32_t)L_74, (int32_t)1));
}
IL_0192:
{
int32_t L_75 = V_5;
int32_t L_76 = ___length4;
if ((((int32_t)L_75) < ((int32_t)L_76)))
{
goto IL_012c;
}
}
{
goto IL_0219;
}
IL_01a0:
{
int32_t L_77 = ___length4;
V_7 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_77, (int32_t)1));
goto IL_0211;
}
IL_01ab:
{
RuntimeArray * L_78 = ___sourceArray0;
int32_t L_79 = V_0;
int32_t L_80 = V_7;
RuntimeObject * L_81 = Array_GetValueImpl_m3048550958(L_78, ((int32_t)il2cpp_codegen_add((int32_t)L_79, (int32_t)L_80)), /*hidden argument*/NULL);
V_8 = L_81;
}
IL_01b7:
try
{ // begin try (depth: 1)
RuntimeArray * L_82 = ___destinationArray2;
RuntimeObject * L_83 = V_8;
int32_t L_84 = V_1;
int32_t L_85 = V_7;
Array_SetValueImpl_m2791230289(L_82, L_83, ((int32_t)il2cpp_codegen_add((int32_t)L_84, (int32_t)L_85)), /*hidden argument*/NULL);
goto IL_020b;
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__exception_local = (Exception_t *)e.ex;
if(il2cpp_codegen_class_is_assignable_from (RuntimeObject_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex)))
goto CATCH_01c8;
throw e;
}
CATCH_01c8:
{ // begin catch(System.Object)
{
Type_t * L_86 = V_3;
RuntimeTypeHandle_t3027515415 L_87 = { reinterpret_cast<intptr_t> (RuntimeObject_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_88 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, L_87, /*hidden argument*/NULL);
bool L_89 = Type_Equals_m709225487(L_86, L_88, /*hidden argument*/NULL);
if (!L_89)
{
goto IL_01e4;
}
}
IL_01de:
{
InvalidCastException_t3927145244 * L_90 = (InvalidCastException_t3927145244 *)il2cpp_codegen_object_new(InvalidCastException_t3927145244_il2cpp_TypeInfo_var);
InvalidCastException__ctor_m1807554410(L_90, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_90,Array_Copy_m344457298_RuntimeMethod_var);
}
IL_01e4:
{
String_t* L_91 = Locale_GetText_m3374010885(NULL /*static, unused*/, _stringLiteral1039466911, /*hidden argument*/NULL);
Type_t * L_92 = V_3;
String_t* L_93 = VirtFuncInvoker0< String_t* >::Invoke(18 /* System.String System.Type::get_FullName() */, L_92);
Type_t * L_94 = V_4;
String_t* L_95 = VirtFuncInvoker0< String_t* >::Invoke(18 /* System.String System.Type::get_FullName() */, L_94);
IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
String_t* L_96 = String_Format_m2556382932(NULL /*static, unused*/, L_91, L_93, L_95, /*hidden argument*/NULL);
ArrayTypeMismatchException_t2342549375 * L_97 = (ArrayTypeMismatchException_t2342549375 *)il2cpp_codegen_object_new(ArrayTypeMismatchException_t2342549375_il2cpp_TypeInfo_var);
ArrayTypeMismatchException__ctor_m231257638(L_97, L_96, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_97,Array_Copy_m344457298_RuntimeMethod_var);
}
IL_0206:
{
goto IL_020b;
}
} // end catch (depth: 1)
IL_020b:
{
int32_t L_98 = V_7;
V_7 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_98, (int32_t)1));
}
IL_0211:
{
int32_t L_99 = V_7;
if ((((int32_t)L_99) >= ((int32_t)0)))
{
goto IL_01ab;
}
}
IL_0219:
{
return;
}
}
// System.Void System.Array::Copy(System.Array,System.Int64,System.Array,System.Int64,System.Int64)
extern "C" void Array_Copy_m514679699 (RuntimeObject * __this /* static, unused */, RuntimeArray * ___sourceArray0, int64_t ___sourceIndex1, RuntimeArray * ___destinationArray2, int64_t ___destinationIndex3, int64_t ___length4, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_Copy_m514679699_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeArray * L_0 = ___sourceArray0;
if (L_0)
{
goto IL_0011;
}
}
{
ArgumentNullException_t1615371798 * L_1 = (ArgumentNullException_t1615371798 *)il2cpp_codegen_object_new(ArgumentNullException_t1615371798_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m1170824041(L_1, _stringLiteral530567594, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1,Array_Copy_m514679699_RuntimeMethod_var);
}
IL_0011:
{
RuntimeArray * L_2 = ___destinationArray2;
if (L_2)
{
goto IL_0022;
}
}
{
ArgumentNullException_t1615371798 * L_3 = (ArgumentNullException_t1615371798 *)il2cpp_codegen_object_new(ArgumentNullException_t1615371798_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m1170824041(L_3, _stringLiteral1688126764, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3,Array_Copy_m514679699_RuntimeMethod_var);
}
IL_0022:
{
int64_t L_4 = ___sourceIndex1;
if ((((int64_t)L_4) < ((int64_t)(((int64_t)((int64_t)((int32_t)-2147483648LL)))))))
{
goto IL_003a;
}
}
{
int64_t L_5 = ___sourceIndex1;
if ((((int64_t)L_5) <= ((int64_t)(((int64_t)((int64_t)((int32_t)2147483647LL)))))))
{
goto IL_004f;
}
}
IL_003a:
{
String_t* L_6 = Locale_GetText_m3374010885(NULL /*static, unused*/, _stringLiteral2620667082, /*hidden argument*/NULL);
ArgumentOutOfRangeException_t777629997 * L_7 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m282481429(L_7, _stringLiteral4004074309, L_6, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_7,Array_Copy_m514679699_RuntimeMethod_var);
}
IL_004f:
{
int64_t L_8 = ___destinationIndex3;
if ((((int64_t)L_8) < ((int64_t)(((int64_t)((int64_t)((int32_t)-2147483648LL)))))))
{
goto IL_0067;
}
}
{
int64_t L_9 = ___destinationIndex3;
if ((((int64_t)L_9) <= ((int64_t)(((int64_t)((int64_t)((int32_t)2147483647LL)))))))
{
goto IL_007c;
}
}
IL_0067:
{
String_t* L_10 = Locale_GetText_m3374010885(NULL /*static, unused*/, _stringLiteral2620667082, /*hidden argument*/NULL);
ArgumentOutOfRangeException_t777629997 * L_11 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m282481429(L_11, _stringLiteral1511102372, L_10, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_11,Array_Copy_m514679699_RuntimeMethod_var);
}
IL_007c:
{
int64_t L_12 = ___length4;
if ((((int64_t)L_12) < ((int64_t)(((int64_t)((int64_t)0))))))
{
goto IL_0092;
}
}
{
int64_t L_13 = ___length4;
if ((((int64_t)L_13) <= ((int64_t)(((int64_t)((int64_t)((int32_t)2147483647LL)))))))
{
goto IL_00a7;
}
}
IL_0092:
{
String_t* L_14 = Locale_GetText_m3374010885(NULL /*static, unused*/, _stringLiteral1356516794, /*hidden argument*/NULL);
ArgumentOutOfRangeException_t777629997 * L_15 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m282481429(L_15, _stringLiteral1212500642, L_14, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_15,Array_Copy_m514679699_RuntimeMethod_var);
}
IL_00a7:
{
RuntimeArray * L_16 = ___sourceArray0;
int64_t L_17 = ___sourceIndex1;
RuntimeArray * L_18 = ___destinationArray2;
int64_t L_19 = ___destinationIndex3;
int64_t L_20 = ___length4;
Array_Copy_m344457298(NULL /*static, unused*/, L_16, (((int32_t)((int32_t)L_17))), L_18, (((int32_t)((int32_t)L_19))), (((int32_t)((int32_t)L_20))), /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array::Copy(System.Array,System.Array,System.Int64)
extern "C" void Array_Copy_m1988610914 (RuntimeObject * __this /* static, unused */, RuntimeArray * ___sourceArray0, RuntimeArray * ___destinationArray1, int64_t ___length2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_Copy_m1988610914_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int64_t L_0 = ___length2;
if ((((int64_t)L_0) < ((int64_t)(((int64_t)((int64_t)0))))))
{
goto IL_0014;
}
}
{
int64_t L_1 = ___length2;
if ((((int64_t)L_1) <= ((int64_t)(((int64_t)((int64_t)((int32_t)2147483647LL)))))))
{
goto IL_0029;
}
}
IL_0014:
{
String_t* L_2 = Locale_GetText_m3374010885(NULL /*static, unused*/, _stringLiteral1356516794, /*hidden argument*/NULL);
ArgumentOutOfRangeException_t777629997 * L_3 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m282481429(L_3, _stringLiteral1212500642, L_2, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3,Array_Copy_m1988610914_RuntimeMethod_var);
}
IL_0029:
{
RuntimeArray * L_4 = ___sourceArray0;
RuntimeArray * L_5 = ___destinationArray1;
int64_t L_6 = ___length2;
Array_Copy_m1988217701(NULL /*static, unused*/, L_4, L_5, (((int32_t)((int32_t)L_6))), /*hidden argument*/NULL);
return;
}
}
// System.Int32 System.Array::IndexOf(System.Array,System.Object)
extern "C" int32_t Array_IndexOf_m1714973386 (RuntimeObject * __this /* static, unused */, RuntimeArray * ___array0, RuntimeObject * ___value1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_IndexOf_m1714973386_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeArray * L_0 = ___array0;
if (L_0)
{
goto IL_0011;
}
}
{
ArgumentNullException_t1615371798 * L_1 = (ArgumentNullException_t1615371798 *)il2cpp_codegen_object_new(ArgumentNullException_t1615371798_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m1170824041(L_1, _stringLiteral4007973390, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1,Array_IndexOf_m1714973386_RuntimeMethod_var);
}
IL_0011:
{
RuntimeArray * L_2 = ___array0;
RuntimeObject * L_3 = ___value1;
RuntimeArray * L_4 = ___array0;
int32_t L_5 = Array_get_Length_m21610649(L_4, /*hidden argument*/NULL);
int32_t L_6 = Array_IndexOf_m2805394078(NULL /*static, unused*/, L_2, L_3, 0, L_5, /*hidden argument*/NULL);
return L_6;
}
}
// System.Int32 System.Array::IndexOf(System.Array,System.Object,System.Int32)
extern "C" int32_t Array_IndexOf_m2527777724 (RuntimeObject * __this /* static, unused */, RuntimeArray * ___array0, RuntimeObject * ___value1, int32_t ___startIndex2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_IndexOf_m2527777724_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeArray * L_0 = ___array0;
if (L_0)
{
goto IL_0011;
}
}
{
ArgumentNullException_t1615371798 * L_1 = (ArgumentNullException_t1615371798 *)il2cpp_codegen_object_new(ArgumentNullException_t1615371798_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m1170824041(L_1, _stringLiteral4007973390, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1,Array_IndexOf_m2527777724_RuntimeMethod_var);
}
IL_0011:
{
RuntimeArray * L_2 = ___array0;
RuntimeObject * L_3 = ___value1;
int32_t L_4 = ___startIndex2;
RuntimeArray * L_5 = ___array0;
int32_t L_6 = Array_get_Length_m21610649(L_5, /*hidden argument*/NULL);
int32_t L_7 = ___startIndex2;
int32_t L_8 = Array_IndexOf_m2805394078(NULL /*static, unused*/, L_2, L_3, L_4, ((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)L_7)), /*hidden argument*/NULL);
return L_8;
}
}
// System.Int32 System.Array::IndexOf(System.Array,System.Object,System.Int32,System.Int32)
extern "C" int32_t Array_IndexOf_m2805394078 (RuntimeObject * __this /* static, unused */, RuntimeArray * ___array0, RuntimeObject * ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_IndexOf_m2805394078_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
{
RuntimeArray * L_0 = ___array0;
if (L_0)
{
goto IL_0011;
}
}
{
ArgumentNullException_t1615371798 * L_1 = (ArgumentNullException_t1615371798 *)il2cpp_codegen_object_new(ArgumentNullException_t1615371798_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m1170824041(L_1, _stringLiteral4007973390, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1,Array_IndexOf_m2805394078_RuntimeMethod_var);
}
IL_0011:
{
RuntimeArray * L_2 = ___array0;
int32_t L_3 = Array_get_Rank_m3448755881(L_2, /*hidden argument*/NULL);
if ((((int32_t)L_3) <= ((int32_t)1)))
{
goto IL_002d;
}
}
{
String_t* L_4 = Locale_GetText_m3374010885(NULL /*static, unused*/, _stringLiteral1684534236, /*hidden argument*/NULL);
RankException_t3812021567 * L_5 = (RankException_t3812021567 *)il2cpp_codegen_object_new(RankException_t3812021567_il2cpp_TypeInfo_var);
RankException__ctor_m2226473861(L_5, L_4, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5,Array_IndexOf_m2805394078_RuntimeMethod_var);
}
IL_002d:
{
int32_t L_6 = ___count3;
if ((((int32_t)L_6) < ((int32_t)0)))
{
goto IL_0052;
}
}
{
int32_t L_7 = ___startIndex2;
RuntimeArray * L_8 = ___array0;
int32_t L_9 = Array_GetLowerBound_m2045984623(L_8, 0, /*hidden argument*/NULL);
if ((((int32_t)L_7) < ((int32_t)L_9)))
{
goto IL_0052;
}
}
{
int32_t L_10 = ___startIndex2;
RuntimeArray * L_11 = ___array0;
int32_t L_12 = Array_GetUpperBound_m4018715963(L_11, 0, /*hidden argument*/NULL);
int32_t L_13 = ___count3;
if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_10, (int32_t)1))) <= ((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_12, (int32_t)L_13)))))
{
goto IL_0058;
}
}
IL_0052:
{
ArgumentOutOfRangeException_t777629997 * L_14 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m2047740448(L_14, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_14,Array_IndexOf_m2805394078_RuntimeMethod_var);
}
IL_0058:
{
int32_t L_15 = ___startIndex2;
int32_t L_16 = ___count3;
V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_15, (int32_t)L_16));
int32_t L_17 = ___startIndex2;
V_1 = L_17;
goto IL_007b;
}
IL_0063:
{
RuntimeArray * L_18 = ___array0;
int32_t L_19 = V_1;
RuntimeObject * L_20 = Array_GetValueImpl_m3048550958(L_18, L_19, /*hidden argument*/NULL);
RuntimeObject * L_21 = ___value1;
bool L_22 = Object_Equals_m1397037629(NULL /*static, unused*/, L_20, L_21, /*hidden argument*/NULL);
if (!L_22)
{
goto IL_0077;
}
}
{
int32_t L_23 = V_1;
return L_23;
}
IL_0077:
{
int32_t L_24 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_24, (int32_t)1));
}
IL_007b:
{
int32_t L_25 = V_1;
int32_t L_26 = V_0;
if ((((int32_t)L_25) < ((int32_t)L_26)))
{
goto IL_0063;
}
}
{
RuntimeArray * L_27 = ___array0;
int32_t L_28 = Array_GetLowerBound_m2045984623(L_27, 0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_28, (int32_t)1));
}
}
// System.Void System.Array::Initialize()
extern "C" void Array_Initialize_m3004991267 (RuntimeArray * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Int32 System.Array::LastIndexOf(System.Array,System.Object)
extern "C" int32_t Array_LastIndexOf_m1426784917 (RuntimeObject * __this /* static, unused */, RuntimeArray * ___array0, RuntimeObject * ___value1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_LastIndexOf_m1426784917_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeArray * L_0 = ___array0;
if (L_0)
{
goto IL_0011;
}
}
{
ArgumentNullException_t1615371798 * L_1 = (ArgumentNullException_t1615371798 *)il2cpp_codegen_object_new(ArgumentNullException_t1615371798_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m1170824041(L_1, _stringLiteral4007973390, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1,Array_LastIndexOf_m1426784917_RuntimeMethod_var);
}
IL_0011:
{
RuntimeArray * L_2 = ___array0;
int32_t L_3 = Array_get_Length_m21610649(L_2, /*hidden argument*/NULL);
if (L_3)
{
goto IL_0026;
}
}
{
RuntimeArray * L_4 = ___array0;
int32_t L_5 = Array_GetLowerBound_m2045984623(L_4, 0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_5, (int32_t)1));
}
IL_0026:
{
RuntimeArray * L_6 = ___array0;
RuntimeObject * L_7 = ___value1;
RuntimeArray * L_8 = ___array0;
int32_t L_9 = Array_get_Length_m21610649(L_8, /*hidden argument*/NULL);
int32_t L_10 = Array_LastIndexOf_m3999123122(NULL /*static, unused*/, L_6, L_7, ((int32_t)il2cpp_codegen_subtract((int32_t)L_9, (int32_t)1)), /*hidden argument*/NULL);
return L_10;
}
}
// System.Int32 System.Array::LastIndexOf(System.Array,System.Object,System.Int32)
extern "C" int32_t Array_LastIndexOf_m3999123122 (RuntimeObject * __this /* static, unused */, RuntimeArray * ___array0, RuntimeObject * ___value1, int32_t ___startIndex2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_LastIndexOf_m3999123122_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeArray * L_0 = ___array0;
if (L_0)
{
goto IL_0011;
}
}
{
ArgumentNullException_t1615371798 * L_1 = (ArgumentNullException_t1615371798 *)il2cpp_codegen_object_new(ArgumentNullException_t1615371798_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m1170824041(L_1, _stringLiteral4007973390, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1,Array_LastIndexOf_m3999123122_RuntimeMethod_var);
}
IL_0011:
{
RuntimeArray * L_2 = ___array0;
RuntimeObject * L_3 = ___value1;
int32_t L_4 = ___startIndex2;
int32_t L_5 = ___startIndex2;
RuntimeArray * L_6 = ___array0;
int32_t L_7 = Array_GetLowerBound_m2045984623(L_6, 0, /*hidden argument*/NULL);
int32_t L_8 = Array_LastIndexOf_m707980579(NULL /*static, unused*/, L_2, L_3, L_4, ((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_5, (int32_t)L_7)), (int32_t)1)), /*hidden argument*/NULL);
return L_8;
}
}
// System.Int32 System.Array::LastIndexOf(System.Array,System.Object,System.Int32,System.Int32)
extern "C" int32_t Array_LastIndexOf_m707980579 (RuntimeObject * __this /* static, unused */, RuntimeArray * ___array0, RuntimeObject * ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_LastIndexOf_m707980579_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
{
RuntimeArray * L_0 = ___array0;
if (L_0)
{
goto IL_0011;
}
}
{
ArgumentNullException_t1615371798 * L_1 = (ArgumentNullException_t1615371798 *)il2cpp_codegen_object_new(ArgumentNullException_t1615371798_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m1170824041(L_1, _stringLiteral4007973390, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1,Array_LastIndexOf_m707980579_RuntimeMethod_var);
}
IL_0011:
{
RuntimeArray * L_2 = ___array0;
int32_t L_3 = Array_get_Rank_m3448755881(L_2, /*hidden argument*/NULL);
if ((((int32_t)L_3) <= ((int32_t)1)))
{
goto IL_002d;
}
}
{
String_t* L_4 = Locale_GetText_m3374010885(NULL /*static, unused*/, _stringLiteral1684534236, /*hidden argument*/NULL);
RankException_t3812021567 * L_5 = (RankException_t3812021567 *)il2cpp_codegen_object_new(RankException_t3812021567_il2cpp_TypeInfo_var);
RankException__ctor_m2226473861(L_5, L_4, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5,Array_LastIndexOf_m707980579_RuntimeMethod_var);
}
IL_002d:
{
RuntimeArray * L_6 = ___array0;
int32_t L_7 = Array_GetLowerBound_m2045984623(L_6, 0, /*hidden argument*/NULL);
V_0 = L_7;
RuntimeArray * L_8 = ___array0;
int32_t L_9 = Array_get_Length_m21610649(L_8, /*hidden argument*/NULL);
if (L_9)
{
goto IL_0044;
}
}
{
int32_t L_10 = V_0;
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_10, (int32_t)1));
}
IL_0044:
{
int32_t L_11 = ___count3;
if ((((int32_t)L_11) < ((int32_t)0)))
{
goto IL_006a;
}
}
{
int32_t L_12 = ___startIndex2;
int32_t L_13 = V_0;
if ((((int32_t)L_12) < ((int32_t)L_13)))
{
goto IL_006a;
}
}
{
int32_t L_14 = ___startIndex2;
RuntimeArray * L_15 = ___array0;
int32_t L_16 = Array_GetUpperBound_m4018715963(L_15, 0, /*hidden argument*/NULL);
if ((((int32_t)L_14) > ((int32_t)L_16)))
{
goto IL_006a;
}
}
{
int32_t L_17 = ___startIndex2;
int32_t L_18 = ___count3;
int32_t L_19 = V_0;
if ((((int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_17, (int32_t)L_18)), (int32_t)1))) >= ((int32_t)L_19)))
{
goto IL_0070;
}
}
IL_006a:
{
ArgumentOutOfRangeException_t777629997 * L_20 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m2047740448(L_20, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_20,Array_LastIndexOf_m707980579_RuntimeMethod_var);
}
IL_0070:
{
int32_t L_21 = ___startIndex2;
V_1 = L_21;
goto IL_008f;
}
IL_0077:
{
RuntimeArray * L_22 = ___array0;
int32_t L_23 = V_1;
RuntimeObject * L_24 = Array_GetValueImpl_m3048550958(L_22, L_23, /*hidden argument*/NULL);
RuntimeObject * L_25 = ___value1;
bool L_26 = Object_Equals_m1397037629(NULL /*static, unused*/, L_24, L_25, /*hidden argument*/NULL);
if (!L_26)
{
goto IL_008b;
}
}
{
int32_t L_27 = V_1;
return L_27;
}
IL_008b:
{
int32_t L_28 = V_1;
V_1 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_28, (int32_t)1));
}
IL_008f:
{
int32_t L_29 = V_1;
int32_t L_30 = ___startIndex2;
int32_t L_31 = ___count3;
if ((((int32_t)L_29) >= ((int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_30, (int32_t)L_31)), (int32_t)1)))))
{
goto IL_0077;
}
}
{
int32_t L_32 = V_0;
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_32, (int32_t)1));
}
}
// System.Array/Swapper System.Array::get_swapper(System.Array)
extern "C" Swapper_t2822380397 * Array_get_swapper_m3428716670 (RuntimeObject * __this /* static, unused */, RuntimeArray * ___array0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_get_swapper_m3428716670_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeArray * L_0 = ___array0;
if (!((Int32U5BU5D_t385246372*)IsInst((RuntimeObject*)L_0, Int32U5BU5D_t385246372_il2cpp_TypeInfo_var)))
{
goto IL_0018;
}
}
{
RuntimeArray * L_1 = ___array0;
intptr_t L_2 = (intptr_t)Array_int_swapper_m3830919681_RuntimeMethod_var;
Swapper_t2822380397 * L_3 = (Swapper_t2822380397 *)il2cpp_codegen_object_new(Swapper_t2822380397_il2cpp_TypeInfo_var);
Swapper__ctor_m3019156154(L_3, L_1, L_2, /*hidden argument*/NULL);
return L_3;
}
IL_0018:
{
RuntimeArray * L_4 = ___array0;
if (!((DoubleU5BU5D_t3413330114*)IsInst((RuntimeObject*)L_4, DoubleU5BU5D_t3413330114_il2cpp_TypeInfo_var)))
{
goto IL_0030;
}
}
{
RuntimeArray * L_5 = ___array0;
intptr_t L_6 = (intptr_t)Array_double_swapper_m4135376022_RuntimeMethod_var;
Swapper_t2822380397 * L_7 = (Swapper_t2822380397 *)il2cpp_codegen_object_new(Swapper_t2822380397_il2cpp_TypeInfo_var);
Swapper__ctor_m3019156154(L_7, L_5, L_6, /*hidden argument*/NULL);
return L_7;
}
IL_0030:
{
RuntimeArray * L_8 = ___array0;
if (!((ObjectU5BU5D_t2843939325*)IsInst((RuntimeObject*)L_8, ObjectU5BU5D_t2843939325_il2cpp_TypeInfo_var)))
{
goto IL_0048;
}
}
{
RuntimeArray * L_9 = ___array0;
intptr_t L_10 = (intptr_t)Array_obj_swapper_m472969017_RuntimeMethod_var;
Swapper_t2822380397 * L_11 = (Swapper_t2822380397 *)il2cpp_codegen_object_new(Swapper_t2822380397_il2cpp_TypeInfo_var);
Swapper__ctor_m3019156154(L_11, L_9, L_10, /*hidden argument*/NULL);
return L_11;
}
IL_0048:
{
RuntimeArray * L_12 = ___array0;
intptr_t L_13 = (intptr_t)Array_slow_swapper_m4116724811_RuntimeMethod_var;
Swapper_t2822380397 * L_14 = (Swapper_t2822380397 *)il2cpp_codegen_object_new(Swapper_t2822380397_il2cpp_TypeInfo_var);
Swapper__ctor_m3019156154(L_14, L_12, L_13, /*hidden argument*/NULL);
return L_14;
}
}
// System.Void System.Array::Reverse(System.Array)
extern "C" void Array_Reverse_m3714848183 (RuntimeObject * __this /* static, unused */, RuntimeArray * ___array0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_Reverse_m3714848183_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeArray * L_0 = ___array0;
if (L_0)
{
goto IL_0011;
}
}
{
ArgumentNullException_t1615371798 * L_1 = (ArgumentNullException_t1615371798 *)il2cpp_codegen_object_new(ArgumentNullException_t1615371798_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m1170824041(L_1, _stringLiteral4007973390, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1,Array_Reverse_m3714848183_RuntimeMethod_var);
}
IL_0011:
{
RuntimeArray * L_2 = ___array0;
RuntimeArray * L_3 = ___array0;
int32_t L_4 = Array_GetLowerBound_m2045984623(L_3, 0, /*hidden argument*/NULL);
RuntimeArray * L_5 = ___array0;
int32_t L_6 = Array_GetLength_m2178203778(L_5, 0, /*hidden argument*/NULL);
Array_Reverse_m816310962(NULL /*static, unused*/, L_2, L_4, L_6, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array::Reverse(System.Array,System.Int32,System.Int32)
extern "C" void Array_Reverse_m816310962 (RuntimeObject * __this /* static, unused */, RuntimeArray * ___array0, int32_t ___index1, int32_t ___length2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_Reverse_m816310962_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
ObjectU5BU5D_t2843939325* V_1 = NULL;
RuntimeObject * V_2 = NULL;
Int32U5BU5D_t385246372* V_3 = NULL;
int32_t V_4 = 0;
DoubleU5BU5D_t3413330114* V_5 = NULL;
double V_6 = 0.0;
Swapper_t2822380397 * V_7 = NULL;
{
RuntimeArray * L_0 = ___array0;
if (L_0)
{
goto IL_0011;
}
}
{
ArgumentNullException_t1615371798 * L_1 = (ArgumentNullException_t1615371798 *)il2cpp_codegen_object_new(ArgumentNullException_t1615371798_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m1170824041(L_1, _stringLiteral4007973390, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1,Array_Reverse_m816310962_RuntimeMethod_var);
}
IL_0011:
{
RuntimeArray * L_2 = ___array0;
int32_t L_3 = Array_get_Rank_m3448755881(L_2, /*hidden argument*/NULL);
if ((((int32_t)L_3) <= ((int32_t)1)))
{
goto IL_002d;
}
}
{
String_t* L_4 = Locale_GetText_m3374010885(NULL /*static, unused*/, _stringLiteral1684534236, /*hidden argument*/NULL);
RankException_t3812021567 * L_5 = (RankException_t3812021567 *)il2cpp_codegen_object_new(RankException_t3812021567_il2cpp_TypeInfo_var);
RankException__ctor_m2226473861(L_5, L_4, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5,Array_Reverse_m816310962_RuntimeMethod_var);
}
IL_002d:
{
int32_t L_6 = ___index1;
RuntimeArray * L_7 = ___array0;
int32_t L_8 = Array_GetLowerBound_m2045984623(L_7, 0, /*hidden argument*/NULL);
if ((((int32_t)L_6) < ((int32_t)L_8)))
{
goto IL_0041;
}
}
{
int32_t L_9 = ___length2;
if ((((int32_t)L_9) >= ((int32_t)0)))
{
goto IL_0047;
}
}
IL_0041:
{
ArgumentOutOfRangeException_t777629997 * L_10 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m2047740448(L_10, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_10,Array_Reverse_m816310962_RuntimeMethod_var);
}
IL_0047:
{
int32_t L_11 = ___index1;
RuntimeArray * L_12 = ___array0;
int32_t L_13 = Array_GetUpperBound_m4018715963(L_12, 0, /*hidden argument*/NULL);
int32_t L_14 = ___length2;
if ((((int32_t)L_11) <= ((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)1)), (int32_t)L_14)))))
{
goto IL_005e;
}
}
{
ArgumentException_t132251570 * L_15 = (ArgumentException_t132251570 *)il2cpp_codegen_object_new(ArgumentException_t132251570_il2cpp_TypeInfo_var);
ArgumentException__ctor_m3698743796(L_15, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_15,Array_Reverse_m816310962_RuntimeMethod_var);
}
IL_005e:
{
int32_t L_16 = ___index1;
int32_t L_17 = ___length2;
V_0 = ((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)L_17)), (int32_t)1));
RuntimeArray * L_18 = ___array0;
V_1 = ((ObjectU5BU5D_t2843939325*)IsInst((RuntimeObject*)L_18, ObjectU5BU5D_t2843939325_il2cpp_TypeInfo_var));
ObjectU5BU5D_t2843939325* L_19 = V_1;
if (!L_19)
{
goto IL_0095;
}
}
{
goto IL_008d;
}
IL_0076:
{
ObjectU5BU5D_t2843939325* L_20 = V_1;
int32_t L_21 = ___index1;
int32_t L_22 = L_21;
RuntimeObject * L_23 = (L_20)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_22));
V_2 = L_23;
ObjectU5BU5D_t2843939325* L_24 = V_1;
int32_t L_25 = ___index1;
ObjectU5BU5D_t2843939325* L_26 = V_1;
int32_t L_27 = V_0;
int32_t L_28 = L_27;
RuntimeObject * L_29 = (L_26)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_28));
ArrayElementTypeCheck (L_24, L_29);
(L_24)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(L_25), (RuntimeObject *)L_29);
ObjectU5BU5D_t2843939325* L_30 = V_1;
int32_t L_31 = V_0;
RuntimeObject * L_32 = V_2;
ArrayElementTypeCheck (L_30, L_32);
(L_30)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(L_31), (RuntimeObject *)L_32);
int32_t L_33 = ___index1;
___index1 = ((int32_t)il2cpp_codegen_add((int32_t)L_33, (int32_t)1));
int32_t L_34 = V_0;
V_0 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_34, (int32_t)1));
}
IL_008d:
{
int32_t L_35 = ___index1;
int32_t L_36 = V_0;
if ((((int32_t)L_35) < ((int32_t)L_36)))
{
goto IL_0076;
}
}
{
return;
}
IL_0095:
{
RuntimeArray * L_37 = ___array0;
V_3 = ((Int32U5BU5D_t385246372*)IsInst((RuntimeObject*)L_37, Int32U5BU5D_t385246372_il2cpp_TypeInfo_var));
Int32U5BU5D_t385246372* L_38 = V_3;
if (!L_38)
{
goto IL_00c8;
}
}
{
goto IL_00c0;
}
IL_00a7:
{
Int32U5BU5D_t385246372* L_39 = V_3;
int32_t L_40 = ___index1;
int32_t L_41 = L_40;
int32_t L_42 = (L_39)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_41));
V_4 = L_42;
Int32U5BU5D_t385246372* L_43 = V_3;
int32_t L_44 = ___index1;
Int32U5BU5D_t385246372* L_45 = V_3;
int32_t L_46 = V_0;
int32_t L_47 = L_46;
int32_t L_48 = (L_45)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_47));
(L_43)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(L_44), (int32_t)L_48);
Int32U5BU5D_t385246372* L_49 = V_3;
int32_t L_50 = V_0;
int32_t L_51 = V_4;
(L_49)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(L_50), (int32_t)L_51);
int32_t L_52 = ___index1;
___index1 = ((int32_t)il2cpp_codegen_add((int32_t)L_52, (int32_t)1));
int32_t L_53 = V_0;
V_0 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_53, (int32_t)1));
}
IL_00c0:
{
int32_t L_54 = ___index1;
int32_t L_55 = V_0;
if ((((int32_t)L_54) < ((int32_t)L_55)))
{
goto IL_00a7;
}
}
{
return;
}
IL_00c8:
{
RuntimeArray * L_56 = ___array0;
V_5 = ((DoubleU5BU5D_t3413330114*)IsInst((RuntimeObject*)L_56, DoubleU5BU5D_t3413330114_il2cpp_TypeInfo_var));
DoubleU5BU5D_t3413330114* L_57 = V_5;
if (!L_57)
{
goto IL_0101;
}
}
{
goto IL_00f9;
}
IL_00dc:
{
DoubleU5BU5D_t3413330114* L_58 = V_5;
int32_t L_59 = ___index1;
int32_t L_60 = L_59;
double L_61 = (L_58)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_60));
V_6 = L_61;
DoubleU5BU5D_t3413330114* L_62 = V_5;
int32_t L_63 = ___index1;
DoubleU5BU5D_t3413330114* L_64 = V_5;
int32_t L_65 = V_0;
int32_t L_66 = L_65;
double L_67 = (L_64)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_66));
(L_62)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(L_63), (double)L_67);
DoubleU5BU5D_t3413330114* L_68 = V_5;
int32_t L_69 = V_0;
double L_70 = V_6;
(L_68)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(L_69), (double)L_70);
int32_t L_71 = ___index1;
___index1 = ((int32_t)il2cpp_codegen_add((int32_t)L_71, (int32_t)1));
int32_t L_72 = V_0;
V_0 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_72, (int32_t)1));
}
IL_00f9:
{
int32_t L_73 = ___index1;
int32_t L_74 = V_0;
if ((((int32_t)L_73) < ((int32_t)L_74)))
{
goto IL_00dc;
}
}
{
return;
}
IL_0101:
{
RuntimeArray * L_75 = ___array0;
Swapper_t2822380397 * L_76 = Array_get_swapper_m3428716670(NULL /*static, unused*/, L_75, /*hidden argument*/NULL);
V_7 = L_76;
goto IL_0120;
}
IL_010e:
{
Swapper_t2822380397 * L_77 = V_7;
int32_t L_78 = ___index1;
int32_t L_79 = V_0;
Swapper_Invoke_m2596472750(L_77, L_78, L_79, /*hidden argument*/NULL);
int32_t L_80 = ___index1;
___index1 = ((int32_t)il2cpp_codegen_add((int32_t)L_80, (int32_t)1));
int32_t L_81 = V_0;
V_0 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_81, (int32_t)1));
}
IL_0120:
{
int32_t L_82 = ___index1;
int32_t L_83 = V_0;
if ((((int32_t)L_82) < ((int32_t)L_83)))
{
goto IL_010e;
}
}
{
return;
}
}
// System.Void System.Array::Sort(System.Array)
extern "C" void Array_Sort_m3698291233 (RuntimeObject * __this /* static, unused */, RuntimeArray * ___array0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_Sort_m3698291233_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeArray * L_0 = ___array0;
if (L_0)
{
goto IL_0011;
}
}
{
ArgumentNullException_t1615371798 * L_1 = (ArgumentNullException_t1615371798 *)il2cpp_codegen_object_new(ArgumentNullException_t1615371798_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m1170824041(L_1, _stringLiteral4007973390, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1,Array_Sort_m3698291233_RuntimeMethod_var);
}
IL_0011:
{
RuntimeArray * L_2 = ___array0;
RuntimeArray * L_3 = ___array0;
int32_t L_4 = Array_GetLowerBound_m2045984623(L_3, 0, /*hidden argument*/NULL);
RuntimeArray * L_5 = ___array0;
int32_t L_6 = Array_GetLength_m2178203778(L_5, 0, /*hidden argument*/NULL);
Array_Sort_m2934663614(NULL /*static, unused*/, L_2, (RuntimeArray *)NULL, L_4, L_6, (RuntimeObject*)NULL, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array::Sort(System.Array,System.Array)
extern "C" void Array_Sort_m459550270 (RuntimeObject * __this /* static, unused */, RuntimeArray * ___keys0, RuntimeArray * ___items1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_Sort_m459550270_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeArray * L_0 = ___keys0;
if (L_0)
{
goto IL_0011;
}
}
{
ArgumentNullException_t1615371798 * L_1 = (ArgumentNullException_t1615371798 *)il2cpp_codegen_object_new(ArgumentNullException_t1615371798_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m1170824041(L_1, _stringLiteral465436770, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1,Array_Sort_m459550270_RuntimeMethod_var);
}
IL_0011:
{
RuntimeArray * L_2 = ___keys0;
RuntimeArray * L_3 = ___items1;
RuntimeArray * L_4 = ___keys0;
int32_t L_5 = Array_GetLowerBound_m2045984623(L_4, 0, /*hidden argument*/NULL);
RuntimeArray * L_6 = ___keys0;
int32_t L_7 = Array_GetLength_m2178203778(L_6, 0, /*hidden argument*/NULL);
Array_Sort_m2934663614(NULL /*static, unused*/, L_2, L_3, L_5, L_7, (RuntimeObject*)NULL, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array::Sort(System.Array,System.Collections.IComparer)
extern "C" void Array_Sort_m870838517 (RuntimeObject * __this /* static, unused */, RuntimeArray * ___array0, RuntimeObject* ___comparer1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_Sort_m870838517_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeArray * L_0 = ___array0;
if (L_0)
{
goto IL_0011;
}
}
{
ArgumentNullException_t1615371798 * L_1 = (ArgumentNullException_t1615371798 *)il2cpp_codegen_object_new(ArgumentNullException_t1615371798_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m1170824041(L_1, _stringLiteral4007973390, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1,Array_Sort_m870838517_RuntimeMethod_var);
}
IL_0011:
{
RuntimeArray * L_2 = ___array0;
RuntimeArray * L_3 = ___array0;
int32_t L_4 = Array_GetLowerBound_m2045984623(L_3, 0, /*hidden argument*/NULL);
RuntimeArray * L_5 = ___array0;
int32_t L_6 = Array_GetLength_m2178203778(L_5, 0, /*hidden argument*/NULL);
RuntimeObject* L_7 = ___comparer1;
Array_Sort_m2934663614(NULL /*static, unused*/, L_2, (RuntimeArray *)NULL, L_4, L_6, L_7, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array::Sort(System.Array,System.Int32,System.Int32)
extern "C" void Array_Sort_m3287581440 (RuntimeObject * __this /* static, unused */, RuntimeArray * ___array0, int32_t ___index1, int32_t ___length2, const RuntimeMethod* method)
{
{
RuntimeArray * L_0 = ___array0;
int32_t L_1 = ___index1;
int32_t L_2 = ___length2;
Array_Sort_m2934663614(NULL /*static, unused*/, L_0, (RuntimeArray *)NULL, L_1, L_2, (RuntimeObject*)NULL, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array::Sort(System.Array,System.Array,System.Collections.IComparer)
extern "C" void Array_Sort_m3145621264 (RuntimeObject * __this /* static, unused */, RuntimeArray * ___keys0, RuntimeArray * ___items1, RuntimeObject* ___comparer2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_Sort_m3145621264_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeArray * L_0 = ___keys0;
if (L_0)
{
goto IL_0011;
}
}
{
ArgumentNullException_t1615371798 * L_1 = (ArgumentNullException_t1615371798 *)il2cpp_codegen_object_new(ArgumentNullException_t1615371798_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m1170824041(L_1, _stringLiteral465436770, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1,Array_Sort_m3145621264_RuntimeMethod_var);
}
IL_0011:
{
RuntimeArray * L_2 = ___keys0;
RuntimeArray * L_3 = ___items1;
RuntimeArray * L_4 = ___keys0;
int32_t L_5 = Array_GetLowerBound_m2045984623(L_4, 0, /*hidden argument*/NULL);
RuntimeArray * L_6 = ___keys0;
int32_t L_7 = Array_GetLength_m2178203778(L_6, 0, /*hidden argument*/NULL);
RuntimeObject* L_8 = ___comparer2;
Array_Sort_m2934663614(NULL /*static, unused*/, L_2, L_3, L_5, L_7, L_8, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array::Sort(System.Array,System.Array,System.Int32,System.Int32)
extern "C" void Array_Sort_m2147377746 (RuntimeObject * __this /* static, unused */, RuntimeArray * ___keys0, RuntimeArray * ___items1, int32_t ___index2, int32_t ___length3, const RuntimeMethod* method)
{
{
RuntimeArray * L_0 = ___keys0;
RuntimeArray * L_1 = ___items1;
int32_t L_2 = ___index2;
int32_t L_3 = ___length3;
Array_Sort_m2934663614(NULL /*static, unused*/, L_0, L_1, L_2, L_3, (RuntimeObject*)NULL, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array::Sort(System.Array,System.Int32,System.Int32,System.Collections.IComparer)
extern "C" void Array_Sort_m182264525 (RuntimeObject * __this /* static, unused */, RuntimeArray * ___array0, int32_t ___index1, int32_t ___length2, RuntimeObject* ___comparer3, const RuntimeMethod* method)
{
{
RuntimeArray * L_0 = ___array0;
int32_t L_1 = ___index1;
int32_t L_2 = ___length2;
RuntimeObject* L_3 = ___comparer3;
Array_Sort_m2934663614(NULL /*static, unused*/, L_0, (RuntimeArray *)NULL, L_1, L_2, L_3, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array::Sort(System.Array,System.Array,System.Int32,System.Int32,System.Collections.IComparer)
extern "C" void Array_Sort_m2934663614 (RuntimeObject * __this /* static, unused */, RuntimeArray * ___keys0, RuntimeArray * ___items1, int32_t ___index2, int32_t ___length3, RuntimeObject* ___comparer4, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_Sort_m2934663614_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Swapper_t2822380397 * V_0 = NULL;
int32_t V_1 = 0;
int32_t V_2 = 0;
Exception_t * V_3 = NULL;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = 0;
NO_UNUSED_WARNING (__leave_target);
{
RuntimeArray * L_0 = ___keys0;
if (L_0)
{
goto IL_0011;
}
}
{
ArgumentNullException_t1615371798 * L_1 = (ArgumentNullException_t1615371798 *)il2cpp_codegen_object_new(ArgumentNullException_t1615371798_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m1170824041(L_1, _stringLiteral465436770, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1,Array_Sort_m2934663614_RuntimeMethod_var);
}
IL_0011:
{
RuntimeArray * L_2 = ___keys0;
int32_t L_3 = Array_get_Rank_m3448755881(L_2, /*hidden argument*/NULL);
if ((((int32_t)L_3) > ((int32_t)1)))
{
goto IL_002f;
}
}
{
RuntimeArray * L_4 = ___items1;
if (!L_4)
{
goto IL_0035;
}
}
{
RuntimeArray * L_5 = ___items1;
int32_t L_6 = Array_get_Rank_m3448755881(L_5, /*hidden argument*/NULL);
if ((((int32_t)L_6) <= ((int32_t)1)))
{
goto IL_0035;
}
}
IL_002f:
{
RankException_t3812021567 * L_7 = (RankException_t3812021567 *)il2cpp_codegen_object_new(RankException_t3812021567_il2cpp_TypeInfo_var);
RankException__ctor_m4082747811(L_7, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_7,Array_Sort_m2934663614_RuntimeMethod_var);
}
IL_0035:
{
RuntimeArray * L_8 = ___items1;
if (!L_8)
{
goto IL_0054;
}
}
{
RuntimeArray * L_9 = ___keys0;
int32_t L_10 = Array_GetLowerBound_m2045984623(L_9, 0, /*hidden argument*/NULL);
RuntimeArray * L_11 = ___items1;
int32_t L_12 = Array_GetLowerBound_m2045984623(L_11, 0, /*hidden argument*/NULL);
if ((((int32_t)L_10) == ((int32_t)L_12)))
{
goto IL_0054;
}
}
{
ArgumentException_t132251570 * L_13 = (ArgumentException_t132251570 *)il2cpp_codegen_object_new(ArgumentException_t132251570_il2cpp_TypeInfo_var);
ArgumentException__ctor_m3698743796(L_13, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_13,Array_Sort_m2934663614_RuntimeMethod_var);
}
IL_0054:
{
int32_t L_14 = ___index2;
RuntimeArray * L_15 = ___keys0;
int32_t L_16 = Array_GetLowerBound_m2045984623(L_15, 0, /*hidden argument*/NULL);
if ((((int32_t)L_14) >= ((int32_t)L_16)))
{
goto IL_006c;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_17 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_17, _stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_17,Array_Sort_m2934663614_RuntimeMethod_var);
}
IL_006c:
{
int32_t L_18 = ___length3;
if ((((int32_t)L_18) >= ((int32_t)0)))
{
goto IL_0088;
}
}
{
String_t* L_19 = Locale_GetText_m3374010885(NULL /*static, unused*/, _stringLiteral4139011980, /*hidden argument*/NULL);
ArgumentOutOfRangeException_t777629997 * L_20 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m282481429(L_20, _stringLiteral1212500642, L_19, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_20,Array_Sort_m2934663614_RuntimeMethod_var);
}
IL_0088:
{
RuntimeArray * L_21 = ___keys0;
int32_t L_22 = Array_get_Length_m21610649(L_21, /*hidden argument*/NULL);
int32_t L_23 = ___index2;
RuntimeArray * L_24 = ___keys0;
int32_t L_25 = Array_GetLowerBound_m2045984623(L_24, 0, /*hidden argument*/NULL);
int32_t L_26 = ___length3;
if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_22, (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_23, (int32_t)L_25))))) < ((int32_t)L_26)))
{
goto IL_00b2;
}
}
{
RuntimeArray * L_27 = ___items1;
if (!L_27)
{
goto IL_00b8;
}
}
{
int32_t L_28 = ___index2;
RuntimeArray * L_29 = ___items1;
int32_t L_30 = Array_get_Length_m21610649(L_29, /*hidden argument*/NULL);
int32_t L_31 = ___length3;
if ((((int32_t)L_28) <= ((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_30, (int32_t)L_31)))))
{
goto IL_00b8;
}
}
IL_00b2:
{
ArgumentException_t132251570 * L_32 = (ArgumentException_t132251570 *)il2cpp_codegen_object_new(ArgumentException_t132251570_il2cpp_TypeInfo_var);
ArgumentException__ctor_m3698743796(L_32, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_32,Array_Sort_m2934663614_RuntimeMethod_var);
}
IL_00b8:
{
int32_t L_33 = ___length3;
if ((((int32_t)L_33) > ((int32_t)1)))
{
goto IL_00c0;
}
}
{
return;
}
IL_00c0:
{
RuntimeObject* L_34 = ___comparer4;
if (L_34)
{
goto IL_0134;
}
}
{
RuntimeArray * L_35 = ___items1;
if (L_35)
{
goto IL_00d4;
}
}
{
V_0 = (Swapper_t2822380397 *)NULL;
goto IL_00db;
}
IL_00d4:
{
RuntimeArray * L_36 = ___items1;
Swapper_t2822380397 * L_37 = Array_get_swapper_m3428716670(NULL /*static, unused*/, L_36, /*hidden argument*/NULL);
V_0 = L_37;
}
IL_00db:
{
RuntimeArray * L_38 = ___keys0;
if (!((DoubleU5BU5D_t3413330114*)IsInst((RuntimeObject*)L_38, DoubleU5BU5D_t3413330114_il2cpp_TypeInfo_var)))
{
goto IL_00f5;
}
}
{
RuntimeArray * L_39 = ___keys0;
int32_t L_40 = ___index2;
int32_t L_41 = ___length3;
Swapper_t2822380397 * L_42 = V_0;
Array_combsort_m3017221499(NULL /*static, unused*/, ((DoubleU5BU5D_t3413330114*)IsInst((RuntimeObject*)L_39, DoubleU5BU5D_t3413330114_il2cpp_TypeInfo_var)), L_40, L_41, L_42, /*hidden argument*/NULL);
return;
}
IL_00f5:
{
RuntimeArray * L_43 = ___keys0;
if (((UInt32U5BU5D_t2770800703*)IsInst((RuntimeObject*)L_43, UInt32U5BU5D_t2770800703_il2cpp_TypeInfo_var)))
{
goto IL_011a;
}
}
{
RuntimeArray * L_44 = ___keys0;
if (!((Int32U5BU5D_t385246372*)IsInst((RuntimeObject*)L_44, Int32U5BU5D_t385246372_il2cpp_TypeInfo_var)))
{
goto IL_011a;
}
}
{
RuntimeArray * L_45 = ___keys0;
int32_t L_46 = ___index2;
int32_t L_47 = ___length3;
Swapper_t2822380397 * L_48 = V_0;
Array_combsort_m4052486289(NULL /*static, unused*/, ((Int32U5BU5D_t385246372*)IsInst((RuntimeObject*)L_45, Int32U5BU5D_t385246372_il2cpp_TypeInfo_var)), L_46, L_47, L_48, /*hidden argument*/NULL);
return;
}
IL_011a:
{
RuntimeArray * L_49 = ___keys0;
if (!((CharU5BU5D_t3528271667*)IsInst((RuntimeObject*)L_49, CharU5BU5D_t3528271667_il2cpp_TypeInfo_var)))
{
goto IL_0134;
}
}
{
RuntimeArray * L_50 = ___keys0;
int32_t L_51 = ___index2;
int32_t L_52 = ___length3;
Swapper_t2822380397 * L_53 = V_0;
Array_combsort_m2745184932(NULL /*static, unused*/, ((CharU5BU5D_t3528271667*)IsInst((RuntimeObject*)L_50, CharU5BU5D_t3528271667_il2cpp_TypeInfo_var)), L_51, L_52, L_53, /*hidden argument*/NULL);
return;
}
IL_0134:
try
{ // begin try (depth: 1)
int32_t L_54 = ___index2;
V_1 = L_54;
int32_t L_55 = ___index2;
int32_t L_56 = ___length3;
V_2 = ((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_55, (int32_t)L_56)), (int32_t)1));
RuntimeArray * L_57 = ___keys0;
RuntimeArray * L_58 = ___items1;
int32_t L_59 = V_1;
int32_t L_60 = V_2;
RuntimeObject* L_61 = ___comparer4;
Array_qsort_m3156569874(NULL /*static, unused*/, L_57, L_58, L_59, L_60, L_61, /*hidden argument*/NULL);
goto IL_0163;
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__exception_local = (Exception_t *)e.ex;
if(il2cpp_codegen_class_is_assignable_from (Exception_t_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex)))
goto CATCH_014c;
throw e;
}
CATCH_014c:
{ // begin catch(System.Exception)
{
V_3 = ((Exception_t *)__exception_local);
String_t* L_62 = Locale_GetText_m3374010885(NULL /*static, unused*/, _stringLiteral3166607389, /*hidden argument*/NULL);
Exception_t * L_63 = V_3;
InvalidOperationException_t56020091 * L_64 = (InvalidOperationException_t56020091 *)il2cpp_codegen_object_new(InvalidOperationException_t56020091_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m1685032583(L_64, L_62, L_63, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_64,Array_Sort_m2934663614_RuntimeMethod_var);
}
IL_015e:
{
goto IL_0163;
}
} // end catch (depth: 1)
IL_0163:
{
return;
}
}
// System.Void System.Array::int_swapper(System.Int32,System.Int32)
extern "C" void Array_int_swapper_m3830919681 (RuntimeArray * __this, int32_t ___i0, int32_t ___j1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_int_swapper_m3830919681_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Int32U5BU5D_t385246372* V_0 = NULL;
int32_t V_1 = 0;
{
V_0 = ((Int32U5BU5D_t385246372*)IsInst((RuntimeObject*)__this, Int32U5BU5D_t385246372_il2cpp_TypeInfo_var));
Int32U5BU5D_t385246372* L_0 = V_0;
int32_t L_1 = ___i0;
int32_t L_2 = L_1;
int32_t L_3 = (L_0)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_2));
V_1 = L_3;
Int32U5BU5D_t385246372* L_4 = V_0;
int32_t L_5 = ___i0;
Int32U5BU5D_t385246372* L_6 = V_0;
int32_t L_7 = ___j1;
int32_t L_8 = L_7;
int32_t L_9 = (L_6)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_8));
(L_4)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(L_5), (int32_t)L_9);
Int32U5BU5D_t385246372* L_10 = V_0;
int32_t L_11 = ___j1;
int32_t L_12 = V_1;
(L_10)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(L_11), (int32_t)L_12);
return;
}
}
// System.Void System.Array::obj_swapper(System.Int32,System.Int32)
extern "C" void Array_obj_swapper_m472969017 (RuntimeArray * __this, int32_t ___i0, int32_t ___j1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_obj_swapper_m472969017_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t2843939325* V_0 = NULL;
RuntimeObject * V_1 = NULL;
{
V_0 = ((ObjectU5BU5D_t2843939325*)IsInst((RuntimeObject*)__this, ObjectU5BU5D_t2843939325_il2cpp_TypeInfo_var));
ObjectU5BU5D_t2843939325* L_0 = V_0;
int32_t L_1 = ___i0;
int32_t L_2 = L_1;
RuntimeObject * L_3 = (L_0)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_2));
V_1 = L_3;
ObjectU5BU5D_t2843939325* L_4 = V_0;
int32_t L_5 = ___i0;
ObjectU5BU5D_t2843939325* L_6 = V_0;
int32_t L_7 = ___j1;
int32_t L_8 = L_7;
RuntimeObject * L_9 = (L_6)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_8));
ArrayElementTypeCheck (L_4, L_9);
(L_4)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_9);
ObjectU5BU5D_t2843939325* L_10 = V_0;
int32_t L_11 = ___j1;
RuntimeObject * L_12 = V_1;
ArrayElementTypeCheck (L_10, L_12);
(L_10)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(L_11), (RuntimeObject *)L_12);
return;
}
}
// System.Void System.Array::slow_swapper(System.Int32,System.Int32)
extern "C" void Array_slow_swapper_m4116724811 (RuntimeArray * __this, int32_t ___i0, int32_t ___j1, const RuntimeMethod* method)
{
RuntimeObject * V_0 = NULL;
{
int32_t L_0 = ___i0;
RuntimeObject * L_1 = Array_GetValueImpl_m3048550958(__this, L_0, /*hidden argument*/NULL);
V_0 = L_1;
int32_t L_2 = ___j1;
RuntimeObject * L_3 = Array_GetValue_m2528546681(__this, L_2, /*hidden argument*/NULL);
int32_t L_4 = ___i0;
Array_SetValueImpl_m2791230289(__this, L_3, L_4, /*hidden argument*/NULL);
RuntimeObject * L_5 = V_0;
int32_t L_6 = ___j1;
Array_SetValueImpl_m2791230289(__this, L_5, L_6, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array::double_swapper(System.Int32,System.Int32)
extern "C" void Array_double_swapper_m4135376022 (RuntimeArray * __this, int32_t ___i0, int32_t ___j1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_double_swapper_m4135376022_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
DoubleU5BU5D_t3413330114* V_0 = NULL;
double V_1 = 0.0;
{
V_0 = ((DoubleU5BU5D_t3413330114*)IsInst((RuntimeObject*)__this, DoubleU5BU5D_t3413330114_il2cpp_TypeInfo_var));
DoubleU5BU5D_t3413330114* L_0 = V_0;
int32_t L_1 = ___i0;
int32_t L_2 = L_1;
double L_3 = (L_0)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_2));
V_1 = L_3;
DoubleU5BU5D_t3413330114* L_4 = V_0;
int32_t L_5 = ___i0;
DoubleU5BU5D_t3413330114* L_6 = V_0;
int32_t L_7 = ___j1;
int32_t L_8 = L_7;
double L_9 = (L_6)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_8));
(L_4)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(L_5), (double)L_9);
DoubleU5BU5D_t3413330114* L_10 = V_0;
int32_t L_11 = ___j1;
double L_12 = V_1;
(L_10)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(L_11), (double)L_12);
return;
}
}
// System.Int32 System.Array::new_gap(System.Int32)
extern "C" int32_t Array_new_gap_m262136975 (RuntimeObject * __this /* static, unused */, int32_t ___gap0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___gap0;
___gap0 = ((int32_t)((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)L_0, (int32_t)((int32_t)10)))/(int32_t)((int32_t)13)));
int32_t L_1 = ___gap0;
if ((((int32_t)L_1) == ((int32_t)((int32_t)9))))
{
goto IL_0019;
}
}
{
int32_t L_2 = ___gap0;
if ((!(((uint32_t)L_2) == ((uint32_t)((int32_t)10)))))
{
goto IL_001c;
}
}
IL_0019:
{
return ((int32_t)11);
}
IL_001c:
{
int32_t L_3 = ___gap0;
if ((((int32_t)L_3) >= ((int32_t)1)))
{
goto IL_0025;
}
}
{
return 1;
}
IL_0025:
{
int32_t L_4 = ___gap0;
return L_4;
}
}
// System.Void System.Array::combsort(System.Double[],System.Int32,System.Int32,System.Array/Swapper)
extern "C" void Array_combsort_m3017221499 (RuntimeObject * __this /* static, unused */, DoubleU5BU5D_t3413330114* ___array0, int32_t ___start1, int32_t ___size2, Swapper_t2822380397 * ___swap_items3, const RuntimeMethod* method)
{
int32_t V_0 = 0;
bool V_1 = false;
int32_t V_2 = 0;
int32_t V_3 = 0;
int32_t V_4 = 0;
double V_5 = 0.0;
{
int32_t L_0 = ___size2;
V_0 = L_0;
}
IL_0002:
{
int32_t L_1 = V_0;
int32_t L_2 = Array_new_gap_m262136975(NULL /*static, unused*/, L_1, /*hidden argument*/NULL);
V_0 = L_2;
V_1 = (bool)0;
int32_t L_3 = ___start1;
int32_t L_4 = ___size2;
int32_t L_5 = V_0;
V_2 = ((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)L_4)), (int32_t)L_5));
int32_t L_6 = ___start1;
V_3 = L_6;
goto IL_0050;
}
IL_0018:
{
int32_t L_7 = V_3;
int32_t L_8 = V_0;
V_4 = ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8));
DoubleU5BU5D_t3413330114* L_9 = ___array0;
int32_t L_10 = V_3;
int32_t L_11 = L_10;
double L_12 = (L_9)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_11));
DoubleU5BU5D_t3413330114* L_13 = ___array0;
int32_t L_14 = V_4;
int32_t L_15 = L_14;
double L_16 = (L_13)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_15));
if ((!(((double)L_12) > ((double)L_16))))
{
goto IL_004c;
}
}
{
DoubleU5BU5D_t3413330114* L_17 = ___array0;
int32_t L_18 = V_3;
int32_t L_19 = L_18;
double L_20 = (L_17)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_19));
V_5 = L_20;
DoubleU5BU5D_t3413330114* L_21 = ___array0;
int32_t L_22 = V_3;
DoubleU5BU5D_t3413330114* L_23 = ___array0;
int32_t L_24 = V_4;
int32_t L_25 = L_24;
double L_26 = (L_23)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_25));
(L_21)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(L_22), (double)L_26);
DoubleU5BU5D_t3413330114* L_27 = ___array0;
int32_t L_28 = V_4;
double L_29 = V_5;
(L_27)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(L_28), (double)L_29);
V_1 = (bool)1;
Swapper_t2822380397 * L_30 = ___swap_items3;
if (!L_30)
{
goto IL_004c;
}
}
{
Swapper_t2822380397 * L_31 = ___swap_items3;
int32_t L_32 = V_3;
int32_t L_33 = V_4;
Swapper_Invoke_m2596472750(L_31, L_32, L_33, /*hidden argument*/NULL);
}
IL_004c:
{
int32_t L_34 = V_3;
V_3 = ((int32_t)il2cpp_codegen_add((int32_t)L_34, (int32_t)1));
}
IL_0050:
{
int32_t L_35 = V_3;
int32_t L_36 = V_2;
if ((((int32_t)L_35) < ((int32_t)L_36)))
{
goto IL_0018;
}
}
{
int32_t L_37 = V_0;
if ((!(((uint32_t)L_37) == ((uint32_t)1))))
{
goto IL_0069;
}
}
{
bool L_38 = V_1;
if (L_38)
{
goto IL_0069;
}
}
{
goto IL_006e;
}
IL_0069:
{
goto IL_0002;
}
IL_006e:
{
return;
}
}
// System.Void System.Array::combsort(System.Int32[],System.Int32,System.Int32,System.Array/Swapper)
extern "C" void Array_combsort_m4052486289 (RuntimeObject * __this /* static, unused */, Int32U5BU5D_t385246372* ___array0, int32_t ___start1, int32_t ___size2, Swapper_t2822380397 * ___swap_items3, const RuntimeMethod* method)
{
int32_t V_0 = 0;
bool V_1 = false;
int32_t V_2 = 0;
int32_t V_3 = 0;
int32_t V_4 = 0;
int32_t V_5 = 0;
{
int32_t L_0 = ___size2;
V_0 = L_0;
}
IL_0002:
{
int32_t L_1 = V_0;
int32_t L_2 = Array_new_gap_m262136975(NULL /*static, unused*/, L_1, /*hidden argument*/NULL);
V_0 = L_2;
V_1 = (bool)0;
int32_t L_3 = ___start1;
int32_t L_4 = ___size2;
int32_t L_5 = V_0;
V_2 = ((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)L_4)), (int32_t)L_5));
int32_t L_6 = ___start1;
V_3 = L_6;
goto IL_0050;
}
IL_0018:
{
int32_t L_7 = V_3;
int32_t L_8 = V_0;
V_4 = ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8));
Int32U5BU5D_t385246372* L_9 = ___array0;
int32_t L_10 = V_3;
int32_t L_11 = L_10;
int32_t L_12 = (L_9)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_11));
Int32U5BU5D_t385246372* L_13 = ___array0;
int32_t L_14 = V_4;
int32_t L_15 = L_14;
int32_t L_16 = (L_13)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_15));
if ((((int32_t)L_12) <= ((int32_t)L_16)))
{
goto IL_004c;
}
}
{
Int32U5BU5D_t385246372* L_17 = ___array0;
int32_t L_18 = V_3;
int32_t L_19 = L_18;
int32_t L_20 = (L_17)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_19));
V_5 = L_20;
Int32U5BU5D_t385246372* L_21 = ___array0;
int32_t L_22 = V_3;
Int32U5BU5D_t385246372* L_23 = ___array0;
int32_t L_24 = V_4;
int32_t L_25 = L_24;
int32_t L_26 = (L_23)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_25));
(L_21)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(L_22), (int32_t)L_26);
Int32U5BU5D_t385246372* L_27 = ___array0;
int32_t L_28 = V_4;
int32_t L_29 = V_5;
(L_27)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(L_28), (int32_t)L_29);
V_1 = (bool)1;
Swapper_t2822380397 * L_30 = ___swap_items3;
if (!L_30)
{
goto IL_004c;
}
}
{
Swapper_t2822380397 * L_31 = ___swap_items3;
int32_t L_32 = V_3;
int32_t L_33 = V_4;
Swapper_Invoke_m2596472750(L_31, L_32, L_33, /*hidden argument*/NULL);
}
IL_004c:
{
int32_t L_34 = V_3;
V_3 = ((int32_t)il2cpp_codegen_add((int32_t)L_34, (int32_t)1));
}
IL_0050:
{
int32_t L_35 = V_3;
int32_t L_36 = V_2;
if ((((int32_t)L_35) < ((int32_t)L_36)))
{
goto IL_0018;
}
}
{
int32_t L_37 = V_0;
if ((!(((uint32_t)L_37) == ((uint32_t)1))))
{
goto IL_0069;
}
}
{
bool L_38 = V_1;
if (L_38)
{
goto IL_0069;
}
}
{
goto IL_006e;
}
IL_0069:
{
goto IL_0002;
}
IL_006e:
{
return;
}
}
// System.Void System.Array::combsort(System.Char[],System.Int32,System.Int32,System.Array/Swapper)
extern "C" void Array_combsort_m2745184932 (RuntimeObject * __this /* static, unused */, CharU5BU5D_t3528271667* ___array0, int32_t ___start1, int32_t ___size2, Swapper_t2822380397 * ___swap_items3, const RuntimeMethod* method)
{
int32_t V_0 = 0;
bool V_1 = false;
int32_t V_2 = 0;
int32_t V_3 = 0;
int32_t V_4 = 0;
Il2CppChar V_5 = 0x0;
{
int32_t L_0 = ___size2;
V_0 = L_0;
}
IL_0002:
{
int32_t L_1 = V_0;
int32_t L_2 = Array_new_gap_m262136975(NULL /*static, unused*/, L_1, /*hidden argument*/NULL);
V_0 = L_2;
V_1 = (bool)0;
int32_t L_3 = ___start1;
int32_t L_4 = ___size2;
int32_t L_5 = V_0;
V_2 = ((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)L_4)), (int32_t)L_5));
int32_t L_6 = ___start1;
V_3 = L_6;
goto IL_0050;
}
IL_0018:
{
int32_t L_7 = V_3;
int32_t L_8 = V_0;
V_4 = ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8));
CharU5BU5D_t3528271667* L_9 = ___array0;
int32_t L_10 = V_3;
int32_t L_11 = L_10;
uint16_t L_12 = (L_9)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_11));
CharU5BU5D_t3528271667* L_13 = ___array0;
int32_t L_14 = V_4;
int32_t L_15 = L_14;
uint16_t L_16 = (L_13)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_15));
if ((((int32_t)L_12) <= ((int32_t)L_16)))
{
goto IL_004c;
}
}
{
CharU5BU5D_t3528271667* L_17 = ___array0;
int32_t L_18 = V_3;
int32_t L_19 = L_18;
uint16_t L_20 = (L_17)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_19));
V_5 = L_20;
CharU5BU5D_t3528271667* L_21 = ___array0;
int32_t L_22 = V_3;
CharU5BU5D_t3528271667* L_23 = ___array0;
int32_t L_24 = V_4;
int32_t L_25 = L_24;
uint16_t L_26 = (L_23)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_25));
(L_21)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(L_22), (Il2CppChar)L_26);
CharU5BU5D_t3528271667* L_27 = ___array0;
int32_t L_28 = V_4;
Il2CppChar L_29 = V_5;
(L_27)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(L_28), (Il2CppChar)L_29);
V_1 = (bool)1;
Swapper_t2822380397 * L_30 = ___swap_items3;
if (!L_30)
{
goto IL_004c;
}
}
{
Swapper_t2822380397 * L_31 = ___swap_items3;
int32_t L_32 = V_3;
int32_t L_33 = V_4;
Swapper_Invoke_m2596472750(L_31, L_32, L_33, /*hidden argument*/NULL);
}
IL_004c:
{
int32_t L_34 = V_3;
V_3 = ((int32_t)il2cpp_codegen_add((int32_t)L_34, (int32_t)1));
}
IL_0050:
{
int32_t L_35 = V_3;
int32_t L_36 = V_2;
if ((((int32_t)L_35) < ((int32_t)L_36)))
{
goto IL_0018;
}
}
{
int32_t L_37 = V_0;
if ((!(((uint32_t)L_37) == ((uint32_t)1))))
{
goto IL_0069;
}
}
{
bool L_38 = V_1;
if (L_38)
{
goto IL_0069;
}
}
{
goto IL_006e;
}
IL_0069:
{
goto IL_0002;
}
IL_006e:
{
return;
}
}
// System.Void System.Array::qsort(System.Array,System.Array,System.Int32,System.Int32,System.Collections.IComparer)
extern "C" void Array_qsort_m3156569874 (RuntimeObject * __this /* static, unused */, RuntimeArray * ___keys0, RuntimeArray * ___items1, int32_t ___low02, int32_t ___high03, RuntimeObject* ___comparer4, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
int32_t V_2 = 0;
RuntimeObject * V_3 = NULL;
{
int32_t L_0 = ___low02;
int32_t L_1 = ___high03;
if ((((int32_t)L_0) < ((int32_t)L_1)))
{
goto IL_0008;
}
}
{
return;
}
IL_0008:
{
int32_t L_2 = ___low02;
V_0 = L_2;
int32_t L_3 = ___high03;
V_1 = L_3;
int32_t L_4 = V_0;
int32_t L_5 = V_1;
int32_t L_6 = V_0;
V_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_4, (int32_t)((int32_t)((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_5, (int32_t)L_6))/(int32_t)2))));
RuntimeArray * L_7 = ___keys0;
int32_t L_8 = V_2;
RuntimeObject * L_9 = Array_GetValueImpl_m3048550958(L_7, L_8, /*hidden argument*/NULL);
V_3 = L_9;
}
IL_001c:
{
goto IL_0025;
}
IL_0021:
{
int32_t L_10 = V_0;
V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_10, (int32_t)1));
}
IL_0025:
{
int32_t L_11 = V_0;
int32_t L_12 = ___high03;
if ((((int32_t)L_11) >= ((int32_t)L_12)))
{
goto IL_0041;
}
}
{
RuntimeArray * L_13 = ___keys0;
int32_t L_14 = V_0;
RuntimeObject * L_15 = Array_GetValueImpl_m3048550958(L_13, L_14, /*hidden argument*/NULL);
RuntimeObject * L_16 = V_3;
RuntimeObject* L_17 = ___comparer4;
int32_t L_18 = Array_compare_m2837221808(NULL /*static, unused*/, L_15, L_16, L_17, /*hidden argument*/NULL);
if ((((int32_t)L_18) < ((int32_t)0)))
{
goto IL_0021;
}
}
IL_0041:
{
goto IL_004a;
}
IL_0046:
{
int32_t L_19 = V_1;
V_1 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1));
}
IL_004a:
{
int32_t L_20 = V_1;
int32_t L_21 = ___low02;
if ((((int32_t)L_20) <= ((int32_t)L_21)))
{
goto IL_0066;
}
}
{
RuntimeObject * L_22 = V_3;
RuntimeArray * L_23 = ___keys0;
int32_t L_24 = V_1;
RuntimeObject * L_25 = Array_GetValueImpl_m3048550958(L_23, L_24, /*hidden argument*/NULL);
RuntimeObject* L_26 = ___comparer4;
int32_t L_27 = Array_compare_m2837221808(NULL /*static, unused*/, L_22, L_25, L_26, /*hidden argument*/NULL);
if ((((int32_t)L_27) < ((int32_t)0)))
{
goto IL_0046;
}
}
IL_0066:
{
int32_t L_28 = V_0;
int32_t L_29 = V_1;
if ((((int32_t)L_28) > ((int32_t)L_29)))
{
goto IL_0083;
}
}
{
RuntimeArray * L_30 = ___keys0;
RuntimeArray * L_31 = ___items1;
int32_t L_32 = V_0;
int32_t L_33 = V_1;
Array_swap_m547389985(NULL /*static, unused*/, L_30, L_31, L_32, L_33, /*hidden argument*/NULL);
int32_t L_34 = V_0;
V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_34, (int32_t)1));
int32_t L_35 = V_1;
V_1 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_35, (int32_t)1));
goto IL_0088;
}
IL_0083:
{
goto IL_008d;
}
IL_0088:
{
goto IL_001c;
}
IL_008d:
{
int32_t L_36 = ___low02;
int32_t L_37 = V_1;
if ((((int32_t)L_36) >= ((int32_t)L_37)))
{
goto IL_009f;
}
}
{
RuntimeArray * L_38 = ___keys0;
RuntimeArray * L_39 = ___items1;
int32_t L_40 = ___low02;
int32_t L_41 = V_1;
RuntimeObject* L_42 = ___comparer4;
Array_qsort_m3156569874(NULL /*static, unused*/, L_38, L_39, L_40, L_41, L_42, /*hidden argument*/NULL);
}
IL_009f:
{
int32_t L_43 = V_0;
int32_t L_44 = ___high03;
if ((((int32_t)L_43) >= ((int32_t)L_44)))
{
goto IL_00b1;
}
}
{
RuntimeArray * L_45 = ___keys0;
RuntimeArray * L_46 = ___items1;
int32_t L_47 = V_0;
int32_t L_48 = ___high03;
RuntimeObject* L_49 = ___comparer4;
Array_qsort_m3156569874(NULL /*static, unused*/, L_45, L_46, L_47, L_48, L_49, /*hidden argument*/NULL);
}
IL_00b1:
{
return;
}
}
// System.Void System.Array::swap(System.Array,System.Array,System.Int32,System.Int32)
extern "C" void Array_swap_m547389985 (RuntimeObject * __this /* static, unused */, RuntimeArray * ___keys0, RuntimeArray * ___items1, int32_t ___i2, int32_t ___j3, const RuntimeMethod* method)
{
RuntimeObject * V_0 = NULL;
{
RuntimeArray * L_0 = ___keys0;
int32_t L_1 = ___i2;
RuntimeObject * L_2 = Array_GetValueImpl_m3048550958(L_0, L_1, /*hidden argument*/NULL);
V_0 = L_2;
RuntimeArray * L_3 = ___keys0;
RuntimeArray * L_4 = ___keys0;
int32_t L_5 = ___j3;
RuntimeObject * L_6 = Array_GetValue_m2528546681(L_4, L_5, /*hidden argument*/NULL);
int32_t L_7 = ___i2;
Array_SetValueImpl_m2791230289(L_3, L_6, L_7, /*hidden argument*/NULL);
RuntimeArray * L_8 = ___keys0;
RuntimeObject * L_9 = V_0;
int32_t L_10 = ___j3;
Array_SetValueImpl_m2791230289(L_8, L_9, L_10, /*hidden argument*/NULL);
RuntimeArray * L_11 = ___items1;
if (!L_11)
{
goto IL_0042;
}
}
{
RuntimeArray * L_12 = ___items1;
int32_t L_13 = ___i2;
RuntimeObject * L_14 = Array_GetValueImpl_m3048550958(L_12, L_13, /*hidden argument*/NULL);
V_0 = L_14;
RuntimeArray * L_15 = ___items1;
RuntimeArray * L_16 = ___items1;
int32_t L_17 = ___j3;
RuntimeObject * L_18 = Array_GetValueImpl_m3048550958(L_16, L_17, /*hidden argument*/NULL);
int32_t L_19 = ___i2;
Array_SetValueImpl_m2791230289(L_15, L_18, L_19, /*hidden argument*/NULL);
RuntimeArray * L_20 = ___items1;
RuntimeObject * L_21 = V_0;
int32_t L_22 = ___j3;
Array_SetValueImpl_m2791230289(L_20, L_21, L_22, /*hidden argument*/NULL);
}
IL_0042:
{
return;
}
}
// System.Int32 System.Array::compare(System.Object,System.Object,System.Collections.IComparer)
extern "C" int32_t Array_compare_m2837221808 (RuntimeObject * __this /* static, unused */, RuntimeObject * ___value10, RuntimeObject * ___value21, RuntimeObject* ___comparer2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_compare_m2837221808_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t G_B4_0 = 0;
{
RuntimeObject * L_0 = ___value10;
if (L_0)
{
goto IL_0014;
}
}
{
RuntimeObject * L_1 = ___value21;
if (L_1)
{
goto IL_0012;
}
}
{
G_B4_0 = 0;
goto IL_0013;
}
IL_0012:
{
G_B4_0 = (-1);
}
IL_0013:
{
return G_B4_0;
}
IL_0014:
{
RuntimeObject * L_2 = ___value21;
if (L_2)
{
goto IL_001c;
}
}
{
return 1;
}
IL_001c:
{
RuntimeObject* L_3 = ___comparer2;
if (L_3)
{
goto IL_002f;
}
}
{
RuntimeObject * L_4 = ___value10;
RuntimeObject * L_5 = ___value21;
int32_t L_6 = InterfaceFuncInvoker1< int32_t, RuntimeObject * >::Invoke(0 /* System.Int32 System.IComparable::CompareTo(System.Object) */, IComparable_t36111218_il2cpp_TypeInfo_var, ((RuntimeObject*)Castclass((RuntimeObject*)L_4, IComparable_t36111218_il2cpp_TypeInfo_var)), L_5);
return L_6;
}
IL_002f:
{
RuntimeObject* L_7 = ___comparer2;
RuntimeObject * L_8 = ___value10;
RuntimeObject * L_9 = ___value21;
int32_t L_10 = InterfaceFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Int32 System.Collections.IComparer::Compare(System.Object,System.Object) */, IComparer_t1540313114_il2cpp_TypeInfo_var, L_7, L_8, L_9);
return L_10;
}
}
// System.Void System.Array::CopyTo(System.Array,System.Int32)
extern "C" void Array_CopyTo_m225704097 (RuntimeArray * __this, RuntimeArray * ___array0, int32_t ___index1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_CopyTo_m225704097_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeArray * L_0 = ___array0;
if (L_0)
{
goto IL_0011;
}
}
{
ArgumentNullException_t1615371798 * L_1 = (ArgumentNullException_t1615371798 *)il2cpp_codegen_object_new(ArgumentNullException_t1615371798_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m1170824041(L_1, _stringLiteral4007973390, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1,Array_CopyTo_m225704097_RuntimeMethod_var);
}
IL_0011:
{
int32_t L_2 = Array_get_Rank_m3448755881(__this, /*hidden argument*/NULL);
if ((((int32_t)L_2) <= ((int32_t)1)))
{
goto IL_002d;
}
}
{
String_t* L_3 = Locale_GetText_m3374010885(NULL /*static, unused*/, _stringLiteral1684534236, /*hidden argument*/NULL);
RankException_t3812021567 * L_4 = (RankException_t3812021567 *)il2cpp_codegen_object_new(RankException_t3812021567_il2cpp_TypeInfo_var);
RankException__ctor_m2226473861(L_4, L_3, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_4,Array_CopyTo_m225704097_RuntimeMethod_var);
}
IL_002d:
{
int32_t L_5 = ___index1;
int32_t L_6 = Array_GetLength_m2178203778(__this, 0, /*hidden argument*/NULL);
RuntimeArray * L_7 = ___array0;
int32_t L_8 = Array_GetLowerBound_m2045984623(L_7, 0, /*hidden argument*/NULL);
RuntimeArray * L_9 = ___array0;
int32_t L_10 = Array_GetLength_m2178203778(L_9, 0, /*hidden argument*/NULL);
if ((((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_5, (int32_t)L_6))) <= ((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_8, (int32_t)L_10)))))
{
goto IL_0055;
}
}
{
ArgumentException_t132251570 * L_11 = (ArgumentException_t132251570 *)il2cpp_codegen_object_new(ArgumentException_t132251570_il2cpp_TypeInfo_var);
ArgumentException__ctor_m1312628991(L_11, _stringLiteral221691501, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_11,Array_CopyTo_m225704097_RuntimeMethod_var);
}
IL_0055:
{
RuntimeArray * L_12 = ___array0;
int32_t L_13 = Array_get_Rank_m3448755881(L_12, /*hidden argument*/NULL);
if ((((int32_t)L_13) <= ((int32_t)1)))
{
goto IL_0071;
}
}
{
String_t* L_14 = Locale_GetText_m3374010885(NULL /*static, unused*/, _stringLiteral1684534236, /*hidden argument*/NULL);
RankException_t3812021567 * L_15 = (RankException_t3812021567 *)il2cpp_codegen_object_new(RankException_t3812021567_il2cpp_TypeInfo_var);
RankException__ctor_m2226473861(L_15, L_14, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_15,Array_CopyTo_m225704097_RuntimeMethod_var);
}
IL_0071:
{
int32_t L_16 = ___index1;
if ((((int32_t)L_16) >= ((int32_t)0)))
{
goto IL_008d;
}
}
{
String_t* L_17 = Locale_GetText_m3374010885(NULL /*static, unused*/, _stringLiteral4139011980, /*hidden argument*/NULL);
ArgumentOutOfRangeException_t777629997 * L_18 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m282481429(L_18, _stringLiteral797640427, L_17, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_18,Array_CopyTo_m225704097_RuntimeMethod_var);
}
IL_008d:
{
int32_t L_19 = Array_GetLowerBound_m2045984623(__this, 0, /*hidden argument*/NULL);
RuntimeArray * L_20 = ___array0;
int32_t L_21 = ___index1;
int32_t L_22 = Array_GetLength_m2178203778(__this, 0, /*hidden argument*/NULL);
Array_Copy_m344457298(NULL /*static, unused*/, __this, L_19, L_20, L_21, L_22, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array::CopyTo(System.Array,System.Int64)
extern "C" void Array_CopyTo_m3358199659 (RuntimeArray * __this, RuntimeArray * ___array0, int64_t ___index1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_CopyTo_m3358199659_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int64_t L_0 = ___index1;
if ((((int64_t)L_0) < ((int64_t)(((int64_t)((int64_t)0))))))
{
goto IL_0014;
}
}
{
int64_t L_1 = ___index1;
if ((((int64_t)L_1) <= ((int64_t)(((int64_t)((int64_t)((int32_t)2147483647LL)))))))
{
goto IL_0029;
}
}
IL_0014:
{
String_t* L_2 = Locale_GetText_m3374010885(NULL /*static, unused*/, _stringLiteral1356516794, /*hidden argument*/NULL);
ArgumentOutOfRangeException_t777629997 * L_3 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m282481429(L_3, _stringLiteral797640427, L_2, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3,Array_CopyTo_m3358199659_RuntimeMethod_var);
}
IL_0029:
{
RuntimeArray * L_4 = ___array0;
int64_t L_5 = ___index1;
Array_CopyTo_m225704097(__this, L_4, (((int32_t)((int32_t)L_5))), /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array::ConstrainedCopy(System.Array,System.Int32,System.Array,System.Int32,System.Int32)
extern "C" void Array_ConstrainedCopy_m3673290180 (RuntimeObject * __this /* static, unused */, RuntimeArray * ___sourceArray0, int32_t ___sourceIndex1, RuntimeArray * ___destinationArray2, int32_t ___destinationIndex3, int32_t ___length4, const RuntimeMethod* method)
{
{
RuntimeArray * L_0 = ___sourceArray0;
int32_t L_1 = ___sourceIndex1;
RuntimeArray * L_2 = ___destinationArray2;
int32_t L_3 = ___destinationIndex3;
int32_t L_4 = ___length4;
Array_Copy_m344457298(NULL /*static, unused*/, L_0, L_1, L_2, L_3, L_4, /*hidden argument*/NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/SimpleEnumerator::.ctor(System.Array)
extern "C" void SimpleEnumerator__ctor_m353509656 (SimpleEnumerator_t433892249 * __this, RuntimeArray * ___arrayToEnumerate0, const RuntimeMethod* method)
{
{
Object__ctor_m297566312(__this, /*hidden argument*/NULL);
RuntimeArray * L_0 = ___arrayToEnumerate0;
__this->set_enumeratee_0(L_0);
__this->set_currentpos_1((-1));
RuntimeArray * L_1 = ___arrayToEnumerate0;
int32_t L_2 = Array_get_Length_m21610649(L_1, /*hidden argument*/NULL);
__this->set_length_2(L_2);
return;
}
}
// System.Object System.Array/SimpleEnumerator::get_Current()
extern "C" RuntimeObject * SimpleEnumerator_get_Current_m72361444 (SimpleEnumerator_t433892249 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (SimpleEnumerator_get_Current_m72361444_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = __this->get_currentpos_1();
if ((((int32_t)L_0) >= ((int32_t)0)))
{
goto IL_001c;
}
}
{
String_t* L_1 = Locale_GetText_m3374010885(NULL /*static, unused*/, _stringLiteral320771010, /*hidden argument*/NULL);
InvalidOperationException_t56020091 * L_2 = (InvalidOperationException_t56020091 *)il2cpp_codegen_object_new(InvalidOperationException_t56020091_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m237278729(L_2, L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2,SimpleEnumerator_get_Current_m72361444_RuntimeMethod_var);
}
IL_001c:
{
int32_t L_3 = __this->get_currentpos_1();
int32_t L_4 = __this->get_length_2();
if ((((int32_t)L_3) < ((int32_t)L_4)))
{
goto IL_003d;
}
}
{
String_t* L_5 = Locale_GetText_m3374010885(NULL /*static, unused*/, _stringLiteral3811138045, /*hidden argument*/NULL);
InvalidOperationException_t56020091 * L_6 = (InvalidOperationException_t56020091 *)il2cpp_codegen_object_new(InvalidOperationException_t56020091_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m237278729(L_6, L_5, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_6,SimpleEnumerator_get_Current_m72361444_RuntimeMethod_var);
}
IL_003d:
{
RuntimeArray * L_7 = __this->get_enumeratee_0();
int32_t L_8 = __this->get_currentpos_1();
RuntimeObject * L_9 = Array_GetValueImpl_m3048550958(L_7, L_8, /*hidden argument*/NULL);
return L_9;
}
}
// System.Boolean System.Array/SimpleEnumerator::MoveNext()
extern "C" bool SimpleEnumerator_MoveNext_m3097336207 (SimpleEnumerator_t433892249 * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->get_currentpos_1();
int32_t L_1 = __this->get_length_2();
if ((((int32_t)L_0) >= ((int32_t)L_1)))
{
goto IL_001f;
}
}
{
int32_t L_2 = __this->get_currentpos_1();
__this->set_currentpos_1(((int32_t)il2cpp_codegen_add((int32_t)L_2, (int32_t)1)));
}
IL_001f:
{
int32_t L_3 = __this->get_currentpos_1();
int32_t L_4 = __this->get_length_2();
if ((((int32_t)L_3) >= ((int32_t)L_4)))
{
goto IL_0032;
}
}
{
return (bool)1;
}
IL_0032:
{
return (bool)0;
}
}
// System.Void System.Array/SimpleEnumerator::Reset()
extern "C" void SimpleEnumerator_Reset_m2182001888 (SimpleEnumerator_t433892249 * __this, const RuntimeMethod* method)
{
{
__this->set_currentpos_1((-1));
return;
}
}
// System.Object System.Array/SimpleEnumerator::Clone()
extern "C" RuntimeObject * SimpleEnumerator_Clone_m1890729616 (SimpleEnumerator_t433892249 * __this, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = Object_MemberwiseClone_m1474068832(__this, /*hidden argument*/NULL);
return L_0;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
extern "C" void DelegatePInvokeWrapper_Swapper_t2822380397 (Swapper_t2822380397 * __this, int32_t ___i0, int32_t ___j1, const RuntimeMethod* method)
{
typedef void (STDCALL *PInvokeFunc)(int32_t, int32_t);
PInvokeFunc il2cppPInvokeFunc = reinterpret_cast<PInvokeFunc>(il2cpp_codegen_get_method_pointer(((RuntimeDelegate*)__this)->method));
// Native function invocation
il2cppPInvokeFunc(___i0, ___j1);
}
// System.Void System.Array/Swapper::.ctor(System.Object,System.IntPtr)
extern "C" void Swapper__ctor_m3019156154 (Swapper_t2822380397 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
__this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1));
__this->set_method_3(___method1);
__this->set_m_target_2(___object0);
}
// System.Void System.Array/Swapper::Invoke(System.Int32,System.Int32)
extern "C" void Swapper_Invoke_m2596472750 (Swapper_t2822380397 * __this, int32_t ___i0, int32_t ___j1, const RuntimeMethod* method)
{
if(__this->get_prev_9() != NULL)
{
Swapper_Invoke_m2596472750((Swapper_t2822380397 *)__this->get_prev_9(), ___i0, ___j1, method);
}
Il2CppMethodPointer targetMethodPointer = __this->get_method_ptr_0();
RuntimeMethod* targetMethod = (RuntimeMethod*)(__this->get_method_3());
RuntimeObject* targetThis = __this->get_m_target_2();
il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod);
bool ___methodIsStatic = MethodIsStatic(targetMethod);
if (___methodIsStatic)
{
if (il2cpp_codegen_method_parameter_count(targetMethod) == 2)
{
// open
{
typedef void (*FunctionPointerType) (RuntimeObject *, int32_t, int32_t, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(NULL, ___i0, ___j1, targetMethod);
}
}
else
{
// closed
{
typedef void (*FunctionPointerType) (RuntimeObject *, void*, int32_t, int32_t, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(NULL, targetThis, ___i0, ___j1, targetMethod);
}
}
}
else
{
{
// closed
if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
GenericInterfaceActionInvoker2< int32_t, int32_t >::Invoke(targetMethod, targetThis, ___i0, ___j1);
else
GenericVirtActionInvoker2< int32_t, int32_t >::Invoke(targetMethod, targetThis, ___i0, ___j1);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
InterfaceActionInvoker2< int32_t, int32_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___i0, ___j1);
else
VirtActionInvoker2< int32_t, int32_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___i0, ___j1);
}
}
else
{
typedef void (*FunctionPointerType) (void*, int32_t, int32_t, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetThis, ___i0, ___j1, targetMethod);
}
}
}
}
// System.IAsyncResult System.Array/Swapper::BeginInvoke(System.Int32,System.Int32,System.AsyncCallback,System.Object)
extern "C" RuntimeObject* Swapper_BeginInvoke_m1688449973 (Swapper_t2822380397 * __this, int32_t ___i0, int32_t ___j1, AsyncCallback_t3962456242 * ___callback2, RuntimeObject * ___object3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Swapper_BeginInvoke_m1688449973_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
void *__d_args[3] = {0};
__d_args[0] = Box(Int32_t2950945753_il2cpp_TypeInfo_var, &___i0);
__d_args[1] = Box(Int32_t2950945753_il2cpp_TypeInfo_var, &___j1);
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback2, (RuntimeObject*)___object3);
}
// System.Void System.Array/Swapper::EndInvoke(System.IAsyncResult)
extern "C" void Swapper_EndInvoke_m1804951082 (Swapper_t2822380397 * __this, RuntimeObject* ___result0, const RuntimeMethod* method)
{
il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.ArrayTypeMismatchException::.ctor()
extern "C" void ArrayTypeMismatchException__ctor_m3375008173 (ArrayTypeMismatchException_t2342549375 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ArrayTypeMismatchException__ctor_m3375008173_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = Locale_GetText_m3374010885(NULL /*static, unused*/, _stringLiteral435687691, /*hidden argument*/NULL);
SystemException__ctor_m3298527747(__this, L_0, /*hidden argument*/NULL);
Exception_set_HResult_m3489164646(__this, ((int32_t)-2146233085), /*hidden argument*/NULL);
return;
}
}
// System.Void System.ArrayTypeMismatchException::.ctor(System.String)
extern "C" void ArrayTypeMismatchException__ctor_m231257638 (ArrayTypeMismatchException_t2342549375 * __this, String_t* ___message0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___message0;
SystemException__ctor_m3298527747(__this, L_0, /*hidden argument*/NULL);
Exception_set_HResult_m3489164646(__this, ((int32_t)-2146233085), /*hidden argument*/NULL);
return;
}
}
// System.Void System.ArrayTypeMismatchException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
extern "C" void ArrayTypeMismatchException__ctor_m2621976975 (ArrayTypeMismatchException_t2342549375 * __this, SerializationInfo_t950877179 * ___info0, StreamingContext_t3711869237 ___context1, const RuntimeMethod* method)
{
{
SerializationInfo_t950877179 * L_0 = ___info0;
StreamingContext_t3711869237 L_1 = ___context1;
SystemException__ctor_m1515048899(__this, L_0, L_1, /*hidden argument*/NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.AssemblyLoadEventHandler::.ctor(System.Object,System.IntPtr)
extern "C" void AssemblyLoadEventHandler__ctor_m896828968 (AssemblyLoadEventHandler_t107971893 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
__this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1));
__this->set_method_3(___method1);
__this->set_m_target_2(___object0);
}
// System.Void System.AssemblyLoadEventHandler::Invoke(System.Object,System.AssemblyLoadEventArgs)
extern "C" void AssemblyLoadEventHandler_Invoke_m1462077361 (AssemblyLoadEventHandler_t107971893 * __this, RuntimeObject * ___sender0, AssemblyLoadEventArgs_t2792010465 * ___args1, const RuntimeMethod* method)
{
if(__this->get_prev_9() != NULL)
{
AssemblyLoadEventHandler_Invoke_m1462077361((AssemblyLoadEventHandler_t107971893 *)__this->get_prev_9(), ___sender0, ___args1, method);
}
Il2CppMethodPointer targetMethodPointer = __this->get_method_ptr_0();
RuntimeMethod* targetMethod = (RuntimeMethod*)(__this->get_method_3());
RuntimeObject* targetThis = __this->get_m_target_2();
il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod);
bool ___methodIsStatic = MethodIsStatic(targetMethod);
if (___methodIsStatic)
{
if (il2cpp_codegen_method_parameter_count(targetMethod) == 2)
{
// open
{
typedef void (*FunctionPointerType) (RuntimeObject *, RuntimeObject *, AssemblyLoadEventArgs_t2792010465 *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(NULL, ___sender0, ___args1, targetMethod);
}
}
else
{
// closed
{
typedef void (*FunctionPointerType) (RuntimeObject *, void*, RuntimeObject *, AssemblyLoadEventArgs_t2792010465 *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(NULL, targetThis, ___sender0, ___args1, targetMethod);
}
}
}
else
{
if (il2cpp_codegen_method_parameter_count(targetMethod) == 2)
{
// closed
if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
GenericInterfaceActionInvoker2< RuntimeObject *, AssemblyLoadEventArgs_t2792010465 * >::Invoke(targetMethod, targetThis, ___sender0, ___args1);
else
GenericVirtActionInvoker2< RuntimeObject *, AssemblyLoadEventArgs_t2792010465 * >::Invoke(targetMethod, targetThis, ___sender0, ___args1);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
InterfaceActionInvoker2< RuntimeObject *, AssemblyLoadEventArgs_t2792010465 * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___sender0, ___args1);
else
VirtActionInvoker2< RuntimeObject *, AssemblyLoadEventArgs_t2792010465 * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___sender0, ___args1);
}
}
else
{
typedef void (*FunctionPointerType) (void*, RuntimeObject *, AssemblyLoadEventArgs_t2792010465 *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetThis, ___sender0, ___args1, targetMethod);
}
}
else
{
// open
if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
GenericInterfaceActionInvoker1< AssemblyLoadEventArgs_t2792010465 * >::Invoke(targetMethod, ___sender0, ___args1);
else
GenericVirtActionInvoker1< AssemblyLoadEventArgs_t2792010465 * >::Invoke(targetMethod, ___sender0, ___args1);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
InterfaceActionInvoker1< AssemblyLoadEventArgs_t2792010465 * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), ___sender0, ___args1);
else
VirtActionInvoker1< AssemblyLoadEventArgs_t2792010465 * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), ___sender0, ___args1);
}
}
else
{
typedef void (*FunctionPointerType) (RuntimeObject *, AssemblyLoadEventArgs_t2792010465 *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(___sender0, ___args1, targetMethod);
}
}
}
}
// System.IAsyncResult System.AssemblyLoadEventHandler::BeginInvoke(System.Object,System.AssemblyLoadEventArgs,System.AsyncCallback,System.Object)
extern "C" RuntimeObject* AssemblyLoadEventHandler_BeginInvoke_m1281107466 (AssemblyLoadEventHandler_t107971893 * __this, RuntimeObject * ___sender0, AssemblyLoadEventArgs_t2792010465 * ___args1, AsyncCallback_t3962456242 * ___callback2, RuntimeObject * ___object3, const RuntimeMethod* method)
{
void *__d_args[3] = {0};
__d_args[0] = ___sender0;
__d_args[1] = ___args1;
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback2, (RuntimeObject*)___object3);
}
// System.Void System.AssemblyLoadEventHandler::EndInvoke(System.IAsyncResult)
extern "C" void AssemblyLoadEventHandler_EndInvoke_m18714231 (AssemblyLoadEventHandler_t107971893 * __this, RuntimeObject* ___result0, const RuntimeMethod* method)
{
il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.AsyncCallback::.ctor(System.Object,System.IntPtr)
extern "C" void AsyncCallback__ctor_m530647953 (AsyncCallback_t3962456242 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
__this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1));
__this->set_method_3(___method1);
__this->set_m_target_2(___object0);
}
// System.Void System.AsyncCallback::Invoke(System.IAsyncResult)
extern "C" void AsyncCallback_Invoke_m3156993048 (AsyncCallback_t3962456242 * __this, RuntimeObject* ___ar0, const RuntimeMethod* method)
{
if(__this->get_prev_9() != NULL)
{
AsyncCallback_Invoke_m3156993048((AsyncCallback_t3962456242 *)__this->get_prev_9(), ___ar0, method);
}
Il2CppMethodPointer targetMethodPointer = __this->get_method_ptr_0();
RuntimeMethod* targetMethod = (RuntimeMethod*)(__this->get_method_3());
RuntimeObject* targetThis = __this->get_m_target_2();
il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod);
bool ___methodIsStatic = MethodIsStatic(targetMethod);
if (___methodIsStatic)
{
if (il2cpp_codegen_method_parameter_count(targetMethod) == 1)
{
// open
{
typedef void (*FunctionPointerType) (RuntimeObject *, RuntimeObject*, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(NULL, ___ar0, targetMethod);
}
}
else
{
// closed
{
typedef void (*FunctionPointerType) (RuntimeObject *, void*, RuntimeObject*, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(NULL, targetThis, ___ar0, targetMethod);
}
}
}
else
{
if (il2cpp_codegen_method_parameter_count(targetMethod) == 1)
{
// closed
if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
GenericInterfaceActionInvoker1< RuntimeObject* >::Invoke(targetMethod, targetThis, ___ar0);
else
GenericVirtActionInvoker1< RuntimeObject* >::Invoke(targetMethod, targetThis, ___ar0);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
InterfaceActionInvoker1< RuntimeObject* >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___ar0);
else
VirtActionInvoker1< RuntimeObject* >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___ar0);
}
}
else
{
typedef void (*FunctionPointerType) (void*, RuntimeObject*, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetThis, ___ar0, targetMethod);
}
}
else
{
// open
if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
GenericInterfaceActionInvoker0::Invoke(targetMethod, ___ar0);
else
GenericVirtActionInvoker0::Invoke(targetMethod, ___ar0);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
InterfaceActionInvoker0::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), ___ar0);
else
VirtActionInvoker0::Invoke(il2cpp_codegen_method_get_slot(targetMethod), ___ar0);
}
}
else
{
typedef void (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(___ar0, targetMethod);
}
}
}
}
// System.IAsyncResult System.AsyncCallback::BeginInvoke(System.IAsyncResult,System.AsyncCallback,System.Object)
extern "C" RuntimeObject* AsyncCallback_BeginInvoke_m2710486612 (AsyncCallback_t3962456242 * __this, RuntimeObject* ___ar0, AsyncCallback_t3962456242 * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method)
{
void *__d_args[2] = {0};
__d_args[0] = ___ar0;
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2);
}
// System.Void System.AsyncCallback::EndInvoke(System.IAsyncResult)
extern "C" void AsyncCallback_EndInvoke_m1460833738 (AsyncCallback_t3962456242 * __this, RuntimeObject* ___result0, const RuntimeMethod* method)
{
il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Attribute::.ctor()
extern "C" void Attribute__ctor_m1529526131 (Attribute_t861562559 * __this, const RuntimeMethod* method)
{
{
Object__ctor_m297566312(__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Attribute::CheckParameters(System.Object,System.Type)
extern "C" void Attribute_CheckParameters_m456532822 (RuntimeObject * __this /* static, unused */, RuntimeObject * ___element0, Type_t * ___attributeType1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Attribute_CheckParameters_m456532822_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject * L_0 = ___element0;
if (L_0)
{
goto IL_0011;
}
}
{
ArgumentNullException_t1615371798 * L_1 = (ArgumentNullException_t1615371798 *)il2cpp_codegen_object_new(ArgumentNullException_t1615371798_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m1170824041(L_1, _stringLiteral4059539929, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1,Attribute_CheckParameters_m456532822_RuntimeMethod_var);
}
IL_0011:
{
Type_t * L_2 = ___attributeType1;
if (L_2)
{
goto IL_0022;
}
}
{
ArgumentNullException_t1615371798 * L_3 = (ArgumentNullException_t1615371798 *)il2cpp_codegen_object_new(ArgumentNullException_t1615371798_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m1170824041(L_3, _stringLiteral1460131600, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3,Attribute_CheckParameters_m456532822_RuntimeMethod_var);
}
IL_0022:
{
RuntimeTypeHandle_t3027515415 L_4 = { reinterpret_cast<intptr_t> (Attribute_t861562559_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_5 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, L_4, /*hidden argument*/NULL);
Type_t * L_6 = ___attributeType1;
bool L_7 = VirtFuncInvoker1< bool, Type_t * >::Invoke(40 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, L_5, L_6);
if (L_7)
{
goto IL_004c;
}
}
{
String_t* L_8 = Locale_GetText_m3374010885(NULL /*static, unused*/, _stringLiteral1497536000, /*hidden argument*/NULL);
ArgumentException_t132251570 * L_9 = (ArgumentException_t132251570 *)il2cpp_codegen_object_new(ArgumentException_t132251570_il2cpp_TypeInfo_var);
ArgumentException__ctor_m1216717135(L_9, L_8, _stringLiteral1460131600, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_9,Attribute_CheckParameters_m456532822_RuntimeMethod_var);
}
IL_004c:
{
return;
}
}
// System.Attribute System.Attribute::GetCustomAttribute(System.Reflection.MemberInfo,System.Type)
extern "C" Attribute_t861562559 * Attribute_GetCustomAttribute_m4034845276 (RuntimeObject * __this /* static, unused */, MemberInfo_t * ___element0, Type_t * ___attributeType1, const RuntimeMethod* method)
{
{
MemberInfo_t * L_0 = ___element0;
Type_t * L_1 = ___attributeType1;
Attribute_t861562559 * L_2 = Attribute_GetCustomAttribute_m1244111375(NULL /*static, unused*/, L_0, L_1, (bool)1, /*hidden argument*/NULL);
return L_2;
}
}
// System.Attribute System.Attribute::GetCustomAttribute(System.Reflection.MemberInfo,System.Type,System.Boolean)
extern "C" Attribute_t861562559 * Attribute_GetCustomAttribute_m1244111375 (RuntimeObject * __this /* static, unused */, MemberInfo_t * ___element0, Type_t * ___attributeType1, bool ___inherit2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Attribute_GetCustomAttribute_m1244111375_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
MemberInfo_t * L_0 = ___element0;
Type_t * L_1 = ___attributeType1;
Attribute_CheckParameters_m456532822(NULL /*static, unused*/, L_0, L_1, /*hidden argument*/NULL);
MemberInfo_t * L_2 = ___element0;
Type_t * L_3 = ___attributeType1;
bool L_4 = ___inherit2;
IL2CPP_RUNTIME_CLASS_INIT(MonoCustomAttrs_t3634537737_il2cpp_TypeInfo_var);
Attribute_t861562559 * L_5 = MonoCustomAttrs_GetCustomAttribute_m1568487577(NULL /*static, unused*/, L_2, L_3, L_4, /*hidden argument*/NULL);
return L_5;
}
}
// System.Int32 System.Attribute::GetHashCode()
extern "C" int32_t Attribute_GetHashCode_m2508706224 (Attribute_t861562559 * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = Object_GetHashCode_m2705121830(__this, /*hidden argument*/NULL);
return L_0;
}
}
// System.Boolean System.Attribute::IsDefined(System.Reflection.ParameterInfo,System.Type)
extern "C" bool Attribute_IsDefined_m4069052474 (RuntimeObject * __this /* static, unused */, ParameterInfo_t1861056598 * ___element0, Type_t * ___attributeType1, const RuntimeMethod* method)
{
{
ParameterInfo_t1861056598 * L_0 = ___element0;
Type_t * L_1 = ___attributeType1;
bool L_2 = Attribute_IsDefined_m3355705882(NULL /*static, unused*/, L_0, L_1, (bool)1, /*hidden argument*/NULL);
return L_2;
}
}
// System.Boolean System.Attribute::IsDefined(System.Reflection.MemberInfo,System.Type)
extern "C" bool Attribute_IsDefined_m3363303722 (RuntimeObject * __this /* static, unused */, MemberInfo_t * ___element0, Type_t * ___attributeType1, const RuntimeMethod* method)
{
{
MemberInfo_t * L_0 = ___element0;
Type_t * L_1 = ___attributeType1;
bool L_2 = Attribute_IsDefined_m1430686743(NULL /*static, unused*/, L_0, L_1, (bool)1, /*hidden argument*/NULL);
return L_2;
}
}
// System.Boolean System.Attribute::IsDefined(System.Reflection.MemberInfo,System.Type,System.Boolean)
extern "C" bool Attribute_IsDefined_m1430686743 (RuntimeObject * __this /* static, unused */, MemberInfo_t * ___element0, Type_t * ___attributeType1, bool ___inherit2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Attribute_IsDefined_m1430686743_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
{
MemberInfo_t * L_0 = ___element0;
Type_t * L_1 = ___attributeType1;
Attribute_CheckParameters_m456532822(NULL /*static, unused*/, L_0, L_1, /*hidden argument*/NULL);
MemberInfo_t * L_2 = ___element0;
int32_t L_3 = VirtFuncInvoker0< int32_t >::Invoke(7 /* System.Reflection.MemberTypes System.Reflection.MemberInfo::get_MemberType() */, L_2);
V_0 = L_3;
int32_t L_4 = V_0;
if ((((int32_t)L_4) == ((int32_t)1)))
{
goto IL_0055;
}
}
{
int32_t L_5 = V_0;
if ((((int32_t)L_5) == ((int32_t)2)))
{
goto IL_0055;
}
}
{
int32_t L_6 = V_0;
if ((((int32_t)L_6) == ((int32_t)4)))
{
goto IL_0055;
}
}
{
int32_t L_7 = V_0;
if ((((int32_t)L_7) == ((int32_t)8)))
{
goto IL_0055;
}
}
{
int32_t L_8 = V_0;
if ((((int32_t)L_8) == ((int32_t)((int32_t)16))))
{
goto IL_0055;
}
}
{
int32_t L_9 = V_0;
if ((((int32_t)L_9) == ((int32_t)((int32_t)32))))
{
goto IL_0055;
}
}
{
int32_t L_10 = V_0;
if ((((int32_t)L_10) == ((int32_t)((int32_t)128))))
{
goto IL_0055;
}
}
{
String_t* L_11 = Locale_GetText_m3374010885(NULL /*static, unused*/, _stringLiteral919961682, /*hidden argument*/NULL);
NotSupportedException_t1314879016 * L_12 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var);
NotSupportedException__ctor_m2494070935(L_12, L_11, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_12,Attribute_IsDefined_m1430686743_RuntimeMethod_var);
}
IL_0055:
{
int32_t L_13 = V_0;
if ((!(((uint32_t)L_13) == ((uint32_t)((int32_t)16)))))
{
goto IL_0066;
}
}
{
MemberInfo_t * L_14 = ___element0;
Type_t * L_15 = ___attributeType1;
bool L_16 = ___inherit2;
IL2CPP_RUNTIME_CLASS_INIT(MonoCustomAttrs_t3634537737_il2cpp_TypeInfo_var);
bool L_17 = MonoCustomAttrs_IsDefined_m2996012389(NULL /*static, unused*/, L_14, L_15, L_16, /*hidden argument*/NULL);
return L_17;
}
IL_0066:
{
MemberInfo_t * L_18 = ___element0;
Type_t * L_19 = ___attributeType1;
bool L_20 = ___inherit2;
bool L_21 = VirtFuncInvoker2< bool, Type_t *, bool >::Invoke(11 /* System.Boolean System.Reflection.MemberInfo::IsDefined(System.Type,System.Boolean) */, L_18, L_19, L_20);
return L_21;
}
}
// System.Boolean System.Attribute::IsDefined(System.Reflection.ParameterInfo,System.Type,System.Boolean)
extern "C" bool Attribute_IsDefined_m3355705882 (RuntimeObject * __this /* static, unused */, ParameterInfo_t1861056598 * ___element0, Type_t * ___attributeType1, bool ___inherit2, const RuntimeMethod* method)
{
{
ParameterInfo_t1861056598 * L_0 = ___element0;
Type_t * L_1 = ___attributeType1;
Attribute_CheckParameters_m456532822(NULL /*static, unused*/, L_0, L_1, /*hidden argument*/NULL);
ParameterInfo_t1861056598 * L_2 = ___element0;
Type_t * L_3 = ___attributeType1;
bool L_4 = ___inherit2;
bool L_5 = VirtFuncInvoker2< bool, Type_t *, bool >::Invoke(12 /* System.Boolean System.Reflection.ParameterInfo::IsDefined(System.Type,System.Boolean) */, L_2, L_3, L_4);
if (!L_5)
{
goto IL_0016;
}
}
{
return (bool)1;
}
IL_0016:
{
ParameterInfo_t1861056598 * L_6 = ___element0;
MemberInfo_t * L_7 = VirtFuncInvoker0< MemberInfo_t * >::Invoke(8 /* System.Reflection.MemberInfo System.Reflection.ParameterInfo::get_Member() */, L_6);
Type_t * L_8 = ___attributeType1;
bool L_9 = ___inherit2;
bool L_10 = Attribute_IsDefined_m1430686743(NULL /*static, unused*/, L_7, L_8, L_9, /*hidden argument*/NULL);
return L_10;
}
}
// System.Boolean System.Attribute::Equals(System.Object)
extern "C" bool Attribute_Equals_m710241514 (Attribute_t861562559 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Attribute_Equals_m710241514_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject * L_0 = ___obj0;
if (!L_0)
{
goto IL_0011;
}
}
{
RuntimeObject * L_1 = ___obj0;
if (((Attribute_t861562559 *)IsInstClass((RuntimeObject*)L_1, Attribute_t861562559_il2cpp_TypeInfo_var)))
{
goto IL_0013;
}
}
IL_0011:
{
return (bool)0;
}
IL_0013:
{
RuntimeObject * L_2 = ___obj0;
bool L_3 = ValueType_DefaultEquals_m2927252100(NULL /*static, unused*/, __this, L_2, /*hidden argument*/NULL);
return L_3;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.AttributeUsageAttribute::.ctor(System.AttributeTargets)
extern "C" void AttributeUsageAttribute__ctor_m3683365572 (AttributeUsageAttribute_t290877318 * __this, int32_t ___validOn0, const RuntimeMethod* method)
{
{
__this->set_inherited_2((bool)1);
Attribute__ctor_m1529526131(__this, /*hidden argument*/NULL);
int32_t L_0 = ___validOn0;
__this->set_valid_on_0(L_0);
return;
}
}
// System.Boolean System.AttributeUsageAttribute::get_AllowMultiple()
extern "C" bool AttributeUsageAttribute_get_AllowMultiple_m2247746686 (AttributeUsageAttribute_t290877318 * __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->get_allow_multiple_1();
return L_0;
}
}
// System.Void System.AttributeUsageAttribute::set_AllowMultiple(System.Boolean)
extern "C" void AttributeUsageAttribute_set_AllowMultiple_m625992462 (AttributeUsageAttribute_t290877318 * __this, bool ___value0, const RuntimeMethod* method)
{
{
bool L_0 = ___value0;
__this->set_allow_multiple_1(L_0);
return;
}
}
// System.Boolean System.AttributeUsageAttribute::get_Inherited()
extern "C" bool AttributeUsageAttribute_get_Inherited_m2911062450 (AttributeUsageAttribute_t290877318 * __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->get_inherited_2();
return L_0;
}
}
// System.Void System.AttributeUsageAttribute::set_Inherited(System.Boolean)
extern "C" void AttributeUsageAttribute_set_Inherited_m1799999820 (AttributeUsageAttribute_t290877318 * __this, bool ___value0, const RuntimeMethod* method)
{
{
bool L_0 = ___value0;
__this->set_inherited_2(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.BitConverter::.cctor()
extern "C" void BitConverter__cctor_m3841343255 (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (BitConverter__cctor_m3841343255_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
bool L_0 = BitConverter_DoubleWordsAreSwapped_m1474345095(NULL /*static, unused*/, /*hidden argument*/NULL);
((BitConverter_t3118986983_StaticFields*)il2cpp_codegen_static_fields_for(BitConverter_t3118986983_il2cpp_TypeInfo_var))->set_SwappedWordsInDouble_0(L_0);
bool L_1 = BitConverter_AmILittleEndian_m4092412670(NULL /*static, unused*/, /*hidden argument*/NULL);
((BitConverter_t3118986983_StaticFields*)il2cpp_codegen_static_fields_for(BitConverter_t3118986983_il2cpp_TypeInfo_var))->set_IsLittleEndian_1(L_1);
return;
}
}
// System.Boolean System.BitConverter::AmILittleEndian()
extern "C" bool BitConverter_AmILittleEndian_m4092412670 (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method)
{
double V_0 = 0.0;
uint8_t* V_1 = NULL;
{
V_0 = (1.0);
V_1 = (uint8_t*)(&V_0);
uint8_t* L_0 = V_1;
return (bool)((((int32_t)(*((uint8_t*)L_0))) == ((int32_t)0))? 1 : 0);
}
}
// System.Boolean System.BitConverter::DoubleWordsAreSwapped()
extern "C" bool BitConverter_DoubleWordsAreSwapped_m1474345095 (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method)
{
double V_0 = 0.0;
uint8_t* V_1 = NULL;
{
V_0 = (1.0);
V_1 = (uint8_t*)(&V_0);
uint8_t* L_0 = V_1;
return (bool)((((int32_t)(*((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_0, (int32_t)2))))) == ((int32_t)((int32_t)240)))? 1 : 0);
}
}
// System.Int64 System.BitConverter::DoubleToInt64Bits(System.Double)
extern "C" int64_t BitConverter_DoubleToInt64Bits_m3574395137 (RuntimeObject * __this /* static, unused */, double ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (BitConverter_DoubleToInt64Bits_m3574395137_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
double L_0 = ___value0;
IL2CPP_RUNTIME_CLASS_INIT(BitConverter_t3118986983_il2cpp_TypeInfo_var);
ByteU5BU5D_t4116647657* L_1 = BitConverter_GetBytes_m3693159656(NULL /*static, unused*/, L_0, /*hidden argument*/NULL);
int64_t L_2 = BitConverter_ToInt64_m349022421(NULL /*static, unused*/, L_1, 0, /*hidden argument*/NULL);
return L_2;
}
}
// System.Byte[] System.BitConverter::GetBytes(System.Byte*,System.Int32)
extern "C" ByteU5BU5D_t4116647657* BitConverter_GetBytes_m2120707223 (RuntimeObject * __this /* static, unused */, uint8_t* ___ptr0, int32_t ___count1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (BitConverter_GetBytes_m2120707223_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ByteU5BU5D_t4116647657* V_0 = NULL;
int32_t V_1 = 0;
{
int32_t L_0 = ___count1;
V_0 = ((ByteU5BU5D_t4116647657*)SZArrayNew(ByteU5BU5D_t4116647657_il2cpp_TypeInfo_var, (uint32_t)L_0));
V_1 = 0;
goto IL_0019;
}
IL_000e:
{
ByteU5BU5D_t4116647657* L_1 = V_0;
int32_t L_2 = V_1;
uint8_t* L_3 = ___ptr0;
int32_t L_4 = V_1;
(L_1)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(L_2), (uint8_t)(*((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_3, (int32_t)L_4)))));
int32_t L_5 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_5, (int32_t)1));
}
IL_0019:
{
int32_t L_6 = V_1;
int32_t L_7 = ___count1;
if ((((int32_t)L_6) < ((int32_t)L_7)))
{
goto IL_000e;
}
}
{
ByteU5BU5D_t4116647657* L_8 = V_0;
return L_8;
}
}
// System.Byte[] System.BitConverter::GetBytes(System.Double)
extern "C" ByteU5BU5D_t4116647657* BitConverter_GetBytes_m3693159656 (RuntimeObject * __this /* static, unused */, double ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (BitConverter_GetBytes_m3693159656_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ByteU5BU5D_t4116647657* V_0 = NULL;
uint8_t* V_1 = NULL;
{
IL2CPP_RUNTIME_CLASS_INIT(BitConverter_t3118986983_il2cpp_TypeInfo_var);
bool L_0 = ((BitConverter_t3118986983_StaticFields*)il2cpp_codegen_static_fields_for(BitConverter_t3118986983_il2cpp_TypeInfo_var))->get_SwappedWordsInDouble_0();
if (!L_0)
{
goto IL_004c;
}
}
{
V_0 = ((ByteU5BU5D_t4116647657*)SZArrayNew(ByteU5BU5D_t4116647657_il2cpp_TypeInfo_var, (uint32_t)8));
V_1 = (uint8_t*)(&___value0);
ByteU5BU5D_t4116647657* L_1 = V_0;
uint8_t* L_2 = V_1;
(L_1)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(0), (uint8_t)(*((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_2, (int32_t)4)))));
ByteU5BU5D_t4116647657* L_3 = V_0;
uint8_t* L_4 = V_1;
(L_3)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(1), (uint8_t)(*((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_4, (int32_t)5)))));
ByteU5BU5D_t4116647657* L_5 = V_0;
uint8_t* L_6 = V_1;
(L_5)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(2), (uint8_t)(*((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_6, (int32_t)6)))));
ByteU5BU5D_t4116647657* L_7 = V_0;
uint8_t* L_8 = V_1;
(L_7)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(3), (uint8_t)(*((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_8, (int32_t)7)))));
ByteU5BU5D_t4116647657* L_9 = V_0;
uint8_t* L_10 = V_1;
(L_9)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(4), (uint8_t)(*((uint8_t*)L_10)));
ByteU5BU5D_t4116647657* L_11 = V_0;
uint8_t* L_12 = V_1;
(L_11)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(5), (uint8_t)(*((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_12, (int32_t)1)))));
ByteU5BU5D_t4116647657* L_13 = V_0;
uint8_t* L_14 = V_1;
(L_13)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(6), (uint8_t)(*((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_14, (int32_t)2)))));
ByteU5BU5D_t4116647657* L_15 = V_0;
uint8_t* L_16 = V_1;
(L_15)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(7), (uint8_t)(*((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_16, (int32_t)3)))));
ByteU5BU5D_t4116647657* L_17 = V_0;
return L_17;
}
IL_004c:
{
IL2CPP_RUNTIME_CLASS_INIT(BitConverter_t3118986983_il2cpp_TypeInfo_var);
ByteU5BU5D_t4116647657* L_18 = BitConverter_GetBytes_m2120707223(NULL /*static, unused*/, (uint8_t*)(uint8_t*)(&___value0), 8, /*hidden argument*/NULL);
return L_18;
}
}
// System.Void System.BitConverter::PutBytes(System.Byte*,System.Byte[],System.Int32,System.Int32)
extern "C" void BitConverter_PutBytes_m2614286581 (RuntimeObject * __this /* static, unused */, uint8_t* ___dst0, ByteU5BU5D_t4116647657* ___src1, int32_t ___start_index2, int32_t ___count3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (BitConverter_PutBytes_m2614286581_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
{
ByteU5BU5D_t4116647657* L_0 = ___src1;
if (L_0)
{
goto IL_0011;
}
}
{
ArgumentNullException_t1615371798 * L_1 = (ArgumentNullException_t1615371798 *)il2cpp_codegen_object_new(ArgumentNullException_t1615371798_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m1170824041(L_1, _stringLiteral3493618073, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1,BitConverter_PutBytes_m2614286581_RuntimeMethod_var);
}
IL_0011:
{
int32_t L_2 = ___start_index2;
if ((((int32_t)L_2) < ((int32_t)0)))
{
goto IL_0023;
}
}
{
int32_t L_3 = ___start_index2;
ByteU5BU5D_t4116647657* L_4 = ___src1;
if ((((int32_t)L_3) <= ((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_4)->max_length)))), (int32_t)1)))))
{
goto IL_0033;
}
}
IL_0023:
{
ArgumentOutOfRangeException_t777629997 * L_5 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m282481429(L_5, _stringLiteral2410720131, _stringLiteral1358229803, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5,BitConverter_PutBytes_m2614286581_RuntimeMethod_var);
}
IL_0033:
{
ByteU5BU5D_t4116647657* L_6 = ___src1;
int32_t L_7 = ___count3;
int32_t L_8 = ___start_index2;
if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_6)->max_length)))), (int32_t)L_7))) >= ((int32_t)L_8)))
{
goto IL_0049;
}
}
{
ArgumentException_t132251570 * L_9 = (ArgumentException_t132251570 *)il2cpp_codegen_object_new(ArgumentException_t132251570_il2cpp_TypeInfo_var);
ArgumentException__ctor_m1312628991(L_9, _stringLiteral218911153, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_9,BitConverter_PutBytes_m2614286581_RuntimeMethod_var);
}
IL_0049:
{
V_0 = 0;
goto IL_005d;
}
IL_0050:
{
uint8_t* L_10 = ___dst0;
int32_t L_11 = V_0;
ByteU5BU5D_t4116647657* L_12 = ___src1;
int32_t L_13 = V_0;
int32_t L_14 = ___start_index2;
int32_t L_15 = ((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)L_14));
uint8_t L_16 = (L_12)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_15));
*((int8_t*)(((uint8_t*)il2cpp_codegen_add((intptr_t)L_10, (int32_t)L_11)))) = (int8_t)L_16;
int32_t L_17 = V_0;
V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_17, (int32_t)1));
}
IL_005d:
{
int32_t L_18 = V_0;
int32_t L_19 = ___count3;
if ((((int32_t)L_18) < ((int32_t)L_19)))
{
goto IL_0050;
}
}
{
return;
}
}
// System.Int64 System.BitConverter::ToInt64(System.Byte[],System.Int32)
extern "C" int64_t BitConverter_ToInt64_m349022421 (RuntimeObject * __this /* static, unused */, ByteU5BU5D_t4116647657* ___value0, int32_t ___startIndex1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (BitConverter_ToInt64_m349022421_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int64_t V_0 = 0;
{
ByteU5BU5D_t4116647657* L_0 = ___value0;
int32_t L_1 = ___startIndex1;
IL2CPP_RUNTIME_CLASS_INIT(BitConverter_t3118986983_il2cpp_TypeInfo_var);
BitConverter_PutBytes_m2614286581(NULL /*static, unused*/, (uint8_t*)(uint8_t*)(&V_0), L_0, L_1, 8, /*hidden argument*/NULL);
int64_t L_2 = V_0;
return L_2;
}
}
// System.String System.BitConverter::ToString(System.Byte[])
extern "C" String_t* BitConverter_ToString_m3464863163 (RuntimeObject * __this /* static, unused */, ByteU5BU5D_t4116647657* ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (BitConverter_ToString_m3464863163_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
ByteU5BU5D_t4116647657* L_0 = ___value0;
if (L_0)
{
goto IL_0011;
}
}
{
ArgumentNullException_t1615371798 * L_1 = (ArgumentNullException_t1615371798 *)il2cpp_codegen_object_new(ArgumentNullException_t1615371798_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m1170824041(L_1, _stringLiteral3493618073, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1,BitConverter_ToString_m3464863163_RuntimeMethod_var);
}
IL_0011:
{
ByteU5BU5D_t4116647657* L_2 = ___value0;
ByteU5BU5D_t4116647657* L_3 = ___value0;
IL2CPP_RUNTIME_CLASS_INIT(BitConverter_t3118986983_il2cpp_TypeInfo_var);
String_t* L_4 = BitConverter_ToString_m3439099539(NULL /*static, unused*/, L_2, 0, (((int32_t)((int32_t)(((RuntimeArray *)L_3)->max_length)))), /*hidden argument*/NULL);
return L_4;
}
}
// System.String System.BitConverter::ToString(System.Byte[],System.Int32,System.Int32)
extern "C" String_t* BitConverter_ToString_m3439099539 (RuntimeObject * __this /* static, unused */, ByteU5BU5D_t4116647657* ___value0, int32_t ___startIndex1, int32_t ___length2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (BitConverter_ToString_m3439099539_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
StringBuilder_t * V_0 = NULL;
int32_t V_1 = 0;
int32_t V_2 = 0;
Il2CppChar V_3 = 0x0;
Il2CppChar V_4 = 0x0;
{
ByteU5BU5D_t4116647657* L_0 = ___value0;
if (L_0)
{
goto IL_0011;
}
}
{
ArgumentNullException_t1615371798 * L_1 = (ArgumentNullException_t1615371798 *)il2cpp_codegen_object_new(ArgumentNullException_t1615371798_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m1170824041(L_1, _stringLiteral1401089528, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1,BitConverter_ToString_m3439099539_RuntimeMethod_var);
}
IL_0011:
{
int32_t L_2 = ___startIndex1;
if ((((int32_t)L_2) < ((int32_t)0)))
{
goto IL_0021;
}
}
{
int32_t L_3 = ___startIndex1;
ByteU5BU5D_t4116647657* L_4 = ___value0;
if ((((int32_t)L_3) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_4)->max_length)))))))
{
goto IL_0045;
}
}
IL_0021:
{
int32_t L_5 = ___startIndex1;
if (L_5)
{
goto IL_0035;
}
}
{
ByteU5BU5D_t4116647657* L_6 = ___value0;
if ((((int32_t)((int32_t)(((RuntimeArray *)L_6)->max_length)))))
{
goto IL_0035;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
String_t* L_7 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_2();
return L_7;
}
IL_0035:
{
ArgumentOutOfRangeException_t777629997 * L_8 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m282481429(L_8, _stringLiteral2410720131, _stringLiteral1358229803, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_8,BitConverter_ToString_m3439099539_RuntimeMethod_var);
}
IL_0045:
{
int32_t L_9 = ___length2;
if ((((int32_t)L_9) >= ((int32_t)0)))
{
goto IL_005c;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_10 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m282481429(L_10, _stringLiteral1212500642, _stringLiteral1939948882, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_10,BitConverter_ToString_m3439099539_RuntimeMethod_var);
}
IL_005c:
{
int32_t L_11 = ___startIndex1;
ByteU5BU5D_t4116647657* L_12 = ___value0;
int32_t L_13 = ___length2;
if ((((int32_t)L_11) <= ((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_12)->max_length)))), (int32_t)L_13)))))
{
goto IL_0072;
}
}
{
ArgumentException_t132251570 * L_14 = (ArgumentException_t132251570 *)il2cpp_codegen_object_new(ArgumentException_t132251570_il2cpp_TypeInfo_var);
ArgumentException__ctor_m1312628991(L_14, _stringLiteral3506339377, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_14,BitConverter_ToString_m3439099539_RuntimeMethod_var);
}
IL_0072:
{
int32_t L_15 = ___length2;
if (L_15)
{
goto IL_007e;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
String_t* L_16 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_2();
return L_16;
}
IL_007e:
{
int32_t L_17 = ___length2;
StringBuilder_t * L_18 = (StringBuilder_t *)il2cpp_codegen_object_new(StringBuilder_t_il2cpp_TypeInfo_var);
StringBuilder__ctor_m2367297767(L_18, ((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)L_17, (int32_t)3)), (int32_t)1)), /*hidden argument*/NULL);
V_0 = L_18;
int32_t L_19 = ___startIndex1;
int32_t L_20 = ___length2;
V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_19, (int32_t)L_20));
int32_t L_21 = ___startIndex1;
V_2 = L_21;
goto IL_0111;
}
IL_0094:
{
int32_t L_22 = V_2;
int32_t L_23 = ___startIndex1;
if ((((int32_t)L_22) <= ((int32_t)L_23)))
{
goto IL_00a4;
}
}
{
StringBuilder_t * L_24 = V_0;
StringBuilder_Append_m2383614642(L_24, ((int32_t)45), /*hidden argument*/NULL);
}
IL_00a4:
{
ByteU5BU5D_t4116647657* L_25 = ___value0;
int32_t L_26 = V_2;
int32_t L_27 = L_26;
uint8_t L_28 = (L_25)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_27));
V_3 = (((int32_t)((uint16_t)((int32_t)((int32_t)((int32_t)((int32_t)L_28>>(int32_t)4))&(int32_t)((int32_t)15))))));
ByteU5BU5D_t4116647657* L_29 = ___value0;
int32_t L_30 = V_2;
int32_t L_31 = L_30;
uint8_t L_32 = (L_29)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_31));
V_4 = (((int32_t)((uint16_t)((int32_t)((int32_t)L_32&(int32_t)((int32_t)15))))));
Il2CppChar L_33 = V_3;
if ((((int32_t)L_33) >= ((int32_t)((int32_t)10))))
{
goto IL_00ca;
}
}
{
Il2CppChar L_34 = V_3;
V_3 = (((int32_t)((uint16_t)((int32_t)il2cpp_codegen_add((int32_t)L_34, (int32_t)((int32_t)48))))));
goto IL_00d6;
}
IL_00ca:
{
Il2CppChar L_35 = V_3;
V_3 = (((int32_t)((uint16_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_35, (int32_t)((int32_t)10))))));
Il2CppChar L_36 = V_3;
V_3 = (((int32_t)((uint16_t)((int32_t)il2cpp_codegen_add((int32_t)L_36, (int32_t)((int32_t)65))))));
}
IL_00d6:
{
Il2CppChar L_37 = V_4;
if ((((int32_t)L_37) >= ((int32_t)((int32_t)10))))
{
goto IL_00ec;
}
}
{
Il2CppChar L_38 = V_4;
V_4 = (((int32_t)((uint16_t)((int32_t)il2cpp_codegen_add((int32_t)L_38, (int32_t)((int32_t)48))))));
goto IL_00fc;
}
IL_00ec:
{
Il2CppChar L_39 = V_4;
V_4 = (((int32_t)((uint16_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_39, (int32_t)((int32_t)10))))));
Il2CppChar L_40 = V_4;
V_4 = (((int32_t)((uint16_t)((int32_t)il2cpp_codegen_add((int32_t)L_40, (int32_t)((int32_t)65))))));
}
IL_00fc:
{
StringBuilder_t * L_41 = V_0;
Il2CppChar L_42 = V_3;
StringBuilder_Append_m2383614642(L_41, L_42, /*hidden argument*/NULL);
StringBuilder_t * L_43 = V_0;
Il2CppChar L_44 = V_4;
StringBuilder_Append_m2383614642(L_43, L_44, /*hidden argument*/NULL);
int32_t L_45 = V_2;
V_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_45, (int32_t)1));
}
IL_0111:
{
int32_t L_46 = V_2;
int32_t L_47 = V_1;
if ((((int32_t)L_46) < ((int32_t)L_47)))
{
goto IL_0094;
}
}
{
StringBuilder_t * L_48 = V_0;
String_t* L_49 = StringBuilder_ToString_m3317489284(L_48, /*hidden argument*/NULL);
return L_49;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Boolean::.cctor()
extern "C" void Boolean__cctor_m1091629305 (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Boolean__cctor_m1091629305_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
((Boolean_t97287965_StaticFields*)il2cpp_codegen_static_fields_for(Boolean_t97287965_il2cpp_TypeInfo_var))->set_FalseString_0(_stringLiteral3875955625);
((Boolean_t97287965_StaticFields*)il2cpp_codegen_static_fields_for(Boolean_t97287965_il2cpp_TypeInfo_var))->set_TrueString_1(_stringLiteral4002445261);
return;
}
}
// System.Object System.Boolean::System.IConvertible.ToType(System.Type,System.IFormatProvider)
extern "C" RuntimeObject * Boolean_System_IConvertible_ToType_m2078828242 (bool* __this, Type_t * ___targetType0, RuntimeObject* ___provider1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Boolean_System_IConvertible_ToType_m2078828242_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Type_t * L_0 = ___targetType0;
if (L_0)
{
goto IL_0011;
}
}
{
ArgumentNullException_t1615371798 * L_1 = (ArgumentNullException_t1615371798 *)il2cpp_codegen_object_new(ArgumentNullException_t1615371798_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m1170824041(L_1, _stringLiteral3252615044, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1,Boolean_System_IConvertible_ToType_m2078828242_RuntimeMethod_var);
}
IL_0011:
{
bool L_2 = ((bool)(*((int8_t*)__this)));
RuntimeObject * L_3 = Box(Boolean_t97287965_il2cpp_TypeInfo_var, &L_2);
Type_t * L_4 = ___targetType0;
RuntimeObject* L_5 = ___provider1;
IL2CPP_RUNTIME_CLASS_INIT(Convert_t2465617642_il2cpp_TypeInfo_var);
RuntimeObject * L_6 = Convert_ToType_m2406080310(NULL /*static, unused*/, L_3, L_4, L_5, (bool)0, /*hidden argument*/NULL);
return L_6;
}
}
extern "C" RuntimeObject * Boolean_System_IConvertible_ToType_m2078828242_AdjustorThunk (RuntimeObject * __this, Type_t * ___targetType0, RuntimeObject* ___provider1, const RuntimeMethod* method)
{
bool* _thisAdjusted = reinterpret_cast<bool*>(__this + 1);
return Boolean_System_IConvertible_ToType_m2078828242(_thisAdjusted, ___targetType0, ___provider1, method);
}
// System.Boolean System.Boolean::System.IConvertible.ToBoolean(System.IFormatProvider)
extern "C" bool Boolean_System_IConvertible_ToBoolean_m422934902 (bool* __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
{
return (bool)(*((int8_t*)__this));
}
}
extern "C" bool Boolean_System_IConvertible_ToBoolean_m422934902_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
bool* _thisAdjusted = reinterpret_cast<bool*>(__this + 1);
return Boolean_System_IConvertible_ToBoolean_m422934902(_thisAdjusted, ___provider0, method);
}
// System.Byte System.Boolean::System.IConvertible.ToByte(System.IFormatProvider)
extern "C" uint8_t Boolean_System_IConvertible_ToByte_m3917074947 (bool* __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Boolean_System_IConvertible_ToByte_m3917074947_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(Convert_t2465617642_il2cpp_TypeInfo_var);
uint8_t L_0 = Convert_ToByte_m306367912(NULL /*static, unused*/, (bool)(*((int8_t*)__this)), /*hidden argument*/NULL);
return L_0;
}
}
extern "C" uint8_t Boolean_System_IConvertible_ToByte_m3917074947_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
bool* _thisAdjusted = reinterpret_cast<bool*>(__this + 1);
return Boolean_System_IConvertible_ToByte_m3917074947(_thisAdjusted, ___provider0, method);
}
// System.Char System.Boolean::System.IConvertible.ToChar(System.IFormatProvider)
extern "C" Il2CppChar Boolean_System_IConvertible_ToChar_m4279513009 (bool* __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Boolean_System_IConvertible_ToChar_m4279513009_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
InvalidCastException_t3927145244 * L_0 = (InvalidCastException_t3927145244 *)il2cpp_codegen_object_new(InvalidCastException_t3927145244_il2cpp_TypeInfo_var);
InvalidCastException__ctor_m1807554410(L_0, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0,Boolean_System_IConvertible_ToChar_m4279513009_RuntimeMethod_var);
}
}
extern "C" Il2CppChar Boolean_System_IConvertible_ToChar_m4279513009_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
bool* _thisAdjusted = reinterpret_cast<bool*>(__this + 1);
return Boolean_System_IConvertible_ToChar_m4279513009(_thisAdjusted, ___provider0, method);
}
// System.DateTime System.Boolean::System.IConvertible.ToDateTime(System.IFormatProvider)
extern "C" DateTime_t3738529785 Boolean_System_IConvertible_ToDateTime_m603510836 (bool* __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Boolean_System_IConvertible_ToDateTime_m603510836_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
InvalidCastException_t3927145244 * L_0 = (InvalidCastException_t3927145244 *)il2cpp_codegen_object_new(InvalidCastException_t3927145244_il2cpp_TypeInfo_var);
InvalidCastException__ctor_m1807554410(L_0, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0,Boolean_System_IConvertible_ToDateTime_m603510836_RuntimeMethod_var);
}
}
extern "C" DateTime_t3738529785 Boolean_System_IConvertible_ToDateTime_m603510836_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
bool* _thisAdjusted = reinterpret_cast<bool*>(__this + 1);
return Boolean_System_IConvertible_ToDateTime_m603510836(_thisAdjusted, ___provider0, method);
}
// System.Decimal System.Boolean::System.IConvertible.ToDecimal(System.IFormatProvider)
extern "C" Decimal_t2948259380 Boolean_System_IConvertible_ToDecimal_m3176932461 (bool* __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Boolean_System_IConvertible_ToDecimal_m3176932461_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(Convert_t2465617642_il2cpp_TypeInfo_var);
Decimal_t2948259380 L_0 = Convert_ToDecimal_m2233265097(NULL /*static, unused*/, (bool)(*((int8_t*)__this)), /*hidden argument*/NULL);
return L_0;
}
}
extern "C" Decimal_t2948259380 Boolean_System_IConvertible_ToDecimal_m3176932461_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
bool* _thisAdjusted = reinterpret_cast<bool*>(__this + 1);
return Boolean_System_IConvertible_ToDecimal_m3176932461(_thisAdjusted, ___provider0, method);
}
// System.Double System.Boolean::System.IConvertible.ToDouble(System.IFormatProvider)
extern "C" double Boolean_System_IConvertible_ToDouble_m2859188631 (bool* __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Boolean_System_IConvertible_ToDouble_m2859188631_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(Convert_t2465617642_il2cpp_TypeInfo_var);
double L_0 = Convert_ToDouble_m954895424(NULL /*static, unused*/, (bool)(*((int8_t*)__this)), /*hidden argument*/NULL);
return L_0;
}
}
extern "C" double Boolean_System_IConvertible_ToDouble_m2859188631_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
bool* _thisAdjusted = reinterpret_cast<bool*>(__this + 1);
return Boolean_System_IConvertible_ToDouble_m2859188631(_thisAdjusted, ___provider0, method);
}
// System.Int16 System.Boolean::System.IConvertible.ToInt16(System.IFormatProvider)
extern "C" int16_t Boolean_System_IConvertible_ToInt16_m973746887 (bool* __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Boolean_System_IConvertible_ToInt16_m973746887_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(Convert_t2465617642_il2cpp_TypeInfo_var);
int16_t L_0 = Convert_ToInt16_m3324557887(NULL /*static, unused*/, (bool)(*((int8_t*)__this)), /*hidden argument*/NULL);
return L_0;
}
}
extern "C" int16_t Boolean_System_IConvertible_ToInt16_m973746887_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
bool* _thisAdjusted = reinterpret_cast<bool*>(__this + 1);
return Boolean_System_IConvertible_ToInt16_m973746887(_thisAdjusted, ___provider0, method);
}
// System.Int32 System.Boolean::System.IConvertible.ToInt32(System.IFormatProvider)
extern "C" int32_t Boolean_System_IConvertible_ToInt32_m1127498050 (bool* __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Boolean_System_IConvertible_ToInt32_m1127498050_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(Convert_t2465617642_il2cpp_TypeInfo_var);
int32_t L_0 = Convert_ToInt32_m2100527582(NULL /*static, unused*/, (bool)(*((int8_t*)__this)), /*hidden argument*/NULL);
return L_0;
}
}
extern "C" int32_t Boolean_System_IConvertible_ToInt32_m1127498050_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
bool* _thisAdjusted = reinterpret_cast<bool*>(__this + 1);
return Boolean_System_IConvertible_ToInt32_m1127498050(_thisAdjusted, ___provider0, method);
}
// System.Int64 System.Boolean::System.IConvertible.ToInt64(System.IFormatProvider)
extern "C" int64_t Boolean_System_IConvertible_ToInt64_m2059204559 (bool* __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Boolean_System_IConvertible_ToInt64_m2059204559_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(Convert_t2465617642_il2cpp_TypeInfo_var);
int64_t L_0 = Convert_ToInt64_m2812720657(NULL /*static, unused*/, (bool)(*((int8_t*)__this)), /*hidden argument*/NULL);
return L_0;
}
}
extern "C" int64_t Boolean_System_IConvertible_ToInt64_m2059204559_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
bool* _thisAdjusted = reinterpret_cast<bool*>(__this + 1);
return Boolean_System_IConvertible_ToInt64_m2059204559(_thisAdjusted, ___provider0, method);
}
// System.SByte System.Boolean::System.IConvertible.ToSByte(System.IFormatProvider)
extern "C" int8_t Boolean_System_IConvertible_ToSByte_m806999 (bool* __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Boolean_System_IConvertible_ToSByte_m806999_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(Convert_t2465617642_il2cpp_TypeInfo_var);
int8_t L_0 = Convert_ToSByte_m3284376536(NULL /*static, unused*/, (bool)(*((int8_t*)__this)), /*hidden argument*/NULL);
return L_0;
}
}
extern "C" int8_t Boolean_System_IConvertible_ToSByte_m806999_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
bool* _thisAdjusted = reinterpret_cast<bool*>(__this + 1);
return Boolean_System_IConvertible_ToSByte_m806999(_thisAdjusted, ___provider0, method);
}
// System.Single System.Boolean::System.IConvertible.ToSingle(System.IFormatProvider)
extern "C" float Boolean_System_IConvertible_ToSingle_m1524606222 (bool* __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Boolean_System_IConvertible_ToSingle_m1524606222_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(Convert_t2465617642_il2cpp_TypeInfo_var);
float L_0 = Convert_ToSingle_m1386109941(NULL /*static, unused*/, (bool)(*((int8_t*)__this)), /*hidden argument*/NULL);
return L_0;
}
}
extern "C" float Boolean_System_IConvertible_ToSingle_m1524606222_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
bool* _thisAdjusted = reinterpret_cast<bool*>(__this + 1);
return Boolean_System_IConvertible_ToSingle_m1524606222(_thisAdjusted, ___provider0, method);
}
// System.UInt16 System.Boolean::System.IConvertible.ToUInt16(System.IFormatProvider)
extern "C" uint16_t Boolean_System_IConvertible_ToUInt16_m3465173538 (bool* __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Boolean_System_IConvertible_ToUInt16_m3465173538_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(Convert_t2465617642_il2cpp_TypeInfo_var);
uint16_t L_0 = Convert_ToUInt16_m3116648921(NULL /*static, unused*/, (bool)(*((int8_t*)__this)), /*hidden argument*/NULL);
return L_0;
}
}
extern "C" uint16_t Boolean_System_IConvertible_ToUInt16_m3465173538_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
bool* _thisAdjusted = reinterpret_cast<bool*>(__this + 1);
return Boolean_System_IConvertible_ToUInt16_m3465173538(_thisAdjusted, ___provider0, method);
}
// System.UInt32 System.Boolean::System.IConvertible.ToUInt32(System.IFormatProvider)
extern "C" uint32_t Boolean_System_IConvertible_ToUInt32_m2723177447 (bool* __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Boolean_System_IConvertible_ToUInt32_m2723177447_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(Convert_t2465617642_il2cpp_TypeInfo_var);
uint32_t L_0 = Convert_ToUInt32_m835119716(NULL /*static, unused*/, (bool)(*((int8_t*)__this)), /*hidden argument*/NULL);
return L_0;
}
}
extern "C" uint32_t Boolean_System_IConvertible_ToUInt32_m2723177447_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
bool* _thisAdjusted = reinterpret_cast<bool*>(__this + 1);
return Boolean_System_IConvertible_ToUInt32_m2723177447(_thisAdjusted, ___provider0, method);
}
// System.UInt64 System.Boolean::System.IConvertible.ToUInt64(System.IFormatProvider)
extern "C" uint64_t Boolean_System_IConvertible_ToUInt64_m1739877596 (bool* __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Boolean_System_IConvertible_ToUInt64_m1739877596_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(Convert_t2465617642_il2cpp_TypeInfo_var);
uint64_t L_0 = Convert_ToUInt64_m2343585091(NULL /*static, unused*/, (bool)(*((int8_t*)__this)), /*hidden argument*/NULL);
return L_0;
}
}
extern "C" uint64_t Boolean_System_IConvertible_ToUInt64_m1739877596_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
bool* _thisAdjusted = reinterpret_cast<bool*>(__this + 1);
return Boolean_System_IConvertible_ToUInt64_m1739877596(_thisAdjusted, ___provider0, method);
}
// System.Int32 System.Boolean::CompareTo(System.Object)
extern "C" int32_t Boolean_CompareTo_m3665076258 (bool* __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Boolean_CompareTo_m3665076258_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
int32_t G_B10_0 = 0;
{
RuntimeObject * L_0 = ___obj0;
if (L_0)
{
goto IL_0008;
}
}
{
return 1;
}
IL_0008:
{
RuntimeObject * L_1 = ___obj0;
if (((RuntimeObject *)IsInstSealed((RuntimeObject*)L_1, Boolean_t97287965_il2cpp_TypeInfo_var)))
{
goto IL_0023;
}
}
{
String_t* L_2 = Locale_GetText_m3374010885(NULL /*static, unused*/, _stringLiteral1558646782, /*hidden argument*/NULL);
ArgumentException_t132251570 * L_3 = (ArgumentException_t132251570 *)il2cpp_codegen_object_new(ArgumentException_t132251570_il2cpp_TypeInfo_var);
ArgumentException__ctor_m1312628991(L_3, L_2, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3,Boolean_CompareTo_m3665076258_RuntimeMethod_var);
}
IL_0023:
{
RuntimeObject * L_4 = ___obj0;
V_0 = ((*(bool*)((bool*)UnBox(L_4, Boolean_t97287965_il2cpp_TypeInfo_var))));
if (!(*((int8_t*)__this)))
{
goto IL_0039;
}
}
{
bool L_5 = V_0;
if (L_5)
{
goto IL_0039;
}
}
{
return 1;
}
IL_0039:
{
bool L_6 = V_0;
if ((!(((uint32_t)(*((int8_t*)__this))) == ((uint32_t)L_6))))
{
goto IL_0047;
}
}
{
G_B10_0 = 0;
goto IL_0048;
}
IL_0047:
{
G_B10_0 = (-1);
}
IL_0048:
{
return G_B10_0;
}
}
extern "C" int32_t Boolean_CompareTo_m3665076258_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
bool* _thisAdjusted = reinterpret_cast<bool*>(__this + 1);
return Boolean_CompareTo_m3665076258(_thisAdjusted, ___obj0, method);
}
// System.Boolean System.Boolean::Equals(System.Object)
extern "C" bool Boolean_Equals_m2410333903 (bool* __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Boolean_Equals_m2410333903_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
int32_t G_B6_0 = 0;
{
RuntimeObject * L_0 = ___obj0;
if (!L_0)
{
goto IL_0011;
}
}
{
RuntimeObject * L_1 = ___obj0;
if (((RuntimeObject *)IsInstSealed((RuntimeObject*)L_1, Boolean_t97287965_il2cpp_TypeInfo_var)))
{
goto IL_0013;
}
}
IL_0011:
{
return (bool)0;
}
IL_0013:
{
RuntimeObject * L_2 = ___obj0;
V_0 = ((*(bool*)((bool*)UnBox(L_2, Boolean_t97287965_il2cpp_TypeInfo_var))));
if (!(*((int8_t*)__this)))
{
goto IL_0027;
}
}
{
bool L_3 = V_0;
G_B6_0 = ((int32_t)(L_3));
goto IL_002b;
}
IL_0027:
{
bool L_4 = V_0;
G_B6_0 = ((((int32_t)L_4) == ((int32_t)0))? 1 : 0);
}
IL_002b:
{
return (bool)G_B6_0;
}
}
extern "C" bool Boolean_Equals_m2410333903_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
bool* _thisAdjusted = reinterpret_cast<bool*>(__this + 1);
return Boolean_Equals_m2410333903(_thisAdjusted, ___obj0, method);
}
// System.Int32 System.Boolean::CompareTo(System.Boolean)
extern "C" int32_t Boolean_CompareTo_m3774767002 (bool* __this, bool ___value0, const RuntimeMethod* method)
{
int32_t G_B5_0 = 0;
{
bool L_0 = ___value0;
if ((!(((uint32_t)(*((int8_t*)__this))) == ((uint32_t)L_0))))
{
goto IL_000a;
}
}
{
return 0;
}
IL_000a:
{
if ((*((int8_t*)__this)))
{
goto IL_0017;
}
}
{
G_B5_0 = (-1);
goto IL_0018;
}
IL_0017:
{
G_B5_0 = 1;
}
IL_0018:
{
return G_B5_0;
}
}
extern "C" int32_t Boolean_CompareTo_m3774767002_AdjustorThunk (RuntimeObject * __this, bool ___value0, const RuntimeMethod* method)
{
bool* _thisAdjusted = reinterpret_cast<bool*>(__this + 1);
return Boolean_CompareTo_m3774767002(_thisAdjusted, ___value0, method);
}
// System.Boolean System.Boolean::Equals(System.Boolean)
extern "C" bool Boolean_Equals_m535526264 (bool* __this, bool ___obj0, const RuntimeMethod* method)
{
{
bool L_0 = ___obj0;
return (bool)((((int32_t)(*((int8_t*)__this))) == ((int32_t)L_0))? 1 : 0);
}
}
extern "C" bool Boolean_Equals_m535526264_AdjustorThunk (RuntimeObject * __this, bool ___obj0, const RuntimeMethod* method)
{
bool* _thisAdjusted = reinterpret_cast<bool*>(__this + 1);
return Boolean_Equals_m535526264(_thisAdjusted, ___obj0, method);
}
// System.Int32 System.Boolean::GetHashCode()
extern "C" int32_t Boolean_GetHashCode_m3167312162 (bool* __this, const RuntimeMethod* method)
{
int32_t G_B3_0 = 0;
{
if (!(*((int8_t*)__this)))
{
goto IL_000d;
}
}
{
G_B3_0 = 1;
goto IL_000e;
}
IL_000d:
{
G_B3_0 = 0;
}
IL_000e:
{
return G_B3_0;
}
}
extern "C" int32_t Boolean_GetHashCode_m3167312162_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
bool* _thisAdjusted = reinterpret_cast<bool*>(__this + 1);
return Boolean_GetHashCode_m3167312162(_thisAdjusted, method);
}
// System.Boolean System.Boolean::Parse(System.String)
extern "C" bool Boolean_Parse_m2370352694 (RuntimeObject * __this /* static, unused */, String_t* ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Boolean_Parse_m2370352694_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = ___value0;
if (L_0)
{
goto IL_0011;
}
}
{
ArgumentNullException_t1615371798 * L_1 = (ArgumentNullException_t1615371798 *)il2cpp_codegen_object_new(ArgumentNullException_t1615371798_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m1170824041(L_1, _stringLiteral3493618073, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1,Boolean_Parse_m2370352694_RuntimeMethod_var);
}
IL_0011:
{
String_t* L_2 = ___value0;
String_t* L_3 = String_Trim_m923598732(L_2, /*hidden argument*/NULL);
___value0 = L_3;
String_t* L_4 = ___value0;
IL2CPP_RUNTIME_CLASS_INIT(Boolean_t97287965_il2cpp_TypeInfo_var);
String_t* L_5 = ((Boolean_t97287965_StaticFields*)il2cpp_codegen_static_fields_for(Boolean_t97287965_il2cpp_TypeInfo_var))->get_TrueString_1();
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t4157843068_il2cpp_TypeInfo_var);
CultureInfo_t4157843068 * L_6 = CultureInfo_get_InvariantCulture_m3532445182(NULL /*static, unused*/, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
int32_t L_7 = String_Compare_m1293271421(NULL /*static, unused*/, L_4, L_5, (bool)1, L_6, /*hidden argument*/NULL);
if (L_7)
{
goto IL_0031;
}
}
{
return (bool)1;
}
IL_0031:
{
String_t* L_8 = ___value0;
IL2CPP_RUNTIME_CLASS_INIT(Boolean_t97287965_il2cpp_TypeInfo_var);
String_t* L_9 = ((Boolean_t97287965_StaticFields*)il2cpp_codegen_static_fields_for(Boolean_t97287965_il2cpp_TypeInfo_var))->get_FalseString_0();
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t4157843068_il2cpp_TypeInfo_var);
CultureInfo_t4157843068 * L_10 = CultureInfo_get_InvariantCulture_m3532445182(NULL /*static, unused*/, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
int32_t L_11 = String_Compare_m1293271421(NULL /*static, unused*/, L_8, L_9, (bool)1, L_10, /*hidden argument*/NULL);
if (L_11)
{
goto IL_0049;
}
}
{
return (bool)0;
}
IL_0049:
{
String_t* L_12 = Locale_GetText_m3374010885(NULL /*static, unused*/, _stringLiteral3793797373, /*hidden argument*/NULL);
FormatException_t154580423 * L_13 = (FormatException_t154580423 *)il2cpp_codegen_object_new(FormatException_t154580423_il2cpp_TypeInfo_var);
FormatException__ctor_m4049685996(L_13, L_12, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_13,Boolean_Parse_m2370352694_RuntimeMethod_var);
}
}
// System.String System.Boolean::ToString()
extern "C" String_t* Boolean_ToString_m2664721875 (bool* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Boolean_ToString_m2664721875_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
String_t* G_B3_0 = NULL;
{
if (!(*((int8_t*)__this)))
{
goto IL_0011;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(Boolean_t97287965_il2cpp_TypeInfo_var);
String_t* L_0 = ((Boolean_t97287965_StaticFields*)il2cpp_codegen_static_fields_for(Boolean_t97287965_il2cpp_TypeInfo_var))->get_TrueString_1();
G_B3_0 = L_0;
goto IL_0016;
}
IL_0011:
{
IL2CPP_RUNTIME_CLASS_INIT(Boolean_t97287965_il2cpp_TypeInfo_var);
String_t* L_1 = ((Boolean_t97287965_StaticFields*)il2cpp_codegen_static_fields_for(Boolean_t97287965_il2cpp_TypeInfo_var))->get_FalseString_0();
G_B3_0 = L_1;
}
IL_0016:
{
return G_B3_0;
}
}
extern "C" String_t* Boolean_ToString_m2664721875_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
bool* _thisAdjusted = reinterpret_cast<bool*>(__this + 1);
return Boolean_ToString_m2664721875(_thisAdjusted, method);
}
// System.TypeCode System.Boolean::GetTypeCode()
extern "C" int32_t Boolean_GetTypeCode_m403835824 (bool* __this, const RuntimeMethod* method)
{
{
return (int32_t)(3);
}
}
extern "C" int32_t Boolean_GetTypeCode_m403835824_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
bool* _thisAdjusted = reinterpret_cast<bool*>(__this + 1);
return Boolean_GetTypeCode_m403835824(_thisAdjusted, method);
}
// System.String System.Boolean::ToString(System.IFormatProvider)
extern "C" String_t* Boolean_ToString_m663098404 (bool* __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
{
String_t* L_0 = Boolean_ToString_m2664721875(__this, /*hidden argument*/NULL);
return L_0;
}
}
extern "C" String_t* Boolean_ToString_m663098404_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
bool* _thisAdjusted = reinterpret_cast<bool*>(__this + 1);
return Boolean_ToString_m663098404(_thisAdjusted, ___provider0, method);
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Int32 System.Buffer::ByteLength(System.Array)
extern "C" int32_t Buffer_ByteLength_m2639516074 (RuntimeObject * __this /* static, unused */, RuntimeArray * ___array0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Buffer_ByteLength_m2639516074_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
{
RuntimeArray * L_0 = ___array0;
if (L_0)
{
goto IL_0011;
}
}
{
ArgumentNullException_t1615371798 * L_1 = (ArgumentNullException_t1615371798 *)il2cpp_codegen_object_new(ArgumentNullException_t1615371798_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m1170824041(L_1, _stringLiteral4007973390, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1,Buffer_ByteLength_m2639516074_RuntimeMethod_var);
}
IL_0011:
{
RuntimeArray * L_2 = ___array0;
int32_t L_3 = Buffer_ByteLengthInternal_m1388208719(NULL /*static, unused*/, L_2, /*hidden argument*/NULL);
V_0 = L_3;
int32_t L_4 = V_0;
if ((((int32_t)L_4) >= ((int32_t)0)))
{
goto IL_002f;
}
}
{
String_t* L_5 = Locale_GetText_m3374010885(NULL /*static, unused*/, _stringLiteral2265951865, /*hidden argument*/NULL);
ArgumentException_t132251570 * L_6 = (ArgumentException_t132251570 *)il2cpp_codegen_object_new(ArgumentException_t132251570_il2cpp_TypeInfo_var);
ArgumentException__ctor_m1312628991(L_6, L_5, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_6,Buffer_ByteLength_m2639516074_RuntimeMethod_var);
}
IL_002f:
{
int32_t L_7 = V_0;
return L_7;
}
}
// System.Void System.Buffer::BlockCopy(System.Array,System.Int32,System.Array,System.Int32,System.Int32)
extern "C" void Buffer_BlockCopy_m2884209081 (RuntimeObject * __this /* static, unused */, RuntimeArray * ___src0, int32_t ___srcOffset1, RuntimeArray * ___dst2, int32_t ___dstOffset3, int32_t ___count4, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Buffer_BlockCopy_m2884209081_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
{
RuntimeArray * L_0 = ___src0;
if (L_0)
{
goto IL_0011;
}
}
{
ArgumentNullException_t1615371798 * L_1 = (ArgumentNullException_t1615371798 *)il2cpp_codegen_object_new(ArgumentNullException_t1615371798_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m1170824041(L_1, _stringLiteral538040360, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1,Buffer_BlockCopy_m2884209081_RuntimeMethod_var);
}
IL_0011:
{
RuntimeArray * L_2 = ___dst2;
if (L_2)
{
goto IL_0022;
}
}
{
ArgumentNullException_t1615371798 * L_3 = (ArgumentNullException_t1615371798 *)il2cpp_codegen_object_new(ArgumentNullException_t1615371798_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m1170824041(L_3, _stringLiteral2554397442, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3,Buffer_BlockCopy_m2884209081_RuntimeMethod_var);
}
IL_0022:
{
int32_t L_4 = ___srcOffset1;
if ((((int32_t)L_4) >= ((int32_t)0)))
{
goto IL_003e;
}
}
{
String_t* L_5 = Locale_GetText_m3374010885(NULL /*static, unused*/, _stringLiteral2892689725, /*hidden argument*/NULL);
ArgumentOutOfRangeException_t777629997 * L_6 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m282481429(L_6, _stringLiteral220175259, L_5, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_6,Buffer_BlockCopy_m2884209081_RuntimeMethod_var);
}
IL_003e:
{
int32_t L_7 = ___dstOffset3;
if ((((int32_t)L_7) >= ((int32_t)0)))
{
goto IL_005a;
}
}
{
String_t* L_8 = Locale_GetText_m3374010885(NULL /*static, unused*/, _stringLiteral2892689725, /*hidden argument*/NULL);
ArgumentOutOfRangeException_t777629997 * L_9 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m282481429(L_9, _stringLiteral3566890907, L_8, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_9,Buffer_BlockCopy_m2884209081_RuntimeMethod_var);
}
IL_005a:
{
int32_t L_10 = ___count4;
if ((((int32_t)L_10) >= ((int32_t)0)))
{
goto IL_0077;
}
}
{
String_t* L_11 = Locale_GetText_m3374010885(NULL /*static, unused*/, _stringLiteral2892689725, /*hidden argument*/NULL);
ArgumentOutOfRangeException_t777629997 * L_12 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m282481429(L_12, _stringLiteral2002595880, L_11, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_12,Buffer_BlockCopy_m2884209081_RuntimeMethod_var);
}
IL_0077:
{
RuntimeArray * L_13 = ___src0;
int32_t L_14 = ___srcOffset1;
RuntimeArray * L_15 = ___dst2;
int32_t L_16 = ___dstOffset3;
int32_t L_17 = ___count4;
bool L_18 = Buffer_BlockCopyInternal_m418318694(NULL /*static, unused*/, L_13, L_14, L_15, L_16, L_17, /*hidden argument*/NULL);
V_0 = L_18;
bool L_19 = V_0;
if (L_19)
{
goto IL_00b7;
}
}
{
int32_t L_20 = ___srcOffset1;
RuntimeArray * L_21 = ___src0;
int32_t L_22 = Buffer_ByteLength_m2639516074(NULL /*static, unused*/, L_21, /*hidden argument*/NULL);
int32_t L_23 = ___count4;
if ((((int32_t)L_20) > ((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_22, (int32_t)L_23)))))
{
goto IL_00a7;
}
}
{
int32_t L_24 = ___dstOffset3;
RuntimeArray * L_25 = ___dst2;
int32_t L_26 = Buffer_ByteLength_m2639516074(NULL /*static, unused*/, L_25, /*hidden argument*/NULL);
int32_t L_27 = ___count4;
if ((((int32_t)L_24) <= ((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_26, (int32_t)L_27)))))
{
goto IL_00b7;
}
}
IL_00a7:
{
String_t* L_28 = Locale_GetText_m3374010885(NULL /*static, unused*/, _stringLiteral4039891654, /*hidden argument*/NULL);
ArgumentException_t132251570 * L_29 = (ArgumentException_t132251570 *)il2cpp_codegen_object_new(ArgumentException_t132251570_il2cpp_TypeInfo_var);
ArgumentException__ctor_m1312628991(L_29, L_28, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_29,Buffer_BlockCopy_m2884209081_RuntimeMethod_var);
}
IL_00b7:
{
return;
}
}
// System.Int32 System.Buffer::ByteLengthInternal(System.Array)
extern "C" int32_t Buffer_ByteLengthInternal_m1388208719 (RuntimeObject * __this /* static, unused */, RuntimeArray * ___array0, const RuntimeMethod* method)
{
typedef int32_t (*Buffer_ByteLengthInternal_m1388208719_ftn) (RuntimeArray *);
using namespace il2cpp::icalls;
return ((Buffer_ByteLengthInternal_m1388208719_ftn)mscorlib::System::Buffer::ByteLengthInternal) (___array0);
}
// System.Boolean System.Buffer::BlockCopyInternal(System.Array,System.Int32,System.Array,System.Int32,System.Int32)
extern "C" bool Buffer_BlockCopyInternal_m418318694 (RuntimeObject * __this /* static, unused */, RuntimeArray * ___src0, int32_t ___src_offset1, RuntimeArray * ___dest2, int32_t ___dest_offset3, int32_t ___count4, const RuntimeMethod* method)
{
typedef bool (*Buffer_BlockCopyInternal_m418318694_ftn) (RuntimeArray *, int32_t, RuntimeArray *, int32_t, int32_t);
using namespace il2cpp::icalls;
return ((Buffer_BlockCopyInternal_m418318694_ftn)mscorlib::System::Buffer::BlockCopyInternal) (___src0, ___src_offset1, ___dest2, ___dest_offset3, ___count4);
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Object System.Byte::System.IConvertible.ToType(System.Type,System.IFormatProvider)
extern "C" RuntimeObject * Byte_System_IConvertible_ToType_m2251112646 (uint8_t* __this, Type_t * ___targetType0, RuntimeObject* ___provider1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Byte_System_IConvertible_ToType_m2251112646_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Type_t * L_0 = ___targetType0;
if (L_0)
{
goto IL_0011;
}
}
{
ArgumentNullException_t1615371798 * L_1 = (ArgumentNullException_t1615371798 *)il2cpp_codegen_object_new(ArgumentNullException_t1615371798_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m1170824041(L_1, _stringLiteral3252615044, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1,Byte_System_IConvertible_ToType_m2251112646_RuntimeMethod_var);
}
IL_0011:
{
uint8_t L_2 = ((uint8_t)(*((uint8_t*)__this)));
RuntimeObject * L_3 = Box(Byte_t1134296376_il2cpp_TypeInfo_var, &L_2);
Type_t * L_4 = ___targetType0;
RuntimeObject* L_5 = ___provider1;
IL2CPP_RUNTIME_CLASS_INIT(Convert_t2465617642_il2cpp_TypeInfo_var);
RuntimeObject * L_6 = Convert_ToType_m2406080310(NULL /*static, unused*/, L_3, L_4, L_5, (bool)0, /*hidden argument*/NULL);
return L_6;
}
}
extern "C" RuntimeObject * Byte_System_IConvertible_ToType_m2251112646_AdjustorThunk (RuntimeObject * __this, Type_t * ___targetType0, RuntimeObject* ___provider1, const RuntimeMethod* method)
{
uint8_t* _thisAdjusted = reinterpret_cast<uint8_t*>(__this + 1);
return Byte_System_IConvertible_ToType_m2251112646(_thisAdjusted, ___targetType0, ___provider1, method);
}
// System.Boolean System.Byte::System.IConvertible.ToBoolean(System.IFormatProvider)
extern "C" bool Byte_System_IConvertible_ToBoolean_m2888023769 (uint8_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Byte_System_IConvertible_ToBoolean_m2888023769_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(Convert_t2465617642_il2cpp_TypeInfo_var);
bool L_0 = Convert_ToBoolean_m2984378204(NULL /*static, unused*/, (uint8_t)(*((uint8_t*)__this)), /*hidden argument*/NULL);
return L_0;
}
}
extern "C" bool Byte_System_IConvertible_ToBoolean_m2888023769_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
uint8_t* _thisAdjusted = reinterpret_cast<uint8_t*>(__this + 1);
return Byte_System_IConvertible_ToBoolean_m2888023769(_thisAdjusted, ___provider0, method);
}
// System.Byte System.Byte::System.IConvertible.ToByte(System.IFormatProvider)
extern "C" uint8_t Byte_System_IConvertible_ToByte_m162267264 (uint8_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
{
return (uint8_t)(*((uint8_t*)__this));
}
}
extern "C" uint8_t Byte_System_IConvertible_ToByte_m162267264_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
uint8_t* _thisAdjusted = reinterpret_cast<uint8_t*>(__this + 1);
return Byte_System_IConvertible_ToByte_m162267264(_thisAdjusted, ___provider0, method);
}
// System.Char System.Byte::System.IConvertible.ToChar(System.IFormatProvider)
extern "C" Il2CppChar Byte_System_IConvertible_ToChar_m2173687830 (uint8_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Byte_System_IConvertible_ToChar_m2173687830_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(Convert_t2465617642_il2cpp_TypeInfo_var);
Il2CppChar L_0 = Convert_ToChar_m2532412511(NULL /*static, unused*/, (uint8_t)(*((uint8_t*)__this)), /*hidden argument*/NULL);
return L_0;
}
}
extern "C" Il2CppChar Byte_System_IConvertible_ToChar_m2173687830_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
uint8_t* _thisAdjusted = reinterpret_cast<uint8_t*>(__this + 1);
return Byte_System_IConvertible_ToChar_m2173687830(_thisAdjusted, ___provider0, method);
}
// System.DateTime System.Byte::System.IConvertible.ToDateTime(System.IFormatProvider)
extern "C" DateTime_t3738529785 Byte_System_IConvertible_ToDateTime_m3654084722 (uint8_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Byte_System_IConvertible_ToDateTime_m3654084722_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
InvalidCastException_t3927145244 * L_0 = (InvalidCastException_t3927145244 *)il2cpp_codegen_object_new(InvalidCastException_t3927145244_il2cpp_TypeInfo_var);
InvalidCastException__ctor_m1807554410(L_0, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0,Byte_System_IConvertible_ToDateTime_m3654084722_RuntimeMethod_var);
}
}
extern "C" DateTime_t3738529785 Byte_System_IConvertible_ToDateTime_m3654084722_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
uint8_t* _thisAdjusted = reinterpret_cast<uint8_t*>(__this + 1);
return Byte_System_IConvertible_ToDateTime_m3654084722(_thisAdjusted, ___provider0, method);
}
// System.Decimal System.Byte::System.IConvertible.ToDecimal(System.IFormatProvider)
extern "C" Decimal_t2948259380 Byte_System_IConvertible_ToDecimal_m3746192770 (uint8_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Byte_System_IConvertible_ToDecimal_m3746192770_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(Convert_t2465617642_il2cpp_TypeInfo_var);
Decimal_t2948259380 L_0 = Convert_ToDecimal_m3209124080(NULL /*static, unused*/, (uint8_t)(*((uint8_t*)__this)), /*hidden argument*/NULL);
return L_0;
}
}
extern "C" Decimal_t2948259380 Byte_System_IConvertible_ToDecimal_m3746192770_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
uint8_t* _thisAdjusted = reinterpret_cast<uint8_t*>(__this + 1);
return Byte_System_IConvertible_ToDecimal_m3746192770(_thisAdjusted, ___provider0, method);
}
// System.Double System.Byte::System.IConvertible.ToDouble(System.IFormatProvider)
extern "C" double Byte_System_IConvertible_ToDouble_m1540319472 (uint8_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Byte_System_IConvertible_ToDouble_m1540319472_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(Convert_t2465617642_il2cpp_TypeInfo_var);
double L_0 = Convert_ToDouble_m3124823876(NULL /*static, unused*/, (uint8_t)(*((uint8_t*)__this)), /*hidden argument*/NULL);
return L_0;
}
}
extern "C" double Byte_System_IConvertible_ToDouble_m1540319472_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
uint8_t* _thisAdjusted = reinterpret_cast<uint8_t*>(__this + 1);
return Byte_System_IConvertible_ToDouble_m1540319472(_thisAdjusted, ___provider0, method);
}
// System.Int16 System.Byte::System.IConvertible.ToInt16(System.IFormatProvider)
extern "C" int16_t Byte_System_IConvertible_ToInt16_m4136764794 (uint8_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Byte_System_IConvertible_ToInt16_m4136764794_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(Convert_t2465617642_il2cpp_TypeInfo_var);
int16_t L_0 = Convert_ToInt16_m701474428(NULL /*static, unused*/, (uint8_t)(*((uint8_t*)__this)), /*hidden argument*/NULL);
return L_0;
}
}
extern "C" int16_t Byte_System_IConvertible_ToInt16_m4136764794_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
uint8_t* _thisAdjusted = reinterpret_cast<uint8_t*>(__this + 1);
return Byte_System_IConvertible_ToInt16_m4136764794(_thisAdjusted, ___provider0, method);
}
// System.Int32 System.Byte::System.IConvertible.ToInt32(System.IFormatProvider)
extern "C" int32_t Byte_System_IConvertible_ToInt32_m3495522413 (uint8_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Byte_System_IConvertible_ToInt32_m3495522413_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(Convert_t2465617642_il2cpp_TypeInfo_var);
int32_t L_0 = Convert_ToInt32_m2505564049(NULL /*static, unused*/, (uint8_t)(*((uint8_t*)__this)), /*hidden argument*/NULL);
return L_0;
}
}
extern "C" int32_t Byte_System_IConvertible_ToInt32_m3495522413_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
uint8_t* _thisAdjusted = reinterpret_cast<uint8_t*>(__this + 1);
return Byte_System_IConvertible_ToInt32_m3495522413(_thisAdjusted, ___provider0, method);
}
// System.Int64 System.Byte::System.IConvertible.ToInt64(System.IFormatProvider)
extern "C" int64_t Byte_System_IConvertible_ToInt64_m285584218 (uint8_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Byte_System_IConvertible_ToInt64_m285584218_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(Convert_t2465617642_il2cpp_TypeInfo_var);
int64_t L_0 = Convert_ToInt64_m395638860(NULL /*static, unused*/, (uint8_t)(*((uint8_t*)__this)), /*hidden argument*/NULL);
return L_0;
}
}
extern "C" int64_t Byte_System_IConvertible_ToInt64_m285584218_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
uint8_t* _thisAdjusted = reinterpret_cast<uint8_t*>(__this + 1);
return Byte_System_IConvertible_ToInt64_m285584218(_thisAdjusted, ___provider0, method);
}
// System.SByte System.Byte::System.IConvertible.ToSByte(System.IFormatProvider)
extern "C" int8_t Byte_System_IConvertible_ToSByte_m1869482168 (uint8_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Byte_System_IConvertible_ToSByte_m1869482168_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(Convert_t2465617642_il2cpp_TypeInfo_var);
int8_t L_0 = Convert_ToSByte_m717245755(NULL /*static, unused*/, (uint8_t)(*((uint8_t*)__this)), /*hidden argument*/NULL);
return L_0;
}
}
extern "C" int8_t Byte_System_IConvertible_ToSByte_m1869482168_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
uint8_t* _thisAdjusted = reinterpret_cast<uint8_t*>(__this + 1);
return Byte_System_IConvertible_ToSByte_m1869482168(_thisAdjusted, ___provider0, method);
}
// System.Single System.Byte::System.IConvertible.ToSingle(System.IFormatProvider)
extern "C" float Byte_System_IConvertible_ToSingle_m324484566 (uint8_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Byte_System_IConvertible_ToSingle_m324484566_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(Convert_t2465617642_il2cpp_TypeInfo_var);
float L_0 = Convert_ToSingle_m2769033141(NULL /*static, unused*/, (uint8_t)(*((uint8_t*)__this)), /*hidden argument*/NULL);
return L_0;
}
}
extern "C" float Byte_System_IConvertible_ToSingle_m324484566_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
uint8_t* _thisAdjusted = reinterpret_cast<uint8_t*>(__this + 1);
return Byte_System_IConvertible_ToSingle_m324484566(_thisAdjusted, ___provider0, method);
}
// System.UInt16 System.Byte::System.IConvertible.ToUInt16(System.IFormatProvider)
extern "C" uint16_t Byte_System_IConvertible_ToUInt16_m1879180133 (uint8_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Byte_System_IConvertible_ToUInt16_m1879180133_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(Convert_t2465617642_il2cpp_TypeInfo_var);
uint16_t L_0 = Convert_ToUInt16_m4064261444(NULL /*static, unused*/, (uint8_t)(*((uint8_t*)__this)), /*hidden argument*/NULL);
return L_0;
}
}
extern "C" uint16_t Byte_System_IConvertible_ToUInt16_m1879180133_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
uint8_t* _thisAdjusted = reinterpret_cast<uint8_t*>(__this + 1);
return Byte_System_IConvertible_ToUInt16_m1879180133(_thisAdjusted, ___provider0, method);
}
// System.UInt32 System.Byte::System.IConvertible.ToUInt32(System.IFormatProvider)
extern "C" uint32_t Byte_System_IConvertible_ToUInt32_m1049546902 (uint8_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Byte_System_IConvertible_ToUInt32_m1049546902_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(Convert_t2465617642_il2cpp_TypeInfo_var);
uint32_t L_0 = Convert_ToUInt32_m360864467(NULL /*static, unused*/, (uint8_t)(*((uint8_t*)__this)), /*hidden argument*/NULL);
return L_0;
}
}
extern "C" uint32_t Byte_System_IConvertible_ToUInt32_m1049546902_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
uint8_t* _thisAdjusted = reinterpret_cast<uint8_t*>(__this + 1);
return Byte_System_IConvertible_ToUInt32_m1049546902(_thisAdjusted, ___provider0, method);
}
// System.UInt64 System.Byte::System.IConvertible.ToUInt64(System.IFormatProvider)
extern "C" uint64_t Byte_System_IConvertible_ToUInt64_m371883985 (uint8_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Byte_System_IConvertible_ToUInt64_m371883985_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(Convert_t2465617642_il2cpp_TypeInfo_var);
uint64_t L_0 = Convert_ToUInt64_m2652538228(NULL /*static, unused*/, (uint8_t)(*((uint8_t*)__this)), /*hidden argument*/NULL);
return L_0;
}
}
extern "C" uint64_t Byte_System_IConvertible_ToUInt64_m371883985_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
uint8_t* _thisAdjusted = reinterpret_cast<uint8_t*>(__this + 1);
return Byte_System_IConvertible_ToUInt64_m371883985(_thisAdjusted, ___provider0, method);
}
// System.Int32 System.Byte::CompareTo(System.Object)
extern "C" int32_t Byte_CompareTo_m4285128861 (uint8_t* __this, RuntimeObject * ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Byte_CompareTo_m4285128861_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
uint8_t V_0 = 0x0;
{
RuntimeObject * L_0 = ___value0;
if (L_0)
{
goto IL_0008;
}
}
{
return 1;
}
IL_0008:
{
RuntimeObject * L_1 = ___value0;
if (((RuntimeObject *)IsInstSealed((RuntimeObject*)L_1, Byte_t1134296376_il2cpp_TypeInfo_var)))
{
goto IL_0023;
}
}
{
String_t* L_2 = Locale_GetText_m3374010885(NULL /*static, unused*/, _stringLiteral171208806, /*hidden argument*/NULL);
ArgumentException_t132251570 * L_3 = (ArgumentException_t132251570 *)il2cpp_codegen_object_new(ArgumentException_t132251570_il2cpp_TypeInfo_var);
ArgumentException__ctor_m1312628991(L_3, L_2, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3,Byte_CompareTo_m4285128861_RuntimeMethod_var);
}
IL_0023:
{
RuntimeObject * L_4 = ___value0;
V_0 = ((*(uint8_t*)((uint8_t*)UnBox(L_4, Byte_t1134296376_il2cpp_TypeInfo_var))));
uint8_t L_5 = V_0;
if ((!(((uint32_t)(*((uint8_t*)__this))) == ((uint32_t)L_5))))
{
goto IL_0034;
}
}
{
return 0;
}
IL_0034:
{
uint8_t L_6 = V_0;
if ((((int32_t)(*((uint8_t*)__this))) <= ((int32_t)L_6)))
{
goto IL_003e;
}
}
{
return 1;
}
IL_003e:
{
return (-1);
}
}
extern "C" int32_t Byte_CompareTo_m4285128861_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___value0, const RuntimeMethod* method)
{
uint8_t* _thisAdjusted = reinterpret_cast<uint8_t*>(__this + 1);
return Byte_CompareTo_m4285128861(_thisAdjusted, ___value0, method);
}
// System.Boolean System.Byte::Equals(System.Object)
extern "C" bool Byte_Equals_m1161982810 (uint8_t* __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Byte_Equals_m1161982810_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject * L_0 = ___obj0;
if (((RuntimeObject *)IsInstSealed((RuntimeObject*)L_0, Byte_t1134296376_il2cpp_TypeInfo_var)))
{
goto IL_000d;
}
}
{
return (bool)0;
}
IL_000d:
{
RuntimeObject * L_1 = ___obj0;
return (bool)((((int32_t)((*(uint8_t*)((uint8_t*)UnBox(L_1, Byte_t1134296376_il2cpp_TypeInfo_var))))) == ((int32_t)(*((uint8_t*)__this))))? 1 : 0);
}
}
extern "C" bool Byte_Equals_m1161982810_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
uint8_t* _thisAdjusted = reinterpret_cast<uint8_t*>(__this + 1);
return Byte_Equals_m1161982810(_thisAdjusted, ___obj0, method);
}
// System.Int32 System.Byte::GetHashCode()
extern "C" int32_t Byte_GetHashCode_m850171870 (uint8_t* __this, const RuntimeMethod* method)
{
{
return (*((uint8_t*)__this));
}
}
extern "C" int32_t Byte_GetHashCode_m850171870_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
uint8_t* _thisAdjusted = reinterpret_cast<uint8_t*>(__this + 1);
return Byte_GetHashCode_m850171870(_thisAdjusted, method);
}
// System.Int32 System.Byte::CompareTo(System.Byte)
extern "C" int32_t Byte_CompareTo_m4207847027 (uint8_t* __this, uint8_t ___value0, const RuntimeMethod* method)
{
{
uint8_t L_0 = ___value0;
if ((!(((uint32_t)(*((uint8_t*)__this))) == ((uint32_t)L_0))))
{
goto IL_000a;
}
}
{
return 0;
}
IL_000a:
{
uint8_t L_1 = ___value0;
if ((((int32_t)(*((uint8_t*)__this))) <= ((int32_t)L_1)))
{
goto IL_0014;
}
}
{
return 1;
}
IL_0014:
{
return (-1);
}
}
extern "C" int32_t Byte_CompareTo_m4207847027_AdjustorThunk (RuntimeObject * __this, uint8_t ___value0, const RuntimeMethod* method)
{
uint8_t* _thisAdjusted = reinterpret_cast<uint8_t*>(__this + 1);
return Byte_CompareTo_m4207847027(_thisAdjusted, ___value0, method);
}
// System.Boolean System.Byte::Equals(System.Byte)
extern "C" bool Byte_Equals_m2522165325 (uint8_t* __this, uint8_t ___obj0, const RuntimeMethod* method)
{
{
uint8_t L_0 = ___obj0;
return (bool)((((int32_t)(*((uint8_t*)__this))) == ((int32_t)L_0))? 1 : 0);
}
}
extern "C" bool Byte_Equals_m2522165325_AdjustorThunk (RuntimeObject * __this, uint8_t ___obj0, const RuntimeMethod* method)
{
uint8_t* _thisAdjusted = reinterpret_cast<uint8_t*>(__this + 1);
return Byte_Equals_m2522165325(_thisAdjusted, ___obj0, method);
}
// System.Byte System.Byte::Parse(System.String,System.IFormatProvider)
extern "C" uint8_t Byte_Parse_m2607942050 (RuntimeObject * __this /* static, unused */, String_t* ___s0, RuntimeObject* ___provider1, const RuntimeMethod* method)
{
{
String_t* L_0 = ___s0;
RuntimeObject* L_1 = ___provider1;
uint8_t L_2 = Byte_Parse_m3200377149(NULL /*static, unused*/, L_0, 7, L_1, /*hidden argument*/NULL);
return L_2;
}
}
// System.Byte System.Byte::Parse(System.String,System.Globalization.NumberStyles,System.IFormatProvider)
extern "C" uint8_t Byte_Parse_m3200377149 (RuntimeObject * __this /* static, unused */, String_t* ___s0, int32_t ___style1, RuntimeObject* ___provider2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Byte_Parse_m3200377149_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
uint32_t V_0 = 0;
{
String_t* L_0 = ___s0;
int32_t L_1 = ___style1;
RuntimeObject* L_2 = ___provider2;
uint32_t L_3 = UInt32_Parse_m3755665066(NULL /*static, unused*/, L_0, L_1, L_2, /*hidden argument*/NULL);
V_0 = L_3;
uint32_t L_4 = V_0;
if ((!(((uint32_t)L_4) > ((uint32_t)((int32_t)255)))))
{
goto IL_0024;
}
}
{
String_t* L_5 = Locale_GetText_m3374010885(NULL /*static, unused*/, _stringLiteral2517860609, /*hidden argument*/NULL);
OverflowException_t2020128637 * L_6 = (OverflowException_t2020128637 *)il2cpp_codegen_object_new(OverflowException_t2020128637_il2cpp_TypeInfo_var);
OverflowException__ctor_m694321376(L_6, L_5, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_6,Byte_Parse_m3200377149_RuntimeMethod_var);
}
IL_0024:
{
uint32_t L_7 = V_0;
return (uint8_t)(((int32_t)((uint8_t)L_7)));
}
}
// System.Byte System.Byte::Parse(System.String)
extern "C" uint8_t Byte_Parse_m678312347 (RuntimeObject * __this /* static, unused */, String_t* ___s0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___s0;
uint8_t L_1 = Byte_Parse_m3200377149(NULL /*static, unused*/, L_0, 7, (RuntimeObject*)NULL, /*hidden argument*/NULL);
return L_1;
}
}
// System.Boolean System.Byte::TryParse(System.String,System.Byte&)
extern "C" bool Byte_TryParse_m1615417784 (RuntimeObject * __this /* static, unused */, String_t* ___s0, uint8_t* ___result1, const RuntimeMethod* method)
{
{
String_t* L_0 = ___s0;
uint8_t* L_1 = ___result1;
bool L_2 = Byte_TryParse_m1467448483(NULL /*static, unused*/, L_0, 7, (RuntimeObject*)NULL, L_1, /*hidden argument*/NULL);
return L_2;
}
}
// System.Boolean System.Byte::TryParse(System.String,System.Globalization.NumberStyles,System.IFormatProvider,System.Byte&)
extern "C" bool Byte_TryParse_m1467448483 (RuntimeObject * __this /* static, unused */, String_t* ___s0, int32_t ___style1, RuntimeObject* ___provider2, uint8_t* ___result3, const RuntimeMethod* method)
{
uint32_t V_0 = 0;
{
uint8_t* L_0 = ___result3;
*((int8_t*)(L_0)) = (int8_t)0;
String_t* L_1 = ___s0;
int32_t L_2 = ___style1;
RuntimeObject* L_3 = ___provider2;
bool L_4 = UInt32_TryParse_m535404612(NULL /*static, unused*/, L_1, L_2, L_3, (&V_0), /*hidden argument*/NULL);
if (L_4)
{
goto IL_0014;
}
}
{
return (bool)0;
}
IL_0014:
{
uint32_t L_5 = V_0;
if ((!(((uint32_t)L_5) > ((uint32_t)((int32_t)255)))))
{
goto IL_0021;
}
}
{
return (bool)0;
}
IL_0021:
{
uint8_t* L_6 = ___result3;
uint32_t L_7 = V_0;
*((int8_t*)(L_6)) = (int8_t)(((int32_t)((uint8_t)L_7)));
return (bool)1;
}
}
// System.String System.Byte::ToString()
extern "C" String_t* Byte_ToString_m721125428 (uint8_t* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Byte_ToString_m721125428_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(NumberFormatter_t1182924621_il2cpp_TypeInfo_var);
String_t* L_0 = NumberFormatter_NumberToString_m1790947760(NULL /*static, unused*/, (*((uint8_t*)__this)), (RuntimeObject*)NULL, /*hidden argument*/NULL);
return L_0;
}
}
extern "C" String_t* Byte_ToString_m721125428_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
uint8_t* _thisAdjusted = reinterpret_cast<uint8_t*>(__this + 1);
return Byte_ToString_m721125428(_thisAdjusted, method);
}
// System.String System.Byte::ToString(System.String)
extern "C" String_t* Byte_ToString_m3735479648 (uint8_t* __this, String_t* ___format0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___format0;
String_t* L_1 = Byte_ToString_m4063101981(__this, L_0, (RuntimeObject*)NULL, /*hidden argument*/NULL);
return L_1;
}
}
extern "C" String_t* Byte_ToString_m3735479648_AdjustorThunk (RuntimeObject * __this, String_t* ___format0, const RuntimeMethod* method)
{
uint8_t* _thisAdjusted = reinterpret_cast<uint8_t*>(__this + 1);
return Byte_ToString_m3735479648(_thisAdjusted, ___format0, method);
}
// System.String System.Byte::ToString(System.IFormatProvider)
extern "C" String_t* Byte_ToString_m2335342258 (uint8_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Byte_ToString_m2335342258_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = ___provider0;
IL2CPP_RUNTIME_CLASS_INIT(NumberFormatter_t1182924621_il2cpp_TypeInfo_var);
String_t* L_1 = NumberFormatter_NumberToString_m1790947760(NULL /*static, unused*/, (*((uint8_t*)__this)), L_0, /*hidden argument*/NULL);
return L_1;
}
}
extern "C" String_t* Byte_ToString_m2335342258_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
uint8_t* _thisAdjusted = reinterpret_cast<uint8_t*>(__this + 1);
return Byte_ToString_m2335342258(_thisAdjusted, ___provider0, method);
}
// System.String System.Byte::ToString(System.String,System.IFormatProvider)
extern "C" String_t* Byte_ToString_m4063101981 (uint8_t* __this, String_t* ___format0, RuntimeObject* ___provider1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Byte_ToString_m4063101981_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = ___format0;
RuntimeObject* L_1 = ___provider1;
IL2CPP_RUNTIME_CLASS_INIT(NumberFormatter_t1182924621_il2cpp_TypeInfo_var);
String_t* L_2 = NumberFormatter_NumberToString_m3726402804(NULL /*static, unused*/, L_0, (uint8_t)(*((uint8_t*)__this)), L_1, /*hidden argument*/NULL);
return L_2;
}
}
extern "C" String_t* Byte_ToString_m4063101981_AdjustorThunk (RuntimeObject * __this, String_t* ___format0, RuntimeObject* ___provider1, const RuntimeMethod* method)
{
uint8_t* _thisAdjusted = reinterpret_cast<uint8_t*>(__this + 1);
return Byte_ToString_m4063101981(_thisAdjusted, ___format0, ___provider1, method);
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Char::.cctor()
extern "C" void Char__cctor_m2787437263 (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Char__cctor_m2787437263_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Char_GetDataTablePointers_m754571594(NULL /*static, unused*/, (((Char_t3634460470_StaticFields*)il2cpp_codegen_static_fields_for(Char_t3634460470_il2cpp_TypeInfo_var))->get_address_of_category_data_3()), (((Char_t3634460470_StaticFields*)il2cpp_codegen_static_fields_for(Char_t3634460470_il2cpp_TypeInfo_var))->get_address_of_numeric_data_4()), (((Char_t3634460470_StaticFields*)il2cpp_codegen_static_fields_for(Char_t3634460470_il2cpp_TypeInfo_var))->get_address_of_numeric_data_values_5()), (((Char_t3634460470_StaticFields*)il2cpp_codegen_static_fields_for(Char_t3634460470_il2cpp_TypeInfo_var))->get_address_of_to_lower_data_low_6()), (((Char_t3634460470_StaticFields*)il2cpp_codegen_static_fields_for(Char_t3634460470_il2cpp_TypeInfo_var))->get_address_of_to_lower_data_high_7()), (((Char_t3634460470_StaticFields*)il2cpp_codegen_static_fields_for(Char_t3634460470_il2cpp_TypeInfo_var))->get_address_of_to_upper_data_low_8()), (((Char_t3634460470_StaticFields*)il2cpp_codegen_static_fields_for(Char_t3634460470_il2cpp_TypeInfo_var))->get_address_of_to_upper_data_high_9()), /*hidden argument*/NULL);
return;
}
}
// System.Object System.Char::System.IConvertible.ToType(System.Type,System.IFormatProvider)
extern "C" RuntimeObject * Char_System_IConvertible_ToType_m4138905176 (Il2CppChar* __this, Type_t * ___targetType0, RuntimeObject* ___provider1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Char_System_IConvertible_ToType_m4138905176_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Type_t * L_0 = ___targetType0;
if (L_0)
{
goto IL_0011;
}
}
{
ArgumentNullException_t1615371798 * L_1 = (ArgumentNullException_t1615371798 *)il2cpp_codegen_object_new(ArgumentNullException_t1615371798_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m1170824041(L_1, _stringLiteral3252615044, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1,Char_System_IConvertible_ToType_m4138905176_RuntimeMethod_var);
}
IL_0011:
{
Il2CppChar L_2 = ((Il2CppChar)(*((uint16_t*)__this)));
RuntimeObject * L_3 = Box(Char_t3634460470_il2cpp_TypeInfo_var, &L_2);
Type_t * L_4 = ___targetType0;
RuntimeObject* L_5 = ___provider1;
IL2CPP_RUNTIME_CLASS_INIT(Convert_t2465617642_il2cpp_TypeInfo_var);
RuntimeObject * L_6 = Convert_ToType_m2406080310(NULL /*static, unused*/, L_3, L_4, L_5, (bool)0, /*hidden argument*/NULL);
return L_6;
}
}
extern "C" RuntimeObject * Char_System_IConvertible_ToType_m4138905176_AdjustorThunk (RuntimeObject * __this, Type_t * ___targetType0, RuntimeObject* ___provider1, const RuntimeMethod* method)
{
Il2CppChar* _thisAdjusted = reinterpret_cast<Il2CppChar*>(__this + 1);
return Char_System_IConvertible_ToType_m4138905176(_thisAdjusted, ___targetType0, ___provider1, method);
}
// System.Boolean System.Char::System.IConvertible.ToBoolean(System.IFormatProvider)
extern "C" bool Char_System_IConvertible_ToBoolean_m309214875 (Il2CppChar* __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Char_System_IConvertible_ToBoolean_m309214875_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
InvalidCastException_t3927145244 * L_0 = (InvalidCastException_t3927145244 *)il2cpp_codegen_object_new(InvalidCastException_t3927145244_il2cpp_TypeInfo_var);
InvalidCastException__ctor_m1807554410(L_0, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0,Char_System_IConvertible_ToBoolean_m309214875_RuntimeMethod_var);
}
}
extern "C" bool Char_System_IConvertible_ToBoolean_m309214875_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
Il2CppChar* _thisAdjusted = reinterpret_cast<Il2CppChar*>(__this + 1);
return Char_System_IConvertible_ToBoolean_m309214875(_thisAdjusted, ___provider0, method);
}
// System.Byte System.Char::System.IConvertible.ToByte(System.IFormatProvider)
extern "C" uint8_t Char_System_IConvertible_ToByte_m2347554595 (Il2CppChar* __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Char_System_IConvertible_ToByte_m2347554595_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(Convert_t2465617642_il2cpp_TypeInfo_var);
uint8_t L_0 = Convert_ToByte_m143827699(NULL /*static, unused*/, (*((uint16_t*)__this)), /*hidden argument*/NULL);
return L_0;
}
}
extern "C" uint8_t Char_System_IConvertible_ToByte_m2347554595_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
Il2CppChar* _thisAdjusted = reinterpret_cast<Il2CppChar*>(__this + 1);
return Char_System_IConvertible_ToByte_m2347554595(_thisAdjusted, ___provider0, method);
}
// System.Char System.Char::System.IConvertible.ToChar(System.IFormatProvider)
extern "C" Il2CppChar Char_System_IConvertible_ToChar_m3578899883 (Il2CppChar* __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
{
return (*((uint16_t*)__this));
}
}
extern "C" Il2CppChar Char_System_IConvertible_ToChar_m3578899883_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
Il2CppChar* _thisAdjusted = reinterpret_cast<Il2CppChar*>(__this + 1);
return Char_System_IConvertible_ToChar_m3578899883(_thisAdjusted, ___provider0, method);
}
// System.DateTime System.Char::System.IConvertible.ToDateTime(System.IFormatProvider)
extern "C" DateTime_t3738529785 Char_System_IConvertible_ToDateTime_m3564102661 (Il2CppChar* __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Char_System_IConvertible_ToDateTime_m3564102661_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
InvalidCastException_t3927145244 * L_0 = (InvalidCastException_t3927145244 *)il2cpp_codegen_object_new(InvalidCastException_t3927145244_il2cpp_TypeInfo_var);
InvalidCastException__ctor_m1807554410(L_0, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0,Char_System_IConvertible_ToDateTime_m3564102661_RuntimeMethod_var);
}
}
extern "C" DateTime_t3738529785 Char_System_IConvertible_ToDateTime_m3564102661_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
Il2CppChar* _thisAdjusted = reinterpret_cast<Il2CppChar*>(__this + 1);
return Char_System_IConvertible_ToDateTime_m3564102661(_thisAdjusted, ___provider0, method);
}
// System.Decimal System.Char::System.IConvertible.ToDecimal(System.IFormatProvider)
extern "C" Decimal_t2948259380 Char_System_IConvertible_ToDecimal_m3534906463 (Il2CppChar* __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Char_System_IConvertible_ToDecimal_m3534906463_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
InvalidCastException_t3927145244 * L_0 = (InvalidCastException_t3927145244 *)il2cpp_codegen_object_new(InvalidCastException_t3927145244_il2cpp_TypeInfo_var);
InvalidCastException__ctor_m1807554410(L_0, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0,Char_System_IConvertible_ToDecimal_m3534906463_RuntimeMethod_var);
}
}
extern "C" Decimal_t2948259380 Char_System_IConvertible_ToDecimal_m3534906463_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
Il2CppChar* _thisAdjusted = reinterpret_cast<Il2CppChar*>(__this + 1);
return Char_System_IConvertible_ToDecimal_m3534906463(_thisAdjusted, ___provider0, method);
}
// System.Double System.Char::System.IConvertible.ToDouble(System.IFormatProvider)
extern "C" double Char_System_IConvertible_ToDouble_m3575321888 (Il2CppChar* __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Char_System_IConvertible_ToDouble_m3575321888_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
InvalidCastException_t3927145244 * L_0 = (InvalidCastException_t3927145244 *)il2cpp_codegen_object_new(InvalidCastException_t3927145244_il2cpp_TypeInfo_var);
InvalidCastException__ctor_m1807554410(L_0, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0,Char_System_IConvertible_ToDouble_m3575321888_RuntimeMethod_var);
}
}
extern "C" double Char_System_IConvertible_ToDouble_m3575321888_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
Il2CppChar* _thisAdjusted = reinterpret_cast<Il2CppChar*>(__this + 1);
return Char_System_IConvertible_ToDouble_m3575321888(_thisAdjusted, ___provider0, method);
}
// System.Int16 System.Char::System.IConvertible.ToInt16(System.IFormatProvider)
extern "C" int16_t Char_System_IConvertible_ToInt16_m975497224 (Il2CppChar* __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Char_System_IConvertible_ToInt16_m975497224_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(Convert_t2465617642_il2cpp_TypeInfo_var);
int16_t L_0 = Convert_ToInt16_m3018161032(NULL /*static, unused*/, (*((uint16_t*)__this)), /*hidden argument*/NULL);
return L_0;
}
}
extern "C" int16_t Char_System_IConvertible_ToInt16_m975497224_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
Il2CppChar* _thisAdjusted = reinterpret_cast<Il2CppChar*>(__this + 1);
return Char_System_IConvertible_ToInt16_m975497224(_thisAdjusted, ___provider0, method);
}
// System.Int32 System.Char::System.IConvertible.ToInt32(System.IFormatProvider)
extern "C" int32_t Char_System_IConvertible_ToInt32_m1777243200 (Il2CppChar* __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Char_System_IConvertible_ToInt32_m1777243200_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(Convert_t2465617642_il2cpp_TypeInfo_var);
int32_t L_0 = Convert_ToInt32_m1876369743(NULL /*static, unused*/, (*((uint16_t*)__this)), /*hidden argument*/NULL);
return L_0;
}
}
extern "C" int32_t Char_System_IConvertible_ToInt32_m1777243200_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
Il2CppChar* _thisAdjusted = reinterpret_cast<Il2CppChar*>(__this + 1);
return Char_System_IConvertible_ToInt32_m1777243200(_thisAdjusted, ___provider0, method);
}
// System.Int64 System.Char::System.IConvertible.ToInt64(System.IFormatProvider)
extern "C" int64_t Char_System_IConvertible_ToInt64_m1630543716 (Il2CppChar* __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Char_System_IConvertible_ToInt64_m1630543716_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(Convert_t2465617642_il2cpp_TypeInfo_var);
int64_t L_0 = Convert_ToInt64_m3122543124(NULL /*static, unused*/, (*((uint16_t*)__this)), /*hidden argument*/NULL);
return L_0;
}
}
extern "C" int64_t Char_System_IConvertible_ToInt64_m1630543716_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
Il2CppChar* _thisAdjusted = reinterpret_cast<Il2CppChar*>(__this + 1);
return Char_System_IConvertible_ToInt64_m1630543716(_thisAdjusted, ___provider0, method);
}
// System.SByte System.Char::System.IConvertible.ToSByte(System.IFormatProvider)
extern "C" int8_t Char_System_IConvertible_ToSByte_m973063527 (Il2CppChar* __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Char_System_IConvertible_ToSByte_m973063527_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(Convert_t2465617642_il2cpp_TypeInfo_var);
int8_t L_0 = Convert_ToSByte_m1350241137(NULL /*static, unused*/, (*((uint16_t*)__this)), /*hidden argument*/NULL);
return L_0;
}
}
extern "C" int8_t Char_System_IConvertible_ToSByte_m973063527_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
Il2CppChar* _thisAdjusted = reinterpret_cast<Il2CppChar*>(__this + 1);
return Char_System_IConvertible_ToSByte_m973063527(_thisAdjusted, ___provider0, method);
}
// System.Single System.Char::System.IConvertible.ToSingle(System.IFormatProvider)
extern "C" float Char_System_IConvertible_ToSingle_m2690985411 (Il2CppChar* __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Char_System_IConvertible_ToSingle_m2690985411_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
InvalidCastException_t3927145244 * L_0 = (InvalidCastException_t3927145244 *)il2cpp_codegen_object_new(InvalidCastException_t3927145244_il2cpp_TypeInfo_var);
InvalidCastException__ctor_m1807554410(L_0, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0,Char_System_IConvertible_ToSingle_m2690985411_RuntimeMethod_var);
}
}
extern "C" float Char_System_IConvertible_ToSingle_m2690985411_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
Il2CppChar* _thisAdjusted = reinterpret_cast<Il2CppChar*>(__this + 1);
return Char_System_IConvertible_ToSingle_m2690985411(_thisAdjusted, ___provider0, method);
}
// System.UInt16 System.Char::System.IConvertible.ToUInt16(System.IFormatProvider)
extern "C" uint16_t Char_System_IConvertible_ToUInt16_m2449138174 (Il2CppChar* __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Char_System_IConvertible_ToUInt16_m2449138174_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(Convert_t2465617642_il2cpp_TypeInfo_var);
uint16_t L_0 = Convert_ToUInt16_m2952781888(NULL /*static, unused*/, (*((uint16_t*)__this)), /*hidden argument*/NULL);
return L_0;
}
}
extern "C" uint16_t Char_System_IConvertible_ToUInt16_m2449138174_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
Il2CppChar* _thisAdjusted = reinterpret_cast<Il2CppChar*>(__this + 1);
return Char_System_IConvertible_ToUInt16_m2449138174(_thisAdjusted, ___provider0, method);
}
// System.UInt32 System.Char::System.IConvertible.ToUInt32(System.IFormatProvider)
extern "C" uint32_t Char_System_IConvertible_ToUInt32_m3901815580 (Il2CppChar* __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Char_System_IConvertible_ToUInt32_m3901815580_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(Convert_t2465617642_il2cpp_TypeInfo_var);
uint32_t L_0 = Convert_ToUInt32_m3188121845(NULL /*static, unused*/, (*((uint16_t*)__this)), /*hidden argument*/NULL);
return L_0;
}
}
extern "C" uint32_t Char_System_IConvertible_ToUInt32_m3901815580_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
Il2CppChar* _thisAdjusted = reinterpret_cast<Il2CppChar*>(__this + 1);
return Char_System_IConvertible_ToUInt32_m3901815580(_thisAdjusted, ___provider0, method);
}
// System.UInt64 System.Char::System.IConvertible.ToUInt64(System.IFormatProvider)
extern "C" uint64_t Char_System_IConvertible_ToUInt64_m3536560782 (Il2CppChar* __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Char_System_IConvertible_ToUInt64_m3536560782_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(Convert_t2465617642_il2cpp_TypeInfo_var);
uint64_t L_0 = Convert_ToUInt64_m3102114524(NULL /*static, unused*/, (*((uint16_t*)__this)), /*hidden argument*/NULL);
return L_0;
}
}
extern "C" uint64_t Char_System_IConvertible_ToUInt64_m3536560782_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
Il2CppChar* _thisAdjusted = reinterpret_cast<Il2CppChar*>(__this + 1);
return Char_System_IConvertible_ToUInt64_m3536560782(_thisAdjusted, ___provider0, method);
}
// System.Void System.Char::GetDataTablePointers(System.Byte*&,System.Byte*&,System.Double*&,System.UInt16*&,System.UInt16*&,System.UInt16*&,System.UInt16*&)
extern "C" void Char_GetDataTablePointers_m754571594 (RuntimeObject * __this /* static, unused */, uint8_t** ___category_data0, uint8_t** ___numeric_data1, double** ___numeric_data_values2, uint16_t** ___to_lower_data_low3, uint16_t** ___to_lower_data_high4, uint16_t** ___to_upper_data_low5, uint16_t** ___to_upper_data_high6, const RuntimeMethod* method)
{
typedef void (*Char_GetDataTablePointers_m754571594_ftn) (uint8_t**, uint8_t**, double**, uint16_t**, uint16_t**, uint16_t**, uint16_t**);
using namespace il2cpp::icalls;
((Char_GetDataTablePointers_m754571594_ftn)mscorlib::System::Char::GetDataTablePointers) (___category_data0, ___numeric_data1, ___numeric_data_values2, ___to_lower_data_low3, ___to_lower_data_high4, ___to_upper_data_low5, ___to_upper_data_high6);
}
// System.Int32 System.Char::CompareTo(System.Object)
extern "C" int32_t Char_CompareTo_m42489266 (Il2CppChar* __this, RuntimeObject * ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Char_CompareTo_m42489266_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Il2CppChar V_0 = 0x0;
{
RuntimeObject * L_0 = ___value0;
if (L_0)
{
goto IL_0008;
}
}
{
return 1;
}
IL_0008:
{
RuntimeObject * L_1 = ___value0;
if (((RuntimeObject *)IsInstSealed((RuntimeObject*)L_1, Char_t3634460470_il2cpp_TypeInfo_var)))
{
goto IL_0023;
}
}
{
String_t* L_2 = Locale_GetText_m3374010885(NULL /*static, unused*/, _stringLiteral1920911092, /*hidden argument*/NULL);
ArgumentException_t132251570 * L_3 = (ArgumentException_t132251570 *)il2cpp_codegen_object_new(ArgumentException_t132251570_il2cpp_TypeInfo_var);
ArgumentException__ctor_m1312628991(L_3, L_2, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3,Char_CompareTo_m42489266_RuntimeMethod_var);
}
IL_0023:
{
RuntimeObject * L_4 = ___value0;
V_0 = ((*(Il2CppChar*)((Il2CppChar*)UnBox(L_4, Char_t3634460470_il2cpp_TypeInfo_var))));
Il2CppChar L_5 = V_0;
if ((!(((uint32_t)(*((uint16_t*)__this))) == ((uint32_t)L_5))))
{
goto IL_0034;
}
}
{
return 0;
}
IL_0034:
{
Il2CppChar L_6 = V_0;
if ((((int32_t)(*((uint16_t*)__this))) <= ((int32_t)L_6)))
{
goto IL_003e;
}
}
{
return 1;
}
IL_003e:
{
return (-1);
}
}
extern "C" int32_t Char_CompareTo_m42489266_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___value0, const RuntimeMethod* method)
{
Il2CppChar* _thisAdjusted = reinterpret_cast<Il2CppChar*>(__this + 1);
return Char_CompareTo_m42489266(_thisAdjusted, ___value0, method);
}
// System.Boolean System.Char::Equals(System.Object)
extern "C" bool Char_Equals_m1279957088 (Il2CppChar* __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Char_Equals_m1279957088_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject * L_0 = ___obj0;
if (((RuntimeObject *)IsInstSealed((RuntimeObject*)L_0, Char_t3634460470_il2cpp_TypeInfo_var)))
{
goto IL_000d;
}
}
{
return (bool)0;
}
IL_000d:
{
RuntimeObject * L_1 = ___obj0;
return (bool)((((int32_t)((*(Il2CppChar*)((Il2CppChar*)UnBox(L_1, Char_t3634460470_il2cpp_TypeInfo_var))))) == ((int32_t)(*((uint16_t*)__this))))? 1 : 0);
}
}
extern "C" bool Char_Equals_m1279957088_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
Il2CppChar* _thisAdjusted = reinterpret_cast<Il2CppChar*>(__this + 1);
return Char_Equals_m1279957088(_thisAdjusted, ___obj0, method);
}
// System.Int32 System.Char::CompareTo(System.Char)
extern "C" int32_t Char_CompareTo_m1035527789 (Il2CppChar* __this, Il2CppChar ___value0, const RuntimeMethod* method)
{
{
Il2CppChar L_0 = ___value0;
if ((!(((uint32_t)(*((uint16_t*)__this))) == ((uint32_t)L_0))))
{
goto IL_000a;
}
}
{
return 0;
}
IL_000a:
{
Il2CppChar L_1 = ___value0;
if ((((int32_t)(*((uint16_t*)__this))) <= ((int32_t)L_1)))
{
goto IL_0014;
}
}
{
return 1;
}
IL_0014:
{
return (-1);
}
}
extern "C" int32_t Char_CompareTo_m1035527789_AdjustorThunk (RuntimeObject * __this, Il2CppChar ___value0, const RuntimeMethod* method)
{
Il2CppChar* _thisAdjusted = reinterpret_cast<Il2CppChar*>(__this + 1);
return Char_CompareTo_m1035527789(_thisAdjusted, ___value0, method);
}
// System.Boolean System.Char::Equals(System.Char)
extern "C" bool Char_Equals_m198757577 (Il2CppChar* __this, Il2CppChar ___obj0, const RuntimeMethod* method)
{
{
Il2CppChar L_0 = ___obj0;
return (bool)((((int32_t)(*((uint16_t*)__this))) == ((int32_t)L_0))? 1 : 0);
}
}
extern "C" bool Char_Equals_m198757577_AdjustorThunk (RuntimeObject * __this, Il2CppChar ___obj0, const RuntimeMethod* method)
{
Il2CppChar* _thisAdjusted = reinterpret_cast<Il2CppChar*>(__this + 1);
return Char_Equals_m198757577(_thisAdjusted, ___obj0, method);
}
// System.Int32 System.Char::GetHashCode()
extern "C" int32_t Char_GetHashCode_m2163065211 (Il2CppChar* __this, const RuntimeMethod* method)
{
{
return (*((uint16_t*)__this));
}
}
extern "C" int32_t Char_GetHashCode_m2163065211_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
Il2CppChar* _thisAdjusted = reinterpret_cast<Il2CppChar*>(__this + 1);
return Char_GetHashCode_m2163065211(_thisAdjusted, method);
}
// System.Globalization.UnicodeCategory System.Char::GetUnicodeCategory(System.Char)
extern "C" int32_t Char_GetUnicodeCategory_m57882613 (RuntimeObject * __this /* static, unused */, Il2CppChar ___c0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Char_GetUnicodeCategory_m57882613_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(Char_t3634460470_il2cpp_TypeInfo_var);
uint8_t* L_0 = ((Char_t3634460470_StaticFields*)il2cpp_codegen_static_fields_for(Char_t3634460470_il2cpp_TypeInfo_var))->get_category_data_3();
Il2CppChar L_1 = ___c0;
return (int32_t)((*((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_0, (int32_t)L_1)))));
}
}
// System.Boolean System.Char::IsDigit(System.Char)
extern "C" bool Char_IsDigit_m3646673943 (RuntimeObject * __this /* static, unused */, Il2CppChar ___c0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Char_IsDigit_m3646673943_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(Char_t3634460470_il2cpp_TypeInfo_var);
uint8_t* L_0 = ((Char_t3634460470_StaticFields*)il2cpp_codegen_static_fields_for(Char_t3634460470_il2cpp_TypeInfo_var))->get_category_data_3();
Il2CppChar L_1 = ___c0;
return (bool)((((int32_t)(*((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_0, (int32_t)L_1))))) == ((int32_t)8))? 1 : 0);
}
}
// System.Boolean System.Char::IsLetter(System.Char)
extern "C" bool Char_IsLetter_m3996985877 (RuntimeObject * __this /* static, unused */, Il2CppChar ___c0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Char_IsLetter_m3996985877_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(Char_t3634460470_il2cpp_TypeInfo_var);
uint8_t* L_0 = ((Char_t3634460470_StaticFields*)il2cpp_codegen_static_fields_for(Char_t3634460470_il2cpp_TypeInfo_var))->get_category_data_3();
Il2CppChar L_1 = ___c0;
return (bool)((((int32_t)((((int32_t)(*((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_0, (int32_t)L_1))))) > ((int32_t)4))? 1 : 0)) == ((int32_t)0))? 1 : 0);
}
}
// System.Boolean System.Char::IsLetterOrDigit(System.Char)
extern "C" bool Char_IsLetterOrDigit_m3494175785 (RuntimeObject * __this /* static, unused */, Il2CppChar ___c0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Char_IsLetterOrDigit_m3494175785_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t G_B3_0 = 0;
{
IL2CPP_RUNTIME_CLASS_INIT(Char_t3634460470_il2cpp_TypeInfo_var);
uint8_t* L_0 = ((Char_t3634460470_StaticFields*)il2cpp_codegen_static_fields_for(Char_t3634460470_il2cpp_TypeInfo_var))->get_category_data_3();
Il2CppChar L_1 = ___c0;
V_0 = (*((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_0, (int32_t)L_1))));
int32_t L_2 = V_0;
if ((((int32_t)L_2) <= ((int32_t)4)))
{
goto IL_0016;
}
}
{
int32_t L_3 = V_0;
G_B3_0 = ((((int32_t)L_3) == ((int32_t)8))? 1 : 0);
goto IL_0017;
}
IL_0016:
{
G_B3_0 = 1;
}
IL_0017:
{
return (bool)G_B3_0;
}
}
// System.Boolean System.Char::IsLower(System.Char)
extern "C" bool Char_IsLower_m3108076820 (RuntimeObject * __this /* static, unused */, Il2CppChar ___c0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Char_IsLower_m3108076820_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(Char_t3634460470_il2cpp_TypeInfo_var);
uint8_t* L_0 = ((Char_t3634460470_StaticFields*)il2cpp_codegen_static_fields_for(Char_t3634460470_il2cpp_TypeInfo_var))->get_category_data_3();
Il2CppChar L_1 = ___c0;
return (bool)((((int32_t)(*((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_0, (int32_t)L_1))))) == ((int32_t)1))? 1 : 0);
}
}
// System.Boolean System.Char::IsSurrogate(System.Char)
extern "C" bool Char_IsSurrogate_m3686972571 (RuntimeObject * __this /* static, unused */, Il2CppChar ___c0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Char_IsSurrogate_m3686972571_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(Char_t3634460470_il2cpp_TypeInfo_var);
uint8_t* L_0 = ((Char_t3634460470_StaticFields*)il2cpp_codegen_static_fields_for(Char_t3634460470_il2cpp_TypeInfo_var))->get_category_data_3();
Il2CppChar L_1 = ___c0;
return (bool)((((int32_t)(*((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_0, (int32_t)L_1))))) == ((int32_t)((int32_t)16)))? 1 : 0);
}
}
// System.Boolean System.Char::IsUpper(System.Char)
extern "C" bool Char_IsUpper_m3564669513 (RuntimeObject * __this /* static, unused */, Il2CppChar ___c0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Char_IsUpper_m3564669513_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(Char_t3634460470_il2cpp_TypeInfo_var);
uint8_t* L_0 = ((Char_t3634460470_StaticFields*)il2cpp_codegen_static_fields_for(Char_t3634460470_il2cpp_TypeInfo_var))->get_category_data_3();
Il2CppChar L_1 = ___c0;
return (bool)((((int32_t)(*((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_0, (int32_t)L_1))))) == ((int32_t)0))? 1 : 0);
}
}
// System.Boolean System.Char::IsWhiteSpace(System.Char)
extern "C" bool Char_IsWhiteSpace_m2148390798 (RuntimeObject * __this /* static, unused */, Il2CppChar ___c0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Char_IsWhiteSpace_m2148390798_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t G_B9_0 = 0;
{
IL2CPP_RUNTIME_CLASS_INIT(Char_t3634460470_il2cpp_TypeInfo_var);
uint8_t* L_0 = ((Char_t3634460470_StaticFields*)il2cpp_codegen_static_fields_for(Char_t3634460470_il2cpp_TypeInfo_var))->get_category_data_3();
Il2CppChar L_1 = ___c0;
V_0 = (*((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_0, (int32_t)L_1))));
int32_t L_2 = V_0;
if ((((int32_t)L_2) > ((int32_t)((int32_t)10))))
{
goto IL_0013;
}
}
{
return (bool)0;
}
IL_0013:
{
int32_t L_3 = V_0;
if ((((int32_t)L_3) > ((int32_t)((int32_t)13))))
{
goto IL_001d;
}
}
{
return (bool)1;
}
IL_001d:
{
Il2CppChar L_4 = ___c0;
if ((((int32_t)L_4) < ((int32_t)((int32_t)9))))
{
goto IL_002d;
}
}
{
Il2CppChar L_5 = ___c0;
if ((((int32_t)L_5) <= ((int32_t)((int32_t)13))))
{
goto IL_0042;
}
}
IL_002d:
{
Il2CppChar L_6 = ___c0;
if ((((int32_t)L_6) == ((int32_t)((int32_t)133))))
{
goto IL_0042;
}
}
{
Il2CppChar L_7 = ___c0;
G_B9_0 = ((((int32_t)L_7) == ((int32_t)((int32_t)8287)))? 1 : 0);
goto IL_0043;
}
IL_0042:
{
G_B9_0 = 1;
}
IL_0043:
{
return (bool)G_B9_0;
}
}
// System.Boolean System.Char::IsWhiteSpace(System.String,System.Int32)
extern "C" bool Char_IsWhiteSpace_m3213701995 (RuntimeObject * __this /* static, unused */, String_t* ___s0, int32_t ___index1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Char_IsWhiteSpace_m3213701995_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = ___s0;
int32_t L_1 = ___index1;
IL2CPP_RUNTIME_CLASS_INIT(Char_t3634460470_il2cpp_TypeInfo_var);
Char_CheckParameter_m4114020212(NULL /*static, unused*/, L_0, L_1, /*hidden argument*/NULL);
String_t* L_2 = ___s0;
int32_t L_3 = ___index1;
Il2CppChar L_4 = String_get_Chars_m2986988803(L_2, L_3, /*hidden argument*/NULL);
bool L_5 = Char_IsWhiteSpace_m2148390798(NULL /*static, unused*/, L_4, /*hidden argument*/NULL);
return L_5;
}
}
// System.Void System.Char::CheckParameter(System.String,System.Int32)
extern "C" void Char_CheckParameter_m4114020212 (RuntimeObject * __this /* static, unused */, String_t* ___s0, int32_t ___index1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Char_CheckParameter_m4114020212_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = ___s0;
if (L_0)
{
goto IL_0011;
}
}
{
ArgumentNullException_t1615371798 * L_1 = (ArgumentNullException_t1615371798 *)il2cpp_codegen_object_new(ArgumentNullException_t1615371798_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m1170824041(L_1, _stringLiteral3452614605, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1,Char_CheckParameter_m4114020212_RuntimeMethod_var);
}
IL_0011:
{
int32_t L_2 = ___index1;
if ((((int32_t)L_2) < ((int32_t)0)))
{
goto IL_0024;
}
}
{
int32_t L_3 = ___index1;
String_t* L_4 = ___s0;
int32_t L_5 = String_get_Length_m3847582255(L_4, /*hidden argument*/NULL);
if ((((int32_t)L_3) < ((int32_t)L_5)))
{
goto IL_0034;
}
}
IL_0024:
{
String_t* L_6 = Locale_GetText_m3374010885(NULL /*static, unused*/, _stringLiteral250046704, /*hidden argument*/NULL);
ArgumentOutOfRangeException_t777629997 * L_7 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_7, L_6, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_7,Char_CheckParameter_m4114020212_RuntimeMethod_var);
}
IL_0034:
{
return;
}
}
// System.Char System.Char::Parse(System.String)
extern "C" Il2CppChar Char_Parse_m82218915 (RuntimeObject * __this /* static, unused */, String_t* ___s0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Char_Parse_m82218915_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = ___s0;
if (L_0)
{
goto IL_0011;
}
}
{
ArgumentNullException_t1615371798 * L_1 = (ArgumentNullException_t1615371798 *)il2cpp_codegen_object_new(ArgumentNullException_t1615371798_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m1170824041(L_1, _stringLiteral3452614605, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1,Char_Parse_m82218915_RuntimeMethod_var);
}
IL_0011:
{
String_t* L_2 = ___s0;
int32_t L_3 = String_get_Length_m3847582255(L_2, /*hidden argument*/NULL);
if ((((int32_t)L_3) == ((int32_t)1)))
{
goto IL_002d;
}
}
{
String_t* L_4 = Locale_GetText_m3374010885(NULL /*static, unused*/, _stringLiteral2754150777, /*hidden argument*/NULL);
FormatException_t154580423 * L_5 = (FormatException_t154580423 *)il2cpp_codegen_object_new(FormatException_t154580423_il2cpp_TypeInfo_var);
FormatException__ctor_m4049685996(L_5, L_4, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5,Char_Parse_m82218915_RuntimeMethod_var);
}
IL_002d:
{
String_t* L_6 = ___s0;
Il2CppChar L_7 = String_get_Chars_m2986988803(L_6, 0, /*hidden argument*/NULL);
return L_7;
}
}
// System.Char System.Char::ToLower(System.Char)
extern "C" Il2CppChar Char_ToLower_m844856331 (RuntimeObject * __this /* static, unused */, Il2CppChar ___c0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Char_ToLower_m844856331_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t4157843068_il2cpp_TypeInfo_var);
CultureInfo_t4157843068 * L_0 = CultureInfo_get_CurrentCulture_m1632690660(NULL /*static, unused*/, /*hidden argument*/NULL);
TextInfo_t3810425522 * L_1 = VirtFuncInvoker0< TextInfo_t3810425522 * >::Invoke(9 /* System.Globalization.TextInfo System.Globalization.CultureInfo::get_TextInfo() */, L_0);
Il2CppChar L_2 = ___c0;
Il2CppChar L_3 = VirtFuncInvoker1< Il2CppChar, Il2CppChar >::Invoke(7 /* System.Char System.Globalization.TextInfo::ToLower(System.Char) */, L_1, L_2);
return L_3;
}
}
// System.Char System.Char::ToLowerInvariant(System.Char)
extern "C" Il2CppChar Char_ToLowerInvariant_m1926695830 (RuntimeObject * __this /* static, unused */, Il2CppChar ___c0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Char_ToLowerInvariant_m1926695830_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Il2CppChar L_0 = ___c0;
if ((((int32_t)L_0) > ((int32_t)((int32_t)9423))))
{
goto IL_0016;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(Char_t3634460470_il2cpp_TypeInfo_var);
uint16_t* L_1 = ((Char_t3634460470_StaticFields*)il2cpp_codegen_static_fields_for(Char_t3634460470_il2cpp_TypeInfo_var))->get_to_lower_data_low_6();
Il2CppChar L_2 = ___c0;
return (*((uint16_t*)((uint16_t*)il2cpp_codegen_add((intptr_t)L_1, (int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)L_2, (int32_t)2))))));
}
IL_0016:
{
Il2CppChar L_3 = ___c0;
if ((((int32_t)L_3) < ((int32_t)((int32_t)65313))))
{
goto IL_0032;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(Char_t3634460470_il2cpp_TypeInfo_var);
uint16_t* L_4 = ((Char_t3634460470_StaticFields*)il2cpp_codegen_static_fields_for(Char_t3634460470_il2cpp_TypeInfo_var))->get_to_lower_data_high_7();
Il2CppChar L_5 = ___c0;
return (*((uint16_t*)((uint16_t*)il2cpp_codegen_add((intptr_t)L_4, (int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_5, (int32_t)((int32_t)65313))), (int32_t)2))))));
}
IL_0032:
{
Il2CppChar L_6 = ___c0;
return L_6;
}
}
// System.Char System.Char::ToLower(System.Char,System.Globalization.CultureInfo)
extern "C" Il2CppChar Char_ToLower_m3999837485 (RuntimeObject * __this /* static, unused */, Il2CppChar ___c0, CultureInfo_t4157843068 * ___culture1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Char_ToLower_m3999837485_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
CultureInfo_t4157843068 * L_0 = ___culture1;
if (L_0)
{
goto IL_0011;
}
}
{
ArgumentNullException_t1615371798 * L_1 = (ArgumentNullException_t1615371798 *)il2cpp_codegen_object_new(ArgumentNullException_t1615371798_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m1170824041(L_1, _stringLiteral461586467, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1,Char_ToLower_m3999837485_RuntimeMethod_var);
}
IL_0011:
{
CultureInfo_t4157843068 * L_2 = ___culture1;
int32_t L_3 = VirtFuncInvoker0< int32_t >::Invoke(6 /* System.Int32 System.Globalization.CultureInfo::get_LCID() */, L_2);
if ((!(((uint32_t)L_3) == ((uint32_t)((int32_t)127)))))
{
goto IL_0025;
}
}
{
Il2CppChar L_4 = ___c0;
IL2CPP_RUNTIME_CLASS_INIT(Char_t3634460470_il2cpp_TypeInfo_var);
Il2CppChar L_5 = Char_ToLowerInvariant_m1926695830(NULL /*static, unused*/, L_4, /*hidden argument*/NULL);
return L_5;
}
IL_0025:
{
CultureInfo_t4157843068 * L_6 = ___culture1;
TextInfo_t3810425522 * L_7 = VirtFuncInvoker0< TextInfo_t3810425522 * >::Invoke(9 /* System.Globalization.TextInfo System.Globalization.CultureInfo::get_TextInfo() */, L_6);
Il2CppChar L_8 = ___c0;
Il2CppChar L_9 = VirtFuncInvoker1< Il2CppChar, Il2CppChar >::Invoke(7 /* System.Char System.Globalization.TextInfo::ToLower(System.Char) */, L_7, L_8);
return L_9;
}
}
// System.Char System.Char::ToUpper(System.Char)
extern "C" Il2CppChar Char_ToUpper_m3999570441 (RuntimeObject * __this /* static, unused */, Il2CppChar ___c0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Char_ToUpper_m3999570441_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t4157843068_il2cpp_TypeInfo_var);
CultureInfo_t4157843068 * L_0 = CultureInfo_get_CurrentCulture_m1632690660(NULL /*static, unused*/, /*hidden argument*/NULL);
TextInfo_t3810425522 * L_1 = VirtFuncInvoker0< TextInfo_t3810425522 * >::Invoke(9 /* System.Globalization.TextInfo System.Globalization.CultureInfo::get_TextInfo() */, L_0);
Il2CppChar L_2 = ___c0;
Il2CppChar L_3 = VirtFuncInvoker1< Il2CppChar, Il2CppChar >::Invoke(8 /* System.Char System.Globalization.TextInfo::ToUpper(System.Char) */, L_1, L_2);
return L_3;
}
}
// System.Char System.Char::ToUpperInvariant(System.Char)
extern "C" Il2CppChar Char_ToUpperInvariant_m3658711221 (RuntimeObject * __this /* static, unused */, Il2CppChar ___c0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Char_ToUpperInvariant_m3658711221_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Il2CppChar L_0 = ___c0;
if ((((int32_t)L_0) > ((int32_t)((int32_t)9449))))
{
goto IL_0016;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(Char_t3634460470_il2cpp_TypeInfo_var);
uint16_t* L_1 = ((Char_t3634460470_StaticFields*)il2cpp_codegen_static_fields_for(Char_t3634460470_il2cpp_TypeInfo_var))->get_to_upper_data_low_8();
Il2CppChar L_2 = ___c0;
return (*((uint16_t*)((uint16_t*)il2cpp_codegen_add((intptr_t)L_1, (int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)L_2, (int32_t)2))))));
}
IL_0016:
{
Il2CppChar L_3 = ___c0;
if ((((int32_t)L_3) < ((int32_t)((int32_t)65313))))
{
goto IL_0032;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(Char_t3634460470_il2cpp_TypeInfo_var);
uint16_t* L_4 = ((Char_t3634460470_StaticFields*)il2cpp_codegen_static_fields_for(Char_t3634460470_il2cpp_TypeInfo_var))->get_to_upper_data_high_9();
Il2CppChar L_5 = ___c0;
return (*((uint16_t*)((uint16_t*)il2cpp_codegen_add((intptr_t)L_4, (int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_5, (int32_t)((int32_t)65313))), (int32_t)2))))));
}
IL_0032:
{
Il2CppChar L_6 = ___c0;
return L_6;
}
}
// System.String System.Char::ToString()
extern "C" String_t* Char_ToString_m3588025615 (Il2CppChar* __this, const RuntimeMethod* method)
{
{
String_t* L_0 = String_CreateString_m1262864254(NULL, (*((uint16_t*)__this)), 1, /*hidden argument*/NULL);
return L_0;
}
}
extern "C" String_t* Char_ToString_m3588025615_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
Il2CppChar* _thisAdjusted = reinterpret_cast<Il2CppChar*>(__this + 1);
return Char_ToString_m3588025615(_thisAdjusted, method);
}
// System.String System.Char::ToString(System.IFormatProvider)
extern "C" String_t* Char_ToString_m278452217 (Il2CppChar* __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
{
String_t* L_0 = String_CreateString_m1262864254(NULL, (*((uint16_t*)__this)), 1, /*hidden argument*/NULL);
return L_0;
}
}
extern "C" String_t* Char_ToString_m278452217_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
Il2CppChar* _thisAdjusted = reinterpret_cast<Il2CppChar*>(__this + 1);
return Char_ToString_m278452217(_thisAdjusted, ___provider0, method);
}
// System.TypeCode System.Char::GetTypeCode()
extern "C" int32_t Char_GetTypeCode_m2433327340 (Il2CppChar* __this, const RuntimeMethod* method)
{
{
return (int32_t)(4);
}
}
extern "C" int32_t Char_GetTypeCode_m2433327340_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
Il2CppChar* _thisAdjusted = reinterpret_cast<Il2CppChar*>(__this + 1);
return Char_GetTypeCode_m2433327340(_thisAdjusted, method);
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.CharEnumerator::.ctor(System.String)
extern "C" void CharEnumerator__ctor_m3465358752 (CharEnumerator_t1121470421 * __this, String_t* ___s0, const RuntimeMethod* method)
{
{
Object__ctor_m297566312(__this, /*hidden argument*/NULL);
String_t* L_0 = ___s0;
__this->set_str_0(L_0);
__this->set_index_1((-1));
String_t* L_1 = ___s0;
int32_t L_2 = String_get_Length_m3847582255(L_1, /*hidden argument*/NULL);
__this->set_length_2(L_2);
return;
}
}
// System.Object System.CharEnumerator::System.Collections.IEnumerator.get_Current()
extern "C" RuntimeObject * CharEnumerator_System_Collections_IEnumerator_get_Current_m1328529384 (CharEnumerator_t1121470421 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (CharEnumerator_System_Collections_IEnumerator_get_Current_m1328529384_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Il2CppChar L_0 = CharEnumerator_get_Current_m525608209(__this, /*hidden argument*/NULL);
Il2CppChar L_1 = L_0;
RuntimeObject * L_2 = Box(Char_t3634460470_il2cpp_TypeInfo_var, &L_1);
return L_2;
}
}
// System.Void System.CharEnumerator::System.IDisposable.Dispose()
extern "C" void CharEnumerator_System_IDisposable_Dispose_m1750532533 (CharEnumerator_t1121470421 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Char System.CharEnumerator::get_Current()
extern "C" Il2CppChar CharEnumerator_get_Current_m525608209 (CharEnumerator_t1121470421 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (CharEnumerator_get_Current_m525608209_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = __this->get_index_1();
if ((((int32_t)L_0) == ((int32_t)(-1))))
{
goto IL_001d;
}
}
{
int32_t L_1 = __this->get_index_1();
int32_t L_2 = __this->get_length_2();
if ((((int32_t)L_1) < ((int32_t)L_2)))
{
goto IL_002d;
}
}
IL_001d:
{
String_t* L_3 = Locale_GetText_m3374010885(NULL /*static, unused*/, _stringLiteral2140447019, /*hidden argument*/NULL);
InvalidOperationException_t56020091 * L_4 = (InvalidOperationException_t56020091 *)il2cpp_codegen_object_new(InvalidOperationException_t56020091_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m237278729(L_4, L_3, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_4,CharEnumerator_get_Current_m525608209_RuntimeMethod_var);
}
IL_002d:
{
String_t* L_5 = __this->get_str_0();
int32_t L_6 = __this->get_index_1();
Il2CppChar L_7 = String_get_Chars_m2986988803(L_5, L_6, /*hidden argument*/NULL);
return L_7;
}
}
// System.Object System.CharEnumerator::Clone()
extern "C" RuntimeObject * CharEnumerator_Clone_m1884400089 (CharEnumerator_t1121470421 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (CharEnumerator_Clone_m1884400089_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
CharEnumerator_t1121470421 * V_0 = NULL;
{
String_t* L_0 = __this->get_str_0();
CharEnumerator_t1121470421 * L_1 = (CharEnumerator_t1121470421 *)il2cpp_codegen_object_new(CharEnumerator_t1121470421_il2cpp_TypeInfo_var);
CharEnumerator__ctor_m3465358752(L_1, L_0, /*hidden argument*/NULL);
V_0 = L_1;
CharEnumerator_t1121470421 * L_2 = V_0;
int32_t L_3 = __this->get_index_1();
L_2->set_index_1(L_3);
CharEnumerator_t1121470421 * L_4 = V_0;
return L_4;
}
}
// System.Boolean System.CharEnumerator::MoveNext()
extern "C" bool CharEnumerator_MoveNext_m599189179 (CharEnumerator_t1121470421 * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->get_index_1();
__this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_0, (int32_t)1)));
int32_t L_1 = __this->get_index_1();
int32_t L_2 = __this->get_length_2();
if ((((int32_t)L_1) < ((int32_t)L_2)))
{
goto IL_002d;
}
}
{
int32_t L_3 = __this->get_length_2();
__this->set_index_1(L_3);
return (bool)0;
}
IL_002d:
{
return (bool)1;
}
}
// System.Void System.CharEnumerator::Reset()
extern "C" void CharEnumerator_Reset_m2829582932 (CharEnumerator_t1121470421 * __this, const RuntimeMethod* method)
{
{
__this->set_index_1((-1));
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.CLSCompliantAttribute::.ctor(System.Boolean)
extern "C" void CLSCompliantAttribute__ctor_m581760440 (CLSCompliantAttribute_t999444765 * __this, bool ___isCompliant0, const RuntimeMethod* method)
{
{
Attribute__ctor_m1529526131(__this, /*hidden argument*/NULL);
bool L_0 = ___isCompliant0;
__this->set_is_compliant_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Collections.ArrayList::.ctor()
extern "C" void ArrayList__ctor_m4254721275 (ArrayList_t2718874744 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ArrayList__ctor_m4254721275_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Object__ctor_m297566312(__this, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(ArrayList_t2718874744_il2cpp_TypeInfo_var);
ObjectU5BU5D_t2843939325* L_0 = ((ArrayList_t2718874744_StaticFields*)il2cpp_codegen_static_fields_for(ArrayList_t2718874744_il2cpp_TypeInfo_var))->get_EmptyArray_4();
__this->set__items_2(L_0);
return;
}
}
// System.Void System.Collections.ArrayList::.ctor(System.Collections.ICollection)
extern "C" void ArrayList__ctor_m2130986447 (ArrayList_t2718874744 * __this, RuntimeObject* ___c0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ArrayList__ctor_m2130986447_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RuntimeArray * V_0 = NULL;
{
Object__ctor_m297566312(__this, /*hidden argument*/NULL);
RuntimeObject* L_0 = ___c0;
if (L_0)
{
goto IL_0017;
}
}
{
ArgumentNullException_t1615371798 * L_1 = (ArgumentNullException_t1615371798 *)il2cpp_codegen_object_new(ArgumentNullException_t1615371798_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m1170824041(L_1, _stringLiteral3452614589, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1,ArrayList__ctor_m2130986447_RuntimeMethod_var);
}
IL_0017:
{
RuntimeObject* L_2 = ___c0;
V_0 = ((RuntimeArray *)IsInstClass((RuntimeObject*)L_2, RuntimeArray_il2cpp_TypeInfo_var));
RuntimeArray * L_3 = V_0;
if (!L_3)
{
goto IL_0036;
}
}
{
RuntimeArray * L_4 = V_0;
int32_t L_5 = Array_get_Rank_m3448755881(L_4, /*hidden argument*/NULL);
if ((((int32_t)L_5) == ((int32_t)1)))
{
goto IL_0036;
}
}
{
RankException_t3812021567 * L_6 = (RankException_t3812021567 *)il2cpp_codegen_object_new(RankException_t3812021567_il2cpp_TypeInfo_var);
RankException__ctor_m4082747811(L_6, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_6,ArrayList__ctor_m2130986447_RuntimeMethod_var);
}
IL_0036:
{
RuntimeObject* L_7 = ___c0;
int32_t L_8 = InterfaceFuncInvoker0< int32_t >::Invoke(0 /* System.Int32 System.Collections.ICollection::get_Count() */, ICollection_t3904884886_il2cpp_TypeInfo_var, L_7);
__this->set__items_2(((ObjectU5BU5D_t2843939325*)SZArrayNew(ObjectU5BU5D_t2843939325_il2cpp_TypeInfo_var, (uint32_t)L_8)));
RuntimeObject* L_9 = ___c0;
VirtActionInvoker1< RuntimeObject* >::Invoke(44 /* System.Void System.Collections.ArrayList::AddRange(System.Collections.ICollection) */, __this, L_9);
return;
}
}
// System.Void System.Collections.ArrayList::.ctor(System.Int32)
extern "C" void ArrayList__ctor_m3828927650 (ArrayList_t2718874744 * __this, int32_t ___capacity0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ArrayList__ctor_m3828927650_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Object__ctor_m297566312(__this, /*hidden argument*/NULL);
int32_t L_0 = ___capacity0;
if ((((int32_t)L_0) >= ((int32_t)0)))
{
goto IL_0022;
}
}
{
int32_t L_1 = ___capacity0;
int32_t L_2 = L_1;
RuntimeObject * L_3 = Box(Int32_t2950945753_il2cpp_TypeInfo_var, &L_2);
IL2CPP_RUNTIME_CLASS_INIT(ArrayList_t2718874744_il2cpp_TypeInfo_var);
ArrayList_ThrowNewArgumentOutOfRangeException_m3110627888(NULL /*static, unused*/, _stringLiteral3623012086, L_3, _stringLiteral3500389620, /*hidden argument*/NULL);
}
IL_0022:
{
int32_t L_4 = ___capacity0;
if (L_4)
{
goto IL_002b;
}
}
{
___capacity0 = 4;
}
IL_002b:
{
int32_t L_5 = ___capacity0;
__this->set__items_2(((ObjectU5BU5D_t2843939325*)SZArrayNew(ObjectU5BU5D_t2843939325_il2cpp_TypeInfo_var, (uint32_t)L_5)));
return;
}
}
// System.Void System.Collections.ArrayList::.ctor(System.Object[],System.Int32,System.Int32)
extern "C" void ArrayList__ctor_m2075768692 (ArrayList_t2718874744 * __this, ObjectU5BU5D_t2843939325* ___array0, int32_t ___index1, int32_t ___count2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ArrayList__ctor_m2075768692_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Object__ctor_m297566312(__this, /*hidden argument*/NULL);
int32_t L_0 = ___count2;
if (L_0)
{
goto IL_001d;
}
}
{
__this->set__items_2(((ObjectU5BU5D_t2843939325*)SZArrayNew(ObjectU5BU5D_t2843939325_il2cpp_TypeInfo_var, (uint32_t)4)));
goto IL_0029;
}
IL_001d:
{
int32_t L_1 = ___count2;
__this->set__items_2(((ObjectU5BU5D_t2843939325*)SZArrayNew(ObjectU5BU5D_t2843939325_il2cpp_TypeInfo_var, (uint32_t)L_1)));
}
IL_0029:
{
ObjectU5BU5D_t2843939325* L_2 = ___array0;
int32_t L_3 = ___index1;
ObjectU5BU5D_t2843939325* L_4 = __this->get__items_2();
int32_t L_5 = ___count2;
Array_Copy_m344457298(NULL /*static, unused*/, (RuntimeArray *)(RuntimeArray *)L_2, L_3, (RuntimeArray *)(RuntimeArray *)L_4, 0, L_5, /*hidden argument*/NULL);
int32_t L_6 = ___count2;
__this->set__size_1(L_6);
return;
}
}
// System.Void System.Collections.ArrayList::.cctor()
extern "C" void ArrayList__cctor_m3052737821 (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ArrayList__cctor_m3052737821_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
((ArrayList_t2718874744_StaticFields*)il2cpp_codegen_static_fields_for(ArrayList_t2718874744_il2cpp_TypeInfo_var))->set_EmptyArray_4(((ObjectU5BU5D_t2843939325*)SZArrayNew(ObjectU5BU5D_t2843939325_il2cpp_TypeInfo_var, (uint32_t)0)));
return;
}
}
// System.Object System.Collections.ArrayList::get_Item(System.Int32)
extern "C" RuntimeObject * ArrayList_get_Item_m3820278660 (ArrayList_t2718874744 * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ArrayList_get_Item_m3820278660_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = ___index0;
if ((((int32_t)L_0) < ((int32_t)0)))
{
goto IL_0013;
}
}
{
int32_t L_1 = ___index0;
int32_t L_2 = __this->get__size_1();
if ((((int32_t)L_1) < ((int32_t)L_2)))
{
goto IL_0028;
}
}
IL_0013:
{
int32_t L_3 = ___index0;
int32_t L_4 = L_3;
RuntimeObject * L_5 = Box(Int32_t2950945753_il2cpp_TypeInfo_var, &L_4);
IL2CPP_RUNTIME_CLASS_INIT(ArrayList_t2718874744_il2cpp_TypeInfo_var);
ArrayList_ThrowNewArgumentOutOfRangeException_m3110627888(NULL /*static, unused*/, _stringLiteral797640427, L_5, _stringLiteral1370080298, /*hidden argument*/NULL);
}
IL_0028:
{
ObjectU5BU5D_t2843939325* L_6 = __this->get__items_2();
int32_t L_7 = ___index0;
int32_t L_8 = L_7;
RuntimeObject * L_9 = (L_6)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_8));
return L_9;
}
}
// System.Void System.Collections.ArrayList::set_Item(System.Int32,System.Object)
extern "C" void ArrayList_set_Item_m2003485935 (ArrayList_t2718874744 * __this, int32_t ___index0, RuntimeObject * ___value1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ArrayList_set_Item_m2003485935_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = ___index0;
if ((((int32_t)L_0) < ((int32_t)0)))
{
goto IL_0013;
}
}
{
int32_t L_1 = ___index0;
int32_t L_2 = __this->get__size_1();
if ((((int32_t)L_1) < ((int32_t)L_2)))
{
goto IL_0028;
}
}
IL_0013:
{
int32_t L_3 = ___index0;
int32_t L_4 = L_3;
RuntimeObject * L_5 = Box(Int32_t2950945753_il2cpp_TypeInfo_var, &L_4);
IL2CPP_RUNTIME_CLASS_INIT(ArrayList_t2718874744_il2cpp_TypeInfo_var);
ArrayList_ThrowNewArgumentOutOfRangeException_m3110627888(NULL /*static, unused*/, _stringLiteral797640427, L_5, _stringLiteral1370080298, /*hidden argument*/NULL);
}
IL_0028:
{
ObjectU5BU5D_t2843939325* L_6 = __this->get__items_2();
int32_t L_7 = ___index0;
RuntimeObject * L_8 = ___value1;
ArrayElementTypeCheck (L_6, L_8);
(L_6)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(L_7), (RuntimeObject *)L_8);
int32_t L_9 = __this->get__version_3();
__this->set__version_3(((int32_t)il2cpp_codegen_add((int32_t)L_9, (int32_t)1)));
return;
}
}
// System.Int32 System.Collections.ArrayList::get_Count()
extern "C" int32_t ArrayList_get_Count_m1015046493 (ArrayList_t2718874744 * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->get__size_1();
return L_0;
}
}
// System.Int32 System.Collections.ArrayList::get_Capacity()
extern "C" int32_t ArrayList_get_Capacity_m431818936 (ArrayList_t2718874744 * __this, const RuntimeMethod* method)
{
{
ObjectU5BU5D_t2843939325* L_0 = __this->get__items_2();
return (((int32_t)((int32_t)(((RuntimeArray *)L_0)->max_length))));
}
}
// System.Void System.Collections.ArrayList::set_Capacity(System.Int32)
extern "C" void ArrayList_set_Capacity_m1058991803 (ArrayList_t2718874744 * __this, int32_t ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ArrayList_set_Capacity_m1058991803_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t2843939325* V_0 = NULL;
{
int32_t L_0 = ___value0;
int32_t L_1 = __this->get__size_1();
if ((((int32_t)L_0) >= ((int32_t)L_1)))
{
goto IL_0021;
}
}
{
int32_t L_2 = ___value0;
int32_t L_3 = L_2;
RuntimeObject * L_4 = Box(Int32_t2950945753_il2cpp_TypeInfo_var, &L_3);
IL2CPP_RUNTIME_CLASS_INIT(ArrayList_t2718874744_il2cpp_TypeInfo_var);
ArrayList_ThrowNewArgumentOutOfRangeException_m3110627888(NULL /*static, unused*/, _stringLiteral3623013078, L_4, _stringLiteral2019553010, /*hidden argument*/NULL);
}
IL_0021:
{
int32_t L_5 = ___value0;
V_0 = ((ObjectU5BU5D_t2843939325*)SZArrayNew(ObjectU5BU5D_t2843939325_il2cpp_TypeInfo_var, (uint32_t)L_5));
ObjectU5BU5D_t2843939325* L_6 = __this->get__items_2();
ObjectU5BU5D_t2843939325* L_7 = V_0;
int32_t L_8 = __this->get__size_1();
Array_Copy_m344457298(NULL /*static, unused*/, (RuntimeArray *)(RuntimeArray *)L_6, 0, (RuntimeArray *)(RuntimeArray *)L_7, 0, L_8, /*hidden argument*/NULL);
ObjectU5BU5D_t2843939325* L_9 = V_0;
__this->set__items_2(L_9);
return;
}
}
// System.Boolean System.Collections.ArrayList::get_IsFixedSize()
extern "C" bool ArrayList_get_IsFixedSize_m24366329 (ArrayList_t2718874744 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// System.Boolean System.Collections.ArrayList::get_IsReadOnly()
extern "C" bool ArrayList_get_IsReadOnly_m913775115 (ArrayList_t2718874744 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// System.Boolean System.Collections.ArrayList::get_IsSynchronized()
extern "C" bool ArrayList_get_IsSynchronized_m854316597 (ArrayList_t2718874744 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// System.Object System.Collections.ArrayList::get_SyncRoot()
extern "C" RuntimeObject * ArrayList_get_SyncRoot_m2222042655 (ArrayList_t2718874744 * __this, const RuntimeMethod* method)
{
{
return __this;
}
}
// System.Void System.Collections.ArrayList::EnsureCapacity(System.Int32)
extern "C" void ArrayList_EnsureCapacity_m3016383533 (ArrayList_t2718874744 * __this, int32_t ___count0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ArrayList_EnsureCapacity_m3016383533_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
ObjectU5BU5D_t2843939325* V_1 = NULL;
{
int32_t L_0 = ___count0;
ObjectU5BU5D_t2843939325* L_1 = __this->get__items_2();
if ((((int32_t)L_0) > ((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_1)->max_length)))))))
{
goto IL_000f;
}
}
{
return;
}
IL_000f:
{
ObjectU5BU5D_t2843939325* L_2 = __this->get__items_2();
V_0 = ((int32_t)((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_2)->max_length))))<<(int32_t)1));
int32_t L_3 = V_0;
if (L_3)
{
goto IL_0022;
}
}
{
V_0 = 4;
}
IL_0022:
{
goto IL_002b;
}
IL_0027:
{
int32_t L_4 = V_0;
V_0 = ((int32_t)((int32_t)L_4<<(int32_t)1));
}
IL_002b:
{
int32_t L_5 = V_0;
int32_t L_6 = ___count0;
if ((((int32_t)L_5) < ((int32_t)L_6)))
{
goto IL_0027;
}
}
{
int32_t L_7 = V_0;
V_1 = ((ObjectU5BU5D_t2843939325*)SZArrayNew(ObjectU5BU5D_t2843939325_il2cpp_TypeInfo_var, (uint32_t)L_7));
ObjectU5BU5D_t2843939325* L_8 = __this->get__items_2();
ObjectU5BU5D_t2843939325* L_9 = V_1;
ObjectU5BU5D_t2843939325* L_10 = __this->get__items_2();
Array_Copy_m344457298(NULL /*static, unused*/, (RuntimeArray *)(RuntimeArray *)L_8, 0, (RuntimeArray *)(RuntimeArray *)L_9, 0, (((int32_t)((int32_t)(((RuntimeArray *)L_10)->max_length)))), /*hidden argument*/NULL);
ObjectU5BU5D_t2843939325* L_11 = V_1;
__this->set__items_2(L_11);
return;
}
}
// System.Void System.Collections.ArrayList::Shift(System.Int32,System.Int32)
extern "C" void ArrayList_Shift_m395607654 (ArrayList_t2718874744 * __this, int32_t ___index0, int32_t ___count1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ArrayList_Shift_m395607654_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
ObjectU5BU5D_t2843939325* V_1 = NULL;
int32_t V_2 = 0;
int32_t G_B5_0 = 0;
{
int32_t L_0 = ___count1;
if ((((int32_t)L_0) <= ((int32_t)0)))
{
goto IL_00ae;
}
}
{
int32_t L_1 = __this->get__size_1();
int32_t L_2 = ___count1;
ObjectU5BU5D_t2843939325* L_3 = __this->get__items_2();
if ((((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_1, (int32_t)L_2))) <= ((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_3)->max_length)))))))
{
goto IL_008c;
}
}
{
ObjectU5BU5D_t2843939325* L_4 = __this->get__items_2();
if ((((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_4)->max_length))))) <= ((int32_t)0)))
{
goto IL_0039;
}
}
{
ObjectU5BU5D_t2843939325* L_5 = __this->get__items_2();
G_B5_0 = ((int32_t)((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_5)->max_length))))<<(int32_t)1));
goto IL_003a;
}
IL_0039:
{
G_B5_0 = 1;
}
IL_003a:
{
V_0 = G_B5_0;
goto IL_0044;
}
IL_0040:
{
int32_t L_6 = V_0;
V_0 = ((int32_t)((int32_t)L_6<<(int32_t)1));
}
IL_0044:
{
int32_t L_7 = V_0;
int32_t L_8 = __this->get__size_1();
int32_t L_9 = ___count1;
if ((((int32_t)L_7) < ((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_8, (int32_t)L_9)))))
{
goto IL_0040;
}
}
{
int32_t L_10 = V_0;
V_1 = ((ObjectU5BU5D_t2843939325*)SZArrayNew(ObjectU5BU5D_t2843939325_il2cpp_TypeInfo_var, (uint32_t)L_10));
ObjectU5BU5D_t2843939325* L_11 = __this->get__items_2();
ObjectU5BU5D_t2843939325* L_12 = V_1;
int32_t L_13 = ___index0;
Array_Copy_m344457298(NULL /*static, unused*/, (RuntimeArray *)(RuntimeArray *)L_11, 0, (RuntimeArray *)(RuntimeArray *)L_12, 0, L_13, /*hidden argument*/NULL);
ObjectU5BU5D_t2843939325* L_14 = __this->get__items_2();
int32_t L_15 = ___index0;
ObjectU5BU5D_t2843939325* L_16 = V_1;
int32_t L_17 = ___index0;
int32_t L_18 = ___count1;
int32_t L_19 = __this->get__size_1();
int32_t L_20 = ___index0;
Array_Copy_m344457298(NULL /*static, unused*/, (RuntimeArray *)(RuntimeArray *)L_14, L_15, (RuntimeArray *)(RuntimeArray *)L_16, ((int32_t)il2cpp_codegen_add((int32_t)L_17, (int32_t)L_18)), ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)L_20)), /*hidden argument*/NULL);
ObjectU5BU5D_t2843939325* L_21 = V_1;
__this->set__items_2(L_21);
goto IL_00a9;
}
IL_008c:
{
ObjectU5BU5D_t2843939325* L_22 = __this->get__items_2();
int32_t L_23 = ___index0;
ObjectU5BU5D_t2843939325* L_24 = __this->get__items_2();
int32_t L_25 = ___index0;
int32_t L_26 = ___count1;
int32_t L_27 = __this->get__size_1();
int32_t L_28 = ___index0;
Array_Copy_m344457298(NULL /*static, unused*/, (RuntimeArray *)(RuntimeArray *)L_22, L_23, (RuntimeArray *)(RuntimeArray *)L_24, ((int32_t)il2cpp_codegen_add((int32_t)L_25, (int32_t)L_26)), ((int32_t)il2cpp_codegen_subtract((int32_t)L_27, (int32_t)L_28)), /*hidden argument*/NULL);
}
IL_00a9:
{
goto IL_00e9;
}
IL_00ae:
{
int32_t L_29 = ___count1;
if ((((int32_t)L_29) >= ((int32_t)0)))
{
goto IL_00e9;
}
}
{
int32_t L_30 = ___index0;
int32_t L_31 = ___count1;
V_2 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_30, (int32_t)L_31));
ObjectU5BU5D_t2843939325* L_32 = __this->get__items_2();
int32_t L_33 = V_2;
ObjectU5BU5D_t2843939325* L_34 = __this->get__items_2();
int32_t L_35 = ___index0;
int32_t L_36 = __this->get__size_1();
int32_t L_37 = V_2;
Array_Copy_m344457298(NULL /*static, unused*/, (RuntimeArray *)(RuntimeArray *)L_32, L_33, (RuntimeArray *)(RuntimeArray *)L_34, L_35, ((int32_t)il2cpp_codegen_subtract((int32_t)L_36, (int32_t)L_37)), /*hidden argument*/NULL);
ObjectU5BU5D_t2843939325* L_38 = __this->get__items_2();
int32_t L_39 = __this->get__size_1();
int32_t L_40 = ___count1;
int32_t L_41 = ___count1;
Array_Clear_m2231608178(NULL /*static, unused*/, (RuntimeArray *)(RuntimeArray *)L_38, ((int32_t)il2cpp_codegen_add((int32_t)L_39, (int32_t)L_40)), ((-L_41)), /*hidden argument*/NULL);
}
IL_00e9:
{
return;
}
}
// System.Int32 System.Collections.ArrayList::Add(System.Object)
extern "C" int32_t ArrayList_Add_m730026926 (ArrayList_t2718874744 * __this, RuntimeObject * ___value0, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
ObjectU5BU5D_t2843939325* L_0 = __this->get__items_2();
int32_t L_1 = __this->get__size_1();
if ((((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_0)->max_length))))) > ((int32_t)L_1)))
{
goto IL_0021;
}
}
{
int32_t L_2 = __this->get__size_1();
ArrayList_EnsureCapacity_m3016383533(__this, ((int32_t)il2cpp_codegen_add((int32_t)L_2, (int32_t)1)), /*hidden argument*/NULL);
}
IL_0021:
{
ObjectU5BU5D_t2843939325* L_3 = __this->get__items_2();
int32_t L_4 = __this->get__size_1();
RuntimeObject * L_5 = ___value0;
ArrayElementTypeCheck (L_3, L_5);
(L_3)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(L_4), (RuntimeObject *)L_5);
int32_t L_6 = __this->get__version_3();
__this->set__version_3(((int32_t)il2cpp_codegen_add((int32_t)L_6, (int32_t)1)));
int32_t L_7 = __this->get__size_1();
int32_t L_8 = L_7;
V_0 = L_8;
__this->set__size_1(((int32_t)il2cpp_codegen_add((int32_t)L_8, (int32_t)1)));
int32_t L_9 = V_0;
return L_9;
}
}
// System.Void System.Collections.ArrayList::Clear()
extern "C" void ArrayList_Clear_m3564447992 (ArrayList_t2718874744 * __this, const RuntimeMethod* method)
{
{
ObjectU5BU5D_t2843939325* L_0 = __this->get__items_2();
int32_t L_1 = __this->get__size_1();
Array_Clear_m2231608178(NULL /*static, unused*/, (RuntimeArray *)(RuntimeArray *)L_0, 0, L_1, /*hidden argument*/NULL);
__this->set__size_1(0);
int32_t L_2 = __this->get__version_3();
__this->set__version_3(((int32_t)il2cpp_codegen_add((int32_t)L_2, (int32_t)1)));
return;
}
}
// System.Boolean System.Collections.ArrayList::Contains(System.Object)
extern "C" bool ArrayList_Contains_m974354901 (ArrayList_t2718874744 * __this, RuntimeObject * ___item0, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = ___item0;
int32_t L_1 = __this->get__size_1();
int32_t L_2 = VirtFuncInvoker3< int32_t, RuntimeObject *, int32_t, int32_t >::Invoke(35 /* System.Int32 System.Collections.ArrayList::IndexOf(System.Object,System.Int32,System.Int32) */, __this, L_0, 0, L_1);
return (bool)((((int32_t)L_2) > ((int32_t)(-1)))? 1 : 0);
}
}
// System.Int32 System.Collections.ArrayList::IndexOf(System.Object)
extern "C" int32_t ArrayList_IndexOf_m771193320 (ArrayList_t2718874744 * __this, RuntimeObject * ___value0, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = ___value0;
int32_t L_1 = VirtFuncInvoker2< int32_t, RuntimeObject *, int32_t >::Invoke(34 /* System.Int32 System.Collections.ArrayList::IndexOf(System.Object,System.Int32) */, __this, L_0, 0);
return L_1;
}
}
// System.Int32 System.Collections.ArrayList::IndexOf(System.Object,System.Int32)
extern "C" int32_t ArrayList_IndexOf_m305368842 (ArrayList_t2718874744 * __this, RuntimeObject * ___value0, int32_t ___startIndex1, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = ___value0;
int32_t L_1 = ___startIndex1;
int32_t L_2 = __this->get__size_1();
int32_t L_3 = ___startIndex1;
int32_t L_4 = VirtFuncInvoker3< int32_t, RuntimeObject *, int32_t, int32_t >::Invoke(35 /* System.Int32 System.Collections.ArrayList::IndexOf(System.Object,System.Int32,System.Int32) */, __this, L_0, L_1, ((int32_t)il2cpp_codegen_subtract((int32_t)L_2, (int32_t)L_3)));
return L_4;
}
}
// System.Int32 System.Collections.ArrayList::IndexOf(System.Object,System.Int32,System.Int32)
extern "C" int32_t ArrayList_IndexOf_m1052788661 (ArrayList_t2718874744 * __this, RuntimeObject * ___value0, int32_t ___startIndex1, int32_t ___count2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ArrayList_IndexOf_m1052788661_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = ___startIndex1;
if ((((int32_t)L_0) < ((int32_t)0)))
{
goto IL_0013;
}
}
{
int32_t L_1 = ___startIndex1;
int32_t L_2 = __this->get__size_1();
if ((((int32_t)L_1) <= ((int32_t)L_2)))
{
goto IL_0028;
}
}
IL_0013:
{
int32_t L_3 = ___startIndex1;
int32_t L_4 = L_3;
RuntimeObject * L_5 = Box(Int32_t2950945753_il2cpp_TypeInfo_var, &L_4);
IL2CPP_RUNTIME_CLASS_INIT(ArrayList_t2718874744_il2cpp_TypeInfo_var);
ArrayList_ThrowNewArgumentOutOfRangeException_m3110627888(NULL /*static, unused*/, _stringLiteral2410720131, L_5, _stringLiteral2662431096, /*hidden argument*/NULL);
}
IL_0028:
{
int32_t L_6 = ___count2;
if ((((int32_t)L_6) >= ((int32_t)0)))
{
goto IL_0044;
}
}
{
int32_t L_7 = ___count2;
int32_t L_8 = L_7;
RuntimeObject * L_9 = Box(Int32_t2950945753_il2cpp_TypeInfo_var, &L_8);
IL2CPP_RUNTIME_CLASS_INIT(ArrayList_t2718874744_il2cpp_TypeInfo_var);
ArrayList_ThrowNewArgumentOutOfRangeException_m3110627888(NULL /*static, unused*/, _stringLiteral2002595880, L_9, _stringLiteral3732847104, /*hidden argument*/NULL);
}
IL_0044:
{
int32_t L_10 = ___startIndex1;
int32_t L_11 = __this->get__size_1();
int32_t L_12 = ___count2;
if ((((int32_t)L_10) <= ((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_11, (int32_t)L_12)))))
{
goto IL_0062;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_13 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m282481429(L_13, _stringLiteral2002595880, _stringLiteral738047332, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_13,ArrayList_IndexOf_m1052788661_RuntimeMethod_var);
}
IL_0062:
{
ObjectU5BU5D_t2843939325* L_14 = __this->get__items_2();
RuntimeObject * L_15 = ___value0;
int32_t L_16 = ___startIndex1;
int32_t L_17 = ___count2;
int32_t L_18 = Array_IndexOf_TisRuntimeObject_m828474689(NULL /*static, unused*/, L_14, L_15, L_16, L_17, /*hidden argument*/Array_IndexOf_TisRuntimeObject_m828474689_RuntimeMethod_var);
return L_18;
}
}
// System.Void System.Collections.ArrayList::Insert(System.Int32,System.Object)
extern "C" void ArrayList_Insert_m3524057793 (ArrayList_t2718874744 * __this, int32_t ___index0, RuntimeObject * ___value1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ArrayList_Insert_m3524057793_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = ___index0;
if ((((int32_t)L_0) < ((int32_t)0)))
{
goto IL_0013;
}
}
{
int32_t L_1 = ___index0;
int32_t L_2 = __this->get__size_1();
if ((((int32_t)L_1) <= ((int32_t)L_2)))
{
goto IL_0028;
}
}
IL_0013:
{
int32_t L_3 = ___index0;
int32_t L_4 = L_3;
RuntimeObject * L_5 = Box(Int32_t2950945753_il2cpp_TypeInfo_var, &L_4);
IL2CPP_RUNTIME_CLASS_INIT(ArrayList_t2718874744_il2cpp_TypeInfo_var);
ArrayList_ThrowNewArgumentOutOfRangeException_m3110627888(NULL /*static, unused*/, _stringLiteral797640427, L_5, _stringLiteral3314103136, /*hidden argument*/NULL);
}
IL_0028:
{
int32_t L_6 = ___index0;
ArrayList_Shift_m395607654(__this, L_6, 1, /*hidden argument*/NULL);
ObjectU5BU5D_t2843939325* L_7 = __this->get__items_2();
int32_t L_8 = ___index0;
RuntimeObject * L_9 = ___value1;
ArrayElementTypeCheck (L_7, L_9);
(L_7)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(L_8), (RuntimeObject *)L_9);
int32_t L_10 = __this->get__size_1();
__this->set__size_1(((int32_t)il2cpp_codegen_add((int32_t)L_10, (int32_t)1)));
int32_t L_11 = __this->get__version_3();
__this->set__version_3(((int32_t)il2cpp_codegen_add((int32_t)L_11, (int32_t)1)));
return;
}
}
// System.Void System.Collections.ArrayList::InsertRange(System.Int32,System.Collections.ICollection)
extern "C" void ArrayList_InsertRange_m1740766984 (ArrayList_t2718874744 * __this, int32_t ___index0, RuntimeObject* ___c1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ArrayList_InsertRange_m1740766984_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
{
RuntimeObject* L_0 = ___c1;
if (L_0)
{
goto IL_0011;
}
}
{
ArgumentNullException_t1615371798 * L_1 = (ArgumentNullException_t1615371798 *)il2cpp_codegen_object_new(ArgumentNullException_t1615371798_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m1170824041(L_1, _stringLiteral3452614589, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1,ArrayList_InsertRange_m1740766984_RuntimeMethod_var);
}
IL_0011:
{
int32_t L_2 = ___index0;
if ((((int32_t)L_2) < ((int32_t)0)))
{
goto IL_0024;
}
}
{
int32_t L_3 = ___index0;
int32_t L_4 = __this->get__size_1();
if ((((int32_t)L_3) <= ((int32_t)L_4)))
{
goto IL_0039;
}
}
IL_0024:
{
int32_t L_5 = ___index0;
int32_t L_6 = L_5;
RuntimeObject * L_7 = Box(Int32_t2950945753_il2cpp_TypeInfo_var, &L_6);
IL2CPP_RUNTIME_CLASS_INIT(ArrayList_t2718874744_il2cpp_TypeInfo_var);
ArrayList_ThrowNewArgumentOutOfRangeException_m3110627888(NULL /*static, unused*/, _stringLiteral797640427, L_7, _stringLiteral3314103136, /*hidden argument*/NULL);
}
IL_0039:
{
RuntimeObject* L_8 = ___c1;
int32_t L_9 = InterfaceFuncInvoker0< int32_t >::Invoke(0 /* System.Int32 System.Collections.ICollection::get_Count() */, ICollection_t3904884886_il2cpp_TypeInfo_var, L_8);
V_0 = L_9;
ObjectU5BU5D_t2843939325* L_10 = __this->get__items_2();
int32_t L_11 = __this->get__size_1();
int32_t L_12 = V_0;
if ((((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_10)->max_length))))) >= ((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_11, (int32_t)L_12)))))
{
goto IL_0063;
}
}
{
int32_t L_13 = __this->get__size_1();
int32_t L_14 = V_0;
ArrayList_EnsureCapacity_m3016383533(__this, ((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)L_14)), /*hidden argument*/NULL);
}
IL_0063:
{
int32_t L_15 = ___index0;
int32_t L_16 = __this->get__size_1();
if ((((int32_t)L_15) >= ((int32_t)L_16)))
{
goto IL_008c;
}
}
{
ObjectU5BU5D_t2843939325* L_17 = __this->get__items_2();
int32_t L_18 = ___index0;
ObjectU5BU5D_t2843939325* L_19 = __this->get__items_2();
int32_t L_20 = ___index0;
int32_t L_21 = V_0;
int32_t L_22 = __this->get__size_1();
int32_t L_23 = ___index0;
Array_Copy_m344457298(NULL /*static, unused*/, (RuntimeArray *)(RuntimeArray *)L_17, L_18, (RuntimeArray *)(RuntimeArray *)L_19, ((int32_t)il2cpp_codegen_add((int32_t)L_20, (int32_t)L_21)), ((int32_t)il2cpp_codegen_subtract((int32_t)L_22, (int32_t)L_23)), /*hidden argument*/NULL);
}
IL_008c:
{
RuntimeObject* L_24 = ___c1;
RuntimeObject * L_25 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(2 /* System.Object System.Collections.ICollection::get_SyncRoot() */, ICollection_t3904884886_il2cpp_TypeInfo_var, L_24);
if ((!(((RuntimeObject*)(ArrayList_t2718874744 *)__this) == ((RuntimeObject*)(RuntimeObject *)L_25))))
{
goto IL_00d0;
}
}
{
ObjectU5BU5D_t2843939325* L_26 = __this->get__items_2();
ObjectU5BU5D_t2843939325* L_27 = __this->get__items_2();
int32_t L_28 = ___index0;
int32_t L_29 = ___index0;
Array_Copy_m344457298(NULL /*static, unused*/, (RuntimeArray *)(RuntimeArray *)L_26, 0, (RuntimeArray *)(RuntimeArray *)L_27, L_28, L_29, /*hidden argument*/NULL);
ObjectU5BU5D_t2843939325* L_30 = __this->get__items_2();
int32_t L_31 = ___index0;
int32_t L_32 = V_0;
ObjectU5BU5D_t2843939325* L_33 = __this->get__items_2();
int32_t L_34 = ___index0;
int32_t L_35 = __this->get__size_1();
int32_t L_36 = ___index0;
Array_Copy_m344457298(NULL /*static, unused*/, (RuntimeArray *)(RuntimeArray *)L_30, ((int32_t)il2cpp_codegen_add((int32_t)L_31, (int32_t)L_32)), (RuntimeArray *)(RuntimeArray *)L_33, ((int32_t)((int32_t)L_34<<(int32_t)1)), ((int32_t)il2cpp_codegen_subtract((int32_t)L_35, (int32_t)L_36)), /*hidden argument*/NULL);
goto IL_00dd;
}
IL_00d0:
{
RuntimeObject* L_37 = ___c1;
ObjectU5BU5D_t2843939325* L_38 = __this->get__items_2();
int32_t L_39 = ___index0;
InterfaceActionInvoker2< RuntimeArray *, int32_t >::Invoke(3 /* System.Void System.Collections.ICollection::CopyTo(System.Array,System.Int32) */, ICollection_t3904884886_il2cpp_TypeInfo_var, L_37, (RuntimeArray *)(RuntimeArray *)L_38, L_39);
}
IL_00dd:
{
int32_t L_40 = __this->get__size_1();
RuntimeObject* L_41 = ___c1;
int32_t L_42 = InterfaceFuncInvoker0< int32_t >::Invoke(0 /* System.Int32 System.Collections.ICollection::get_Count() */, ICollection_t3904884886_il2cpp_TypeInfo_var, L_41);
__this->set__size_1(((int32_t)il2cpp_codegen_add((int32_t)L_40, (int32_t)L_42)));
int32_t L_43 = __this->get__version_3();
__this->set__version_3(((int32_t)il2cpp_codegen_add((int32_t)L_43, (int32_t)1)));
return;
}
}
// System.Void System.Collections.ArrayList::Remove(System.Object)
extern "C" void ArrayList_Remove_m4274871153 (ArrayList_t2718874744 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
RuntimeObject * L_0 = ___obj0;
int32_t L_1 = VirtFuncInvoker1< int32_t, RuntimeObject * >::Invoke(33 /* System.Int32 System.Collections.ArrayList::IndexOf(System.Object) */, __this, L_0);
V_0 = L_1;
int32_t L_2 = V_0;
if ((((int32_t)L_2) <= ((int32_t)(-1))))
{
goto IL_0016;
}
}
{
int32_t L_3 = V_0;
VirtActionInvoker1< int32_t >::Invoke(39 /* System.Void System.Collections.ArrayList::RemoveAt(System.Int32) */, __this, L_3);
}
IL_0016:
{
int32_t L_4 = __this->get__version_3();
__this->set__version_3(((int32_t)il2cpp_codegen_add((int32_t)L_4, (int32_t)1)));
return;
}
}
// System.Void System.Collections.ArrayList::RemoveAt(System.Int32)
extern "C" void ArrayList_RemoveAt_m761734947 (ArrayList_t2718874744 * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ArrayList_RemoveAt_m761734947_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = ___index0;
if ((((int32_t)L_0) < ((int32_t)0)))
{
goto IL_0013;
}
}
{
int32_t L_1 = ___index0;
int32_t L_2 = __this->get__size_1();
if ((((int32_t)L_1) < ((int32_t)L_2)))
{
goto IL_0028;
}
}
IL_0013:
{
int32_t L_3 = ___index0;
int32_t L_4 = L_3;
RuntimeObject * L_5 = Box(Int32_t2950945753_il2cpp_TypeInfo_var, &L_4);
IL2CPP_RUNTIME_CLASS_INIT(ArrayList_t2718874744_il2cpp_TypeInfo_var);
ArrayList_ThrowNewArgumentOutOfRangeException_m3110627888(NULL /*static, unused*/, _stringLiteral797640427, L_5, _stringLiteral2628772951, /*hidden argument*/NULL);
}
IL_0028:
{
int32_t L_6 = ___index0;
ArrayList_Shift_m395607654(__this, L_6, (-1), /*hidden argument*/NULL);
int32_t L_7 = __this->get__size_1();
__this->set__size_1(((int32_t)il2cpp_codegen_subtract((int32_t)L_7, (int32_t)1)));
int32_t L_8 = __this->get__version_3();
__this->set__version_3(((int32_t)il2cpp_codegen_add((int32_t)L_8, (int32_t)1)));
return;
}
}
// System.Void System.Collections.ArrayList::CopyTo(System.Array)
extern "C" void ArrayList_CopyTo_m3530931172 (ArrayList_t2718874744 * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
{
ObjectU5BU5D_t2843939325* L_0 = __this->get__items_2();
RuntimeArray * L_1 = ___array0;
int32_t L_2 = __this->get__size_1();
Array_Copy_m1988217701(NULL /*static, unused*/, (RuntimeArray *)(RuntimeArray *)L_0, L_1, L_2, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Collections.ArrayList::CopyTo(System.Array,System.Int32)
extern "C" void ArrayList_CopyTo_m3962521159 (ArrayList_t2718874744 * __this, RuntimeArray * ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method)
{
{
RuntimeArray * L_0 = ___array0;
int32_t L_1 = ___arrayIndex1;
int32_t L_2 = __this->get__size_1();
VirtActionInvoker4< int32_t, RuntimeArray *, int32_t, int32_t >::Invoke(42 /* System.Void System.Collections.ArrayList::CopyTo(System.Int32,System.Array,System.Int32,System.Int32) */, __this, 0, L_0, L_1, L_2);
return;
}
}
// System.Void System.Collections.ArrayList::CopyTo(System.Int32,System.Array,System.Int32,System.Int32)
extern "C" void ArrayList_CopyTo_m3105450421 (ArrayList_t2718874744 * __this, int32_t ___index0, RuntimeArray * ___array1, int32_t ___arrayIndex2, int32_t ___count3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ArrayList_CopyTo_m3105450421_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeArray * L_0 = ___array1;
if (L_0)
{
goto IL_0011;
}
}
{
ArgumentNullException_t1615371798 * L_1 = (ArgumentNullException_t1615371798 *)il2cpp_codegen_object_new(ArgumentNullException_t1615371798_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m1170824041(L_1, _stringLiteral4007973390, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1,ArrayList_CopyTo_m3105450421_RuntimeMethod_var);
}
IL_0011:
{
RuntimeArray * L_2 = ___array1;
int32_t L_3 = Array_get_Rank_m3448755881(L_2, /*hidden argument*/NULL);
if ((((int32_t)L_3) == ((int32_t)1)))
{
goto IL_002d;
}
}
{
ArgumentException_t132251570 * L_4 = (ArgumentException_t132251570 *)il2cpp_codegen_object_new(ArgumentException_t132251570_il2cpp_TypeInfo_var);
ArgumentException__ctor_m1216717135(L_4, _stringLiteral2432024763, _stringLiteral4007973390, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_4,ArrayList_CopyTo_m3105450421_RuntimeMethod_var);
}
IL_002d:
{
ObjectU5BU5D_t2843939325* L_5 = __this->get__items_2();
int32_t L_6 = ___index0;
RuntimeArray * L_7 = ___array1;
int32_t L_8 = ___arrayIndex2;
int32_t L_9 = ___count3;
Array_Copy_m344457298(NULL /*static, unused*/, (RuntimeArray *)(RuntimeArray *)L_5, L_6, L_7, L_8, L_9, /*hidden argument*/NULL);
return;
}
}
// System.Collections.IEnumerator System.Collections.ArrayList::GetEnumerator()
extern "C" RuntimeObject* ArrayList_GetEnumerator_m3176119603 (ArrayList_t2718874744 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ArrayList_GetEnumerator_m3176119603_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
SimpleEnumerator_t4287166116 * L_0 = (SimpleEnumerator_t4287166116 *)il2cpp_codegen_object_new(SimpleEnumerator_t4287166116_il2cpp_TypeInfo_var);
SimpleEnumerator__ctor_m917940076(L_0, __this, /*hidden argument*/NULL);
return L_0;
}
}
// System.Void System.Collections.ArrayList::AddRange(System.Collections.ICollection)
extern "C" void ArrayList_AddRange_m3758299474 (ArrayList_t2718874744 * __this, RuntimeObject* ___c0, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->get__size_1();
RuntimeObject* L_1 = ___c0;
VirtActionInvoker2< int32_t, RuntimeObject* >::Invoke(37 /* System.Void System.Collections.ArrayList::InsertRange(System.Int32,System.Collections.ICollection) */, __this, L_0, L_1);
return;
}
}
// System.Void System.Collections.ArrayList::Sort()
extern "C" void ArrayList_Sort_m582560637 (ArrayList_t2718874744 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ArrayList_Sort_m582560637_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
ObjectU5BU5D_t2843939325* L_0 = __this->get__items_2();
int32_t L_1 = __this->get__size_1();
Array_Sort_TisRuntimeObject_m440635289(NULL /*static, unused*/, L_0, 0, L_1, /*hidden argument*/Array_Sort_TisRuntimeObject_m440635289_RuntimeMethod_var);
int32_t L_2 = __this->get__version_3();
__this->set__version_3(((int32_t)il2cpp_codegen_add((int32_t)L_2, (int32_t)1)));
return;
}
}
// System.Void System.Collections.ArrayList::Sort(System.Collections.IComparer)
extern "C" void ArrayList_Sort_m4234055499 (ArrayList_t2718874744 * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method)
{
{
ObjectU5BU5D_t2843939325* L_0 = __this->get__items_2();
int32_t L_1 = __this->get__size_1();
RuntimeObject* L_2 = ___comparer0;
Array_Sort_m182264525(NULL /*static, unused*/, (RuntimeArray *)(RuntimeArray *)L_0, 0, L_1, L_2, /*hidden argument*/NULL);
return;
}
}
// System.Object[] System.Collections.ArrayList::ToArray()
extern "C" ObjectU5BU5D_t2843939325* ArrayList_ToArray_m3827492363 (ArrayList_t2718874744 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ArrayList_ToArray_m3827492363_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t2843939325* V_0 = NULL;
{
int32_t L_0 = __this->get__size_1();
V_0 = ((ObjectU5BU5D_t2843939325*)SZArrayNew(ObjectU5BU5D_t2843939325_il2cpp_TypeInfo_var, (uint32_t)L_0));
ObjectU5BU5D_t2843939325* L_1 = V_0;
VirtActionInvoker1< RuntimeArray * >::Invoke(40 /* System.Void System.Collections.ArrayList::CopyTo(System.Array) */, __this, (RuntimeArray *)(RuntimeArray *)L_1);
ObjectU5BU5D_t2843939325* L_2 = V_0;
return L_2;
}
}
// System.Array System.Collections.ArrayList::ToArray(System.Type)
extern "C" RuntimeArray * ArrayList_ToArray_m3439706433 (ArrayList_t2718874744 * __this, Type_t * ___type0, const RuntimeMethod* method)
{
RuntimeArray * V_0 = NULL;
{
Type_t * L_0 = ___type0;
int32_t L_1 = __this->get__size_1();
RuntimeArray * L_2 = Array_CreateInstance_m2750085942(NULL /*static, unused*/, L_0, L_1, /*hidden argument*/NULL);
V_0 = L_2;
RuntimeArray * L_3 = V_0;
VirtActionInvoker1< RuntimeArray * >::Invoke(40 /* System.Void System.Collections.ArrayList::CopyTo(System.Array) */, __this, L_3);
RuntimeArray * L_4 = V_0;
return L_4;
}
}
// System.Object System.Collections.ArrayList::Clone()
extern "C" RuntimeObject * ArrayList_Clone_m2682741233 (ArrayList_t2718874744 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ArrayList_Clone_m2682741233_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
ObjectU5BU5D_t2843939325* L_0 = __this->get__items_2();
int32_t L_1 = __this->get__size_1();
ArrayList_t2718874744 * L_2 = (ArrayList_t2718874744 *)il2cpp_codegen_object_new(ArrayList_t2718874744_il2cpp_TypeInfo_var);
ArrayList__ctor_m2075768692(L_2, L_0, 0, L_1, /*hidden argument*/NULL);
return L_2;
}
}
// System.Void System.Collections.ArrayList::ThrowNewArgumentOutOfRangeException(System.String,System.Object,System.String)
extern "C" void ArrayList_ThrowNewArgumentOutOfRangeException_m3110627888 (RuntimeObject * __this /* static, unused */, String_t* ___name0, RuntimeObject * ___actual1, String_t* ___message2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ArrayList_ThrowNewArgumentOutOfRangeException_m3110627888_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = ___name0;
RuntimeObject * L_1 = ___actual1;
String_t* L_2 = ___message2;
ArgumentOutOfRangeException_t777629997 * L_3 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m4164965325(L_3, L_0, L_1, L_2, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3,ArrayList_ThrowNewArgumentOutOfRangeException_m3110627888_RuntimeMethod_var);
}
}
// System.Collections.ArrayList System.Collections.ArrayList::Synchronized(System.Collections.ArrayList)
extern "C" ArrayList_t2718874744 * ArrayList_Synchronized_m1327684267 (RuntimeObject * __this /* static, unused */, ArrayList_t2718874744 * ___list0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ArrayList_Synchronized_m1327684267_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
ArrayList_t2718874744 * L_0 = ___list0;
if (L_0)
{
goto IL_0011;
}
}
{
ArgumentNullException_t1615371798 * L_1 = (ArgumentNullException_t1615371798 *)il2cpp_codegen_object_new(ArgumentNullException_t1615371798_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m1170824041(L_1, _stringLiteral3941568111, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1,ArrayList_Synchronized_m1327684267_RuntimeMethod_var);
}
IL_0011:
{
ArrayList_t2718874744 * L_2 = ___list0;
bool L_3 = VirtFuncInvoker0< bool >::Invoke(28 /* System.Boolean System.Collections.ArrayList::get_IsSynchronized() */, L_2);
if (!L_3)
{
goto IL_001e;
}
}
{
ArrayList_t2718874744 * L_4 = ___list0;
return L_4;
}
IL_001e:
{
ArrayList_t2718874744 * L_5 = ___list0;
SynchronizedArrayListWrapper_t2283757095 * L_6 = (SynchronizedArrayListWrapper_t2283757095 *)il2cpp_codegen_object_new(SynchronizedArrayListWrapper_t2283757095_il2cpp_TypeInfo_var);
SynchronizedArrayListWrapper__ctor_m3368338124(L_6, L_5, /*hidden argument*/NULL);
return L_6;
}
}
// System.Collections.ArrayList System.Collections.ArrayList::ReadOnly(System.Collections.ArrayList)
extern "C" ArrayList_t2718874744 * ArrayList_ReadOnly_m1905796817 (RuntimeObject * __this /* static, unused */, ArrayList_t2718874744 * ___list0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ArrayList_ReadOnly_m1905796817_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
ArrayList_t2718874744 * L_0 = ___list0;
if (L_0)
{
goto IL_0011;
}
}
{
ArgumentNullException_t1615371798 * L_1 = (ArgumentNullException_t1615371798 *)il2cpp_codegen_object_new(ArgumentNullException_t1615371798_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m1170824041(L_1, _stringLiteral3941568111, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1,ArrayList_ReadOnly_m1905796817_RuntimeMethod_var);
}
IL_0011:
{
ArrayList_t2718874744 * L_2 = ___list0;
bool L_3 = VirtFuncInvoker0< bool >::Invoke(27 /* System.Boolean System.Collections.ArrayList::get_IsReadOnly() */, L_2);
if (!L_3)
{
goto IL_001e;
}
}
{
ArrayList_t2718874744 * L_4 = ___list0;
return L_4;
}
IL_001e:
{
ArrayList_t2718874744 * L_5 = ___list0;
ReadOnlyArrayListWrapper_t3401315650 * L_6 = (ReadOnlyArrayListWrapper_t3401315650 *)il2cpp_codegen_object_new(ReadOnlyArrayListWrapper_t3401315650_il2cpp_TypeInfo_var);
ReadOnlyArrayListWrapper__ctor_m1527708879(L_6, L_5, /*hidden argument*/NULL);
return L_6;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Collections.ArrayList/ArrayListWrapper::.ctor(System.Collections.ArrayList)
extern "C" void ArrayListWrapper__ctor_m970192266 (ArrayListWrapper_t240606758 * __this, ArrayList_t2718874744 * ___innerArrayList0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ArrayListWrapper__ctor_m970192266_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(ArrayList_t2718874744_il2cpp_TypeInfo_var);
ArrayList__ctor_m4254721275(__this, /*hidden argument*/NULL);
ArrayList_t2718874744 * L_0 = ___innerArrayList0;
__this->set_m_InnerArrayList_5(L_0);
return;
}
}
// System.Object System.Collections.ArrayList/ArrayListWrapper::get_Item(System.Int32)
extern "C" RuntimeObject * ArrayListWrapper_get_Item_m1313829881 (ArrayListWrapper_t240606758 * __this, int32_t ___index0, const RuntimeMethod* method)
{
{
ArrayList_t2718874744 * L_0 = __this->get_m_InnerArrayList_5();
int32_t L_1 = ___index0;
RuntimeObject * L_2 = VirtFuncInvoker1< RuntimeObject *, int32_t >::Invoke(21 /* System.Object System.Collections.ArrayList::get_Item(System.Int32) */, L_0, L_1);
return L_2;
}
}
// System.Void System.Collections.ArrayList/ArrayListWrapper::set_Item(System.Int32,System.Object)
extern "C" void ArrayListWrapper_set_Item_m3849584877 (ArrayListWrapper_t240606758 * __this, int32_t ___index0, RuntimeObject * ___value1, const RuntimeMethod* method)
{
{
ArrayList_t2718874744 * L_0 = __this->get_m_InnerArrayList_5();
int32_t L_1 = ___index0;
RuntimeObject * L_2 = ___value1;
VirtActionInvoker2< int32_t, RuntimeObject * >::Invoke(22 /* System.Void System.Collections.ArrayList::set_Item(System.Int32,System.Object) */, L_0, L_1, L_2);
return;
}
}
// System.Int32 System.Collections.ArrayList/ArrayListWrapper::get_Count()
extern "C" int32_t ArrayListWrapper_get_Count_m3954826285 (ArrayListWrapper_t240606758 * __this, const RuntimeMethod* method)
{
{
ArrayList_t2718874744 * L_0 = __this->get_m_InnerArrayList_5();
int32_t L_1 = VirtFuncInvoker0< int32_t >::Invoke(23 /* System.Int32 System.Collections.ArrayList::get_Count() */, L_0);
return L_1;
}
}
// System.Int32 System.Collections.ArrayList/ArrayListWrapper::get_Capacity()
extern "C" int32_t ArrayListWrapper_get_Capacity_m51087796 (ArrayListWrapper_t240606758 * __this, const RuntimeMethod* method)
{
{
ArrayList_t2718874744 * L_0 = __this->get_m_InnerArrayList_5();
int32_t L_1 = VirtFuncInvoker0< int32_t >::Invoke(24 /* System.Int32 System.Collections.ArrayList::get_Capacity() */, L_0);
return L_1;
}
}
// System.Void System.Collections.ArrayList/ArrayListWrapper::set_Capacity(System.Int32)
extern "C" void ArrayListWrapper_set_Capacity_m2373297383 (ArrayListWrapper_t240606758 * __this, int32_t ___value0, const RuntimeMethod* method)
{
{
ArrayList_t2718874744 * L_0 = __this->get_m_InnerArrayList_5();
int32_t L_1 = ___value0;
VirtActionInvoker1< int32_t >::Invoke(25 /* System.Void System.Collections.ArrayList::set_Capacity(System.Int32) */, L_0, L_1);
return;
}
}
// System.Boolean System.Collections.ArrayList/ArrayListWrapper::get_IsFixedSize()
extern "C" bool ArrayListWrapper_get_IsFixedSize_m4019080667 (ArrayListWrapper_t240606758 * __this, const RuntimeMethod* method)
{
{
ArrayList_t2718874744 * L_0 = __this->get_m_InnerArrayList_5();
bool L_1 = VirtFuncInvoker0< bool >::Invoke(26 /* System.Boolean System.Collections.ArrayList::get_IsFixedSize() */, L_0);
return L_1;
}
}
// System.Boolean System.Collections.ArrayList/ArrayListWrapper::get_IsReadOnly()
extern "C" bool ArrayListWrapper_get_IsReadOnly_m322171850 (ArrayListWrapper_t240606758 * __this, const RuntimeMethod* method)
{
{
ArrayList_t2718874744 * L_0 = __this->get_m_InnerArrayList_5();
bool L_1 = VirtFuncInvoker0< bool >::Invoke(27 /* System.Boolean System.Collections.ArrayList::get_IsReadOnly() */, L_0);
return L_1;
}
}
// System.Boolean System.Collections.ArrayList/ArrayListWrapper::get_IsSynchronized()
extern "C" bool ArrayListWrapper_get_IsSynchronized_m877742690 (ArrayListWrapper_t240606758 * __this, const RuntimeMethod* method)
{
{
ArrayList_t2718874744 * L_0 = __this->get_m_InnerArrayList_5();
bool L_1 = VirtFuncInvoker0< bool >::Invoke(28 /* System.Boolean System.Collections.ArrayList::get_IsSynchronized() */, L_0);
return L_1;
}
}
// System.Object System.Collections.ArrayList/ArrayListWrapper::get_SyncRoot()
extern "C" RuntimeObject * ArrayListWrapper_get_SyncRoot_m3460954073 (ArrayListWrapper_t240606758 * __this, const RuntimeMethod* method)
{
{
ArrayList_t2718874744 * L_0 = __this->get_m_InnerArrayList_5();
RuntimeObject * L_1 = VirtFuncInvoker0< RuntimeObject * >::Invoke(29 /* System.Object System.Collections.ArrayList::get_SyncRoot() */, L_0);
return L_1;
}
}
// System.Int32 System.Collections.ArrayList/ArrayListWrapper::Add(System.Object)
extern "C" int32_t ArrayListWrapper_Add_m1926015631 (ArrayListWrapper_t240606758 * __this, RuntimeObject * ___value0, const RuntimeMethod* method)
{
{
ArrayList_t2718874744 * L_0 = __this->get_m_InnerArrayList_5();
RuntimeObject * L_1 = ___value0;
int32_t L_2 = VirtFuncInvoker1< int32_t, RuntimeObject * >::Invoke(30 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_0, L_1);
return L_2;
}
}
// System.Void System.Collections.ArrayList/ArrayListWrapper::Clear()
extern "C" void ArrayListWrapper_Clear_m2625302714 (ArrayListWrapper_t240606758 * __this, const RuntimeMethod* method)
{
{
ArrayList_t2718874744 * L_0 = __this->get_m_InnerArrayList_5();
VirtActionInvoker0::Invoke(31 /* System.Void System.Collections.ArrayList::Clear() */, L_0);
return;
}
}
// System.Boolean System.Collections.ArrayList/ArrayListWrapper::Contains(System.Object)
extern "C" bool ArrayListWrapper_Contains_m2641184447 (ArrayListWrapper_t240606758 * __this, RuntimeObject * ___value0, const RuntimeMethod* method)
{
{
ArrayList_t2718874744 * L_0 = __this->get_m_InnerArrayList_5();
RuntimeObject * L_1 = ___value0;
bool L_2 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(32 /* System.Boolean System.Collections.ArrayList::Contains(System.Object) */, L_0, L_1);
return L_2;
}
}
// System.Int32 System.Collections.ArrayList/ArrayListWrapper::IndexOf(System.Object)
extern "C" int32_t ArrayListWrapper_IndexOf_m4166445051 (ArrayListWrapper_t240606758 * __this, RuntimeObject * ___value0, const RuntimeMethod* method)
{
{
ArrayList_t2718874744 * L_0 = __this->get_m_InnerArrayList_5();
RuntimeObject * L_1 = ___value0;
int32_t L_2 = VirtFuncInvoker1< int32_t, RuntimeObject * >::Invoke(33 /* System.Int32 System.Collections.ArrayList::IndexOf(System.Object) */, L_0, L_1);
return L_2;
}
}
// System.Int32 System.Collections.ArrayList/ArrayListWrapper::IndexOf(System.Object,System.Int32)
extern "C" int32_t ArrayListWrapper_IndexOf_m3692065720 (ArrayListWrapper_t240606758 * __this, RuntimeObject * ___value0, int32_t ___startIndex1, const RuntimeMethod* method)
{
{
ArrayList_t2718874744 * L_0 = __this->get_m_InnerArrayList_5();
RuntimeObject * L_1 = ___value0;
int32_t L_2 = ___startIndex1;
int32_t L_3 = VirtFuncInvoker2< int32_t, RuntimeObject *, int32_t >::Invoke(34 /* System.Int32 System.Collections.ArrayList::IndexOf(System.Object,System.Int32) */, L_0, L_1, L_2);
return L_3;
}
}
// System.Int32 System.Collections.ArrayList/ArrayListWrapper::IndexOf(System.Object,System.Int32,System.Int32)
extern "C" int32_t ArrayListWrapper_IndexOf_m3995939336 (ArrayListWrapper_t240606758 * __this, RuntimeObject * ___value0, int32_t ___startIndex1, int32_t ___count2, const RuntimeMethod* method)
{
{
ArrayList_t2718874744 * L_0 = __this->get_m_InnerArrayList_5();
RuntimeObject * L_1 = ___value0;
int32_t L_2 = ___startIndex1;
int32_t L_3 = ___count2;
int32_t L_4 = VirtFuncInvoker3< int32_t, RuntimeObject *, int32_t, int32_t >::Invoke(35 /* System.Int32 System.Collections.ArrayList::IndexOf(System.Object,System.Int32,System.Int32) */, L_0, L_1, L_2, L_3);
return L_4;
}
}
// System.Void System.Collections.ArrayList/ArrayListWrapper::Insert(System.Int32,System.Object)
extern "C" void ArrayListWrapper_Insert_m121888774 (ArrayListWrapper_t240606758 * __this, int32_t ___index0, RuntimeObject * ___value1, const RuntimeMethod* method)
{
{
ArrayList_t2718874744 * L_0 = __this->get_m_InnerArrayList_5();
int32_t L_1 = ___index0;
RuntimeObject * L_2 = ___value1;
VirtActionInvoker2< int32_t, RuntimeObject * >::Invoke(36 /* System.Void System.Collections.ArrayList::Insert(System.Int32,System.Object) */, L_0, L_1, L_2);
return;
}
}
// System.Void System.Collections.ArrayList/ArrayListWrapper::InsertRange(System.Int32,System.Collections.ICollection)
extern "C" void ArrayListWrapper_InsertRange_m3525676562 (ArrayListWrapper_t240606758 * __this, int32_t ___index0, RuntimeObject* ___c1, const RuntimeMethod* method)
{
{
ArrayList_t2718874744 * L_0 = __this->get_m_InnerArrayList_5();
int32_t L_1 = ___index0;
RuntimeObject* L_2 = ___c1;
VirtActionInvoker2< int32_t, RuntimeObject* >::Invoke(37 /* System.Void System.Collections.ArrayList::InsertRange(System.Int32,System.Collections.ICollection) */, L_0, L_1, L_2);
return;
}
}
// System.Void System.Collections.ArrayList/ArrayListWrapper::Remove(System.Object)
extern "C" void ArrayListWrapper_Remove_m3759993909 (ArrayListWrapper_t240606758 * __this, RuntimeObject * ___value0, const RuntimeMethod* method)
{
{
ArrayList_t2718874744 * L_0 = __this->get_m_InnerArrayList_5();
RuntimeObject * L_1 = ___value0;
VirtActionInvoker1< RuntimeObject * >::Invoke(38 /* System.Void System.Collections.ArrayList::Remove(System.Object) */, L_0, L_1);
return;
}
}
// System.Void System.Collections.ArrayList/ArrayListWrapper::RemoveAt(System.Int32)
extern "C" void ArrayListWrapper_RemoveAt_m805762255 (ArrayListWrapper_t240606758 * __this, int32_t ___index0, const RuntimeMethod* method)
{
{
ArrayList_t2718874744 * L_0 = __this->get_m_InnerArrayList_5();
int32_t L_1 = ___index0;
VirtActionInvoker1< int32_t >::Invoke(39 /* System.Void System.Collections.ArrayList::RemoveAt(System.Int32) */, L_0, L_1);
return;
}
}
// System.Void System.Collections.ArrayList/ArrayListWrapper::CopyTo(System.Array)
extern "C" void ArrayListWrapper_CopyTo_m2912068327 (ArrayListWrapper_t240606758 * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
{
ArrayList_t2718874744 * L_0 = __this->get_m_InnerArrayList_5();
RuntimeArray * L_1 = ___array0;
VirtActionInvoker1< RuntimeArray * >::Invoke(40 /* System.Void System.Collections.ArrayList::CopyTo(System.Array) */, L_0, L_1);
return;
}
}
// System.Void System.Collections.ArrayList/ArrayListWrapper::CopyTo(System.Array,System.Int32)
extern "C" void ArrayListWrapper_CopyTo_m3756520478 (ArrayListWrapper_t240606758 * __this, RuntimeArray * ___array0, int32_t ___index1, const RuntimeMethod* method)
{
{
ArrayList_t2718874744 * L_0 = __this->get_m_InnerArrayList_5();
RuntimeArray * L_1 = ___array0;
int32_t L_2 = ___index1;
VirtActionInvoker2< RuntimeArray *, int32_t >::Invoke(41 /* System.Void System.Collections.ArrayList::CopyTo(System.Array,System.Int32) */, L_0, L_1, L_2);
return;
}
}
// System.Void System.Collections.ArrayList/ArrayListWrapper::CopyTo(System.Int32,System.Array,System.Int32,System.Int32)
extern "C" void ArrayListWrapper_CopyTo_m498486826 (ArrayListWrapper_t240606758 * __this, int32_t ___index0, RuntimeArray * ___array1, int32_t ___arrayIndex2, int32_t ___count3, const RuntimeMethod* method)
{
{
ArrayList_t2718874744 * L_0 = __this->get_m_InnerArrayList_5();
int32_t L_1 = ___index0;
RuntimeArray * L_2 = ___array1;
int32_t L_3 = ___arrayIndex2;
int32_t L_4 = ___count3;
VirtActionInvoker4< int32_t, RuntimeArray *, int32_t, int32_t >::Invoke(42 /* System.Void System.Collections.ArrayList::CopyTo(System.Int32,System.Array,System.Int32,System.Int32) */, L_0, L_1, L_2, L_3, L_4);
return;
}
}
// System.Collections.IEnumerator System.Collections.ArrayList/ArrayListWrapper::GetEnumerator()
extern "C" RuntimeObject* ArrayListWrapper_GetEnumerator_m2336495952 (ArrayListWrapper_t240606758 * __this, const RuntimeMethod* method)
{
{
ArrayList_t2718874744 * L_0 = __this->get_m_InnerArrayList_5();
RuntimeObject* L_1 = VirtFuncInvoker0< RuntimeObject* >::Invoke(43 /* System.Collections.IEnumerator System.Collections.ArrayList::GetEnumerator() */, L_0);
return L_1;
}
}
// System.Void System.Collections.ArrayList/ArrayListWrapper::AddRange(System.Collections.ICollection)
extern "C" void ArrayListWrapper_AddRange_m2748690765 (ArrayListWrapper_t240606758 * __this, RuntimeObject* ___c0, const RuntimeMethod* method)
{
{
ArrayList_t2718874744 * L_0 = __this->get_m_InnerArrayList_5();
RuntimeObject* L_1 = ___c0;
VirtActionInvoker1< RuntimeObject* >::Invoke(44 /* System.Void System.Collections.ArrayList::AddRange(System.Collections.ICollection) */, L_0, L_1);
return;
}
}
// System.Object System.Collections.ArrayList/ArrayListWrapper::Clone()
extern "C" RuntimeObject * ArrayListWrapper_Clone_m1058391593 (ArrayListWrapper_t240606758 * __this, const RuntimeMethod* method)
{
{
ArrayList_t2718874744 * L_0 = __this->get_m_InnerArrayList_5();
RuntimeObject * L_1 = VirtFuncInvoker0< RuntimeObject * >::Invoke(49 /* System.Object System.Collections.ArrayList::Clone() */, L_0);
return L_1;
}
}
// System.Void System.Collections.ArrayList/ArrayListWrapper::Sort()
extern "C" void ArrayListWrapper_Sort_m1587743350 (ArrayListWrapper_t240606758 * __this, const RuntimeMethod* method)
{
{
ArrayList_t2718874744 * L_0 = __this->get_m_InnerArrayList_5();
VirtActionInvoker0::Invoke(45 /* System.Void System.Collections.ArrayList::Sort() */, L_0);
return;
}
}
// System.Void System.Collections.ArrayList/ArrayListWrapper::Sort(System.Collections.IComparer)
extern "C" void ArrayListWrapper_Sort_m876172478 (ArrayListWrapper_t240606758 * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method)
{
{
ArrayList_t2718874744 * L_0 = __this->get_m_InnerArrayList_5();
RuntimeObject* L_1 = ___comparer0;
VirtActionInvoker1< RuntimeObject* >::Invoke(46 /* System.Void System.Collections.ArrayList::Sort(System.Collections.IComparer) */, L_0, L_1);
return;
}
}
// System.Object[] System.Collections.ArrayList/ArrayListWrapper::ToArray()
extern "C" ObjectU5BU5D_t2843939325* ArrayListWrapper_ToArray_m1192575409 (ArrayListWrapper_t240606758 * __this, const RuntimeMethod* method)
{
{
ArrayList_t2718874744 * L_0 = __this->get_m_InnerArrayList_5();
ObjectU5BU5D_t2843939325* L_1 = VirtFuncInvoker0< ObjectU5BU5D_t2843939325* >::Invoke(47 /* System.Object[] System.Collections.ArrayList::ToArray() */, L_0);
return L_1;
}
}
// System.Array System.Collections.ArrayList/ArrayListWrapper::ToArray(System.Type)
extern "C" RuntimeArray * ArrayListWrapper_ToArray_m3192696690 (ArrayListWrapper_t240606758 * __this, Type_t * ___elementType0, const RuntimeMethod* method)
{
{
ArrayList_t2718874744 * L_0 = __this->get_m_InnerArrayList_5();
Type_t * L_1 = ___elementType0;
RuntimeArray * L_2 = VirtFuncInvoker1< RuntimeArray *, Type_t * >::Invoke(48 /* System.Array System.Collections.ArrayList::ToArray(System.Type) */, L_0, L_1);
return L_2;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Collections.ArrayList/FixedSizeArrayListWrapper::.ctor(System.Collections.ArrayList)
extern "C" void FixedSizeArrayListWrapper__ctor_m3150386652 (FixedSizeArrayListWrapper_t220909481 * __this, ArrayList_t2718874744 * ___innerList0, const RuntimeMethod* method)
{
{
ArrayList_t2718874744 * L_0 = ___innerList0;
ArrayListWrapper__ctor_m970192266(__this, L_0, /*hidden argument*/NULL);
return;
}
}
// System.String System.Collections.ArrayList/FixedSizeArrayListWrapper::get_ErrorMessage()
extern "C" String_t* FixedSizeArrayListWrapper_get_ErrorMessage_m3049061776 (FixedSizeArrayListWrapper_t220909481 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (FixedSizeArrayListWrapper_get_ErrorMessage_m3049061776_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
return _stringLiteral1872550032;
}
}
// System.Int32 System.Collections.ArrayList/FixedSizeArrayListWrapper::get_Capacity()
extern "C" int32_t FixedSizeArrayListWrapper_get_Capacity_m484550855 (FixedSizeArrayListWrapper_t220909481 * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = ArrayListWrapper_get_Capacity_m51087796(__this, /*hidden argument*/NULL);
return L_0;
}
}
// System.Void System.Collections.ArrayList/FixedSizeArrayListWrapper::set_Capacity(System.Int32)
extern "C" void FixedSizeArrayListWrapper_set_Capacity_m4221053039 (FixedSizeArrayListWrapper_t220909481 * __this, int32_t ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (FixedSizeArrayListWrapper_set_Capacity_m4221053039_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = VirtFuncInvoker0< String_t* >::Invoke(50 /* System.String System.Collections.ArrayList/FixedSizeArrayListWrapper::get_ErrorMessage() */, __this);
NotSupportedException_t1314879016 * L_1 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var);
NotSupportedException__ctor_m2494070935(L_1, L_0, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1,FixedSizeArrayListWrapper_set_Capacity_m4221053039_RuntimeMethod_var);
}
}
// System.Boolean System.Collections.ArrayList/FixedSizeArrayListWrapper::get_IsFixedSize()
extern "C" bool FixedSizeArrayListWrapper_get_IsFixedSize_m418627565 (FixedSizeArrayListWrapper_t220909481 * __this, const RuntimeMethod* method)
{
{
return (bool)1;
}
}
// System.Int32 System.Collections.ArrayList/FixedSizeArrayListWrapper::Add(System.Object)
extern "C" int32_t FixedSizeArrayListWrapper_Add_m4066213493 (FixedSizeArrayListWrapper_t220909481 * __this, RuntimeObject * ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (FixedSizeArrayListWrapper_Add_m4066213493_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = VirtFuncInvoker0< String_t* >::Invoke(50 /* System.String System.Collections.ArrayList/FixedSizeArrayListWrapper::get_ErrorMessage() */, __this);
NotSupportedException_t1314879016 * L_1 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var);
NotSupportedException__ctor_m2494070935(L_1, L_0, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1,FixedSizeArrayListWrapper_Add_m4066213493_RuntimeMethod_var);
}
}
// System.Void System.Collections.ArrayList/FixedSizeArrayListWrapper::AddRange(System.Collections.ICollection)
extern "C" void FixedSizeArrayListWrapper_AddRange_m413351014 (FixedSizeArrayListWrapper_t220909481 * __this, RuntimeObject* ___c0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (FixedSizeArrayListWrapper_AddRange_m413351014_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = VirtFuncInvoker0< String_t* >::Invoke(50 /* System.String System.Collections.ArrayList/FixedSizeArrayListWrapper::get_ErrorMessage() */, __this);
NotSupportedException_t1314879016 * L_1 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var);
NotSupportedException__ctor_m2494070935(L_1, L_0, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1,FixedSizeArrayListWrapper_AddRange_m413351014_RuntimeMethod_var);
}
}
// System.Void System.Collections.ArrayList/FixedSizeArrayListWrapper::Clear()
extern "C" void FixedSizeArrayListWrapper_Clear_m1544415003 (FixedSizeArrayListWrapper_t220909481 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (FixedSizeArrayListWrapper_Clear_m1544415003_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = VirtFuncInvoker0< String_t* >::Invoke(50 /* System.String System.Collections.ArrayList/FixedSizeArrayListWrapper::get_ErrorMessage() */, __this);
NotSupportedException_t1314879016 * L_1 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var);
NotSupportedException__ctor_m2494070935(L_1, L_0, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1,FixedSizeArrayListWrapper_Clear_m1544415003_RuntimeMethod_var);
}
}
// System.Void System.Collections.ArrayList/FixedSizeArrayListWrapper::Insert(System.Int32,System.Object)
extern "C" void FixedSizeArrayListWrapper_Insert_m723948816 (FixedSizeArrayListWrapper_t220909481 * __this, int32_t ___index0, RuntimeObject * ___value1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (FixedSizeArrayListWrapper_Insert_m723948816_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = VirtFuncInvoker0< String_t* >::Invoke(50 /* System.String System.Collections.ArrayList/FixedSizeArrayListWrapper::get_ErrorMessage() */, __this);
NotSupportedException_t1314879016 * L_1 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var);
NotSupportedException__ctor_m2494070935(L_1, L_0, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1,FixedSizeArrayListWrapper_Insert_m723948816_RuntimeMethod_var);
}
}
// System.Void System.Collections.ArrayList/FixedSizeArrayListWrapper::InsertRange(System.Int32,System.Collections.ICollection)
extern "C" void FixedSizeArrayListWrapper_InsertRange_m1706982628 (FixedSizeArrayListWrapper_t220909481 * __this, int32_t ___index0, RuntimeObject* ___c1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (FixedSizeArrayListWrapper_InsertRange_m1706982628_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = VirtFuncInvoker0< String_t* >::Invoke(50 /* System.String System.Collections.ArrayList/FixedSizeArrayListWrapper::get_ErrorMessage() */, __this);
NotSupportedException_t1314879016 * L_1 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var);
NotSupportedException__ctor_m2494070935(L_1, L_0, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1,FixedSizeArrayListWrapper_InsertRange_m1706982628_RuntimeMethod_var);
}
}
// System.Void System.Collections.ArrayList/FixedSizeArrayListWrapper::Remove(System.Object)
extern "C" void FixedSizeArrayListWrapper_Remove_m3827525800 (FixedSizeArrayListWrapper_t220909481 * __this, RuntimeObject * ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (FixedSizeArrayListWrapper_Remove_m3827525800_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = VirtFuncInvoker0< String_t* >::Invoke(50 /* System.String System.Collections.ArrayList/FixedSizeArrayListWrapper::get_ErrorMessage() */, __this);
NotSupportedException_t1314879016 * L_1 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var);
NotSupportedException__ctor_m2494070935(L_1, L_0, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1,FixedSizeArrayListWrapper_Remove_m3827525800_RuntimeMethod_var);
}
}
// System.Void System.Collections.ArrayList/FixedSizeArrayListWrapper::RemoveAt(System.Int32)
extern "C" void FixedSizeArrayListWrapper_RemoveAt_m3591870267 (FixedSizeArrayListWrapper_t220909481 * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (FixedSizeArrayListWrapper_RemoveAt_m3591870267_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = VirtFuncInvoker0< String_t* >::Invoke(50 /* System.String System.Collections.ArrayList/FixedSizeArrayListWrapper::get_ErrorMessage() */, __this);
NotSupportedException_t1314879016 * L_1 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var);
NotSupportedException__ctor_m2494070935(L_1, L_0, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1,FixedSizeArrayListWrapper_RemoveAt_m3591870267_RuntimeMethod_var);
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Collections.ArrayList/ReadOnlyArrayListWrapper::.ctor(System.Collections.ArrayList)
extern "C" void ReadOnlyArrayListWrapper__ctor_m1527708879 (ReadOnlyArrayListWrapper_t3401315650 * __this, ArrayList_t2718874744 * ___innerArrayList0, const RuntimeMethod* method)
{
{
ArrayList_t2718874744 * L_0 = ___innerArrayList0;
FixedSizeArrayListWrapper__ctor_m3150386652(__this, L_0, /*hidden argument*/NULL);
return;
}
}
// System.String System.Collections.ArrayList/ReadOnlyArrayListWrapper::get_ErrorMessage()
extern "C" String_t* ReadOnlyArrayListWrapper_get_ErrorMessage_m1121552994 (ReadOnlyArrayListWrapper_t3401315650 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ReadOnlyArrayListWrapper_get_ErrorMessage_m1121552994_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
return _stringLiteral2728449070;
}
}
// System.Boolean System.Collections.ArrayList/ReadOnlyArrayListWrapper::get_IsReadOnly()
extern "C" bool ReadOnlyArrayListWrapper_get_IsReadOnly_m2332097348 (ReadOnlyArrayListWrapper_t3401315650 * __this, const RuntimeMethod* method)
{
{
return (bool)1;
}
}
// System.Object System.Collections.ArrayList/ReadOnlyArrayListWrapper::get_Item(System.Int32)
extern "C" RuntimeObject * ReadOnlyArrayListWrapper_get_Item_m2341088672 (ReadOnlyArrayListWrapper_t3401315650 * __this, int32_t ___index0, const RuntimeMethod* method)
{
{
ArrayList_t2718874744 * L_0 = ((ArrayListWrapper_t240606758 *)__this)->get_m_InnerArrayList_5();
int32_t L_1 = ___index0;
RuntimeObject * L_2 = VirtFuncInvoker1< RuntimeObject *, int32_t >::Invoke(21 /* System.Object System.Collections.ArrayList::get_Item(System.Int32) */, L_0, L_1);
return L_2;
}
}
// System.Void System.Collections.ArrayList/ReadOnlyArrayListWrapper::set_Item(System.Int32,System.Object)
extern "C" void ReadOnlyArrayListWrapper_set_Item_m1909157432 (ReadOnlyArrayListWrapper_t3401315650 * __this, int32_t ___index0, RuntimeObject * ___value1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ReadOnlyArrayListWrapper_set_Item_m1909157432_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = ReadOnlyArrayListWrapper_get_ErrorMessage_m1121552994(__this, /*hidden argument*/NULL);
NotSupportedException_t1314879016 * L_1 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var);
NotSupportedException__ctor_m2494070935(L_1, L_0, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1,ReadOnlyArrayListWrapper_set_Item_m1909157432_RuntimeMethod_var);
}
}
// System.Void System.Collections.ArrayList/ReadOnlyArrayListWrapper::Sort()
extern "C" void ReadOnlyArrayListWrapper_Sort_m2577012511 (ReadOnlyArrayListWrapper_t3401315650 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ReadOnlyArrayListWrapper_Sort_m2577012511_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = ReadOnlyArrayListWrapper_get_ErrorMessage_m1121552994(__this, /*hidden argument*/NULL);
NotSupportedException_t1314879016 * L_1 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var);
NotSupportedException__ctor_m2494070935(L_1, L_0, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1,ReadOnlyArrayListWrapper_Sort_m2577012511_RuntimeMethod_var);
}
}
// System.Void System.Collections.ArrayList/ReadOnlyArrayListWrapper::Sort(System.Collections.IComparer)
extern "C" void ReadOnlyArrayListWrapper_Sort_m2022378864 (ReadOnlyArrayListWrapper_t3401315650 * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ReadOnlyArrayListWrapper_Sort_m2022378864_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = ReadOnlyArrayListWrapper_get_ErrorMessage_m1121552994(__this, /*hidden argument*/NULL);
NotSupportedException_t1314879016 * L_1 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var);
NotSupportedException__ctor_m2494070935(L_1, L_0, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1,ReadOnlyArrayListWrapper_Sort_m2022378864_RuntimeMethod_var);
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Collections.ArrayList/SimpleEnumerator::.ctor(System.Collections.ArrayList)
extern "C" void SimpleEnumerator__ctor_m917940076 (SimpleEnumerator_t4287166116 * __this, ArrayList_t2718874744 * ___list0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (SimpleEnumerator__ctor_m917940076_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Object__ctor_m297566312(__this, /*hidden argument*/NULL);
ArrayList_t2718874744 * L_0 = ___list0;
__this->set_list_0(L_0);
__this->set_index_1((-1));
ArrayList_t2718874744 * L_1 = ___list0;
int32_t L_2 = L_1->get__version_3();
__this->set_version_2(L_2);
IL2CPP_RUNTIME_CLASS_INIT(SimpleEnumerator_t4287166116_il2cpp_TypeInfo_var);
RuntimeObject * L_3 = ((SimpleEnumerator_t4287166116_StaticFields*)il2cpp_codegen_static_fields_for(SimpleEnumerator_t4287166116_il2cpp_TypeInfo_var))->get_endFlag_4();
__this->set_currentElement_3(L_3);
return;
}
}
// System.Void System.Collections.ArrayList/SimpleEnumerator::.cctor()
extern "C" void SimpleEnumerator__cctor_m2844299657 (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (SimpleEnumerator__cctor_m2844299657_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject * L_0 = (RuntimeObject *)il2cpp_codegen_object_new(RuntimeObject_il2cpp_TypeInfo_var);
Object__ctor_m297566312(L_0, /*hidden argument*/NULL);
((SimpleEnumerator_t4287166116_StaticFields*)il2cpp_codegen_static_fields_for(SimpleEnumerator_t4287166116_il2cpp_TypeInfo_var))->set_endFlag_4(L_0);
return;
}
}
// System.Object System.Collections.ArrayList/SimpleEnumerator::Clone()
extern "C" RuntimeObject * SimpleEnumerator_Clone_m936565740 (SimpleEnumerator_t4287166116 * __this, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = Object_MemberwiseClone_m1474068832(__this, /*hidden argument*/NULL);
return L_0;
}
}
// System.Boolean System.Collections.ArrayList/SimpleEnumerator::MoveNext()
extern "C" bool SimpleEnumerator_MoveNext_m3113120129 (SimpleEnumerator_t4287166116 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (SimpleEnumerator_MoveNext_m3113120129_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
{
int32_t L_0 = __this->get_version_2();
ArrayList_t2718874744 * L_1 = __this->get_list_0();
int32_t L_2 = L_1->get__version_3();
if ((((int32_t)L_0) == ((int32_t)L_2)))
{
goto IL_0021;
}
}
{
InvalidOperationException_t56020091 * L_3 = (InvalidOperationException_t56020091 *)il2cpp_codegen_object_new(InvalidOperationException_t56020091_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m237278729(L_3, _stringLiteral1126590890, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3,SimpleEnumerator_MoveNext_m3113120129_RuntimeMethod_var);
}
IL_0021:
{
int32_t L_4 = __this->get_index_1();
int32_t L_5 = ((int32_t)il2cpp_codegen_add((int32_t)L_4, (int32_t)1));
V_0 = L_5;
__this->set_index_1(L_5);
int32_t L_6 = V_0;
ArrayList_t2718874744 * L_7 = __this->get_list_0();
int32_t L_8 = VirtFuncInvoker0< int32_t >::Invoke(23 /* System.Int32 System.Collections.ArrayList::get_Count() */, L_7);
if ((((int32_t)L_6) >= ((int32_t)L_8)))
{
goto IL_005b;
}
}
{
ArrayList_t2718874744 * L_9 = __this->get_list_0();
int32_t L_10 = __this->get_index_1();
RuntimeObject * L_11 = VirtFuncInvoker1< RuntimeObject *, int32_t >::Invoke(21 /* System.Object System.Collections.ArrayList::get_Item(System.Int32) */, L_9, L_10);
__this->set_currentElement_3(L_11);
return (bool)1;
}
IL_005b:
{
IL2CPP_RUNTIME_CLASS_INIT(SimpleEnumerator_t4287166116_il2cpp_TypeInfo_var);
RuntimeObject * L_12 = ((SimpleEnumerator_t4287166116_StaticFields*)il2cpp_codegen_static_fields_for(SimpleEnumerator_t4287166116_il2cpp_TypeInfo_var))->get_endFlag_4();
__this->set_currentElement_3(L_12);
return (bool)0;
}
}
// System.Object System.Collections.ArrayList/SimpleEnumerator::get_Current()
extern "C" RuntimeObject * SimpleEnumerator_get_Current_m2439519409 (SimpleEnumerator_t4287166116 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (SimpleEnumerator_get_Current_m2439519409_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject * L_0 = __this->get_currentElement_3();
IL2CPP_RUNTIME_CLASS_INIT(SimpleEnumerator_t4287166116_il2cpp_TypeInfo_var);
RuntimeObject * L_1 = ((SimpleEnumerator_t4287166116_StaticFields*)il2cpp_codegen_static_fields_for(SimpleEnumerator_t4287166116_il2cpp_TypeInfo_var))->get_endFlag_4();
if ((!(((RuntimeObject*)(RuntimeObject *)L_0) == ((RuntimeObject*)(RuntimeObject *)L_1))))
{
goto IL_0032;
}
}
{
int32_t L_2 = __this->get_index_1();
if ((!(((uint32_t)L_2) == ((uint32_t)(-1)))))
{
goto IL_0027;
}
}
{
InvalidOperationException_t56020091 * L_3 = (InvalidOperationException_t56020091 *)il2cpp_codegen_object_new(InvalidOperationException_t56020091_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m237278729(L_3, _stringLiteral1882906432, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3,SimpleEnumerator_get_Current_m2439519409_RuntimeMethod_var);
}
IL_0027:
{
InvalidOperationException_t56020091 * L_4 = (InvalidOperationException_t56020091 *)il2cpp_codegen_object_new(InvalidOperationException_t56020091_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m237278729(L_4, _stringLiteral3170219154, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_4,SimpleEnumerator_get_Current_m2439519409_RuntimeMethod_var);
}
IL_0032:
{
RuntimeObject * L_5 = __this->get_currentElement_3();
return L_5;
}
}
// System.Void System.Collections.ArrayList/SimpleEnumerator::Reset()
extern "C" void SimpleEnumerator_Reset_m1520014659 (SimpleEnumerator_t4287166116 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (SimpleEnumerator_Reset_m1520014659_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = __this->get_version_2();
ArrayList_t2718874744 * L_1 = __this->get_list_0();
int32_t L_2 = L_1->get__version_3();
if ((((int32_t)L_0) == ((int32_t)L_2)))
{
goto IL_0021;
}
}
{
InvalidOperationException_t56020091 * L_3 = (InvalidOperationException_t56020091 *)il2cpp_codegen_object_new(InvalidOperationException_t56020091_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m237278729(L_3, _stringLiteral1126590890, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3,SimpleEnumerator_Reset_m1520014659_RuntimeMethod_var);
}
IL_0021:
{
IL2CPP_RUNTIME_CLASS_INIT(SimpleEnumerator_t4287166116_il2cpp_TypeInfo_var);
RuntimeObject * L_4 = ((SimpleEnumerator_t4287166116_StaticFields*)il2cpp_codegen_static_fields_for(SimpleEnumerator_t4287166116_il2cpp_TypeInfo_var))->get_endFlag_4();
__this->set_currentElement_3(L_4);
__this->set_index_1((-1));
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Collections.ArrayList/SynchronizedArrayListWrapper::.ctor(System.Collections.ArrayList)
extern "C" void SynchronizedArrayListWrapper__ctor_m3368338124 (SynchronizedArrayListWrapper_t2283757095 * __this, ArrayList_t2718874744 * ___innerArrayList0, const RuntimeMethod* method)
{
{
ArrayList_t2718874744 * L_0 = ___innerArrayList0;
ArrayListWrapper__ctor_m970192266(__this, L_0, /*hidden argument*/NULL);
ArrayList_t2718874744 * L_1 = ___innerArrayList0;
RuntimeObject * L_2 = VirtFuncInvoker0< RuntimeObject * >::Invoke(29 /* System.Object System.Collections.ArrayList::get_SyncRoot() */, L_1);
__this->set_m_SyncRoot_6(L_2);
return;
}
}
// System.Object System.Collections.ArrayList/SynchronizedArrayListWrapper::get_Item(System.Int32)
extern "C" RuntimeObject * SynchronizedArrayListWrapper_get_Item_m4084958564 (SynchronizedArrayListWrapper_t2283757095 * __this, int32_t ___index0, const RuntimeMethod* method)
{
RuntimeObject * V_0 = NULL;
RuntimeObject * V_1 = NULL;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = 0;
NO_UNUSED_WARNING (__leave_target);
{
RuntimeObject * L_0 = __this->get_m_SyncRoot_6();
V_0 = L_0;
RuntimeObject * L_1 = V_0;
Monitor_Enter_m2249409497(NULL /*static, unused*/, L_1, /*hidden argument*/NULL);
}
IL_000d:
try
{ // begin try (depth: 1)
{
ArrayList_t2718874744 * L_2 = ((ArrayListWrapper_t240606758 *)__this)->get_m_InnerArrayList_5();
int32_t L_3 = ___index0;
RuntimeObject * L_4 = VirtFuncInvoker1< RuntimeObject *, int32_t >::Invoke(21 /* System.Object System.Collections.ArrayList::get_Item(System.Int32) */, L_2, L_3);
V_1 = L_4;
IL2CPP_LEAVE(0x2B, FINALLY_0024);
}
IL_001f:
{
; // IL_001f: leave IL_002b
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_0024;
}
FINALLY_0024:
{ // begin finally (depth: 1)
RuntimeObject * L_5 = V_0;
Monitor_Exit_m3585316909(NULL /*static, unused*/, L_5, /*hidden argument*/NULL);
IL2CPP_END_FINALLY(36)
} // end finally (depth: 1)
IL2CPP_CLEANUP(36)
{
IL2CPP_JUMP_TBL(0x2B, IL_002b)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_002b:
{
RuntimeObject * L_6 = V_1;
return L_6;
}
}
// System.Void System.Collections.ArrayList/SynchronizedArrayListWrapper::set_Item(System.Int32,System.Object)
extern "C" void SynchronizedArrayListWrapper_set_Item_m1979747874 (SynchronizedArrayListWrapper_t2283757095 * __this, int32_t ___index0, RuntimeObject * ___value1, const RuntimeMethod* method)
{
RuntimeObject * V_0 = NULL;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = 0;
NO_UNUSED_WARNING (__leave_target);
{
RuntimeObject * L_0 = __this->get_m_SyncRoot_6();
V_0 = L_0;
RuntimeObject * L_1 = V_0;
Monitor_Enter_m2249409497(NULL /*static, unused*/, L_1, /*hidden argument*/NULL);
}
IL_000d:
try
{ // begin try (depth: 1)
ArrayList_t2718874744 * L_2 = ((ArrayListWrapper_t240606758 *)__this)->get_m_InnerArrayList_5();
int32_t L_3 = ___index0;
RuntimeObject * L_4 = ___value1;
VirtActionInvoker2< int32_t, RuntimeObject * >::Invoke(22 /* System.Void System.Collections.ArrayList::set_Item(System.Int32,System.Object) */, L_2, L_3, L_4);
IL2CPP_LEAVE(0x26, FINALLY_001f);
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_001f;
}
FINALLY_001f:
{ // begin finally (depth: 1)
RuntimeObject * L_5 = V_0;
Monitor_Exit_m3585316909(NULL /*static, unused*/, L_5, /*hidden argument*/NULL);
IL2CPP_END_FINALLY(31)
} // end finally (depth: 1)
IL2CPP_CLEANUP(31)
{
IL2CPP_JUMP_TBL(0x26, IL_0026)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_0026:
{
return;
}
}
// System.Int32 System.Collections.ArrayList/SynchronizedArrayListWrapper::get_Count()
extern "C" int32_t SynchronizedArrayListWrapper_get_Count_m527215081 (SynchronizedArrayListWrapper_t2283757095 * __this, const RuntimeMethod* method)
{
RuntimeObject * V_0 = NULL;
int32_t V_1 = 0;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = 0;
NO_UNUSED_WARNING (__leave_target);
{
RuntimeObject * L_0 = __this->get_m_SyncRoot_6();
V_0 = L_0;
RuntimeObject * L_1 = V_0;
Monitor_Enter_m2249409497(NULL /*static, unused*/, L_1, /*hidden argument*/NULL);
}
IL_000d:
try
{ // begin try (depth: 1)
{
ArrayList_t2718874744 * L_2 = ((ArrayListWrapper_t240606758 *)__this)->get_m_InnerArrayList_5();
int32_t L_3 = VirtFuncInvoker0< int32_t >::Invoke(23 /* System.Int32 System.Collections.ArrayList::get_Count() */, L_2);
V_1 = L_3;
IL2CPP_LEAVE(0x2A, FINALLY_0023);
}
IL_001e:
{
; // IL_001e: leave IL_002a
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_0023;
}
FINALLY_0023:
{ // begin finally (depth: 1)
RuntimeObject * L_4 = V_0;
Monitor_Exit_m3585316909(NULL /*static, unused*/, L_4, /*hidden argument*/NULL);
IL2CPP_END_FINALLY(35)
} // end finally (depth: 1)
IL2CPP_CLEANUP(35)
{
IL2CPP_JUMP_TBL(0x2A, IL_002a)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_002a:
{
int32_t L_5 = V_1;
return L_5;
}
}
// System.Int32 System.Collections.ArrayList/SynchronizedArrayListWrapper::get_Capacity()
extern "C" int32_t SynchronizedArrayListWrapper_get_Capacity_m603836496 (SynchronizedArrayListWrapper_t2283757095 * __this, const RuntimeMethod* method)
{
RuntimeObject * V_0 = NULL;
int32_t V_1 = 0;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = 0;
NO_UNUSED_WARNING (__leave_target);
{
RuntimeObject * L_0 = __this->get_m_SyncRoot_6();
V_0 = L_0;
RuntimeObject * L_1 = V_0;
Monitor_Enter_m2249409497(NULL /*static, unused*/, L_1, /*hidden argument*/NULL);
}
IL_000d:
try
{ // begin try (depth: 1)
{
ArrayList_t2718874744 * L_2 = ((ArrayListWrapper_t240606758 *)__this)->get_m_InnerArrayList_5();
int32_t L_3 = VirtFuncInvoker0< int32_t >::Invoke(24 /* System.Int32 System.Collections.ArrayList::get_Capacity() */, L_2);
V_1 = L_3;
IL2CPP_LEAVE(0x2A, FINALLY_0023);
}
IL_001e:
{
; // IL_001e: leave IL_002a
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_0023;
}
FINALLY_0023:
{ // begin finally (depth: 1)
RuntimeObject * L_4 = V_0;
Monitor_Exit_m3585316909(NULL /*static, unused*/, L_4, /*hidden argument*/NULL);
IL2CPP_END_FINALLY(35)
} // end finally (depth: 1)
IL2CPP_CLEANUP(35)
{
IL2CPP_JUMP_TBL(0x2A, IL_002a)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_002a:
{
int32_t L_5 = V_1;
return L_5;
}
}
// System.Void System.Collections.ArrayList/SynchronizedArrayListWrapper::set_Capacity(System.Int32)
extern "C" void SynchronizedArrayListWrapper_set_Capacity_m514089537 (SynchronizedArrayListWrapper_t2283757095 * __this, int32_t ___value0, const RuntimeMethod* method)
{
RuntimeObject * V_0 = NULL;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = 0;
NO_UNUSED_WARNING (__leave_target);
{
RuntimeObject * L_0 = __this->get_m_SyncRoot_6();
V_0 = L_0;
RuntimeObject * L_1 = V_0;
Monitor_Enter_m2249409497(NULL /*static, unused*/, L_1, /*hidden argument*/NULL);
}
IL_000d:
try
{ // begin try (depth: 1)
ArrayList_t2718874744 * L_2 = ((ArrayListWrapper_t240606758 *)__this)->get_m_InnerArrayList_5();
int32_t L_3 = ___value0;
VirtActionInvoker1< int32_t >::Invoke(25 /* System.Void System.Collections.ArrayList::set_Capacity(System.Int32) */, L_2, L_3);
IL2CPP_LEAVE(0x25, FINALLY_001e);
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_001e;
}
FINALLY_001e:
{ // begin finally (depth: 1)
RuntimeObject * L_4 = V_0;
Monitor_Exit_m3585316909(NULL /*static, unused*/, L_4, /*hidden argument*/NULL);
IL2CPP_END_FINALLY(30)
} // end finally (depth: 1)
IL2CPP_CLEANUP(30)
{
IL2CPP_JUMP_TBL(0x25, IL_0025)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_0025:
{
return;
}
}
// System.Boolean System.Collections.ArrayList/SynchronizedArrayListWrapper::get_IsFixedSize()
extern "C" bool SynchronizedArrayListWrapper_get_IsFixedSize_m3396437476 (SynchronizedArrayListWrapper_t2283757095 * __this, const RuntimeMethod* method)
{
RuntimeObject * V_0 = NULL;
bool V_1 = false;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = 0;
NO_UNUSED_WARNING (__leave_target);
{
RuntimeObject * L_0 = __this->get_m_SyncRoot_6();
V_0 = L_0;
RuntimeObject * L_1 = V_0;
Monitor_Enter_m2249409497(NULL /*static, unused*/, L_1, /*hidden argument*/NULL);
}
IL_000d:
try
{ // begin try (depth: 1)
{
ArrayList_t2718874744 * L_2 = ((ArrayListWrapper_t240606758 *)__this)->get_m_InnerArrayList_5();
bool L_3 = VirtFuncInvoker0< bool >::Invoke(26 /* System.Boolean System.Collections.ArrayList::get_IsFixedSize() */, L_2);
V_1 = L_3;
IL2CPP_LEAVE(0x2A, FINALLY_0023);
}
IL_001e:
{
; // IL_001e: leave IL_002a
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_0023;
}
FINALLY_0023:
{ // begin finally (depth: 1)
RuntimeObject * L_4 = V_0;
Monitor_Exit_m3585316909(NULL /*static, unused*/, L_4, /*hidden argument*/NULL);
IL2CPP_END_FINALLY(35)
} // end finally (depth: 1)
IL2CPP_CLEANUP(35)
{
IL2CPP_JUMP_TBL(0x2A, IL_002a)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_002a:
{
bool L_5 = V_1;
return L_5;
}
}
// System.Boolean System.Collections.ArrayList/SynchronizedArrayListWrapper::get_IsReadOnly()
extern "C" bool SynchronizedArrayListWrapper_get_IsReadOnly_m2240310664 (SynchronizedArrayListWrapper_t2283757095 * __this, const RuntimeMethod* method)
{
RuntimeObject * V_0 = NULL;
bool V_1 = false;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = 0;
NO_UNUSED_WARNING (__leave_target);
{
RuntimeObject * L_0 = __this->get_m_SyncRoot_6();
V_0 = L_0;
RuntimeObject * L_1 = V_0;
Monitor_Enter_m2249409497(NULL /*static, unused*/, L_1, /*hidden argument*/NULL);
}
IL_000d:
try
{ // begin try (depth: 1)
{
ArrayList_t2718874744 * L_2 = ((ArrayListWrapper_t240606758 *)__this)->get_m_InnerArrayList_5();
bool L_3 = VirtFuncInvoker0< bool >::Invoke(27 /* System.Boolean System.Collections.ArrayList::get_IsReadOnly() */, L_2);
V_1 = L_3;
IL2CPP_LEAVE(0x2A, FINALLY_0023);
}
IL_001e:
{
; // IL_001e: leave IL_002a
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_0023;
}
FINALLY_0023:
{ // begin finally (depth: 1)
RuntimeObject * L_4 = V_0;
Monitor_Exit_m3585316909(NULL /*static, unused*/, L_4, /*hidden argument*/NULL);
IL2CPP_END_FINALLY(35)
} // end finally (depth: 1)
IL2CPP_CLEANUP(35)
{
IL2CPP_JUMP_TBL(0x2A, IL_002a)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_002a:
{
bool L_5 = V_1;
return L_5;
}
}
// System.Boolean System.Collections.ArrayList/SynchronizedArrayListWrapper::get_IsSynchronized()
extern "C" bool SynchronizedArrayListWrapper_get_IsSynchronized_m3380436820 (SynchronizedArrayListWrapper_t2283757095 * __this, const RuntimeMethod* method)
{
{
return (bool)1;
}
}
// System.Object System.Collections.ArrayList/SynchronizedArrayListWrapper::get_SyncRoot()
extern "C" RuntimeObject * SynchronizedArrayListWrapper_get_SyncRoot_m3862302789 (SynchronizedArrayListWrapper_t2283757095 * __this, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = __this->get_m_SyncRoot_6();
return L_0;
}
}
// System.Int32 System.Collections.ArrayList/SynchronizedArrayListWrapper::Add(System.Object)
extern "C" int32_t SynchronizedArrayListWrapper_Add_m1623408305 (SynchronizedArrayListWrapper_t2283757095 * __this, RuntimeObject * ___value0, const RuntimeMethod* method)
{
RuntimeObject * V_0 = NULL;
int32_t V_1 = 0;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = 0;
NO_UNUSED_WARNING (__leave_target);
{
RuntimeObject * L_0 = __this->get_m_SyncRoot_6();
V_0 = L_0;
RuntimeObject * L_1 = V_0;
Monitor_Enter_m2249409497(NULL /*static, unused*/, L_1, /*hidden argument*/NULL);
}
IL_000d:
try
{ // begin try (depth: 1)
{
ArrayList_t2718874744 * L_2 = ((ArrayListWrapper_t240606758 *)__this)->get_m_InnerArrayList_5();
RuntimeObject * L_3 = ___value0;
int32_t L_4 = VirtFuncInvoker1< int32_t, RuntimeObject * >::Invoke(30 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_2, L_3);
V_1 = L_4;
IL2CPP_LEAVE(0x2B, FINALLY_0024);
}
IL_001f:
{
; // IL_001f: leave IL_002b
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_0024;
}
FINALLY_0024:
{ // begin finally (depth: 1)
RuntimeObject * L_5 = V_0;
Monitor_Exit_m3585316909(NULL /*static, unused*/, L_5, /*hidden argument*/NULL);
IL2CPP_END_FINALLY(36)
} // end finally (depth: 1)
IL2CPP_CLEANUP(36)
{
IL2CPP_JUMP_TBL(0x2B, IL_002b)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_002b:
{
int32_t L_6 = V_1;
return L_6;
}
}
// System.Void System.Collections.ArrayList/SynchronizedArrayListWrapper::Clear()
extern "C" void SynchronizedArrayListWrapper_Clear_m2191301493 (SynchronizedArrayListWrapper_t2283757095 * __this, const RuntimeMethod* method)
{
RuntimeObject * V_0 = NULL;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = 0;
NO_UNUSED_WARNING (__leave_target);
{
RuntimeObject * L_0 = __this->get_m_SyncRoot_6();
V_0 = L_0;
RuntimeObject * L_1 = V_0;
Monitor_Enter_m2249409497(NULL /*static, unused*/, L_1, /*hidden argument*/NULL);
}
IL_000d:
try
{ // begin try (depth: 1)
ArrayList_t2718874744 * L_2 = ((ArrayListWrapper_t240606758 *)__this)->get_m_InnerArrayList_5();
VirtActionInvoker0::Invoke(31 /* System.Void System.Collections.ArrayList::Clear() */, L_2);
IL2CPP_LEAVE(0x24, FINALLY_001d);
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_001d;
}
FINALLY_001d:
{ // begin finally (depth: 1)
RuntimeObject * L_3 = V_0;
Monitor_Exit_m3585316909(NULL /*static, unused*/, L_3, /*hidden argument*/NULL);
IL2CPP_END_FINALLY(29)
} // end finally (depth: 1)
IL2CPP_CLEANUP(29)
{
IL2CPP_JUMP_TBL(0x24, IL_0024)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_0024:
{
return;
}
}
// System.Boolean System.Collections.ArrayList/SynchronizedArrayListWrapper::Contains(System.Object)
extern "C" bool SynchronizedArrayListWrapper_Contains_m3809499313 (SynchronizedArrayListWrapper_t2283757095 * __this, RuntimeObject * ___value0, const RuntimeMethod* method)
{
RuntimeObject * V_0 = NULL;
bool V_1 = false;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = 0;
NO_UNUSED_WARNING (__leave_target);
{
RuntimeObject * L_0 = __this->get_m_SyncRoot_6();
V_0 = L_0;
RuntimeObject * L_1 = V_0;
Monitor_Enter_m2249409497(NULL /*static, unused*/, L_1, /*hidden argument*/NULL);
}
IL_000d:
try
{ // begin try (depth: 1)
{
ArrayList_t2718874744 * L_2 = ((ArrayListWrapper_t240606758 *)__this)->get_m_InnerArrayList_5();
RuntimeObject * L_3 = ___value0;
bool L_4 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(32 /* System.Boolean System.Collections.ArrayList::Contains(System.Object) */, L_2, L_3);
V_1 = L_4;
IL2CPP_LEAVE(0x2B, FINALLY_0024);
}
IL_001f:
{
; // IL_001f: leave IL_002b
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_0024;
}
FINALLY_0024:
{ // begin finally (depth: 1)
RuntimeObject * L_5 = V_0;
Monitor_Exit_m3585316909(NULL /*static, unused*/, L_5, /*hidden argument*/NULL);
IL2CPP_END_FINALLY(36)
} // end finally (depth: 1)
IL2CPP_CLEANUP(36)
{
IL2CPP_JUMP_TBL(0x2B, IL_002b)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_002b:
{
bool L_6 = V_1;
return L_6;
}
}
// System.Int32 System.Collections.ArrayList/SynchronizedArrayListWrapper::IndexOf(System.Object)
extern "C" int32_t SynchronizedArrayListWrapper_IndexOf_m666666436 (SynchronizedArrayListWrapper_t2283757095 * __this, RuntimeObject * ___value0, const RuntimeMethod* method)
{
RuntimeObject * V_0 = NULL;
int32_t V_1 = 0;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = 0;
NO_UNUSED_WARNING (__leave_target);
{
RuntimeObject * L_0 = __this->get_m_SyncRoot_6();
V_0 = L_0;
RuntimeObject * L_1 = V_0;
Monitor_Enter_m2249409497(NULL /*static, unused*/, L_1, /*hidden argument*/NULL);
}
IL_000d:
try
{ // begin try (depth: 1)
{
ArrayList_t2718874744 * L_2 = ((ArrayListWrapper_t240606758 *)__this)->get_m_InnerArrayList_5();
RuntimeObject * L_3 = ___value0;
int32_t L_4 = VirtFuncInvoker1< int32_t, RuntimeObject * >::Invoke(33 /* System.Int32 System.Collections.ArrayList::IndexOf(System.Object) */, L_2, L_3);
V_1 = L_4;
IL2CPP_LEAVE(0x2B, FINALLY_0024);
}
IL_001f:
{
; // IL_001f: leave IL_002b
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_0024;
}
FINALLY_0024:
{ // begin finally (depth: 1)
RuntimeObject * L_5 = V_0;
Monitor_Exit_m3585316909(NULL /*static, unused*/, L_5, /*hidden argument*/NULL);
IL2CPP_END_FINALLY(36)
} // end finally (depth: 1)
IL2CPP_CLEANUP(36)
{
IL2CPP_JUMP_TBL(0x2B, IL_002b)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_002b:
{
int32_t L_6 = V_1;
return L_6;
}
}
// System.Int32 System.Collections.ArrayList/SynchronizedArrayListWrapper::IndexOf(System.Object,System.Int32)
extern "C" int32_t SynchronizedArrayListWrapper_IndexOf_m1028529531 (SynchronizedArrayListWrapper_t2283757095 * __this, RuntimeObject * ___value0, int32_t ___startIndex1, const RuntimeMethod* method)
{
RuntimeObject * V_0 = NULL;
int32_t V_1 = 0;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = 0;
NO_UNUSED_WARNING (__leave_target);
{
RuntimeObject * L_0 = __this->get_m_SyncRoot_6();
V_0 = L_0;
RuntimeObject * L_1 = V_0;
Monitor_Enter_m2249409497(NULL /*static, unused*/, L_1, /*hidden argument*/NULL);
}
IL_000d:
try
{ // begin try (depth: 1)
{
ArrayList_t2718874744 * L_2 = ((ArrayListWrapper_t240606758 *)__this)->get_m_InnerArrayList_5();
RuntimeObject * L_3 = ___value0;
int32_t L_4 = ___startIndex1;
int32_t L_5 = VirtFuncInvoker2< int32_t, RuntimeObject *, int32_t >::Invoke(34 /* System.Int32 System.Collections.ArrayList::IndexOf(System.Object,System.Int32) */, L_2, L_3, L_4);
V_1 = L_5;
IL2CPP_LEAVE(0x2C, FINALLY_0025);
}
IL_0020:
{
; // IL_0020: leave IL_002c
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_0025;
}
FINALLY_0025:
{ // begin finally (depth: 1)
RuntimeObject * L_6 = V_0;
Monitor_Exit_m3585316909(NULL /*static, unused*/, L_6, /*hidden argument*/NULL);
IL2CPP_END_FINALLY(37)
} // end finally (depth: 1)
IL2CPP_CLEANUP(37)
{
IL2CPP_JUMP_TBL(0x2C, IL_002c)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_002c:
{
int32_t L_7 = V_1;
return L_7;
}
}
// System.Int32 System.Collections.ArrayList/SynchronizedArrayListWrapper::IndexOf(System.Object,System.Int32,System.Int32)
extern "C" int32_t SynchronizedArrayListWrapper_IndexOf_m3642674350 (SynchronizedArrayListWrapper_t2283757095 * __this, RuntimeObject * ___value0, int32_t ___startIndex1, int32_t ___count2, const RuntimeMethod* method)
{
RuntimeObject * V_0 = NULL;
int32_t V_1 = 0;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = 0;
NO_UNUSED_WARNING (__leave_target);
{
RuntimeObject * L_0 = __this->get_m_SyncRoot_6();
V_0 = L_0;
RuntimeObject * L_1 = V_0;
Monitor_Enter_m2249409497(NULL /*static, unused*/, L_1, /*hidden argument*/NULL);
}
IL_000d:
try
{ // begin try (depth: 1)
{
ArrayList_t2718874744 * L_2 = ((ArrayListWrapper_t240606758 *)__this)->get_m_InnerArrayList_5();
RuntimeObject * L_3 = ___value0;
int32_t L_4 = ___startIndex1;
int32_t L_5 = ___count2;
int32_t L_6 = VirtFuncInvoker3< int32_t, RuntimeObject *, int32_t, int32_t >::Invoke(35 /* System.Int32 System.Collections.ArrayList::IndexOf(System.Object,System.Int32,System.Int32) */, L_2, L_3, L_4, L_5);
V_1 = L_6;
IL2CPP_LEAVE(0x2D, FINALLY_0026);
}
IL_0021:
{
; // IL_0021: leave IL_002d
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_0026;
}
FINALLY_0026:
{ // begin finally (depth: 1)
RuntimeObject * L_7 = V_0;
Monitor_Exit_m3585316909(NULL /*static, unused*/, L_7, /*hidden argument*/NULL);
IL2CPP_END_FINALLY(38)
} // end finally (depth: 1)
IL2CPP_CLEANUP(38)
{
IL2CPP_JUMP_TBL(0x2D, IL_002d)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_002d:
{
int32_t L_8 = V_1;
return L_8;
}
}
// System.Void System.Collections.ArrayList/SynchronizedArrayListWrapper::Insert(System.Int32,System.Object)
extern "C" void SynchronizedArrayListWrapper_Insert_m1867902338 (SynchronizedArrayListWrapper_t2283757095 * __this, int32_t ___index0, RuntimeObject * ___value1, const RuntimeMethod* method)
{
RuntimeObject * V_0 = NULL;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = 0;
NO_UNUSED_WARNING (__leave_target);
{
RuntimeObject * L_0 = __this->get_m_SyncRoot_6();
V_0 = L_0;
RuntimeObject * L_1 = V_0;
Monitor_Enter_m2249409497(NULL /*static, unused*/, L_1, /*hidden argument*/NULL);
}
IL_000d:
try
{ // begin try (depth: 1)
ArrayList_t2718874744 * L_2 = ((ArrayListWrapper_t240606758 *)__this)->get_m_InnerArrayList_5();
int32_t L_3 = ___index0;
RuntimeObject * L_4 = ___value1;
VirtActionInvoker2< int32_t, RuntimeObject * >::Invoke(36 /* System.Void System.Collections.ArrayList::Insert(System.Int32,System.Object) */, L_2, L_3, L_4);
IL2CPP_LEAVE(0x26, FINALLY_001f);
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_001f;
}
FINALLY_001f:
{ // begin finally (depth: 1)
RuntimeObject * L_5 = V_0;
Monitor_Exit_m3585316909(NULL /*static, unused*/, L_5, /*hidden argument*/NULL);
IL2CPP_END_FINALLY(31)
} // end finally (depth: 1)
IL2CPP_CLEANUP(31)
{
IL2CPP_JUMP_TBL(0x26, IL_0026)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_0026:
{
return;
}
}
// System.Void System.Collections.ArrayList/SynchronizedArrayListWrapper::InsertRange(System.Int32,System.Collections.ICollection)
extern "C" void SynchronizedArrayListWrapper_InsertRange_m2374130561 (SynchronizedArrayListWrapper_t2283757095 * __this, int32_t ___index0, RuntimeObject* ___c1, const RuntimeMethod* method)
{
RuntimeObject * V_0 = NULL;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = 0;
NO_UNUSED_WARNING (__leave_target);
{
RuntimeObject * L_0 = __this->get_m_SyncRoot_6();
V_0 = L_0;
RuntimeObject * L_1 = V_0;
Monitor_Enter_m2249409497(NULL /*static, unused*/, L_1, /*hidden argument*/NULL);
}
IL_000d:
try
{ // begin try (depth: 1)
ArrayList_t2718874744 * L_2 = ((ArrayListWrapper_t240606758 *)__this)->get_m_InnerArrayList_5();
int32_t L_3 = ___index0;
RuntimeObject* L_4 = ___c1;
VirtActionInvoker2< int32_t, RuntimeObject* >::Invoke(37 /* System.Void System.Collections.ArrayList::InsertRange(System.Int32,System.Collections.ICollection) */, L_2, L_3, L_4);
IL2CPP_LEAVE(0x26, FINALLY_001f);
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_001f;
}
FINALLY_001f:
{ // begin finally (depth: 1)
RuntimeObject * L_5 = V_0;
Monitor_Exit_m3585316909(NULL /*static, unused*/, L_5, /*hidden argument*/NULL);
IL2CPP_END_FINALLY(31)
} // end finally (depth: 1)
IL2CPP_CLEANUP(31)
{
IL2CPP_JUMP_TBL(0x26, IL_0026)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_0026:
{
return;
}
}
// System.Void System.Collections.ArrayList/SynchronizedArrayListWrapper::Remove(System.Object)
extern "C" void SynchronizedArrayListWrapper_Remove_m47731590 (SynchronizedArrayListWrapper_t2283757095 * __this, RuntimeObject * ___value0, const RuntimeMethod* method)
{
RuntimeObject * V_0 = NULL;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = 0;
NO_UNUSED_WARNING (__leave_target);
{
RuntimeObject * L_0 = __this->get_m_SyncRoot_6();
V_0 = L_0;
RuntimeObject * L_1 = V_0;
Monitor_Enter_m2249409497(NULL /*static, unused*/, L_1, /*hidden argument*/NULL);
}
IL_000d:
try
{ // begin try (depth: 1)
ArrayList_t2718874744 * L_2 = ((ArrayListWrapper_t240606758 *)__this)->get_m_InnerArrayList_5();
RuntimeObject * L_3 = ___value0;
VirtActionInvoker1< RuntimeObject * >::Invoke(38 /* System.Void System.Collections.ArrayList::Remove(System.Object) */, L_2, L_3);
IL2CPP_LEAVE(0x25, FINALLY_001e);
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_001e;
}
FINALLY_001e:
{ // begin finally (depth: 1)
RuntimeObject * L_4 = V_0;
Monitor_Exit_m3585316909(NULL /*static, unused*/, L_4, /*hidden argument*/NULL);
IL2CPP_END_FINALLY(30)
} // end finally (depth: 1)
IL2CPP_CLEANUP(30)
{
IL2CPP_JUMP_TBL(0x25, IL_0025)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_0025:
{
return;
}
}
// System.Void System.Collections.ArrayList/SynchronizedArrayListWrapper::RemoveAt(System.Int32)
extern "C" void SynchronizedArrayListWrapper_RemoveAt_m122715760 (SynchronizedArrayListWrapper_t2283757095 * __this, int32_t ___index0, const RuntimeMethod* method)
{
RuntimeObject * V_0 = NULL;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = 0;
NO_UNUSED_WARNING (__leave_target);
{
RuntimeObject * L_0 = __this->get_m_SyncRoot_6();
V_0 = L_0;
RuntimeObject * L_1 = V_0;
Monitor_Enter_m2249409497(NULL /*static, unused*/, L_1, /*hidden argument*/NULL);
}
IL_000d:
try
{ // begin try (depth: 1)
ArrayList_t2718874744 * L_2 = ((ArrayListWrapper_t240606758 *)__this)->get_m_InnerArrayList_5();
int32_t L_3 = ___index0;
VirtActionInvoker1< int32_t >::Invoke(39 /* System.Void System.Collections.ArrayList::RemoveAt(System.Int32) */, L_2, L_3);
IL2CPP_LEAVE(0x25, FINALLY_001e);
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_001e;
}
FINALLY_001e:
{ // begin finally (depth: 1)
RuntimeObject * L_4 = V_0;
Monitor_Exit_m3585316909(NULL /*static, unused*/, L_4, /*hidden argument*/NULL);
IL2CPP_END_FINALLY(30)
} // end finally (depth: 1)
IL2CPP_CLEANUP(30)
{
IL2CPP_JUMP_TBL(0x25, IL_0025)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_0025:
{
return;
}
}
// System.Void System.Collections.ArrayList/SynchronizedArrayListWrapper::CopyTo(System.Array)
extern "C" void SynchronizedArrayListWrapper_CopyTo_m2886332653 (SynchronizedArrayListWrapper_t2283757095 * __this, RuntimeArray * ___array0, const RuntimeMethod* method)
{
RuntimeObject * V_0 = NULL;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = 0;
NO_UNUSED_WARNING (__leave_target);
{
RuntimeObject * L_0 = __this->get_m_SyncRoot_6();
V_0 = L_0;
RuntimeObject * L_1 = V_0;
Monitor_Enter_m2249409497(NULL /*static, unused*/, L_1, /*hidden argument*/NULL);
}
IL_000d:
try
{ // begin try (depth: 1)
ArrayList_t2718874744 * L_2 = ((ArrayListWrapper_t240606758 *)__this)->get_m_InnerArrayList_5();
RuntimeArray * L_3 = ___array0;
VirtActionInvoker1< RuntimeArray * >::Invoke(40 /* System.Void System.Collections.ArrayList::CopyTo(System.Array) */, L_2, L_3);
IL2CPP_LEAVE(0x25, FINALLY_001e);
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_001e;
}
FINALLY_001e:
{ // begin finally (depth: 1)
RuntimeObject * L_4 = V_0;
Monitor_Exit_m3585316909(NULL /*static, unused*/, L_4, /*hidden argument*/NULL);
IL2CPP_END_FINALLY(30)
} // end finally (depth: 1)
IL2CPP_CLEANUP(30)
{
IL2CPP_JUMP_TBL(0x25, IL_0025)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_0025:
{
return;
}
}
// System.Void System.Collections.ArrayList/SynchronizedArrayListWrapper::CopyTo(System.Array,System.Int32)
extern "C" void SynchronizedArrayListWrapper_CopyTo_m4207791406 (SynchronizedArrayListWrapper_t2283757095 * __this, RuntimeArray * ___array0, int32_t ___index1, const RuntimeMethod* method)
{
RuntimeObject * V_0 = NULL;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = 0;
NO_UNUSED_WARNING (__leave_target);
{
RuntimeObject * L_0 = __this->get_m_SyncRoot_6();
V_0 = L_0;
RuntimeObject * L_1 = V_0;
Monitor_Enter_m2249409497(NULL /*static, unused*/, L_1, /*hidden argument*/NULL);
}
IL_000d:
try
{ // begin try (depth: 1)
ArrayList_t2718874744 * L_2 = ((ArrayListWrapper_t240606758 *)__this)->get_m_InnerArrayList_5();
RuntimeArray * L_3 = ___array0;
int32_t L_4 = ___index1;
VirtActionInvoker2< RuntimeArray *, int32_t >::Invoke(41 /* System.Void System.Collections.ArrayList::CopyTo(System.Array,System.Int32) */, L_2, L_3, L_4);
IL2CPP_LEAVE(0x26, FINALLY_001f);
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_001f;
}
FINALLY_001f:
{ // begin finally (depth: 1)
RuntimeObject * L_5 = V_0;
Monitor_Exit_m3585316909(NULL /*static, unused*/, L_5, /*hidden argument*/NULL);
IL2CPP_END_FINALLY(31)
} // end finally (depth: 1)
IL2CPP_CLEANUP(31)
{
IL2CPP_JUMP_TBL(0x26, IL_0026)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_0026:
{
return;
}
}
// System.Void System.Collections.ArrayList/SynchronizedArrayListWrapper::CopyTo(System.Int32,System.Array,System.Int32,System.Int32)
extern "C" void SynchronizedArrayListWrapper_CopyTo_m1305044270 (SynchronizedArrayListWrapper_t2283757095 * __this, int32_t ___index0, RuntimeArray * ___array1, int32_t ___arrayIndex2, int32_t ___count3, const RuntimeMethod* method)
{
RuntimeObject * V_0 = NULL;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = 0;
NO_UNUSED_WARNING (__leave_target);
{
RuntimeObject * L_0 = __this->get_m_SyncRoot_6();
V_0 = L_0;
RuntimeObject * L_1 = V_0;
Monitor_Enter_m2249409497(NULL /*static, unused*/, L_1, /*hidden argument*/NULL);
}
IL_000d:
try
{ // begin try (depth: 1)
ArrayList_t2718874744 * L_2 = ((ArrayListWrapper_t240606758 *)__this)->get_m_InnerArrayList_5();
int32_t L_3 = ___index0;
RuntimeArray * L_4 = ___array1;
int32_t L_5 = ___arrayIndex2;
int32_t L_6 = ___count3;
VirtActionInvoker4< int32_t, RuntimeArray *, int32_t, int32_t >::Invoke(42 /* System.Void System.Collections.ArrayList::CopyTo(System.Int32,System.Array,System.Int32,System.Int32) */, L_2, L_3, L_4, L_5, L_6);
IL2CPP_LEAVE(0x29, FINALLY_0022);
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_0022;
}
FINALLY_0022:
{ // begin finally (depth: 1)
RuntimeObject * L_7 = V_0;
Monitor_Exit_m3585316909(NULL /*static, unused*/, L_7, /*hidden argument*/NULL);
IL2CPP_END_FINALLY(34)
} // end finally (depth: 1)
IL2CPP_CLEANUP(34)
{
IL2CPP_JUMP_TBL(0x29, IL_0029)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_0029:
{
return;
}
}
// System.Collections.IEnumerator System.Collections.ArrayList/SynchronizedArrayListWrapper::GetEnumerator()
extern "C" RuntimeObject* SynchronizedArrayListWrapper_GetEnumerator_m1579424644 (SynchronizedArrayListWrapper_t2283757095 * __this, const RuntimeMethod* method)
{
RuntimeObject * V_0 = NULL;
RuntimeObject* V_1 = NULL;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = 0;
NO_UNUSED_WARNING (__leave_target);
{
RuntimeObject * L_0 = __this->get_m_SyncRoot_6();
V_0 = L_0;
RuntimeObject * L_1 = V_0;
Monitor_Enter_m2249409497(NULL /*static, unused*/, L_1, /*hidden argument*/NULL);
}
IL_000d:
try
{ // begin try (depth: 1)
{
ArrayList_t2718874744 * L_2 = ((ArrayListWrapper_t240606758 *)__this)->get_m_InnerArrayList_5();
RuntimeObject* L_3 = VirtFuncInvoker0< RuntimeObject* >::Invoke(43 /* System.Collections.IEnumerator System.Collections.ArrayList::GetEnumerator() */, L_2);
V_1 = L_3;
IL2CPP_LEAVE(0x2A, FINALLY_0023);
}
IL_001e:
{
; // IL_001e: leave IL_002a
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_0023;
}
FINALLY_0023:
{ // begin finally (depth: 1)
RuntimeObject * L_4 = V_0;
Monitor_Exit_m3585316909(NULL /*static, unused*/, L_4, /*hidden argument*/NULL);
IL2CPP_END_FINALLY(35)
} // end finally (depth: 1)
IL2CPP_CLEANUP(35)
{
IL2CPP_JUMP_TBL(0x2A, IL_002a)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_002a:
{
RuntimeObject* L_5 = V_1;
return L_5;
}
}
// System.Void System.Collections.ArrayList/SynchronizedArrayListWrapper::AddRange(System.Collections.ICollection)
extern "C" void SynchronizedArrayListWrapper_AddRange_m4141530892 (SynchronizedArrayListWrapper_t2283757095 * __this, RuntimeObject* ___c0, const RuntimeMethod* method)
{
RuntimeObject * V_0 = NULL;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = 0;
NO_UNUSED_WARNING (__leave_target);
{
RuntimeObject * L_0 = __this->get_m_SyncRoot_6();
V_0 = L_0;
RuntimeObject * L_1 = V_0;
Monitor_Enter_m2249409497(NULL /*static, unused*/, L_1, /*hidden argument*/NULL);
}
IL_000d:
try
{ // begin try (depth: 1)
ArrayList_t2718874744 * L_2 = ((ArrayListWrapper_t240606758 *)__this)->get_m_InnerArrayList_5();
RuntimeObject* L_3 = ___c0;
VirtActionInvoker1< RuntimeObject* >::Invoke(44 /* System.Void System.Collections.ArrayList::AddRange(System.Collections.ICollection) */, L_2, L_3);
IL2CPP_LEAVE(0x25, FINALLY_001e);
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_001e;
}
FINALLY_001e:
{ // begin finally (depth: 1)
RuntimeObject * L_4 = V_0;
Monitor_Exit_m3585316909(NULL /*static, unused*/, L_4, /*hidden argument*/NULL);
IL2CPP_END_FINALLY(30)
} // end finally (depth: 1)
IL2CPP_CLEANUP(30)
{
IL2CPP_JUMP_TBL(0x25, IL_0025)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_0025:
{
return;
}
}
// System.Object System.Collections.ArrayList/SynchronizedArrayListWrapper::Clone()
extern "C" RuntimeObject * SynchronizedArrayListWrapper_Clone_m1959734504 (SynchronizedArrayListWrapper_t2283757095 * __this, const RuntimeMethod* method)
{
RuntimeObject * V_0 = NULL;
RuntimeObject * V_1 = NULL;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = 0;
NO_UNUSED_WARNING (__leave_target);
{
RuntimeObject * L_0 = __this->get_m_SyncRoot_6();
V_0 = L_0;
RuntimeObject * L_1 = V_0;
Monitor_Enter_m2249409497(NULL /*static, unused*/, L_1, /*hidden argument*/NULL);
}
IL_000d:
try
{ // begin try (depth: 1)
{
ArrayList_t2718874744 * L_2 = ((ArrayListWrapper_t240606758 *)__this)->get_m_InnerArrayList_5();
RuntimeObject * L_3 = VirtFuncInvoker0< RuntimeObject * >::Invoke(49 /* System.Object System.Collections.ArrayList::Clone() */, L_2);
V_1 = L_3;
IL2CPP_LEAVE(0x2A, FINALLY_0023);
}
IL_001e:
{
; // IL_001e: leave IL_002a
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_0023;
}
FINALLY_0023:
{ // begin finally (depth: 1)
RuntimeObject * L_4 = V_0;
Monitor_Exit_m3585316909(NULL /*static, unused*/, L_4, /*hidden argument*/NULL);
IL2CPP_END_FINALLY(35)
} // end finally (depth: 1)
IL2CPP_CLEANUP(35)
{
IL2CPP_JUMP_TBL(0x2A, IL_002a)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_002a:
{
RuntimeObject * L_5 = V_1;
return L_5;
}
}
// System.Void System.Collections.ArrayList/SynchronizedArrayListWrapper::Sort()
extern "C" void SynchronizedArrayListWrapper_Sort_m275448700 (SynchronizedArrayListWrapper_t2283757095 * __this, const RuntimeMethod* method)
{
RuntimeObject * V_0 = NULL;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = 0;
NO_UNUSED_WARNING (__leave_target);
{
RuntimeObject * L_0 = __this->get_m_SyncRoot_6();
V_0 = L_0;
RuntimeObject * L_1 = V_0;
Monitor_Enter_m2249409497(NULL /*static, unused*/, L_1, /*hidden argument*/NULL);
}
IL_000d:
try
{ // begin try (depth: 1)
ArrayList_t2718874744 * L_2 = ((ArrayListWrapper_t240606758 *)__this)->get_m_InnerArrayList_5();
VirtActionInvoker0::Invoke(45 /* System.Void System.Collections.ArrayList::Sort() */, L_2);
IL2CPP_LEAVE(0x24, FINALLY_001d);
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_001d;
}
FINALLY_001d:
{ // begin finally (depth: 1)
RuntimeObject * L_3 = V_0;
Monitor_Exit_m3585316909(NULL /*static, unused*/, L_3, /*hidden argument*/NULL);
IL2CPP_END_FINALLY(29)
} // end finally (depth: 1)
IL2CPP_CLEANUP(29)
{
IL2CPP_JUMP_TBL(0x24, IL_0024)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_0024:
{
return;
}
}
// System.Void System.Collections.ArrayList/SynchronizedArrayListWrapper::Sort(System.Collections.IComparer)
extern "C" void SynchronizedArrayListWrapper_Sort_m575592975 (SynchronizedArrayListWrapper_t2283757095 * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method)
{
RuntimeObject * V_0 = NULL;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = 0;
NO_UNUSED_WARNING (__leave_target);
{
RuntimeObject * L_0 = __this->get_m_SyncRoot_6();
V_0 = L_0;
RuntimeObject * L_1 = V_0;
Monitor_Enter_m2249409497(NULL /*static, unused*/, L_1, /*hidden argument*/NULL);
}
IL_000d:
try
{ // begin try (depth: 1)
ArrayList_t2718874744 * L_2 = ((ArrayListWrapper_t240606758 *)__this)->get_m_InnerArrayList_5();
RuntimeObject* L_3 = ___comparer0;
VirtActionInvoker1< RuntimeObject* >::Invoke(46 /* System.Void System.Collections.ArrayList::Sort(System.Collections.IComparer) */, L_2, L_3);
IL2CPP_LEAVE(0x25, FINALLY_001e);
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_001e;
}
FINALLY_001e:
{ // begin finally (depth: 1)
RuntimeObject * L_4 = V_0;
Monitor_Exit_m3585316909(NULL /*static, unused*/, L_4, /*hidden argument*/NULL);
IL2CPP_END_FINALLY(30)
} // end finally (depth: 1)
IL2CPP_CLEANUP(30)
{
IL2CPP_JUMP_TBL(0x25, IL_0025)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_0025:
{
return;
}
}
// System.Object[] System.Collections.ArrayList/SynchronizedArrayListWrapper::ToArray()
extern "C" ObjectU5BU5D_t2843939325* SynchronizedArrayListWrapper_ToArray_m2419932249 (SynchronizedArrayListWrapper_t2283757095 * __this, const RuntimeMethod* method)
{
RuntimeObject * V_0 = NULL;
ObjectU5BU5D_t2843939325* V_1 = NULL;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = 0;
NO_UNUSED_WARNING (__leave_target);
{
RuntimeObject * L_0 = __this->get_m_SyncRoot_6();
V_0 = L_0;
RuntimeObject * L_1 = V_0;
Monitor_Enter_m2249409497(NULL /*static, unused*/, L_1, /*hidden argument*/NULL);
}
IL_000d:
try
{ // begin try (depth: 1)
{
ArrayList_t2718874744 * L_2 = ((ArrayListWrapper_t240606758 *)__this)->get_m_InnerArrayList_5();
ObjectU5BU5D_t2843939325* L_3 = VirtFuncInvoker0< ObjectU5BU5D_t2843939325* >::Invoke(47 /* System.Object[] System.Collections.ArrayList::ToArray() */, L_2);
V_1 = L_3;
IL2CPP_LEAVE(0x2A, FINALLY_0023);
}
IL_001e:
{
; // IL_001e: leave IL_002a
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_0023;
}
FINALLY_0023:
{ // begin finally (depth: 1)
RuntimeObject * L_4 = V_0;
Monitor_Exit_m3585316909(NULL /*static, unused*/, L_4, /*hidden argument*/NULL);
IL2CPP_END_FINALLY(35)
} // end finally (depth: 1)
IL2CPP_CLEANUP(35)
{
IL2CPP_JUMP_TBL(0x2A, IL_002a)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_002a:
{
ObjectU5BU5D_t2843939325* L_5 = V_1;
return L_5;
}
}
// System.Array System.Collections.ArrayList/SynchronizedArrayListWrapper::ToArray(System.Type)
extern "C" RuntimeArray * SynchronizedArrayListWrapper_ToArray_m1519105559 (SynchronizedArrayListWrapper_t2283757095 * __this, Type_t * ___elementType0, const RuntimeMethod* method)
{
RuntimeObject * V_0 = NULL;
RuntimeArray * V_1 = NULL;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = 0;
NO_UNUSED_WARNING (__leave_target);
{
RuntimeObject * L_0 = __this->get_m_SyncRoot_6();
V_0 = L_0;
RuntimeObject * L_1 = V_0;
Monitor_Enter_m2249409497(NULL /*static, unused*/, L_1, /*hidden argument*/NULL);
}
IL_000d:
try
{ // begin try (depth: 1)
{
ArrayList_t2718874744 * L_2 = ((ArrayListWrapper_t240606758 *)__this)->get_m_InnerArrayList_5();
Type_t * L_3 = ___elementType0;
RuntimeArray * L_4 = VirtFuncInvoker1< RuntimeArray *, Type_t * >::Invoke(48 /* System.Array System.Collections.ArrayList::ToArray(System.Type) */, L_2, L_3);
V_1 = L_4;
IL2CPP_LEAVE(0x2B, FINALLY_0024);
}
IL_001f:
{
; // IL_001f: leave IL_002b
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_0024;
}
FINALLY_0024:
{ // begin finally (depth: 1)
RuntimeObject * L_5 = V_0;
Monitor_Exit_m3585316909(NULL /*static, unused*/, L_5, /*hidden argument*/NULL);
IL2CPP_END_FINALLY(36)
} // end finally (depth: 1)
IL2CPP_CLEANUP(36)
{
IL2CPP_JUMP_TBL(0x2B, IL_002b)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_002b:
{
RuntimeArray * L_6 = V_1;
return L_6;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Collections.BitArray::.ctor(System.Collections.BitArray)
extern "C" void BitArray__ctor_m2765908219 (BitArray_t4087883509 * __this, BitArray_t4087883509 * ___bits0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (BitArray__ctor_m2765908219_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Object__ctor_m297566312(__this, /*hidden argument*/NULL);
BitArray_t4087883509 * L_0 = ___bits0;
if (L_0)
{
goto IL_0017;
}
}
{
ArgumentNullException_t1615371798 * L_1 = (ArgumentNullException_t1615371798 *)il2cpp_codegen_object_new(ArgumentNullException_t1615371798_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m1170824041(L_1, _stringLiteral419169028, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1,BitArray__ctor_m2765908219_RuntimeMethod_var);
}
IL_0017:
{
BitArray_t4087883509 * L_2 = ___bits0;
int32_t L_3 = L_2->get_m_length_1();
__this->set_m_length_1(L_3);
int32_t L_4 = __this->get_m_length_1();
__this->set_m_array_0(((Int32U5BU5D_t385246372*)SZArrayNew(Int32U5BU5D_t385246372_il2cpp_TypeInfo_var, (uint32_t)((int32_t)((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_4, (int32_t)((int32_t)31)))/(int32_t)((int32_t)32))))));
Int32U5BU5D_t385246372* L_5 = __this->get_m_array_0();
if ((!(((uint32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_5)->max_length))))) == ((uint32_t)1))))
{
goto IL_005d;
}
}
{
Int32U5BU5D_t385246372* L_6 = __this->get_m_array_0();
BitArray_t4087883509 * L_7 = ___bits0;
Int32U5BU5D_t385246372* L_8 = L_7->get_m_array_0();
int32_t L_9 = 0;
int32_t L_10 = (L_8)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_9));
(L_6)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(0), (int32_t)L_10);
goto IL_0076;
}
IL_005d:
{
BitArray_t4087883509 * L_11 = ___bits0;
Int32U5BU5D_t385246372* L_12 = L_11->get_m_array_0();
Int32U5BU5D_t385246372* L_13 = __this->get_m_array_0();
Int32U5BU5D_t385246372* L_14 = __this->get_m_array_0();
Array_Copy_m1988217701(NULL /*static, unused*/, (RuntimeArray *)(RuntimeArray *)L_12, (RuntimeArray *)(RuntimeArray *)L_13, (((int32_t)((int32_t)(((RuntimeArray *)L_14)->max_length)))), /*hidden argument*/NULL);
}
IL_0076:
{
return;
}
}
// System.Void System.Collections.BitArray::.ctor(System.Int32)
extern "C" void BitArray__ctor_m52841262 (BitArray_t4087883509 * __this, int32_t ___length0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (BitArray__ctor_m52841262_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Object__ctor_m297566312(__this, /*hidden argument*/NULL);
int32_t L_0 = ___length0;
if ((((int32_t)L_0) >= ((int32_t)0)))
{
goto IL_0018;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_1 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_1, _stringLiteral1212500642, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1,BitArray__ctor_m52841262_RuntimeMethod_var);
}
IL_0018:
{
int32_t L_2 = ___length0;
__this->set_m_length_1(L_2);
int32_t L_3 = __this->get_m_length_1();
__this->set_m_array_0(((Int32U5BU5D_t385246372*)SZArrayNew(Int32U5BU5D_t385246372_il2cpp_TypeInfo_var, (uint32_t)((int32_t)((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)((int32_t)31)))/(int32_t)((int32_t)32))))));
return;
}
}
// System.Byte System.Collections.BitArray::getByte(System.Int32)
extern "C" uint8_t BitArray_getByte_m2467886923 (BitArray_t4087883509 * __this, int32_t ___byteIndex0, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
int32_t V_2 = 0;
{
int32_t L_0 = ___byteIndex0;
V_0 = ((int32_t)((int32_t)L_0/(int32_t)4));
int32_t L_1 = ___byteIndex0;
V_1 = ((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)((int32_t)L_1%(int32_t)4)), (int32_t)8));
Int32U5BU5D_t385246372* L_2 = __this->get_m_array_0();
int32_t L_3 = V_0;
int32_t L_4 = L_3;
int32_t L_5 = (L_2)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_4));
int32_t L_6 = V_1;
V_2 = ((int32_t)((int32_t)L_5&(int32_t)((int32_t)((int32_t)((int32_t)255)<<(int32_t)((int32_t)((int32_t)L_6&(int32_t)((int32_t)31)))))));
int32_t L_7 = V_2;
int32_t L_8 = V_1;
return (uint8_t)(((int32_t)((uint8_t)((int32_t)((int32_t)((int32_t)((int32_t)L_7>>(int32_t)((int32_t)((int32_t)L_8&(int32_t)((int32_t)31)))))&(int32_t)((int32_t)255))))));
}
}
// System.Int32 System.Collections.BitArray::get_Count()
extern "C" int32_t BitArray_get_Count_m3250012040 (BitArray_t4087883509 * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->get_m_length_1();
return L_0;
}
}
// System.Boolean System.Collections.BitArray::get_IsSynchronized()
extern "C" bool BitArray_get_IsSynchronized_m3546284417 (BitArray_t4087883509 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// System.Boolean System.Collections.BitArray::get_Item(System.Int32)
extern "C" bool BitArray_get_Item_m2970562587 (BitArray_t4087883509 * __this, int32_t ___index0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___index0;
bool L_1 = BitArray_Get_m1610855460(__this, L_0, /*hidden argument*/NULL);
return L_1;
}
}
// System.Void System.Collections.BitArray::set_Item(System.Int32,System.Boolean)
extern "C" void BitArray_set_Item_m3453667491 (BitArray_t4087883509 * __this, int32_t ___index0, bool ___value1, const RuntimeMethod* method)
{
{
int32_t L_0 = ___index0;
bool L_1 = ___value1;
BitArray_Set_m2486900776(__this, L_0, L_1, /*hidden argument*/NULL);
return;
}
}
// System.Int32 System.Collections.BitArray::get_Length()
extern "C" int32_t BitArray_get_Length_m3181964206 (BitArray_t4087883509 * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->get_m_length_1();
return L_0;
}
}
// System.Object System.Collections.BitArray::get_SyncRoot()
extern "C" RuntimeObject * BitArray_get_SyncRoot_m680463907 (BitArray_t4087883509 * __this, const RuntimeMethod* method)
{
{
return __this;
}
}
// System.Object System.Collections.BitArray::Clone()
extern "C" RuntimeObject * BitArray_Clone_m3537018332 (BitArray_t4087883509 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (BitArray_Clone_m3537018332_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
BitArray_t4087883509 * L_0 = (BitArray_t4087883509 *)il2cpp_codegen_object_new(BitArray_t4087883509_il2cpp_TypeInfo_var);
BitArray__ctor_m2765908219(L_0, __this, /*hidden argument*/NULL);
return L_0;
}
}
// System.Void System.Collections.BitArray::CopyTo(System.Array,System.Int32)
extern "C" void BitArray_CopyTo_m4205938202 (BitArray_t4087883509 * __this, RuntimeArray * ___array0, int32_t ___index1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (BitArray_CopyTo_m4205938202_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
BooleanU5BU5D_t2897418192* V_0 = NULL;
int32_t V_1 = 0;
int32_t V_2 = 0;
ByteU5BU5D_t4116647657* V_3 = NULL;
int32_t V_4 = 0;
{
RuntimeArray * L_0 = ___array0;
if (L_0)
{
goto IL_0011;
}
}
{
ArgumentNullException_t1615371798 * L_1 = (ArgumentNullException_t1615371798 *)il2cpp_codegen_object_new(ArgumentNullException_t1615371798_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m1170824041(L_1, _stringLiteral4007973390, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1,BitArray_CopyTo_m4205938202_RuntimeMethod_var);
}
IL_0011:
{
int32_t L_2 = ___index1;
if ((((int32_t)L_2) >= ((int32_t)0)))
{
goto IL_0023;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_3 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_3, _stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3,BitArray_CopyTo_m4205938202_RuntimeMethod_var);
}
IL_0023:
{
RuntimeArray * L_4 = ___array0;
int32_t L_5 = Array_get_Rank_m3448755881(L_4, /*hidden argument*/NULL);
if ((((int32_t)L_5) == ((int32_t)1)))
{
goto IL_003f;
}
}
{
ArgumentException_t132251570 * L_6 = (ArgumentException_t132251570 *)il2cpp_codegen_object_new(ArgumentException_t132251570_il2cpp_TypeInfo_var);
ArgumentException__ctor_m1216717135(L_6, _stringLiteral4007973390, _stringLiteral711425728, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_6,BitArray_CopyTo_m4205938202_RuntimeMethod_var);
}
IL_003f:
{
int32_t L_7 = ___index1;
RuntimeArray * L_8 = ___array0;
int32_t L_9 = Array_get_Length_m21610649(L_8, /*hidden argument*/NULL);
if ((((int32_t)L_7) < ((int32_t)L_9)))
{
goto IL_0067;
}
}
{
int32_t L_10 = __this->get_m_length_1();
if ((((int32_t)L_10) <= ((int32_t)0)))
{
goto IL_0067;
}
}
{
ArgumentException_t132251570 * L_11 = (ArgumentException_t132251570 *)il2cpp_codegen_object_new(ArgumentException_t132251570_il2cpp_TypeInfo_var);
ArgumentException__ctor_m1216717135(L_11, _stringLiteral797640427, _stringLiteral1128309649, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_11,BitArray_CopyTo_m4205938202_RuntimeMethod_var);
}
IL_0067:
{
RuntimeArray * L_12 = ___array0;
if (!((BooleanU5BU5D_t2897418192*)IsInst((RuntimeObject*)L_12, BooleanU5BU5D_t2897418192_il2cpp_TypeInfo_var)))
{
goto IL_00ba;
}
}
{
RuntimeArray * L_13 = ___array0;
int32_t L_14 = Array_get_Length_m21610649(L_13, /*hidden argument*/NULL);
int32_t L_15 = ___index1;
int32_t L_16 = __this->get_m_length_1();
if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_14, (int32_t)L_15))) >= ((int32_t)L_16)))
{
goto IL_008b;
}
}
{
ArgumentException_t132251570 * L_17 = (ArgumentException_t132251570 *)il2cpp_codegen_object_new(ArgumentException_t132251570_il2cpp_TypeInfo_var);
ArgumentException__ctor_m3698743796(L_17, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_17,BitArray_CopyTo_m4205938202_RuntimeMethod_var);
}
IL_008b:
{
RuntimeArray * L_18 = ___array0;
V_0 = ((BooleanU5BU5D_t2897418192*)Castclass((RuntimeObject*)L_18, BooleanU5BU5D_t2897418192_il2cpp_TypeInfo_var));
V_1 = 0;
goto IL_00a9;
}
IL_0099:
{
BooleanU5BU5D_t2897418192* L_19 = V_0;
int32_t L_20 = ___index1;
int32_t L_21 = V_1;
int32_t L_22 = V_1;
bool L_23 = BitArray_get_Item_m2970562587(__this, L_22, /*hidden argument*/NULL);
(L_19)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(((int32_t)il2cpp_codegen_add((int32_t)L_20, (int32_t)L_21))), (bool)L_23);
int32_t L_24 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_24, (int32_t)1));
}
IL_00a9:
{
int32_t L_25 = V_1;
int32_t L_26 = __this->get_m_length_1();
if ((((int32_t)L_25) < ((int32_t)L_26)))
{
goto IL_0099;
}
}
{
goto IL_014e;
}
IL_00ba:
{
RuntimeArray * L_27 = ___array0;
if (!((ByteU5BU5D_t4116647657*)IsInst((RuntimeObject*)L_27, ByteU5BU5D_t4116647657_il2cpp_TypeInfo_var)))
{
goto IL_0114;
}
}
{
int32_t L_28 = __this->get_m_length_1();
V_2 = ((int32_t)((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_28, (int32_t)7))/(int32_t)8));
RuntimeArray * L_29 = ___array0;
int32_t L_30 = Array_get_Length_m21610649(L_29, /*hidden argument*/NULL);
int32_t L_31 = ___index1;
int32_t L_32 = V_2;
if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_30, (int32_t)L_31))) >= ((int32_t)L_32)))
{
goto IL_00e4;
}
}
{
ArgumentException_t132251570 * L_33 = (ArgumentException_t132251570 *)il2cpp_codegen_object_new(ArgumentException_t132251570_il2cpp_TypeInfo_var);
ArgumentException__ctor_m3698743796(L_33, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_33,BitArray_CopyTo_m4205938202_RuntimeMethod_var);
}
IL_00e4:
{
RuntimeArray * L_34 = ___array0;
V_3 = ((ByteU5BU5D_t4116647657*)Castclass((RuntimeObject*)L_34, ByteU5BU5D_t4116647657_il2cpp_TypeInfo_var));
V_4 = 0;
goto IL_0107;
}
IL_00f3:
{
ByteU5BU5D_t4116647657* L_35 = V_3;
int32_t L_36 = ___index1;
int32_t L_37 = V_4;
int32_t L_38 = V_4;
uint8_t L_39 = BitArray_getByte_m2467886923(__this, L_38, /*hidden argument*/NULL);
(L_35)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(((int32_t)il2cpp_codegen_add((int32_t)L_36, (int32_t)L_37))), (uint8_t)L_39);
int32_t L_40 = V_4;
V_4 = ((int32_t)il2cpp_codegen_add((int32_t)L_40, (int32_t)1));
}
IL_0107:
{
int32_t L_41 = V_4;
int32_t L_42 = V_2;
if ((((int32_t)L_41) < ((int32_t)L_42)))
{
goto IL_00f3;
}
}
{
goto IL_014e;
}
IL_0114:
{
RuntimeArray * L_43 = ___array0;
if (!((Int32U5BU5D_t385246372*)IsInst((RuntimeObject*)L_43, Int32U5BU5D_t385246372_il2cpp_TypeInfo_var)))
{
goto IL_013e;
}
}
{
Int32U5BU5D_t385246372* L_44 = __this->get_m_array_0();
RuntimeArray * L_45 = ___array0;
int32_t L_46 = ___index1;
int32_t L_47 = __this->get_m_length_1();
Array_Copy_m344457298(NULL /*static, unused*/, (RuntimeArray *)(RuntimeArray *)L_44, 0, L_45, L_46, ((int32_t)((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_47, (int32_t)((int32_t)31)))/(int32_t)((int32_t)32))), /*hidden argument*/NULL);
goto IL_014e;
}
IL_013e:
{
ArgumentException_t132251570 * L_48 = (ArgumentException_t132251570 *)il2cpp_codegen_object_new(ArgumentException_t132251570_il2cpp_TypeInfo_var);
ArgumentException__ctor_m1216717135(L_48, _stringLiteral4007973390, _stringLiteral607502006, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_48,BitArray_CopyTo_m4205938202_RuntimeMethod_var);
}
IL_014e:
{
return;
}
}
// System.Boolean System.Collections.BitArray::Get(System.Int32)
extern "C" bool BitArray_Get_m1610855460 (BitArray_t4087883509 * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (BitArray_Get_m1610855460_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = ___index0;
if ((((int32_t)L_0) < ((int32_t)0)))
{
goto IL_0013;
}
}
{
int32_t L_1 = ___index0;
int32_t L_2 = __this->get_m_length_1();
if ((((int32_t)L_1) < ((int32_t)L_2)))
{
goto IL_0019;
}
}
IL_0013:
{
ArgumentOutOfRangeException_t777629997 * L_3 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m2047740448(L_3, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3,BitArray_Get_m1610855460_RuntimeMethod_var);
}
IL_0019:
{
Int32U5BU5D_t385246372* L_4 = __this->get_m_array_0();
int32_t L_5 = ___index0;
int32_t L_6 = ((int32_t)((int32_t)L_5>>(int32_t)5));
int32_t L_7 = (L_4)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_6));
int32_t L_8 = ___index0;
return (bool)((((int32_t)((((int32_t)((int32_t)((int32_t)L_7&(int32_t)((int32_t)((int32_t)1<<(int32_t)((int32_t)((int32_t)((int32_t)((int32_t)L_8&(int32_t)((int32_t)31)))&(int32_t)((int32_t)31)))))))) == ((int32_t)0))? 1 : 0)) == ((int32_t)0))? 1 : 0);
}
}
// System.Void System.Collections.BitArray::Set(System.Int32,System.Boolean)
extern "C" void BitArray_Set_m2486900776 (BitArray_t4087883509 * __this, int32_t ___index0, bool ___value1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (BitArray_Set_m2486900776_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = ___index0;
if ((((int32_t)L_0) < ((int32_t)0)))
{
goto IL_0013;
}
}
{
int32_t L_1 = ___index0;
int32_t L_2 = __this->get_m_length_1();
if ((((int32_t)L_1) < ((int32_t)L_2)))
{
goto IL_0019;
}
}
IL_0013:
{
ArgumentOutOfRangeException_t777629997 * L_3 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m2047740448(L_3, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3,BitArray_Set_m2486900776_RuntimeMethod_var);
}
IL_0019:
{
bool L_4 = ___value1;
if (!L_4)
{
goto IL_0042;
}
}
{
Int32U5BU5D_t385246372* L_5 = __this->get_m_array_0();
int32_t L_6 = ___index0;
int32_t* L_7 = ((L_5)->GetAddressAtUnchecked(static_cast<il2cpp_array_size_t>(((int32_t)((int32_t)L_6>>(int32_t)5)))));
int32_t L_8 = ___index0;
*((int32_t*)(L_7)) = (int32_t)((int32_t)((int32_t)(*((int32_t*)L_7))|(int32_t)((int32_t)((int32_t)1<<(int32_t)((int32_t)((int32_t)((int32_t)((int32_t)((int32_t)((int32_t)L_8&(int32_t)((int32_t)31)))&(int32_t)((int32_t)31)))&(int32_t)((int32_t)31)))))));
goto IL_0061;
}
IL_0042:
{
Int32U5BU5D_t385246372* L_9 = __this->get_m_array_0();
int32_t L_10 = ___index0;
int32_t* L_11 = ((L_9)->GetAddressAtUnchecked(static_cast<il2cpp_array_size_t>(((int32_t)((int32_t)L_10>>(int32_t)5)))));
int32_t L_12 = ___index0;
*((int32_t*)(L_11)) = (int32_t)((int32_t)((int32_t)(*((int32_t*)L_11))&(int32_t)((~((int32_t)((int32_t)1<<(int32_t)((int32_t)((int32_t)((int32_t)((int32_t)((int32_t)((int32_t)L_12&(int32_t)((int32_t)31)))&(int32_t)((int32_t)31)))&(int32_t)((int32_t)31)))))))));
}
IL_0061:
{
int32_t L_13 = __this->get__version_2();
__this->set__version_2(((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)1)));
return;
}
}
// System.Collections.IEnumerator System.Collections.BitArray::GetEnumerator()
extern "C" RuntimeObject* BitArray_GetEnumerator_m1964744199 (BitArray_t4087883509 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (BitArray_GetEnumerator_m1964744199_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
BitArrayEnumerator_t893496218 * L_0 = (BitArrayEnumerator_t893496218 *)il2cpp_codegen_object_new(BitArrayEnumerator_t893496218_il2cpp_TypeInfo_var);
BitArrayEnumerator__ctor_m2359341397(L_0, __this, /*hidden argument*/NULL);
return L_0;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Collections.BitArray/BitArrayEnumerator::.ctor(System.Collections.BitArray)
extern "C" void BitArrayEnumerator__ctor_m2359341397 (BitArrayEnumerator_t893496218 * __this, BitArray_t4087883509 * ___ba0, const RuntimeMethod* method)
{
{
Object__ctor_m297566312(__this, /*hidden argument*/NULL);
__this->set__index_2((-1));
BitArray_t4087883509 * L_0 = ___ba0;
__this->set__bitArray_0(L_0);
BitArray_t4087883509 * L_1 = ___ba0;
int32_t L_2 = L_1->get__version_2();
__this->set__version_3(L_2);
return;
}
}
// System.Object System.Collections.BitArray/BitArrayEnumerator::Clone()
extern "C" RuntimeObject * BitArrayEnumerator_Clone_m2928080346 (BitArrayEnumerator_t893496218 * __this, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = Object_MemberwiseClone_m1474068832(__this, /*hidden argument*/NULL);
return L_0;
}
}
// System.Object System.Collections.BitArray/BitArrayEnumerator::get_Current()
extern "C" RuntimeObject * BitArrayEnumerator_get_Current_m4220391712 (BitArrayEnumerator_t893496218 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (BitArrayEnumerator_get_Current_m4220391712_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = __this->get__index_2();
if ((!(((uint32_t)L_0) == ((uint32_t)(-1)))))
{
goto IL_0017;
}
}
{
InvalidOperationException_t56020091 * L_1 = (InvalidOperationException_t56020091 *)il2cpp_codegen_object_new(InvalidOperationException_t56020091_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m237278729(L_1, _stringLiteral3868419112, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1,BitArrayEnumerator_get_Current_m4220391712_RuntimeMethod_var);
}
IL_0017:
{
int32_t L_2 = __this->get__index_2();
BitArray_t4087883509 * L_3 = __this->get__bitArray_0();
int32_t L_4 = BitArray_get_Count_m3250012040(L_3, /*hidden argument*/NULL);
if ((((int32_t)L_2) < ((int32_t)L_4)))
{
goto IL_0038;
}
}
{
InvalidOperationException_t56020091 * L_5 = (InvalidOperationException_t56020091 *)il2cpp_codegen_object_new(InvalidOperationException_t56020091_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m237278729(L_5, _stringLiteral2736026462, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5,BitArrayEnumerator_get_Current_m4220391712_RuntimeMethod_var);
}
IL_0038:
{
bool L_6 = __this->get__current_1();
bool L_7 = L_6;
RuntimeObject * L_8 = Box(Boolean_t97287965_il2cpp_TypeInfo_var, &L_7);
return L_8;
}
}
// System.Boolean System.Collections.BitArray/BitArrayEnumerator::MoveNext()
extern "C" bool BitArrayEnumerator_MoveNext_m3806676766 (BitArrayEnumerator_t893496218 * __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
BitArrayEnumerator_checkVersion_m500404395(__this, /*hidden argument*/NULL);
int32_t L_0 = __this->get__index_2();
BitArray_t4087883509 * L_1 = __this->get__bitArray_0();
int32_t L_2 = BitArray_get_Count_m3250012040(L_1, /*hidden argument*/NULL);
if ((((int32_t)L_0) >= ((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_2, (int32_t)1)))))
{
goto IL_0042;
}
}
{
BitArray_t4087883509 * L_3 = __this->get__bitArray_0();
int32_t L_4 = __this->get__index_2();
int32_t L_5 = ((int32_t)il2cpp_codegen_add((int32_t)L_4, (int32_t)1));
V_0 = L_5;
__this->set__index_2(L_5);
int32_t L_6 = V_0;
bool L_7 = BitArray_get_Item_m2970562587(L_3, L_6, /*hidden argument*/NULL);
__this->set__current_1(L_7);
return (bool)1;
}
IL_0042:
{
BitArray_t4087883509 * L_8 = __this->get__bitArray_0();
int32_t L_9 = BitArray_get_Count_m3250012040(L_8, /*hidden argument*/NULL);
__this->set__index_2(L_9);
return (bool)0;
}
}
// System.Void System.Collections.BitArray/BitArrayEnumerator::Reset()
extern "C" void BitArrayEnumerator_Reset_m2256666019 (BitArrayEnumerator_t893496218 * __this, const RuntimeMethod* method)
{
{
BitArrayEnumerator_checkVersion_m500404395(__this, /*hidden argument*/NULL);
__this->set__index_2((-1));
return;
}
}
// System.Void System.Collections.BitArray/BitArrayEnumerator::checkVersion()
extern "C" void BitArrayEnumerator_checkVersion_m500404395 (BitArrayEnumerator_t893496218 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (BitArrayEnumerator_checkVersion_m500404395_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = __this->get__version_3();
BitArray_t4087883509 * L_1 = __this->get__bitArray_0();
int32_t L_2 = L_1->get__version_2();
if ((((int32_t)L_0) == ((int32_t)L_2)))
{
goto IL_001c;
}
}
{
InvalidOperationException_t56020091 * L_3 = (InvalidOperationException_t56020091 *)il2cpp_codegen_object_new(InvalidOperationException_t56020091_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m2734335978(L_3, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3,BitArrayEnumerator_checkVersion_m500404395_RuntimeMethod_var);
}
IL_001c:
{
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Collections.CaseInsensitiveComparer::.ctor()
extern "C" void CaseInsensitiveComparer__ctor_m1508720200 (CaseInsensitiveComparer_t3670035800 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (CaseInsensitiveComparer__ctor_m1508720200_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Object__ctor_m297566312(__this, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t4157843068_il2cpp_TypeInfo_var);
CultureInfo_t4157843068 * L_0 = CultureInfo_get_CurrentCulture_m1632690660(NULL /*static, unused*/, /*hidden argument*/NULL);
__this->set_culture_2(L_0);
return;
}
}
// System.Void System.Collections.CaseInsensitiveComparer::.ctor(System.Boolean)
extern "C" void CaseInsensitiveComparer__ctor_m2101975011 (CaseInsensitiveComparer_t3670035800 * __this, bool ___invariant0, const RuntimeMethod* method)
{
{
Object__ctor_m297566312(__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Collections.CaseInsensitiveComparer::.cctor()
extern "C" void CaseInsensitiveComparer__cctor_m2727609021 (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (CaseInsensitiveComparer__cctor_m2727609021_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
CaseInsensitiveComparer_t3670035800 * L_0 = (CaseInsensitiveComparer_t3670035800 *)il2cpp_codegen_object_new(CaseInsensitiveComparer_t3670035800_il2cpp_TypeInfo_var);
CaseInsensitiveComparer__ctor_m1508720200(L_0, /*hidden argument*/NULL);
((CaseInsensitiveComparer_t3670035800_StaticFields*)il2cpp_codegen_static_fields_for(CaseInsensitiveComparer_t3670035800_il2cpp_TypeInfo_var))->set_defaultComparer_0(L_0);
CaseInsensitiveComparer_t3670035800 * L_1 = (CaseInsensitiveComparer_t3670035800 *)il2cpp_codegen_object_new(CaseInsensitiveComparer_t3670035800_il2cpp_TypeInfo_var);
CaseInsensitiveComparer__ctor_m2101975011(L_1, (bool)1, /*hidden argument*/NULL);
((CaseInsensitiveComparer_t3670035800_StaticFields*)il2cpp_codegen_static_fields_for(CaseInsensitiveComparer_t3670035800_il2cpp_TypeInfo_var))->set_defaultInvariantComparer_1(L_1);
return;
}
}
// System.Collections.CaseInsensitiveComparer System.Collections.CaseInsensitiveComparer::get_DefaultInvariant()
extern "C" CaseInsensitiveComparer_t3670035800 * CaseInsensitiveComparer_get_DefaultInvariant_m2155614047 (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (CaseInsensitiveComparer_get_DefaultInvariant_m2155614047_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(CaseInsensitiveComparer_t3670035800_il2cpp_TypeInfo_var);
CaseInsensitiveComparer_t3670035800 * L_0 = ((CaseInsensitiveComparer_t3670035800_StaticFields*)il2cpp_codegen_static_fields_for(CaseInsensitiveComparer_t3670035800_il2cpp_TypeInfo_var))->get_defaultInvariantComparer_1();
return L_0;
}
}
// System.Int32 System.Collections.CaseInsensitiveComparer::Compare(System.Object,System.Object)
extern "C" int32_t CaseInsensitiveComparer_Compare_m1224120810 (CaseInsensitiveComparer_t3670035800 * __this, RuntimeObject * ___a0, RuntimeObject * ___b1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (CaseInsensitiveComparer_Compare_m1224120810_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
String_t* V_1 = NULL;
{
RuntimeObject * L_0 = ___a0;
V_0 = ((String_t*)IsInstSealed((RuntimeObject*)L_0, String_t_il2cpp_TypeInfo_var));
RuntimeObject * L_1 = ___b1;
V_1 = ((String_t*)IsInstSealed((RuntimeObject*)L_1, String_t_il2cpp_TypeInfo_var));
String_t* L_2 = V_0;
if (!L_2)
{
goto IL_004c;
}
}
{
String_t* L_3 = V_1;
if (!L_3)
{
goto IL_004c;
}
}
{
CultureInfo_t4157843068 * L_4 = __this->get_culture_2();
if (!L_4)
{
goto IL_0039;
}
}
{
CultureInfo_t4157843068 * L_5 = __this->get_culture_2();
CompareInfo_t1092934962 * L_6 = VirtFuncInvoker0< CompareInfo_t1092934962 * >::Invoke(11 /* System.Globalization.CompareInfo System.Globalization.CultureInfo::get_CompareInfo() */, L_5);
String_t* L_7 = V_0;
String_t* L_8 = V_1;
int32_t L_9 = VirtFuncInvoker3< int32_t, String_t*, String_t*, int32_t >::Invoke(6 /* System.Int32 System.Globalization.CompareInfo::Compare(System.String,System.String,System.Globalization.CompareOptions) */, L_6, L_7, L_8, 1);
return L_9;
}
IL_0039:
{
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t4157843068_il2cpp_TypeInfo_var);
CultureInfo_t4157843068 * L_10 = CultureInfo_get_InvariantCulture_m3532445182(NULL /*static, unused*/, /*hidden argument*/NULL);
CompareInfo_t1092934962 * L_11 = VirtFuncInvoker0< CompareInfo_t1092934962 * >::Invoke(11 /* System.Globalization.CompareInfo System.Globalization.CultureInfo::get_CompareInfo() */, L_10);
String_t* L_12 = V_0;
String_t* L_13 = V_1;
int32_t L_14 = VirtFuncInvoker3< int32_t, String_t*, String_t*, int32_t >::Invoke(6 /* System.Int32 System.Globalization.CompareInfo::Compare(System.String,System.String,System.Globalization.CompareOptions) */, L_11, L_12, L_13, 1);
return L_14;
}
IL_004c:
{
IL2CPP_RUNTIME_CLASS_INIT(Comparer_t1912461351_il2cpp_TypeInfo_var);
Comparer_t1912461351 * L_15 = ((Comparer_t1912461351_StaticFields*)il2cpp_codegen_static_fields_for(Comparer_t1912461351_il2cpp_TypeInfo_var))->get_Default_0();
RuntimeObject * L_16 = ___a0;
RuntimeObject * L_17 = ___b1;
int32_t L_18 = Comparer_Compare_m3984347512(L_15, L_16, L_17, /*hidden argument*/NULL);
return L_18;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Collections.CaseInsensitiveHashCodeProvider::.ctor()
extern "C" void CaseInsensitiveHashCodeProvider__ctor_m1410573049 (CaseInsensitiveHashCodeProvider_t1962629119 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (CaseInsensitiveHashCodeProvider__ctor_m1410573049_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
CultureInfo_t4157843068 * V_0 = NULL;
{
Object__ctor_m297566312(__this, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t4157843068_il2cpp_TypeInfo_var);
CultureInfo_t4157843068 * L_0 = CultureInfo_get_CurrentCulture_m1632690660(NULL /*static, unused*/, /*hidden argument*/NULL);
V_0 = L_0;
CultureInfo_t4157843068 * L_1 = V_0;
CultureInfo_t4157843068 * L_2 = CultureInfo_get_InvariantCulture_m3532445182(NULL /*static, unused*/, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(CaseInsensitiveHashCodeProvider_t1962629119_il2cpp_TypeInfo_var);
bool L_3 = CaseInsensitiveHashCodeProvider_AreEqual_m1790260777(NULL /*static, unused*/, L_1, L_2, /*hidden argument*/NULL);
if (L_3)
{
goto IL_002c;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t4157843068_il2cpp_TypeInfo_var);
CultureInfo_t4157843068 * L_4 = CultureInfo_get_CurrentCulture_m1632690660(NULL /*static, unused*/, /*hidden argument*/NULL);
TextInfo_t3810425522 * L_5 = VirtFuncInvoker0< TextInfo_t3810425522 * >::Invoke(9 /* System.Globalization.TextInfo System.Globalization.CultureInfo::get_TextInfo() */, L_4);
__this->set_m_text_2(L_5);
}
IL_002c:
{
return;
}
}
// System.Void System.Collections.CaseInsensitiveHashCodeProvider::.ctor(System.Globalization.CultureInfo)
extern "C" void CaseInsensitiveHashCodeProvider__ctor_m3307631072 (CaseInsensitiveHashCodeProvider_t1962629119 * __this, CultureInfo_t4157843068 * ___culture0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (CaseInsensitiveHashCodeProvider__ctor_m3307631072_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Object__ctor_m297566312(__this, /*hidden argument*/NULL);
CultureInfo_t4157843068 * L_0 = ___culture0;
if (L_0)
{
goto IL_0017;
}
}
{
ArgumentNullException_t1615371798 * L_1 = (ArgumentNullException_t1615371798 *)il2cpp_codegen_object_new(ArgumentNullException_t1615371798_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m1170824041(L_1, _stringLiteral461586467, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1,CaseInsensitiveHashCodeProvider__ctor_m3307631072_RuntimeMethod_var);
}
IL_0017:
{
CultureInfo_t4157843068 * L_2 = ___culture0;
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t4157843068_il2cpp_TypeInfo_var);
CultureInfo_t4157843068 * L_3 = CultureInfo_get_InvariantCulture_m3532445182(NULL /*static, unused*/, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(CaseInsensitiveHashCodeProvider_t1962629119_il2cpp_TypeInfo_var);
bool L_4 = CaseInsensitiveHashCodeProvider_AreEqual_m1790260777(NULL /*static, unused*/, L_2, L_3, /*hidden argument*/NULL);
if (L_4)
{
goto IL_0033;
}
}
{
CultureInfo_t4157843068 * L_5 = ___culture0;
TextInfo_t3810425522 * L_6 = VirtFuncInvoker0< TextInfo_t3810425522 * >::Invoke(9 /* System.Globalization.TextInfo System.Globalization.CultureInfo::get_TextInfo() */, L_5);
__this->set_m_text_2(L_6);
}
IL_0033:
{
return;
}
}
// System.Void System.Collections.CaseInsensitiveHashCodeProvider::.cctor()
extern "C" void CaseInsensitiveHashCodeProvider__cctor_m3655208966 (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (CaseInsensitiveHashCodeProvider__cctor_m3655208966_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t4157843068_il2cpp_TypeInfo_var);
CultureInfo_t4157843068 * L_0 = CultureInfo_get_InvariantCulture_m3532445182(NULL /*static, unused*/, /*hidden argument*/NULL);
CaseInsensitiveHashCodeProvider_t1962629119 * L_1 = (CaseInsensitiveHashCodeProvider_t1962629119 *)il2cpp_codegen_object_new(CaseInsensitiveHashCodeProvider_t1962629119_il2cpp_TypeInfo_var);
CaseInsensitiveHashCodeProvider__ctor_m3307631072(L_1, L_0, /*hidden argument*/NULL);
((CaseInsensitiveHashCodeProvider_t1962629119_StaticFields*)il2cpp_codegen_static_fields_for(CaseInsensitiveHashCodeProvider_t1962629119_il2cpp_TypeInfo_var))->set_singletonInvariant_0(L_1);
RuntimeObject * L_2 = (RuntimeObject *)il2cpp_codegen_object_new(RuntimeObject_il2cpp_TypeInfo_var);
Object__ctor_m297566312(L_2, /*hidden argument*/NULL);
((CaseInsensitiveHashCodeProvider_t1962629119_StaticFields*)il2cpp_codegen_static_fields_for(CaseInsensitiveHashCodeProvider_t1962629119_il2cpp_TypeInfo_var))->set_sync_1(L_2);
return;
}
}
// System.Boolean System.Collections.CaseInsensitiveHashCodeProvider::AreEqual(System.Globalization.CultureInfo,System.Globalization.CultureInfo)
extern "C" bool CaseInsensitiveHashCodeProvider_AreEqual_m1790260777 (RuntimeObject * __this /* static, unused */, CultureInfo_t4157843068 * ___a0, CultureInfo_t4157843068 * ___b1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (CaseInsensitiveHashCodeProvider_AreEqual_m1790260777_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
CultureInfo_t4157843068 * L_0 = ___a0;
String_t* L_1 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Globalization.CultureInfo::get_Name() */, L_0);
CultureInfo_t4157843068 * L_2 = ___b1;
String_t* L_3 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Globalization.CultureInfo::get_Name() */, L_2);
IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
bool L_4 = String_op_Equality_m920492651(NULL /*static, unused*/, L_1, L_3, /*hidden argument*/NULL);
return L_4;
}
}
// System.Boolean System.Collections.CaseInsensitiveHashCodeProvider::AreEqual(System.Globalization.TextInfo,System.Globalization.CultureInfo)
extern "C" bool CaseInsensitiveHashCodeProvider_AreEqual_m3534448780 (RuntimeObject * __this /* static, unused */, TextInfo_t3810425522 * ___info0, CultureInfo_t4157843068 * ___culture1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (CaseInsensitiveHashCodeProvider_AreEqual_m3534448780_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
TextInfo_t3810425522 * L_0 = ___info0;
String_t* L_1 = TextInfo_get_CultureName_m3892243949(L_0, /*hidden argument*/NULL);
CultureInfo_t4157843068 * L_2 = ___culture1;
String_t* L_3 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Globalization.CultureInfo::get_Name() */, L_2);
IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
bool L_4 = String_op_Equality_m920492651(NULL /*static, unused*/, L_1, L_3, /*hidden argument*/NULL);
return L_4;
}
}
// System.Collections.CaseInsensitiveHashCodeProvider System.Collections.CaseInsensitiveHashCodeProvider::get_DefaultInvariant()
extern "C" CaseInsensitiveHashCodeProvider_t1962629119 * CaseInsensitiveHashCodeProvider_get_DefaultInvariant_m4264275163 (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (CaseInsensitiveHashCodeProvider_get_DefaultInvariant_m4264275163_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(CaseInsensitiveHashCodeProvider_t1962629119_il2cpp_TypeInfo_var);
CaseInsensitiveHashCodeProvider_t1962629119 * L_0 = ((CaseInsensitiveHashCodeProvider_t1962629119_StaticFields*)il2cpp_codegen_static_fields_for(CaseInsensitiveHashCodeProvider_t1962629119_il2cpp_TypeInfo_var))->get_singletonInvariant_0();
return L_0;
}
}
// System.Int32 System.Collections.CaseInsensitiveHashCodeProvider::GetHashCode(System.Object)
extern "C" int32_t CaseInsensitiveHashCodeProvider_GetHashCode_m2168170016 (CaseInsensitiveHashCodeProvider_t1962629119 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (CaseInsensitiveHashCodeProvider_GetHashCode_m2168170016_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
int32_t V_1 = 0;
Il2CppChar V_2 = 0x0;
int32_t V_3 = 0;
int32_t V_4 = 0;
{
RuntimeObject * L_0 = ___obj0;
if (L_0)
{
goto IL_0011;
}
}
{
ArgumentNullException_t1615371798 * L_1 = (ArgumentNullException_t1615371798 *)il2cpp_codegen_object_new(ArgumentNullException_t1615371798_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m1170824041(L_1, _stringLiteral1746845353, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1,CaseInsensitiveHashCodeProvider_GetHashCode_m2168170016_RuntimeMethod_var);
}
IL_0011:
{
RuntimeObject * L_2 = ___obj0;
V_0 = ((String_t*)IsInstSealed((RuntimeObject*)L_2, String_t_il2cpp_TypeInfo_var));
String_t* L_3 = V_0;
if (L_3)
{
goto IL_0025;
}
}
{
RuntimeObject * L_4 = ___obj0;
int32_t L_5 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, L_4);
return L_5;
}
IL_0025:
{
V_1 = 0;
TextInfo_t3810425522 * L_6 = __this->get_m_text_2();
if (!L_6)
{
goto IL_007f;
}
}
{
TextInfo_t3810425522 * L_7 = __this->get_m_text_2();
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t4157843068_il2cpp_TypeInfo_var);
CultureInfo_t4157843068 * L_8 = CultureInfo_get_InvariantCulture_m3532445182(NULL /*static, unused*/, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(CaseInsensitiveHashCodeProvider_t1962629119_il2cpp_TypeInfo_var);
bool L_9 = CaseInsensitiveHashCodeProvider_AreEqual_m3534448780(NULL /*static, unused*/, L_7, L_8, /*hidden argument*/NULL);
if (L_9)
{
goto IL_007f;
}
}
{
TextInfo_t3810425522 * L_10 = __this->get_m_text_2();
String_t* L_11 = V_0;
String_t* L_12 = VirtFuncInvoker1< String_t*, String_t* >::Invoke(9 /* System.String System.Globalization.TextInfo::ToLower(System.String) */, L_10, L_11);
V_0 = L_12;
V_3 = 0;
goto IL_006e;
}
IL_005b:
{
String_t* L_13 = V_0;
int32_t L_14 = V_3;
Il2CppChar L_15 = String_get_Chars_m2986988803(L_13, L_14, /*hidden argument*/NULL);
V_2 = L_15;
int32_t L_16 = V_1;
Il2CppChar L_17 = V_2;
V_1 = ((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)L_16, (int32_t)((int32_t)31))), (int32_t)L_17));
int32_t L_18 = V_3;
V_3 = ((int32_t)il2cpp_codegen_add((int32_t)L_18, (int32_t)1));
}
IL_006e:
{
int32_t L_19 = V_3;
String_t* L_20 = V_0;
int32_t L_21 = String_get_Length_m3847582255(L_20, /*hidden argument*/NULL);
if ((((int32_t)L_19) < ((int32_t)L_21)))
{
goto IL_005b;
}
}
{
goto IL_00b4;
}
IL_007f:
{
V_4 = 0;
goto IL_00a7;
}
IL_0087:
{
String_t* L_22 = V_0;
int32_t L_23 = V_4;
Il2CppChar L_24 = String_get_Chars_m2986988803(L_22, L_23, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t4157843068_il2cpp_TypeInfo_var);
CultureInfo_t4157843068 * L_25 = CultureInfo_get_InvariantCulture_m3532445182(NULL /*static, unused*/, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Char_t3634460470_il2cpp_TypeInfo_var);
Il2CppChar L_26 = Char_ToLower_m3999837485(NULL /*static, unused*/, L_24, L_25, /*hidden argument*/NULL);
V_2 = L_26;
int32_t L_27 = V_1;
Il2CppChar L_28 = V_2;
V_1 = ((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)L_27, (int32_t)((int32_t)31))), (int32_t)L_28));
int32_t L_29 = V_4;
V_4 = ((int32_t)il2cpp_codegen_add((int32_t)L_29, (int32_t)1));
}
IL_00a7:
{
int32_t L_30 = V_4;
String_t* L_31 = V_0;
int32_t L_32 = String_get_Length_m3847582255(L_31, /*hidden argument*/NULL);
if ((((int32_t)L_30) < ((int32_t)L_32)))
{
goto IL_0087;
}
}
IL_00b4:
{
int32_t L_33 = V_1;
return L_33;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Collections.CollectionBase::.ctor()
extern "C" void CollectionBase__ctor_m3343513710 (CollectionBase_t2727926298 * __this, const RuntimeMethod* method)
{
{
Object__ctor_m297566312(__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Collections.CollectionBase::System.Collections.ICollection.CopyTo(System.Array,System.Int32)
extern "C" void CollectionBase_System_Collections_ICollection_CopyTo_m2850099809 (CollectionBase_t2727926298 * __this, RuntimeArray * ___array0, int32_t ___index1, const RuntimeMethod* method)
{
{
ArrayList_t2718874744 * L_0 = CollectionBase_get_InnerList_m132195395(__this, /*hidden argument*/NULL);
RuntimeArray * L_1 = ___array0;
int32_t L_2 = ___index1;
VirtActionInvoker2< RuntimeArray *, int32_t >::Invoke(41 /* System.Void System.Collections.ArrayList::CopyTo(System.Array,System.Int32) */, L_0, L_1, L_2);
return;
}
}
// System.Object System.Collections.CollectionBase::System.Collections.ICollection.get_SyncRoot()
extern "C" RuntimeObject * CollectionBase_System_Collections_ICollection_get_SyncRoot_m1463722401 (CollectionBase_t2727926298 * __this, const RuntimeMethod* method)
{
{
ArrayList_t2718874744 * L_0 = CollectionBase_get_InnerList_m132195395(__this, /*hidden argument*/NULL);
RuntimeObject * L_1 = VirtFuncInvoker0< RuntimeObject * >::Invoke(29 /* System.Object System.Collections.ArrayList::get_SyncRoot() */, L_0);
return L_1;
}
}
// System.Boolean System.Collections.CollectionBase::System.Collections.ICollection.get_IsSynchronized()
extern "C" bool CollectionBase_System_Collections_ICollection_get_IsSynchronized_m2651768897 (CollectionBase_t2727926298 * __this, const RuntimeMethod* method)
{
{
ArrayList_t2718874744 * L_0 = CollectionBase_get_InnerList_m132195395(__this, /*hidden argument*/NULL);
bool L_1 = VirtFuncInvoker0< bool >::Invoke(28 /* System.Boolean System.Collections.ArrayList::get_IsSynchronized() */, L_0);
return L_1;
}
}
// System.Int32 System.Collections.CollectionBase::System.Collections.IList.Add(System.Object)
extern "C" int32_t CollectionBase_System_Collections_IList_Add_m3784093852 (CollectionBase_t2727926298 * __this, RuntimeObject * ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (CollectionBase_System_Collections_IList_Add_m3784093852_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = 0;
NO_UNUSED_WARNING (__leave_target);
{
RuntimeObject * L_0 = ___value0;
VirtActionInvoker1< RuntimeObject * >::Invoke(28 /* System.Void System.Collections.CollectionBase::OnValidate(System.Object) */, __this, L_0);
ArrayList_t2718874744 * L_1 = CollectionBase_get_InnerList_m132195395(__this, /*hidden argument*/NULL);
int32_t L_2 = VirtFuncInvoker0< int32_t >::Invoke(23 /* System.Int32 System.Collections.ArrayList::get_Count() */, L_1);
V_0 = L_2;
int32_t L_3 = V_0;
RuntimeObject * L_4 = ___value0;
VirtActionInvoker2< int32_t, RuntimeObject * >::Invoke(22 /* System.Void System.Collections.CollectionBase::OnInsert(System.Int32,System.Object) */, __this, L_3, L_4);
ArrayList_t2718874744 * L_5 = CollectionBase_get_InnerList_m132195395(__this, /*hidden argument*/NULL);
RuntimeObject * L_6 = ___value0;
VirtFuncInvoker1< int32_t, RuntimeObject * >::Invoke(30 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_5, L_6);
}
IL_0028:
try
{ // begin try (depth: 1)
int32_t L_7 = V_0;
RuntimeObject * L_8 = ___value0;
VirtActionInvoker2< int32_t, RuntimeObject * >::Invoke(23 /* System.Void System.Collections.CollectionBase::OnInsertComplete(System.Int32,System.Object) */, __this, L_7, L_8);
goto IL_0049;
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__exception_local = (Exception_t *)e.ex;
if(il2cpp_codegen_class_is_assignable_from (RuntimeObject_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex)))
goto CATCH_0035;
throw e;
}
CATCH_0035:
{ // begin catch(System.Object)
{
ArrayList_t2718874744 * L_9 = CollectionBase_get_InnerList_m132195395(__this, /*hidden argument*/NULL);
int32_t L_10 = V_0;
VirtActionInvoker1< int32_t >::Invoke(39 /* System.Void System.Collections.ArrayList::RemoveAt(System.Int32) */, L_9, L_10);
IL2CPP_RAISE_MANAGED_EXCEPTION(__exception_local,NULL);
}
IL_0044:
{
goto IL_0049;
}
} // end catch (depth: 1)
IL_0049:
{
int32_t L_11 = V_0;
return L_11;
}
}
// System.Boolean System.Collections.CollectionBase::System.Collections.IList.Contains(System.Object)
extern "C" bool CollectionBase_System_Collections_IList_Contains_m2994901969 (CollectionBase_t2727926298 * __this, RuntimeObject * ___value0, const RuntimeMethod* method)
{
{
ArrayList_t2718874744 * L_0 = CollectionBase_get_InnerList_m132195395(__this, /*hidden argument*/NULL);
RuntimeObject * L_1 = ___value0;
bool L_2 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(32 /* System.Boolean System.Collections.ArrayList::Contains(System.Object) */, L_0, L_1);
return L_2;
}
}
// System.Int32 System.Collections.CollectionBase::System.Collections.IList.IndexOf(System.Object)
extern "C" int32_t CollectionBase_System_Collections_IList_IndexOf_m3655834224 (CollectionBase_t2727926298 * __this, RuntimeObject * ___value0, const RuntimeMethod* method)
{
{
ArrayList_t2718874744 * L_0 = CollectionBase_get_InnerList_m132195395(__this, /*hidden argument*/NULL);
RuntimeObject * L_1 = ___value0;
int32_t L_2 = VirtFuncInvoker1< int32_t, RuntimeObject * >::Invoke(33 /* System.Int32 System.Collections.ArrayList::IndexOf(System.Object) */, L_0, L_1);
return L_2;
}
}
// System.Void System.Collections.CollectionBase::System.Collections.IList.Insert(System.Int32,System.Object)
extern "C" void CollectionBase_System_Collections_IList_Insert_m1955629979 (CollectionBase_t2727926298 * __this, int32_t ___index0, RuntimeObject * ___value1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (CollectionBase_System_Collections_IList_Insert_m1955629979_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = 0;
NO_UNUSED_WARNING (__leave_target);
{
RuntimeObject * L_0 = ___value1;
VirtActionInvoker1< RuntimeObject * >::Invoke(28 /* System.Void System.Collections.CollectionBase::OnValidate(System.Object) */, __this, L_0);
int32_t L_1 = ___index0;
RuntimeObject * L_2 = ___value1;
VirtActionInvoker2< int32_t, RuntimeObject * >::Invoke(22 /* System.Void System.Collections.CollectionBase::OnInsert(System.Int32,System.Object) */, __this, L_1, L_2);
ArrayList_t2718874744 * L_3 = CollectionBase_get_InnerList_m132195395(__this, /*hidden argument*/NULL);
int32_t L_4 = ___index0;
RuntimeObject * L_5 = ___value1;
VirtActionInvoker2< int32_t, RuntimeObject * >::Invoke(36 /* System.Void System.Collections.ArrayList::Insert(System.Int32,System.Object) */, L_3, L_4, L_5);
}
IL_001c:
try
{ // begin try (depth: 1)
int32_t L_6 = ___index0;
RuntimeObject * L_7 = ___value1;
VirtActionInvoker2< int32_t, RuntimeObject * >::Invoke(23 /* System.Void System.Collections.CollectionBase::OnInsertComplete(System.Int32,System.Object) */, __this, L_6, L_7);
goto IL_003d;
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__exception_local = (Exception_t *)e.ex;
if(il2cpp_codegen_class_is_assignable_from (RuntimeObject_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex)))
goto CATCH_0029;
throw e;
}
CATCH_0029:
{ // begin catch(System.Object)
{
ArrayList_t2718874744 * L_8 = CollectionBase_get_InnerList_m132195395(__this, /*hidden argument*/NULL);
int32_t L_9 = ___index0;
VirtActionInvoker1< int32_t >::Invoke(39 /* System.Void System.Collections.ArrayList::RemoveAt(System.Int32) */, L_8, L_9);
IL2CPP_RAISE_MANAGED_EXCEPTION(__exception_local,NULL);
}
IL_0038:
{
goto IL_003d;
}
} // end catch (depth: 1)
IL_003d:
{
return;
}
}
// System.Void System.Collections.CollectionBase::System.Collections.IList.Remove(System.Object)
extern "C" void CollectionBase_System_Collections_IList_Remove_m1918979845 (CollectionBase_t2727926298 * __this, RuntimeObject * ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (CollectionBase_System_Collections_IList_Remove_m1918979845_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
{
RuntimeObject * L_0 = ___value0;
VirtActionInvoker1< RuntimeObject * >::Invoke(28 /* System.Void System.Collections.CollectionBase::OnValidate(System.Object) */, __this, L_0);
ArrayList_t2718874744 * L_1 = CollectionBase_get_InnerList_m132195395(__this, /*hidden argument*/NULL);
RuntimeObject * L_2 = ___value0;
int32_t L_3 = VirtFuncInvoker1< int32_t, RuntimeObject * >::Invoke(33 /* System.Int32 System.Collections.ArrayList::IndexOf(System.Object) */, L_1, L_2);
V_0 = L_3;
int32_t L_4 = V_0;
if ((!(((uint32_t)L_4) == ((uint32_t)(-1)))))
{
goto IL_002b;
}
}
{
ArgumentException_t132251570 * L_5 = (ArgumentException_t132251570 *)il2cpp_codegen_object_new(ArgumentException_t132251570_il2cpp_TypeInfo_var);
ArgumentException__ctor_m1216717135(L_5, _stringLiteral3301559111, _stringLiteral3493618073, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5,CollectionBase_System_Collections_IList_Remove_m1918979845_RuntimeMethod_var);
}
IL_002b:
{
int32_t L_6 = V_0;
RuntimeObject * L_7 = ___value0;
VirtActionInvoker2< int32_t, RuntimeObject * >::Invoke(24 /* System.Void System.Collections.CollectionBase::OnRemove(System.Int32,System.Object) */, __this, L_6, L_7);
ArrayList_t2718874744 * L_8 = CollectionBase_get_InnerList_m132195395(__this, /*hidden argument*/NULL);
RuntimeObject * L_9 = ___value0;
VirtActionInvoker1< RuntimeObject * >::Invoke(38 /* System.Void System.Collections.ArrayList::Remove(System.Object) */, L_8, L_9);
int32_t L_10 = V_0;
RuntimeObject * L_11 = ___value0;
VirtActionInvoker2< int32_t, RuntimeObject * >::Invoke(25 /* System.Void System.Collections.CollectionBase::OnRemoveComplete(System.Int32,System.Object) */, __this, L_10, L_11);
return;
}
}
// System.Boolean System.Collections.CollectionBase::System.Collections.IList.get_IsFixedSize()
extern "C" bool CollectionBase_System_Collections_IList_get_IsFixedSize_m2981675170 (CollectionBase_t2727926298 * __this, const RuntimeMethod* method)
{
{
ArrayList_t2718874744 * L_0 = CollectionBase_get_InnerList_m132195395(__this, /*hidden argument*/NULL);
bool L_1 = VirtFuncInvoker0< bool >::Invoke(26 /* System.Boolean System.Collections.ArrayList::get_IsFixedSize() */, L_0);
return L_1;
}
}
// System.Boolean System.Collections.CollectionBase::System.Collections.IList.get_IsReadOnly()
extern "C" bool CollectionBase_System_Collections_IList_get_IsReadOnly_m985561378 (CollectionBase_t2727926298 * __this, const RuntimeMethod* method)
{
{
ArrayList_t2718874744 * L_0 = CollectionBase_get_InnerList_m132195395(__this, /*hidden argument*/NULL);
bool L_1 = VirtFuncInvoker0< bool >::Invoke(27 /* System.Boolean System.Collections.ArrayList::get_IsReadOnly() */, L_0);
return L_1;
}
}
// System.Object System.Collections.CollectionBase::System.Collections.IList.get_Item(System.Int32)
extern "C" RuntimeObject * CollectionBase_System_Collections_IList_get_Item_m3743372945 (CollectionBase_t2727926298 * __this, int32_t ___index0, const RuntimeMethod* method)
{
{
ArrayList_t2718874744 * L_0 = CollectionBase_get_InnerList_m132195395(__this, /*hidden argument*/NULL);
int32_t L_1 = ___index0;
RuntimeObject * L_2 = VirtFuncInvoker1< RuntimeObject *, int32_t >::Invoke(21 /* System.Object System.Collections.ArrayList::get_Item(System.Int32) */, L_0, L_1);
return L_2;
}
}
// System.Void System.Collections.CollectionBase::System.Collections.IList.set_Item(System.Int32,System.Object)
extern "C" void CollectionBase_System_Collections_IList_set_Item_m1592328081 (CollectionBase_t2727926298 * __this, int32_t ___index0, RuntimeObject * ___value1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (CollectionBase_System_Collections_IList_set_Item_m1592328081_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RuntimeObject * V_0 = NULL;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = 0;
NO_UNUSED_WARNING (__leave_target);
{
int32_t L_0 = ___index0;
if ((((int32_t)L_0) < ((int32_t)0)))
{
goto IL_0018;
}
}
{
int32_t L_1 = ___index0;
ArrayList_t2718874744 * L_2 = CollectionBase_get_InnerList_m132195395(__this, /*hidden argument*/NULL);
int32_t L_3 = VirtFuncInvoker0< int32_t >::Invoke(23 /* System.Int32 System.Collections.ArrayList::get_Count() */, L_2);
if ((((int32_t)L_1) < ((int32_t)L_3)))
{
goto IL_0023;
}
}
IL_0018:
{
ArgumentOutOfRangeException_t777629997 * L_4 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_4, _stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_4,CollectionBase_System_Collections_IList_set_Item_m1592328081_RuntimeMethod_var);
}
IL_0023:
{
RuntimeObject * L_5 = ___value1;
VirtActionInvoker1< RuntimeObject * >::Invoke(28 /* System.Void System.Collections.CollectionBase::OnValidate(System.Object) */, __this, L_5);
ArrayList_t2718874744 * L_6 = CollectionBase_get_InnerList_m132195395(__this, /*hidden argument*/NULL);
int32_t L_7 = ___index0;
RuntimeObject * L_8 = VirtFuncInvoker1< RuntimeObject *, int32_t >::Invoke(21 /* System.Object System.Collections.ArrayList::get_Item(System.Int32) */, L_6, L_7);
V_0 = L_8;
int32_t L_9 = ___index0;
RuntimeObject * L_10 = V_0;
RuntimeObject * L_11 = ___value1;
VirtActionInvoker3< int32_t, RuntimeObject *, RuntimeObject * >::Invoke(26 /* System.Void System.Collections.CollectionBase::OnSet(System.Int32,System.Object,System.Object) */, __this, L_9, L_10, L_11);
ArrayList_t2718874744 * L_12 = CollectionBase_get_InnerList_m132195395(__this, /*hidden argument*/NULL);
int32_t L_13 = ___index0;
RuntimeObject * L_14 = ___value1;
VirtActionInvoker2< int32_t, RuntimeObject * >::Invoke(22 /* System.Void System.Collections.ArrayList::set_Item(System.Int32,System.Object) */, L_12, L_13, L_14);
}
IL_004d:
try
{ // begin try (depth: 1)
int32_t L_15 = ___index0;
RuntimeObject * L_16 = V_0;
RuntimeObject * L_17 = ___value1;
VirtActionInvoker3< int32_t, RuntimeObject *, RuntimeObject * >::Invoke(27 /* System.Void System.Collections.CollectionBase::OnSetComplete(System.Int32,System.Object,System.Object) */, __this, L_15, L_16, L_17);
goto IL_0070;
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__exception_local = (Exception_t *)e.ex;
if(il2cpp_codegen_class_is_assignable_from (RuntimeObject_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex)))
goto CATCH_005b;
throw e;
}
CATCH_005b:
{ // begin catch(System.Object)
{
ArrayList_t2718874744 * L_18 = CollectionBase_get_InnerList_m132195395(__this, /*hidden argument*/NULL);
int32_t L_19 = ___index0;
RuntimeObject * L_20 = V_0;
VirtActionInvoker2< int32_t, RuntimeObject * >::Invoke(22 /* System.Void System.Collections.ArrayList::set_Item(System.Int32,System.Object) */, L_18, L_19, L_20);
IL2CPP_RAISE_MANAGED_EXCEPTION(__exception_local,NULL);
}
IL_006b:
{
goto IL_0070;
}
} // end catch (depth: 1)
IL_0070:
{
return;
}
}
// System.Int32 System.Collections.CollectionBase::get_Count()
extern "C" int32_t CollectionBase_get_Count_m1708965601 (CollectionBase_t2727926298 * __this, const RuntimeMethod* method)
{
{
ArrayList_t2718874744 * L_0 = CollectionBase_get_InnerList_m132195395(__this, /*hidden argument*/NULL);
int32_t L_1 = VirtFuncInvoker0< int32_t >::Invoke(23 /* System.Int32 System.Collections.ArrayList::get_Count() */, L_0);
return L_1;
}
}
// System.Collections.IEnumerator System.Collections.CollectionBase::GetEnumerator()
extern "C" RuntimeObject* CollectionBase_GetEnumerator_m654829872 (CollectionBase_t2727926298 * __this, const RuntimeMethod* method)
{
{
ArrayList_t2718874744 * L_0 = CollectionBase_get_InnerList_m132195395(__this, /*hidden argument*/NULL);
RuntimeObject* L_1 = VirtFuncInvoker0< RuntimeObject* >::Invoke(43 /* System.Collections.IEnumerator System.Collections.ArrayList::GetEnumerator() */, L_0);
return L_1;
}
}
// System.Void System.Collections.CollectionBase::Clear()
extern "C" void CollectionBase_Clear_m1509125218 (CollectionBase_t2727926298 * __this, const RuntimeMethod* method)
{
{
VirtActionInvoker0::Invoke(20 /* System.Void System.Collections.CollectionBase::OnClear() */, __this);
ArrayList_t2718874744 * L_0 = CollectionBase_get_InnerList_m132195395(__this, /*hidden argument*/NULL);
VirtActionInvoker0::Invoke(31 /* System.Void System.Collections.ArrayList::Clear() */, L_0);
VirtActionInvoker0::Invoke(21 /* System.Void System.Collections.CollectionBase::OnClearComplete() */, __this);
return;
}
}
// System.Void System.Collections.CollectionBase::RemoveAt(System.Int32)
extern "C" void CollectionBase_RemoveAt_m3336462814 (CollectionBase_t2727926298 * __this, int32_t ___index0, const RuntimeMethod* method)
{
RuntimeObject * V_0 = NULL;
{
ArrayList_t2718874744 * L_0 = CollectionBase_get_InnerList_m132195395(__this, /*hidden argument*/NULL);
int32_t L_1 = ___index0;
RuntimeObject * L_2 = VirtFuncInvoker1< RuntimeObject *, int32_t >::Invoke(21 /* System.Object System.Collections.ArrayList::get_Item(System.Int32) */, L_0, L_1);
V_0 = L_2;
RuntimeObject * L_3 = V_0;
VirtActionInvoker1< RuntimeObject * >::Invoke(28 /* System.Void System.Collections.CollectionBase::OnValidate(System.Object) */, __this, L_3);
int32_t L_4 = ___index0;
RuntimeObject * L_5 = V_0;
VirtActionInvoker2< int32_t, RuntimeObject * >::Invoke(24 /* System.Void System.Collections.CollectionBase::OnRemove(System.Int32,System.Object) */, __this, L_4, L_5);
ArrayList_t2718874744 * L_6 = CollectionBase_get_InnerList_m132195395(__this, /*hidden argument*/NULL);
int32_t L_7 = ___index0;
VirtActionInvoker1< int32_t >::Invoke(39 /* System.Void System.Collections.ArrayList::RemoveAt(System.Int32) */, L_6, L_7);
int32_t L_8 = ___index0;
RuntimeObject * L_9 = V_0;
VirtActionInvoker2< int32_t, RuntimeObject * >::Invoke(25 /* System.Void System.Collections.CollectionBase::OnRemoveComplete(System.Int32,System.Object) */, __this, L_8, L_9);
return;
}
}
// System.Collections.ArrayList System.Collections.CollectionBase::get_InnerList()
extern "C" ArrayList_t2718874744 * CollectionBase_get_InnerList_m132195395 (CollectionBase_t2727926298 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (CollectionBase_get_InnerList_m132195395_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
ArrayList_t2718874744 * L_0 = __this->get_list_0();
if (L_0)
{
goto IL_0016;
}
}
{
ArrayList_t2718874744 * L_1 = (ArrayList_t2718874744 *)il2cpp_codegen_object_new(ArrayList_t2718874744_il2cpp_TypeInfo_var);
ArrayList__ctor_m4254721275(L_1, /*hidden argument*/NULL);
__this->set_list_0(L_1);
}
IL_0016:
{
ArrayList_t2718874744 * L_2 = __this->get_list_0();
return L_2;
}
}
// System.Collections.IList System.Collections.CollectionBase::get_List()
extern "C" RuntimeObject* CollectionBase_get_List_m490744407 (CollectionBase_t2727926298 * __this, const RuntimeMethod* method)
{
{
return __this;
}
}
// System.Void System.Collections.CollectionBase::OnClear()
extern "C" void CollectionBase_OnClear_m883003723 (CollectionBase_t2727926298 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Collections.CollectionBase::OnClearComplete()
extern "C" void CollectionBase_OnClearComplete_m4210220284 (CollectionBase_t2727926298 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Collections.CollectionBase::OnInsert(System.Int32,System.Object)
extern "C" void CollectionBase_OnInsert_m120287429 (CollectionBase_t2727926298 * __this, int32_t ___index0, RuntimeObject * ___value1, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Collections.CollectionBase::OnInsertComplete(System.Int32,System.Object)
extern "C" void CollectionBase_OnInsertComplete_m1538306973 (CollectionBase_t2727926298 * __this, int32_t ___index0, RuntimeObject * ___value1, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Collections.CollectionBase::OnRemove(System.Int32,System.Object)
extern "C" void CollectionBase_OnRemove_m3955998913 (CollectionBase_t2727926298 * __this, int32_t ___index0, RuntimeObject * ___value1, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Collections.CollectionBase::OnRemoveComplete(System.Int32,System.Object)
extern "C" void CollectionBase_OnRemoveComplete_m1811247246 (CollectionBase_t2727926298 * __this, int32_t ___index0, RuntimeObject * ___value1, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Collections.CollectionBase::OnSet(System.Int32,System.Object,System.Object)
extern "C" void CollectionBase_OnSet_m598471137 (CollectionBase_t2727926298 * __this, int32_t ___index0, RuntimeObject * ___oldValue1, RuntimeObject * ___newValue2, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Collections.CollectionBase::OnSetComplete(System.Int32,System.Object,System.Object)
extern "C" void CollectionBase_OnSetComplete_m2395939597 (CollectionBase_t2727926298 * __this, int32_t ___index0, RuntimeObject * ___oldValue1, RuntimeObject * ___newValue2, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Collections.CollectionBase::OnValidate(System.Object)
extern "C" void CollectionBase_OnValidate_m1606907366 (CollectionBase_t2727926298 * __this, RuntimeObject * ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (CollectionBase_OnValidate_m1606907366_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject * L_0 = ___value0;
if (L_0)
{
goto IL_0011;
}
}
{
ArgumentNullException_t1615371798 * L_1 = (ArgumentNullException_t1615371798 *)il2cpp_codegen_object_new(ArgumentNullException_t1615371798_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m1170824041(L_1, _stringLiteral3439493095, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1,CollectionBase_OnValidate_m1606907366_RuntimeMethod_var);
}
IL_0011:
{
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Collections.Comparer::.ctor()
extern "C" void Comparer__ctor_m2831654082 (Comparer_t1912461351 * __this, const RuntimeMethod* method)
{
{
Object__ctor_m297566312(__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Collections.Comparer::.ctor(System.Globalization.CultureInfo)
extern "C" void Comparer__ctor_m2580215220 (Comparer_t1912461351 * __this, CultureInfo_t4157843068 * ___culture0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Comparer__ctor_m2580215220_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Object__ctor_m297566312(__this, /*hidden argument*/NULL);
CultureInfo_t4157843068 * L_0 = ___culture0;
if (L_0)
{
goto IL_0017;
}
}
{
ArgumentNullException_t1615371798 * L_1 = (ArgumentNullException_t1615371798 *)il2cpp_codegen_object_new(ArgumentNullException_t1615371798_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m1170824041(L_1, _stringLiteral461586467, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1,Comparer__ctor_m2580215220_RuntimeMethod_var);
}
IL_0017:
{
CultureInfo_t4157843068 * L_2 = ___culture0;
CompareInfo_t1092934962 * L_3 = VirtFuncInvoker0< CompareInfo_t1092934962 * >::Invoke(11 /* System.Globalization.CompareInfo System.Globalization.CultureInfo::get_CompareInfo() */, L_2);
__this->set_m_compareInfo_2(L_3);
return;
}
}
// System.Void System.Collections.Comparer::.cctor()
extern "C" void Comparer__cctor_m3311686689 (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Comparer__cctor_m3311686689_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Comparer_t1912461351 * L_0 = (Comparer_t1912461351 *)il2cpp_codegen_object_new(Comparer_t1912461351_il2cpp_TypeInfo_var);
Comparer__ctor_m2831654082(L_0, /*hidden argument*/NULL);
((Comparer_t1912461351_StaticFields*)il2cpp_codegen_static_fields_for(Comparer_t1912461351_il2cpp_TypeInfo_var))->set_Default_0(L_0);
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t4157843068_il2cpp_TypeInfo_var);
CultureInfo_t4157843068 * L_1 = CultureInfo_get_InvariantCulture_m3532445182(NULL /*static, unused*/, /*hidden argument*/NULL);
Comparer_t1912461351 * L_2 = (Comparer_t1912461351 *)il2cpp_codegen_object_new(Comparer_t1912461351_il2cpp_TypeInfo_var);
Comparer__ctor_m2580215220(L_2, L_1, /*hidden argument*/NULL);
((Comparer_t1912461351_StaticFields*)il2cpp_codegen_static_fields_for(Comparer_t1912461351_il2cpp_TypeInfo_var))->set_DefaultInvariant_1(L_2);
return;
}
}
// System.Int32 System.Collections.Comparer::Compare(System.Object,System.Object)
extern "C" int32_t Comparer_Compare_m3984347512 (Comparer_t1912461351 * __this, RuntimeObject * ___a0, RuntimeObject * ___b1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Comparer_Compare_m3984347512_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
String_t* V_1 = NULL;
{
RuntimeObject * L_0 = ___a0;
RuntimeObject * L_1 = ___b1;
if ((!(((RuntimeObject*)(RuntimeObject *)L_0) == ((RuntimeObject*)(RuntimeObject *)L_1))))
{
goto IL_0009;
}
}
{
return 0;
}
IL_0009:
{
RuntimeObject * L_2 = ___a0;
if (L_2)
{
goto IL_0011;
}
}
{
return (-1);
}
IL_0011:
{
RuntimeObject * L_3 = ___b1;
if (L_3)
{
goto IL_0019;
}
}
{
return 1;
}
IL_0019:
{
CompareInfo_t1092934962 * L_4 = __this->get_m_compareInfo_2();
if (!L_4)
{
goto IL_004c;
}
}
{
RuntimeObject * L_5 = ___a0;
V_0 = ((String_t*)IsInstSealed((RuntimeObject*)L_5, String_t_il2cpp_TypeInfo_var));
RuntimeObject * L_6 = ___b1;
V_1 = ((String_t*)IsInstSealed((RuntimeObject*)L_6, String_t_il2cpp_TypeInfo_var));
String_t* L_7 = V_0;
if (!L_7)
{
goto IL_004c;
}
}
{
String_t* L_8 = V_1;
if (!L_8)
{
goto IL_004c;
}
}
{
CompareInfo_t1092934962 * L_9 = __this->get_m_compareInfo_2();
String_t* L_10 = V_0;
String_t* L_11 = V_1;
int32_t L_12 = VirtFuncInvoker2< int32_t, String_t*, String_t* >::Invoke(5 /* System.Int32 System.Globalization.CompareInfo::Compare(System.String,System.String) */, L_9, L_10, L_11);
return L_12;
}
IL_004c:
{
RuntimeObject * L_13 = ___a0;
if (!((RuntimeObject*)IsInst((RuntimeObject*)L_13, IComparable_t36111218_il2cpp_TypeInfo_var)))
{
goto IL_0064;
}
}
{
RuntimeObject * L_14 = ___a0;
RuntimeObject * L_15 = ___b1;
int32_t L_16 = InterfaceFuncInvoker1< int32_t, RuntimeObject * >::Invoke(0 /* System.Int32 System.IComparable::CompareTo(System.Object) */, IComparable_t36111218_il2cpp_TypeInfo_var, ((RuntimeObject*)IsInst((RuntimeObject*)L_14, IComparable_t36111218_il2cpp_TypeInfo_var)), L_15);
return L_16;
}
IL_0064:
{
RuntimeObject * L_17 = ___b1;
if (!((RuntimeObject*)IsInst((RuntimeObject*)L_17, IComparable_t36111218_il2cpp_TypeInfo_var)))
{
goto IL_007d;
}
}
{
RuntimeObject * L_18 = ___b1;
RuntimeObject * L_19 = ___a0;
int32_t L_20 = InterfaceFuncInvoker1< int32_t, RuntimeObject * >::Invoke(0 /* System.Int32 System.IComparable::CompareTo(System.Object) */, IComparable_t36111218_il2cpp_TypeInfo_var, ((RuntimeObject*)IsInst((RuntimeObject*)L_18, IComparable_t36111218_il2cpp_TypeInfo_var)), L_19);
return ((-L_20));
}
IL_007d:
{
String_t* L_21 = Locale_GetText_m3374010885(NULL /*static, unused*/, _stringLiteral4056318485, /*hidden argument*/NULL);
ArgumentException_t132251570 * L_22 = (ArgumentException_t132251570 *)il2cpp_codegen_object_new(ArgumentException_t132251570_il2cpp_TypeInfo_var);
ArgumentException__ctor_m1312628991(L_22, L_21, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_22,Comparer_Compare_m3984347512_RuntimeMethod_var);
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Conversion methods for marshalling of: System.Collections.DictionaryEntry
extern "C" void DictionaryEntry_t3123975638_marshal_pinvoke(const DictionaryEntry_t3123975638& unmarshaled, DictionaryEntry_t3123975638_marshaled_pinvoke& marshaled)
{
if (unmarshaled.get__key_0() != NULL)
{
if (il2cpp_codegen_is_import_or_windows_runtime(unmarshaled.get__key_0()))
{
il2cpp_hresult_t hr = ((Il2CppComObject *)unmarshaled.get__key_0())->identity->QueryInterface(Il2CppIUnknown::IID, reinterpret_cast<void**>(&marshaled.____key_0));
il2cpp_codegen_com_raise_exception_if_failed(hr, false);
}
else
{
marshaled.____key_0 = il2cpp_codegen_com_get_or_create_ccw<Il2CppIUnknown>(unmarshaled.get__key_0());
}
}
else
{
marshaled.____key_0 = NULL;
}
if (unmarshaled.get__value_1() != NULL)
{
if (il2cpp_codegen_is_import_or_windows_runtime(unmarshaled.get__value_1()))
{
il2cpp_hresult_t hr = ((Il2CppComObject *)unmarshaled.get__value_1())->identity->QueryInterface(Il2CppIUnknown::IID, reinterpret_cast<void**>(&marshaled.____value_1));
il2cpp_codegen_com_raise_exception_if_failed(hr, false);
}
else
{
marshaled.____value_1 = il2cpp_codegen_com_get_or_create_ccw<Il2CppIUnknown>(unmarshaled.get__value_1());
}
}
else
{
marshaled.____value_1 = NULL;
}
}
extern "C" void DictionaryEntry_t3123975638_marshal_pinvoke_back(const DictionaryEntry_t3123975638_marshaled_pinvoke& marshaled, DictionaryEntry_t3123975638& unmarshaled)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (DictionaryEntry_t3123975638_pinvoke_FromNativeMethodDefinition_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
if (marshaled.____key_0 != NULL)
{
unmarshaled.set__key_0(il2cpp_codegen_com_get_or_create_rcw_from_iunknown<RuntimeObject>(marshaled.____key_0, Il2CppComObject_il2cpp_TypeInfo_var));
}
else
{
unmarshaled.set__key_0(NULL);
}
if (marshaled.____value_1 != NULL)
{
unmarshaled.set__value_1(il2cpp_codegen_com_get_or_create_rcw_from_iunknown<RuntimeObject>(marshaled.____value_1, Il2CppComObject_il2cpp_TypeInfo_var));
}
else
{
unmarshaled.set__value_1(NULL);
}
}
// Conversion method for clean up from marshalling of: System.Collections.DictionaryEntry
extern "C" void DictionaryEntry_t3123975638_marshal_pinvoke_cleanup(DictionaryEntry_t3123975638_marshaled_pinvoke& marshaled)
{
if (marshaled.____key_0 != NULL)
{
(marshaled.____key_0)->Release();
marshaled.____key_0 = NULL;
}
if (marshaled.____value_1 != NULL)
{
(marshaled.____value_1)->Release();
marshaled.____value_1 = NULL;
}
}
// Conversion methods for marshalling of: System.Collections.DictionaryEntry
extern "C" void DictionaryEntry_t3123975638_marshal_com(const DictionaryEntry_t3123975638& unmarshaled, DictionaryEntry_t3123975638_marshaled_com& marshaled)
{
if (unmarshaled.get__key_0() != NULL)
{
if (il2cpp_codegen_is_import_or_windows_runtime(unmarshaled.get__key_0()))
{
il2cpp_hresult_t hr = ((Il2CppComObject *)unmarshaled.get__key_0())->identity->QueryInterface(Il2CppIUnknown::IID, reinterpret_cast<void**>(&marshaled.____key_0));
il2cpp_codegen_com_raise_exception_if_failed(hr, true);
}
else
{
marshaled.____key_0 = il2cpp_codegen_com_get_or_create_ccw<Il2CppIUnknown>(unmarshaled.get__key_0());
}
}
else
{
marshaled.____key_0 = NULL;
}
if (unmarshaled.get__value_1() != NULL)
{
if (il2cpp_codegen_is_import_or_windows_runtime(unmarshaled.get__value_1()))
{
il2cpp_hresult_t hr = ((Il2CppComObject *)unmarshaled.get__value_1())->identity->QueryInterface(Il2CppIUnknown::IID, reinterpret_cast<void**>(&marshaled.____value_1));
il2cpp_codegen_com_raise_exception_if_failed(hr, true);
}
else
{
marshaled.____value_1 = il2cpp_codegen_com_get_or_create_ccw<Il2CppIUnknown>(unmarshaled.get__value_1());
}
}
else
{
marshaled.____value_1 = NULL;
}
}
extern "C" void DictionaryEntry_t3123975638_marshal_com_back(const DictionaryEntry_t3123975638_marshaled_com& marshaled, DictionaryEntry_t3123975638& unmarshaled)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (DictionaryEntry_t3123975638_com_FromNativeMethodDefinition_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
if (marshaled.____key_0 != NULL)
{
unmarshaled.set__key_0(il2cpp_codegen_com_get_or_create_rcw_from_iunknown<RuntimeObject>(marshaled.____key_0, Il2CppComObject_il2cpp_TypeInfo_var));
}
else
{
unmarshaled.set__key_0(NULL);
}
if (marshaled.____value_1 != NULL)
{
unmarshaled.set__value_1(il2cpp_codegen_com_get_or_create_rcw_from_iunknown<RuntimeObject>(marshaled.____value_1, Il2CppComObject_il2cpp_TypeInfo_var));
}
else
{
unmarshaled.set__value_1(NULL);
}
}
// Conversion method for clean up from marshalling of: System.Collections.DictionaryEntry
extern "C" void DictionaryEntry_t3123975638_marshal_com_cleanup(DictionaryEntry_t3123975638_marshaled_com& marshaled)
{
if (marshaled.____key_0 != NULL)
{
(marshaled.____key_0)->Release();
marshaled.____key_0 = NULL;
}
if (marshaled.____value_1 != NULL)
{
(marshaled.____value_1)->Release();
marshaled.____value_1 = NULL;
}
}
// System.Void System.Collections.DictionaryEntry::.ctor(System.Object,System.Object)
extern "C" void DictionaryEntry__ctor_m2585376310 (DictionaryEntry_t3123975638 * __this, RuntimeObject * ___key0, RuntimeObject * ___value1, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = ___key0;
__this->set__key_0(L_0);
RuntimeObject * L_1 = ___value1;
__this->set__value_1(L_1);
return;
}
}
extern "C" void DictionaryEntry__ctor_m2585376310_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___key0, RuntimeObject * ___value1, const RuntimeMethod* method)
{
DictionaryEntry_t3123975638 * _thisAdjusted = reinterpret_cast<DictionaryEntry_t3123975638 *>(__this + 1);
DictionaryEntry__ctor_m2585376310(_thisAdjusted, ___key0, ___value1, method);
}
// System.Object System.Collections.DictionaryEntry::get_Key()
extern "C" RuntimeObject * DictionaryEntry_get_Key_m3117378551 (DictionaryEntry_t3123975638 * __this, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = __this->get__key_0();
return L_0;
}
}
extern "C" RuntimeObject * DictionaryEntry_get_Key_m3117378551_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
DictionaryEntry_t3123975638 * _thisAdjusted = reinterpret_cast<DictionaryEntry_t3123975638 *>(__this + 1);
return DictionaryEntry_get_Key_m3117378551(_thisAdjusted, method);
}
// System.Object System.Collections.DictionaryEntry::get_Value()
extern "C" RuntimeObject * DictionaryEntry_get_Value_m618120527 (DictionaryEntry_t3123975638 * __this, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = __this->get__value_1();
return L_0;
}
}
extern "C" RuntimeObject * DictionaryEntry_get_Value_m618120527_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
DictionaryEntry_t3123975638 * _thisAdjusted = reinterpret_cast<DictionaryEntry_t3123975638 *>(__this + 1);
return DictionaryEntry_get_Value_m618120527(_thisAdjusted, method);
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Collections.Generic.KeyNotFoundException::.ctor()
extern "C" void KeyNotFoundException__ctor_m541499307 (KeyNotFoundException_t2292407383 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (KeyNotFoundException__ctor_m541499307_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
SystemException__ctor_m3298527747(__this, _stringLiteral4076297504, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Collections.Generic.KeyNotFoundException::.ctor(System.String)
extern "C" void KeyNotFoundException__ctor_m2696589580 (KeyNotFoundException_t2292407383 * __this, String_t* ___message0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___message0;
SystemException__ctor_m3298527747(__this, L_0, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Collections.Generic.KeyNotFoundException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
extern "C" void KeyNotFoundException__ctor_m813515407 (KeyNotFoundException_t2292407383 * __this, SerializationInfo_t950877179 * ___info0, StreamingContext_t3711869237 ___context1, const RuntimeMethod* method)
{
{
SerializationInfo_t950877179 * L_0 = ___info0;
StreamingContext_t3711869237 L_1 = ___context1;
SystemException__ctor_m1515048899(__this, L_0, L_1, /*hidden argument*/NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Collections.Hashtable::.ctor()
extern "C" void Hashtable__ctor_m1815022027 (Hashtable_t1853889766 * __this, const RuntimeMethod* method)
{
{
Hashtable__ctor_m3542198234(__this, 0, (1.0f), /*hidden argument*/NULL);
return;
}
}
// System.Void System.Collections.Hashtable::.ctor(System.Int32,System.Single,System.Collections.IHashCodeProvider,System.Collections.IComparer)
extern "C" void Hashtable__ctor_m3491720775 (Hashtable_t1853889766 * __this, int32_t ___capacity0, float ___loadFactor1, RuntimeObject* ___hcp2, RuntimeObject* ___comparer3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Hashtable__ctor_m3491720775_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
double V_0 = 0.0;
int32_t V_1 = 0;
{
Object__ctor_m297566312(__this, /*hidden argument*/NULL);
int32_t L_0 = ___capacity0;
if ((((int32_t)L_0) >= ((int32_t)0)))
{
goto IL_001d;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_1 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m282481429(L_1, _stringLiteral3623012086, _stringLiteral3914839736, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1,Hashtable__ctor_m3491720775_RuntimeMethod_var);
}
IL_001d:
{
float L_2 = ___loadFactor1;
if ((((float)L_2) < ((float)(0.1f))))
{
goto IL_003e;
}
}
{
float L_3 = ___loadFactor1;
if ((((float)L_3) > ((float)(1.0f))))
{
goto IL_003e;
}
}
{
float L_4 = ___loadFactor1;
bool L_5 = Single_IsNaN_m4024467661(NULL /*static, unused*/, L_4, /*hidden argument*/NULL);
if (!L_5)
{
goto IL_004e;
}
}
IL_003e:
{
ArgumentOutOfRangeException_t777629997 * L_6 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m282481429(L_6, _stringLiteral2137170806, _stringLiteral1327355122, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_6,Hashtable__ctor_m3491720775_RuntimeMethod_var);
}
IL_004e:
{
int32_t L_7 = ___capacity0;
if (L_7)
{
goto IL_0059;
}
}
{
int32_t L_8 = ___capacity0;
___capacity0 = ((int32_t)il2cpp_codegen_add((int32_t)L_8, (int32_t)1));
}
IL_0059:
{
float L_9 = ___loadFactor1;
__this->set_loadFactor_3(((float)il2cpp_codegen_multiply((float)(0.75f), (float)L_9)));
int32_t L_10 = ___capacity0;
float L_11 = __this->get_loadFactor_3();
V_0 = (((double)((double)((float)((float)(((float)((float)L_10)))/(float)L_11)))));
double L_12 = V_0;
if ((!(((double)L_12) > ((double)(2147483647.0)))))
{
goto IL_008b;
}
}
{
ArgumentException_t132251570 * L_13 = (ArgumentException_t132251570 *)il2cpp_codegen_object_new(ArgumentException_t132251570_il2cpp_TypeInfo_var);
ArgumentException__ctor_m1312628991(L_13, _stringLiteral144441821, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_13,Hashtable__ctor_m3491720775_RuntimeMethod_var);
}
IL_008b:
{
double L_14 = V_0;
V_1 = (((int32_t)((int32_t)L_14)));
int32_t L_15 = V_1;
IL2CPP_RUNTIME_CLASS_INIT(Hashtable_t1853889766_il2cpp_TypeInfo_var);
int32_t L_16 = Hashtable_ToPrime_m33531354(NULL /*static, unused*/, L_15, /*hidden argument*/NULL);
V_1 = L_16;
int32_t L_17 = V_1;
int32_t L_18 = V_1;
Hashtable_SetTable_m1520626497(__this, ((SlotU5BU5D_t2994659099*)SZArrayNew(SlotU5BU5D_t2994659099_il2cpp_TypeInfo_var, (uint32_t)L_17)), ((Int32U5BU5D_t385246372*)SZArrayNew(Int32U5BU5D_t385246372_il2cpp_TypeInfo_var, (uint32_t)L_18)), /*hidden argument*/NULL);
RuntimeObject* L_19 = ___hcp2;
Hashtable_set_hcp_m2582686174(__this, L_19, /*hidden argument*/NULL);
RuntimeObject* L_20 = ___comparer3;
Hashtable_set_comparer_m1969364857(__this, L_20, /*hidden argument*/NULL);
__this->set_inUse_1(0);
__this->set_modificationCount_2(0);
return;
}
}
// System.Void System.Collections.Hashtable::.ctor(System.Int32,System.Single)
extern "C" void Hashtable__ctor_m3542198234 (Hashtable_t1853889766 * __this, int32_t ___capacity0, float ___loadFactor1, const RuntimeMethod* method)
{
{
int32_t L_0 = ___capacity0;
float L_1 = ___loadFactor1;
Hashtable__ctor_m3491720775(__this, L_0, L_1, (RuntimeObject*)NULL, (RuntimeObject*)NULL, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Collections.Hashtable::.ctor(System.Int32)
extern "C" void Hashtable__ctor_m1684344284 (Hashtable_t1853889766 * __this, int32_t ___capacity0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___capacity0;
Hashtable__ctor_m3542198234(__this, L_0, (1.0f), /*hidden argument*/NULL);
return;
}
}
// System.Void System.Collections.Hashtable::.ctor(System.Collections.Hashtable)
extern "C" void Hashtable__ctor_m3890751112 (Hashtable_t1853889766 * __this, Hashtable_t1853889766 * ___source0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Hashtable__ctor_m3890751112_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Object__ctor_m297566312(__this, /*hidden argument*/NULL);
Hashtable_t1853889766 * L_0 = ___source0;
int32_t L_1 = L_0->get_inUse_1();
__this->set_inUse_1(L_1);
Hashtable_t1853889766 * L_2 = ___source0;
float L_3 = L_2->get_loadFactor_3();
__this->set_loadFactor_3(L_3);
Hashtable_t1853889766 * L_4 = ___source0;
SlotU5BU5D_t2994659099* L_5 = L_4->get_table_4();
RuntimeObject * L_6 = Array_Clone_m2672907798((RuntimeArray *)(RuntimeArray *)L_5, /*hidden argument*/NULL);
__this->set_table_4(((SlotU5BU5D_t2994659099*)Castclass((RuntimeObject*)L_6, SlotU5BU5D_t2994659099_il2cpp_TypeInfo_var)));
Hashtable_t1853889766 * L_7 = ___source0;
Int32U5BU5D_t385246372* L_8 = L_7->get_hashes_5();
RuntimeObject * L_9 = Array_Clone_m2672907798((RuntimeArray *)(RuntimeArray *)L_8, /*hidden argument*/NULL);
__this->set_hashes_5(((Int32U5BU5D_t385246372*)Castclass((RuntimeObject*)L_9, Int32U5BU5D_t385246372_il2cpp_TypeInfo_var)));
Hashtable_t1853889766 * L_10 = ___source0;
int32_t L_11 = L_10->get_threshold_6();
__this->set_threshold_6(L_11);
Hashtable_t1853889766 * L_12 = ___source0;
RuntimeObject* L_13 = L_12->get_hcpRef_9();
__this->set_hcpRef_9(L_13);
Hashtable_t1853889766 * L_14 = ___source0;
RuntimeObject* L_15 = L_14->get_comparerRef_10();
__this->set_comparerRef_10(L_15);
Hashtable_t1853889766 * L_16 = ___source0;
RuntimeObject* L_17 = L_16->get_equalityComparer_12();
__this->set_equalityComparer_12(L_17);
return;
}
}
// System.Void System.Collections.Hashtable::.ctor(System.Int32,System.Collections.IHashCodeProvider,System.Collections.IComparer)
extern "C" void Hashtable__ctor_m1763145853 (Hashtable_t1853889766 * __this, int32_t ___capacity0, RuntimeObject* ___hcp1, RuntimeObject* ___comparer2, const RuntimeMethod* method)
{
{
int32_t L_0 = ___capacity0;
RuntimeObject* L_1 = ___hcp1;
RuntimeObject* L_2 = ___comparer2;
Hashtable__ctor_m3491720775(__this, L_0, (1.0f), L_1, L_2, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Collections.Hashtable::.ctor(System.Collections.IDictionary,System.Single,System.Collections.IHashCodeProvider,System.Collections.IComparer)
extern "C" void Hashtable__ctor_m2421324048 (Hashtable_t1853889766 * __this, RuntimeObject* ___d0, float ___loadFactor1, RuntimeObject* ___hcp2, RuntimeObject* ___comparer3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Hashtable__ctor_m2421324048_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
Hashtable_t1853889766 * G_B2_0 = NULL;
Hashtable_t1853889766 * G_B1_0 = NULL;
int32_t G_B3_0 = 0;
Hashtable_t1853889766 * G_B3_1 = NULL;
{
RuntimeObject* L_0 = ___d0;
G_B1_0 = __this;
if (!L_0)
{
G_B2_0 = __this;
goto IL_0012;
}
}
{
RuntimeObject* L_1 = ___d0;
int32_t L_2 = InterfaceFuncInvoker0< int32_t >::Invoke(0 /* System.Int32 System.Collections.ICollection::get_Count() */, ICollection_t3904884886_il2cpp_TypeInfo_var, L_1);
G_B3_0 = L_2;
G_B3_1 = G_B1_0;
goto IL_0013;
}
IL_0012:
{
G_B3_0 = 0;
G_B3_1 = G_B2_0;
}
IL_0013:
{
float L_3 = ___loadFactor1;
RuntimeObject* L_4 = ___hcp2;
RuntimeObject* L_5 = ___comparer3;
Hashtable__ctor_m3491720775(G_B3_1, G_B3_0, L_3, L_4, L_5, /*hidden argument*/NULL);
RuntimeObject* L_6 = ___d0;
if (L_6)
{
goto IL_002d;
}
}
{
ArgumentNullException_t1615371798 * L_7 = (ArgumentNullException_t1615371798 *)il2cpp_codegen_object_new(ArgumentNullException_t1615371798_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m1170824041(L_7, _stringLiteral2957729587, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_7,Hashtable__ctor_m2421324048_RuntimeMethod_var);
}
IL_002d:
{
RuntimeObject* L_8 = ___d0;
RuntimeObject* L_9 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(3 /* System.Collections.IDictionaryEnumerator System.Collections.IDictionary::GetEnumerator() */, IDictionary_t1363984059_il2cpp_TypeInfo_var, L_8);
V_0 = L_9;
goto IL_004b;
}
IL_0039:
{
RuntimeObject* L_10 = V_0;
RuntimeObject * L_11 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(1 /* System.Object System.Collections.IDictionaryEnumerator::get_Key() */, IDictionaryEnumerator_t1693217257_il2cpp_TypeInfo_var, L_10);
RuntimeObject* L_12 = V_0;
RuntimeObject * L_13 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(2 /* System.Object System.Collections.IDictionaryEnumerator::get_Value() */, IDictionaryEnumerator_t1693217257_il2cpp_TypeInfo_var, L_12);
VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(24 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, __this, L_11, L_13);
}
IL_004b:
{
RuntimeObject* L_14 = V_0;
bool L_15 = InterfaceFuncInvoker0< bool >::Invoke(1 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t1853284238_il2cpp_TypeInfo_var, L_14);
if (L_15)
{
goto IL_0039;
}
}
{
return;
}
}
// System.Void System.Collections.Hashtable::.ctor(System.Collections.IDictionary,System.Collections.IHashCodeProvider,System.Collections.IComparer)
extern "C" void Hashtable__ctor_m465544153 (Hashtable_t1853889766 * __this, RuntimeObject* ___d0, RuntimeObject* ___hcp1, RuntimeObject* ___comparer2, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = ___d0;
RuntimeObject* L_1 = ___hcp1;
RuntimeObject* L_2 = ___comparer2;
Hashtable__ctor_m2421324048(__this, L_0, (1.0f), L_1, L_2, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Collections.Hashtable::.ctor(System.Collections.IHashCodeProvider,System.Collections.IComparer)
extern "C" void Hashtable__ctor_m2302711321 (Hashtable_t1853889766 * __this, RuntimeObject* ___hcp0, RuntimeObject* ___comparer1, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = ___hcp0;
RuntimeObject* L_1 = ___comparer1;
Hashtable__ctor_m3491720775(__this, 1, (1.0f), L_0, L_1, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Collections.Hashtable::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
extern "C" void Hashtable__ctor_m1941859523 (Hashtable_t1853889766 * __this, SerializationInfo_t950877179 * ___info0, StreamingContext_t3711869237 ___context1, const RuntimeMethod* method)
{
{
Object__ctor_m297566312(__this, /*hidden argument*/NULL);
SerializationInfo_t950877179 * L_0 = ___info0;
__this->set_serializationInfo_11(L_0);
return;
}
}
// System.Void System.Collections.Hashtable::.ctor(System.Int32,System.Collections.IEqualityComparer)
extern "C" void Hashtable__ctor_m3305570058 (Hashtable_t1853889766 * __this, int32_t ___capacity0, RuntimeObject* ___equalityComparer1, const RuntimeMethod* method)
{
{
int32_t L_0 = ___capacity0;
RuntimeObject* L_1 = ___equalityComparer1;
Hashtable__ctor_m1820371784(__this, L_0, (1.0f), L_1, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Collections.Hashtable::.ctor(System.Int32,System.Single,System.Collections.IEqualityComparer)
extern "C" void Hashtable__ctor_m1820371784 (Hashtable_t1853889766 * __this, int32_t ___capacity0, float ___loadFactor1, RuntimeObject* ___equalityComparer2, const RuntimeMethod* method)
{
{
int32_t L_0 = ___capacity0;
float L_1 = ___loadFactor1;
Hashtable__ctor_m3542198234(__this, L_0, L_1, /*hidden argument*/NULL);
RuntimeObject* L_2 = ___equalityComparer2;
__this->set_equalityComparer_12(L_2);
return;
}
}
// System.Void System.Collections.Hashtable::.cctor()
extern "C" void Hashtable__cctor_m4112166779 (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Hashtable__cctor_m4112166779_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Int32U5BU5D_t385246372* L_0 = ((Int32U5BU5D_t385246372*)SZArrayNew(Int32U5BU5D_t385246372_il2cpp_TypeInfo_var, (uint32_t)((int32_t)34)));
RuntimeFieldHandle_t1871169219 L_1 = { reinterpret_cast<intptr_t> (U3CPrivateImplementationDetailsU3E_t3057255361____U24U24fieldU2D27_19_FieldInfo_var) };
RuntimeHelpers_InitializeArray_m3117905507(NULL /*static, unused*/, (RuntimeArray *)(RuntimeArray *)L_0, L_1, /*hidden argument*/NULL);
((Hashtable_t1853889766_StaticFields*)il2cpp_codegen_static_fields_for(Hashtable_t1853889766_il2cpp_TypeInfo_var))->set_primeTbl_13(L_0);
return;
}
}
// System.Collections.IEnumerator System.Collections.Hashtable::System.Collections.IEnumerable.GetEnumerator()
extern "C" RuntimeObject* Hashtable_System_Collections_IEnumerable_GetEnumerator_m2751657639 (Hashtable_t1853889766 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Hashtable_System_Collections_IEnumerable_GetEnumerator_m2751657639_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Enumerator_t661358686 * L_0 = (Enumerator_t661358686 *)il2cpp_codegen_object_new(Enumerator_t661358686_il2cpp_TypeInfo_var);
Enumerator__ctor_m3921352641(L_0, __this, 2, /*hidden argument*/NULL);
return L_0;
}
}
// System.Void System.Collections.Hashtable::set_comparer(System.Collections.IComparer)
extern "C" void Hashtable_set_comparer_m1969364857 (Hashtable_t1853889766 * __this, RuntimeObject* ___value0, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = ___value0;
__this->set_comparerRef_10(L_0);
return;
}
}
// System.Void System.Collections.Hashtable::set_hcp(System.Collections.IHashCodeProvider)
extern "C" void Hashtable_set_hcp_m2582686174 (Hashtable_t1853889766 * __this, RuntimeObject* ___value0, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = ___value0;
__this->set_hcpRef_9(L_0);
return;
}
}
// System.Int32 System.Collections.Hashtable::get_Count()
extern "C" int32_t Hashtable_get_Count_m3541651130 (Hashtable_t1853889766 * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->get_inUse_1();
return L_0;
}
}
// System.Boolean System.Collections.Hashtable::get_IsSynchronized()
extern "C" bool Hashtable_get_IsSynchronized_m1426775249 (Hashtable_t1853889766 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// System.Object System.Collections.Hashtable::get_SyncRoot()
extern "C" RuntimeObject * Hashtable_get_SyncRoot_m2370273929 (Hashtable_t1853889766 * __this, const RuntimeMethod* method)
{
{
return __this;
}
}
// System.Collections.ICollection System.Collections.Hashtable::get_Keys()
extern "C" RuntimeObject* Hashtable_get_Keys_m625158339 (Hashtable_t1853889766 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Hashtable_get_Keys_m625158339_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
HashKeys_t1568156503 * L_0 = __this->get_hashKeys_7();
if (L_0)
{
goto IL_0017;
}
}
{
HashKeys_t1568156503 * L_1 = (HashKeys_t1568156503 *)il2cpp_codegen_object_new(HashKeys_t1568156503_il2cpp_TypeInfo_var);
HashKeys__ctor_m2668698759(L_1, __this, /*hidden argument*/NULL);
__this->set_hashKeys_7(L_1);
}
IL_0017:
{
HashKeys_t1568156503 * L_2 = __this->get_hashKeys_7();
return L_2;
}
}
// System.Collections.ICollection System.Collections.Hashtable::get_Values()
extern "C" RuntimeObject* Hashtable_get_Values_m1643322147 (Hashtable_t1853889766 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Hashtable_get_Values_m1643322147_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
HashValues_t618387445 * L_0 = __this->get_hashValues_8();
if (L_0)
{
goto IL_0017;
}
}
{
HashValues_t618387445 * L_1 = (HashValues_t618387445 *)il2cpp_codegen_object_new(HashValues_t618387445_il2cpp_TypeInfo_var);
HashValues__ctor_m1651100305(L_1, __this, /*hidden argument*/NULL);
__this->set_hashValues_8(L_1);
}
IL_0017:
{
HashValues_t618387445 * L_2 = __this->get_hashValues_8();
return L_2;
}
}
// System.Object System.Collections.Hashtable::get_Item(System.Object)
extern "C" RuntimeObject * Hashtable_get_Item_m2003685141 (Hashtable_t1853889766 * __this, RuntimeObject * ___key0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Hashtable_get_Item_m2003685141_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
SlotU5BU5D_t2994659099* V_0 = NULL;
Int32U5BU5D_t385246372* V_1 = NULL;
uint32_t V_2 = 0;
int32_t V_3 = 0;
uint32_t V_4 = 0;
uint32_t V_5 = 0;
uint32_t V_6 = 0;
Slot_t3975888750 V_7;
memset(&V_7, 0, sizeof(V_7));
int32_t V_8 = 0;
RuntimeObject * V_9 = NULL;
{
RuntimeObject * L_0 = ___key0;
if (L_0)
{
goto IL_0016;
}
}
{
ArgumentNullException_t1615371798 * L_1 = (ArgumentNullException_t1615371798 *)il2cpp_codegen_object_new(ArgumentNullException_t1615371798_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m2009621981(L_1, _stringLiteral2600271970, _stringLiteral2340372691, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1,Hashtable_get_Item_m2003685141_RuntimeMethod_var);
}
IL_0016:
{
SlotU5BU5D_t2994659099* L_2 = __this->get_table_4();
V_0 = L_2;
Int32U5BU5D_t385246372* L_3 = __this->get_hashes_5();
V_1 = L_3;
SlotU5BU5D_t2994659099* L_4 = V_0;
V_2 = (((int32_t)((int32_t)(((RuntimeArray *)L_4)->max_length))));
RuntimeObject * L_5 = ___key0;
int32_t L_6 = VirtFuncInvoker1< int32_t, RuntimeObject * >::Invoke(32 /* System.Int32 System.Collections.Hashtable::GetHash(System.Object) */, __this, L_5);
V_3 = ((int32_t)((int32_t)L_6&(int32_t)((int32_t)2147483647LL)));
int32_t L_7 = V_3;
V_4 = L_7;
int32_t L_8 = V_3;
uint32_t L_9 = V_2;
V_5 = ((int32_t)il2cpp_codegen_add((int32_t)((int32_t)((uint32_t)(int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)((int32_t)L_8>>(int32_t)5)), (int32_t)1))%(uint32_t)(int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_9, (int32_t)1)))), (int32_t)1));
uint32_t L_10 = V_2;
V_6 = L_10;
goto IL_00cb;
}
IL_004e:
{
uint32_t L_11 = V_4;
uint32_t L_12 = V_2;
V_4 = ((int32_t)((uint32_t)(int32_t)L_11%(uint32_t)(int32_t)L_12));
SlotU5BU5D_t2994659099* L_13 = V_0;
uint32_t L_14 = V_4;
V_7 = (*(Slot_t3975888750 *)((L_13)->GetAddressAtUnchecked(static_cast<il2cpp_array_size_t>((((uintptr_t)L_14))))));
Int32U5BU5D_t385246372* L_15 = V_1;
uint32_t L_16 = V_4;
uintptr_t L_17 = (((uintptr_t)L_16));
int32_t L_18 = (L_15)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_17));
V_8 = L_18;
RuntimeObject * L_19 = (&V_7)->get_key_0();
V_9 = L_19;
RuntimeObject * L_20 = V_9;
if (L_20)
{
goto IL_0080;
}
}
{
goto IL_00d3;
}
IL_0080:
{
RuntimeObject * L_21 = V_9;
RuntimeObject * L_22 = ___key0;
if ((((RuntimeObject*)(RuntimeObject *)L_21) == ((RuntimeObject*)(RuntimeObject *)L_22)))
{
goto IL_00a4;
}
}
{
int32_t L_23 = V_8;
int32_t L_24 = V_3;
if ((!(((uint32_t)((int32_t)((int32_t)L_23&(int32_t)((int32_t)2147483647LL)))) == ((uint32_t)L_24))))
{
goto IL_00ac;
}
}
{
RuntimeObject * L_25 = ___key0;
RuntimeObject * L_26 = V_9;
bool L_27 = VirtFuncInvoker2< bool, RuntimeObject *, RuntimeObject * >::Invoke(33 /* System.Boolean System.Collections.Hashtable::KeyEquals(System.Object,System.Object) */, __this, L_25, L_26);
if (!L_27)
{
goto IL_00ac;
}
}
IL_00a4:
{
RuntimeObject * L_28 = (&V_7)->get_value_1();
return L_28;
}
IL_00ac:
{
int32_t L_29 = V_8;
if (((int32_t)((int32_t)L_29&(int32_t)((int32_t)-2147483648LL))))
{
goto IL_00be;
}
}
{
goto IL_00d3;
}
IL_00be:
{
uint32_t L_30 = V_4;
uint32_t L_31 = V_5;
V_4 = ((int32_t)il2cpp_codegen_add((int32_t)L_30, (int32_t)L_31));
uint32_t L_32 = V_6;
V_6 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_32, (int32_t)1));
}
IL_00cb:
{
uint32_t L_33 = V_6;
if ((!(((uint32_t)L_33) <= ((uint32_t)0))))
{
goto IL_004e;
}
}
IL_00d3:
{
return NULL;
}
}
// System.Void System.Collections.Hashtable::set_Item(System.Object,System.Object)
extern "C" void Hashtable_set_Item_m1120781262 (Hashtable_t1853889766 * __this, RuntimeObject * ___key0, RuntimeObject * ___value1, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = ___key0;
RuntimeObject * L_1 = ___value1;
Hashtable_PutImpl_m2485103604(__this, L_0, L_1, (bool)1, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Collections.Hashtable::CopyTo(System.Array,System.Int32)
extern "C" void Hashtable_CopyTo_m2905447224 (Hashtable_t1853889766 * __this, RuntimeArray * ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Hashtable_CopyTo_m2905447224_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
int32_t V_1 = 0;
{
RuntimeArray * L_0 = ___array0;
if (L_0)
{
goto IL_0011;
}
}
{
ArgumentNullException_t1615371798 * L_1 = (ArgumentNullException_t1615371798 *)il2cpp_codegen_object_new(ArgumentNullException_t1615371798_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m1170824041(L_1, _stringLiteral4007973390, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1,Hashtable_CopyTo_m2905447224_RuntimeMethod_var);
}
IL_0011:
{
int32_t L_2 = ___arrayIndex1;
if ((((int32_t)L_2) >= ((int32_t)0)))
{
goto IL_0023;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_3 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_3, _stringLiteral335484879, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3,Hashtable_CopyTo_m2905447224_RuntimeMethod_var);
}
IL_0023:
{
RuntimeArray * L_4 = ___array0;
int32_t L_5 = Array_get_Rank_m3448755881(L_4, /*hidden argument*/NULL);
if ((((int32_t)L_5) <= ((int32_t)1)))
{
goto IL_003a;
}
}
{
ArgumentException_t132251570 * L_6 = (ArgumentException_t132251570 *)il2cpp_codegen_object_new(ArgumentException_t132251570_il2cpp_TypeInfo_var);
ArgumentException__ctor_m1312628991(L_6, _stringLiteral4171269070, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_6,Hashtable_CopyTo_m2905447224_RuntimeMethod_var);
}
IL_003a:
{
RuntimeArray * L_7 = ___array0;
int32_t L_8 = Array_get_Length_m21610649(L_7, /*hidden argument*/NULL);
if ((((int32_t)L_8) <= ((int32_t)0)))
{
goto IL_005d;
}
}
{
int32_t L_9 = ___arrayIndex1;
RuntimeArray * L_10 = ___array0;
int32_t L_11 = Array_get_Length_m21610649(L_10, /*hidden argument*/NULL);
if ((((int32_t)L_9) < ((int32_t)L_11)))
{
goto IL_005d;
}
}
{
ArgumentException_t132251570 * L_12 = (ArgumentException_t132251570 *)il2cpp_codegen_object_new(ArgumentException_t132251570_il2cpp_TypeInfo_var);
ArgumentException__ctor_m1312628991(L_12, _stringLiteral620593767, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_12,Hashtable_CopyTo_m2905447224_RuntimeMethod_var);
}
IL_005d:
{
int32_t L_13 = ___arrayIndex1;
int32_t L_14 = __this->get_inUse_1();
RuntimeArray * L_15 = ___array0;
int32_t L_16 = Array_get_Length_m21610649(L_15, /*hidden argument*/NULL);
if ((((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)L_14))) <= ((int32_t)L_16)))
{
goto IL_007b;
}
}
{
ArgumentException_t132251570 * L_17 = (ArgumentException_t132251570 *)il2cpp_codegen_object_new(ArgumentException_t132251570_il2cpp_TypeInfo_var);
ArgumentException__ctor_m1312628991(L_17, _stringLiteral1529146404, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_17,Hashtable_CopyTo_m2905447224_RuntimeMethod_var);
}
IL_007b:
{
RuntimeObject* L_18 = VirtFuncInvoker0< RuntimeObject* >::Invoke(27 /* System.Collections.IDictionaryEnumerator System.Collections.Hashtable::GetEnumerator() */, __this);
V_0 = L_18;
int32_t L_19 = ___arrayIndex1;
V_1 = L_19;
goto IL_009f;
}
IL_0089:
{
RuntimeArray * L_20 = ___array0;
RuntimeObject* L_21 = V_0;
DictionaryEntry_t3123975638 L_22 = InterfaceFuncInvoker0< DictionaryEntry_t3123975638 >::Invoke(0 /* System.Collections.DictionaryEntry System.Collections.IDictionaryEnumerator::get_Entry() */, IDictionaryEnumerator_t1693217257_il2cpp_TypeInfo_var, L_21);
DictionaryEntry_t3123975638 L_23 = L_22;
RuntimeObject * L_24 = Box(DictionaryEntry_t3123975638_il2cpp_TypeInfo_var, &L_23);
int32_t L_25 = V_1;
int32_t L_26 = L_25;
V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_26, (int32_t)1));
Array_SetValue_m3412255035(L_20, L_24, L_26, /*hidden argument*/NULL);
}
IL_009f:
{
RuntimeObject* L_27 = V_0;
bool L_28 = InterfaceFuncInvoker0< bool >::Invoke(1 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t1853284238_il2cpp_TypeInfo_var, L_27);
if (L_28)
{
goto IL_0089;
}
}
{
return;
}
}
// System.Void System.Collections.Hashtable::Add(System.Object,System.Object)
extern "C" void Hashtable_Add_m157116935 (Hashtable_t1853889766 * __this, RuntimeObject * ___key0, RuntimeObject * ___value1, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = ___key0;
RuntimeObject * L_1 = ___value1;
Hashtable_PutImpl_m2485103604(__this, L_0, L_1, (bool)0, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Collections.Hashtable::Clear()
extern "C" void Hashtable_Clear_m3112193608 (Hashtable_t1853889766 * __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
V_0 = 0;
goto IL_0038;
}
IL_0007:
{
SlotU5BU5D_t2994659099* L_0 = __this->get_table_4();
int32_t L_1 = V_0;
((L_0)->GetAddressAtUnchecked(static_cast<il2cpp_array_size_t>(L_1)))->set_key_0(NULL);
SlotU5BU5D_t2994659099* L_2 = __this->get_table_4();
int32_t L_3 = V_0;
((L_2)->GetAddressAtUnchecked(static_cast<il2cpp_array_size_t>(L_3)))->set_value_1(NULL);
Int32U5BU5D_t385246372* L_4 = __this->get_hashes_5();
int32_t L_5 = V_0;
(L_4)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(L_5), (int32_t)0);
int32_t L_6 = V_0;
V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_6, (int32_t)1));
}
IL_0038:
{
int32_t L_7 = V_0;
SlotU5BU5D_t2994659099* L_8 = __this->get_table_4();
if ((((int32_t)L_7) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_8)->max_length)))))))
{
goto IL_0007;
}
}
{
__this->set_inUse_1(0);
int32_t L_9 = __this->get_modificationCount_2();
__this->set_modificationCount_2(((int32_t)il2cpp_codegen_add((int32_t)L_9, (int32_t)1)));
return;
}
}
// System.Boolean System.Collections.Hashtable::Contains(System.Object)
extern "C" bool Hashtable_Contains_m2145146412 (Hashtable_t1853889766 * __this, RuntimeObject * ___key0, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = ___key0;
int32_t L_1 = Hashtable_Find_m1835111773(__this, L_0, /*hidden argument*/NULL);
return (bool)((((int32_t)((((int32_t)L_1) < ((int32_t)0))? 1 : 0)) == ((int32_t)0))? 1 : 0);
}
}
// System.Collections.IDictionaryEnumerator System.Collections.Hashtable::GetEnumerator()
extern "C" RuntimeObject* Hashtable_GetEnumerator_m4240267690 (Hashtable_t1853889766 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Hashtable_GetEnumerator_m4240267690_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Enumerator_t661358686 * L_0 = (Enumerator_t661358686 *)il2cpp_codegen_object_new(Enumerator_t661358686_il2cpp_TypeInfo_var);
Enumerator__ctor_m3921352641(L_0, __this, 2, /*hidden argument*/NULL);
return L_0;
}
}
// System.Void System.Collections.Hashtable::Remove(System.Object)
extern "C" void Hashtable_Remove_m4032631466 (Hashtable_t1853889766 * __this, RuntimeObject * ___key0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Hashtable_Remove_m4032631466_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
SlotU5BU5D_t2994659099* V_1 = NULL;
int32_t V_2 = 0;
Slot_t3975888750 * G_B3_0 = NULL;
Slot_t3975888750 * G_B2_0 = NULL;
KeyMarker_t2496412495 * G_B4_0 = NULL;
Slot_t3975888750 * G_B4_1 = NULL;
{
RuntimeObject * L_0 = ___key0;
int32_t L_1 = Hashtable_Find_m1835111773(__this, L_0, /*hidden argument*/NULL);
V_0 = L_1;
int32_t L_2 = V_0;
if ((((int32_t)L_2) < ((int32_t)0)))
{
goto IL_0076;
}
}
{
SlotU5BU5D_t2994659099* L_3 = __this->get_table_4();
V_1 = L_3;
Int32U5BU5D_t385246372* L_4 = __this->get_hashes_5();
int32_t L_5 = V_0;
int32_t L_6 = L_5;
int32_t L_7 = (L_4)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_6));
V_2 = L_7;
int32_t L_8 = V_2;
V_2 = ((int32_t)((int32_t)L_8&(int32_t)((int32_t)-2147483648LL)));
Int32U5BU5D_t385246372* L_9 = __this->get_hashes_5();
int32_t L_10 = V_0;
int32_t L_11 = V_2;
(L_9)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(L_10), (int32_t)L_11);
SlotU5BU5D_t2994659099* L_12 = V_1;
int32_t L_13 = V_0;
int32_t L_14 = V_2;
G_B2_0 = ((L_12)->GetAddressAtUnchecked(static_cast<il2cpp_array_size_t>(L_13)));
if (!L_14)
{
G_B3_0 = ((L_12)->GetAddressAtUnchecked(static_cast<il2cpp_array_size_t>(L_13)));
goto IL_0047;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(KeyMarker_t2496412495_il2cpp_TypeInfo_var);
KeyMarker_t2496412495 * L_15 = ((KeyMarker_t2496412495_StaticFields*)il2cpp_codegen_static_fields_for(KeyMarker_t2496412495_il2cpp_TypeInfo_var))->get_Removed_0();
G_B4_0 = L_15;
G_B4_1 = G_B2_0;
goto IL_0048;
}
IL_0047:
{
G_B4_0 = ((KeyMarker_t2496412495 *)(NULL));
G_B4_1 = G_B3_0;
}
IL_0048:
{
G_B4_1->set_key_0(G_B4_0);
SlotU5BU5D_t2994659099* L_16 = V_1;
int32_t L_17 = V_0;
((L_16)->GetAddressAtUnchecked(static_cast<il2cpp_array_size_t>(L_17)))->set_value_1(NULL);
int32_t L_18 = __this->get_inUse_1();
__this->set_inUse_1(((int32_t)il2cpp_codegen_subtract((int32_t)L_18, (int32_t)1)));
int32_t L_19 = __this->get_modificationCount_2();
__this->set_modificationCount_2(((int32_t)il2cpp_codegen_add((int32_t)L_19, (int32_t)1)));
}
IL_0076:
{
return;
}
}
// System.Boolean System.Collections.Hashtable::ContainsKey(System.Object)
extern "C" bool Hashtable_ContainsKey_m2963904694 (Hashtable_t1853889766 * __this, RuntimeObject * ___key0, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = ___key0;
bool L_1 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(26 /* System.Boolean System.Collections.Hashtable::Contains(System.Object) */, __this, L_0);
return L_1;
}
}
// System.Object System.Collections.Hashtable::Clone()
extern "C" RuntimeObject * Hashtable_Clone_m3078962909 (Hashtable_t1853889766 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Hashtable_Clone_m3078962909_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Hashtable_t1853889766 * L_0 = (Hashtable_t1853889766 *)il2cpp_codegen_object_new(Hashtable_t1853889766_il2cpp_TypeInfo_var);
Hashtable__ctor_m3890751112(L_0, __this, /*hidden argument*/NULL);
return L_0;
}
}
// System.Void System.Collections.Hashtable::OnDeserialization(System.Object)
extern "C" void Hashtable_OnDeserialization_m1032066502 (Hashtable_t1853889766 * __this, RuntimeObject * ___sender0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Hashtable_OnDeserialization_m1032066502_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
ObjectU5BU5D_t2843939325* V_1 = NULL;
ObjectU5BU5D_t2843939325* V_2 = NULL;
int32_t V_3 = 0;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = 0;
NO_UNUSED_WARNING (__leave_target);
{
SerializationInfo_t950877179 * L_0 = __this->get_serializationInfo_11();
if (L_0)
{
goto IL_000c;
}
}
{
return;
}
IL_000c:
{
SerializationInfo_t950877179 * L_1 = __this->get_serializationInfo_11();
RuntimeTypeHandle_t3027515415 L_2 = { reinterpret_cast<intptr_t> (Single_t1397266774_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_3 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, L_2, /*hidden argument*/NULL);
RuntimeObject * L_4 = SerializationInfo_GetValue_m42271953(L_1, _stringLiteral2137201366, L_3, /*hidden argument*/NULL);
__this->set_loadFactor_3(((*(float*)((float*)UnBox(L_4, Single_t1397266774_il2cpp_TypeInfo_var)))));
SerializationInfo_t950877179 * L_5 = __this->get_serializationInfo_11();
RuntimeTypeHandle_t3027515415 L_6 = { reinterpret_cast<intptr_t> (Int32_t2950945753_0_0_0_var) };
Type_t * L_7 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, L_6, /*hidden argument*/NULL);
RuntimeObject * L_8 = SerializationInfo_GetValue_m42271953(L_5, _stringLiteral1902402919, L_7, /*hidden argument*/NULL);
__this->set_modificationCount_2(((*(int32_t*)((int32_t*)UnBox(L_8, Int32_t2950945753_il2cpp_TypeInfo_var)))));
}
IL_0056:
try
{ // begin try (depth: 1)
SerializationInfo_t950877179 * L_9 = __this->get_serializationInfo_11();
RuntimeTypeHandle_t3027515415 L_10 = { reinterpret_cast<intptr_t> (RuntimeObject_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_11 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, L_10, /*hidden argument*/NULL);
RuntimeObject * L_12 = SerializationInfo_GetValue_m42271953(L_9, _stringLiteral1982757576, L_11, /*hidden argument*/NULL);
__this->set_equalityComparer_12(((RuntimeObject*)Castclass((RuntimeObject*)L_12, IEqualityComparer_t1493878338_il2cpp_TypeInfo_var)));
goto IL_0086;
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__exception_local = (Exception_t *)e.ex;
if(il2cpp_codegen_class_is_assignable_from (RuntimeObject_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex)))
goto CATCH_0080;
throw e;
}
CATCH_0080:
{ // begin catch(System.Object)
goto IL_0086;
} // end catch (depth: 1)
IL_0086:
{
RuntimeObject* L_13 = __this->get_equalityComparer_12();
if (L_13)
{
goto IL_00b6;
}
}
{
SerializationInfo_t950877179 * L_14 = __this->get_serializationInfo_11();
RuntimeTypeHandle_t3027515415 L_15 = { reinterpret_cast<intptr_t> (RuntimeObject_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_16 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, L_15, /*hidden argument*/NULL);
RuntimeObject * L_17 = SerializationInfo_GetValue_m42271953(L_14, _stringLiteral892943380, L_16, /*hidden argument*/NULL);
__this->set_comparerRef_10(((RuntimeObject*)Castclass((RuntimeObject*)L_17, IComparer_t1540313114_il2cpp_TypeInfo_var)));
}
IL_00b6:
try
{ // begin try (depth: 1)
SerializationInfo_t950877179 * L_18 = __this->get_serializationInfo_11();
RuntimeTypeHandle_t3027515415 L_19 = { reinterpret_cast<intptr_t> (RuntimeObject_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_20 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, L_19, /*hidden argument*/NULL);
RuntimeObject * L_21 = SerializationInfo_GetValue_m42271953(L_18, _stringLiteral2714025534, L_20, /*hidden argument*/NULL);
__this->set_hcpRef_9(((RuntimeObject*)Castclass((RuntimeObject*)L_21, IHashCodeProvider_t267601189_il2cpp_TypeInfo_var)));
goto IL_00e6;
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__exception_local = (Exception_t *)e.ex;
if(il2cpp_codegen_class_is_assignable_from (RuntimeObject_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex)))
goto CATCH_00e0;
throw e;
}
CATCH_00e0:
{ // begin catch(System.Object)
goto IL_00e6;
} // end catch (depth: 1)
IL_00e6:
{
SerializationInfo_t950877179 * L_22 = __this->get_serializationInfo_11();
RuntimeTypeHandle_t3027515415 L_23 = { reinterpret_cast<intptr_t> (Int32_t2950945753_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_24 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, L_23, /*hidden argument*/NULL);
RuntimeObject * L_25 = SerializationInfo_GetValue_m42271953(L_22, _stringLiteral953796230, L_24, /*hidden argument*/NULL);
V_0 = ((*(int32_t*)((int32_t*)UnBox(L_25, Int32_t2950945753_il2cpp_TypeInfo_var))));
SerializationInfo_t950877179 * L_26 = __this->get_serializationInfo_11();
RuntimeTypeHandle_t3027515415 L_27 = { reinterpret_cast<intptr_t> (ObjectU5BU5D_t2843939325_0_0_0_var) };
Type_t * L_28 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, L_27, /*hidden argument*/NULL);
RuntimeObject * L_29 = SerializationInfo_GetValue_m42271953(L_26, _stringLiteral465436802, L_28, /*hidden argument*/NULL);
V_1 = ((ObjectU5BU5D_t2843939325*)Castclass((RuntimeObject*)L_29, ObjectU5BU5D_t2843939325_il2cpp_TypeInfo_var));
SerializationInfo_t950877179 * L_30 = __this->get_serializationInfo_11();
RuntimeTypeHandle_t3027515415 L_31 = { reinterpret_cast<intptr_t> (ObjectU5BU5D_t2843939325_0_0_0_var) };
Type_t * L_32 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, L_31, /*hidden argument*/NULL);
RuntimeObject * L_33 = SerializationInfo_GetValue_m42271953(L_30, _stringLiteral3498927737, L_32, /*hidden argument*/NULL);
V_2 = ((ObjectU5BU5D_t2843939325*)Castclass((RuntimeObject*)L_33, ObjectU5BU5D_t2843939325_il2cpp_TypeInfo_var));
ObjectU5BU5D_t2843939325* L_34 = V_1;
ObjectU5BU5D_t2843939325* L_35 = V_2;
if ((((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_34)->max_length))))) == ((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_35)->max_length)))))))
{
goto IL_015c;
}
}
{
SerializationException_t3941511869 * L_36 = (SerializationException_t3941511869 *)il2cpp_codegen_object_new(SerializationException_t3941511869_il2cpp_TypeInfo_var);
SerializationException__ctor_m3862484944(L_36, _stringLiteral1452171784, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_36,Hashtable_OnDeserialization_m1032066502_RuntimeMethod_var);
}
IL_015c:
{
int32_t L_37 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(Hashtable_t1853889766_il2cpp_TypeInfo_var);
int32_t L_38 = Hashtable_ToPrime_m33531354(NULL /*static, unused*/, L_37, /*hidden argument*/NULL);
V_0 = L_38;
int32_t L_39 = V_0;
int32_t L_40 = V_0;
Hashtable_SetTable_m1520626497(__this, ((SlotU5BU5D_t2994659099*)SZArrayNew(SlotU5BU5D_t2994659099_il2cpp_TypeInfo_var, (uint32_t)L_39)), ((Int32U5BU5D_t385246372*)SZArrayNew(Int32U5BU5D_t385246372_il2cpp_TypeInfo_var, (uint32_t)L_40)), /*hidden argument*/NULL);
V_3 = 0;
goto IL_018c;
}
IL_017c:
{
ObjectU5BU5D_t2843939325* L_41 = V_1;
int32_t L_42 = V_3;
int32_t L_43 = L_42;
RuntimeObject * L_44 = (L_41)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_43));
ObjectU5BU5D_t2843939325* L_45 = V_2;
int32_t L_46 = V_3;
int32_t L_47 = L_46;
RuntimeObject * L_48 = (L_45)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_47));
VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(24 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, __this, L_44, L_48);
int32_t L_49 = V_3;
V_3 = ((int32_t)il2cpp_codegen_add((int32_t)L_49, (int32_t)1));
}
IL_018c:
{
int32_t L_50 = V_3;
ObjectU5BU5D_t2843939325* L_51 = V_1;
if ((((int32_t)L_50) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_51)->max_length)))))))
{
goto IL_017c;
}
}
{
Hashtable_AdjustThreshold_m3338727562(__this, /*hidden argument*/NULL);
__this->set_serializationInfo_11((SerializationInfo_t950877179 *)NULL);
return;
}
}
// System.Collections.Hashtable System.Collections.Hashtable::Synchronized(System.Collections.Hashtable)
extern "C" Hashtable_t1853889766 * Hashtable_Synchronized_m2228653257 (RuntimeObject * __this /* static, unused */, Hashtable_t1853889766 * ___table0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Hashtable_Synchronized_m2228653257_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Hashtable_t1853889766 * L_0 = ___table0;
if (L_0)
{
goto IL_0011;
}
}
{
ArgumentNullException_t1615371798 * L_1 = (ArgumentNullException_t1615371798 *)il2cpp_codegen_object_new(ArgumentNullException_t1615371798_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m1170824041(L_1, _stringLiteral3496353285, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1,Hashtable_Synchronized_m2228653257_RuntimeMethod_var);
}
IL_0011:
{
Hashtable_t1853889766 * L_2 = ___table0;
SyncHashtable_t3569774773 * L_3 = (SyncHashtable_t3569774773 *)il2cpp_codegen_object_new(SyncHashtable_t3569774773_il2cpp_TypeInfo_var);
SyncHashtable__ctor_m988729399(L_3, L_2, /*hidden argument*/NULL);
return L_3;
}
}
// System.Int32 System.Collections.Hashtable::GetHash(System.Object)
extern "C" int32_t Hashtable_GetHash_m3068611952 (Hashtable_t1853889766 * __this, RuntimeObject * ___key0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Hashtable_GetHash_m3068611952_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = __this->get_equalityComparer_12();
if (!L_0)
{
goto IL_0018;
}
}
{
RuntimeObject* L_1 = __this->get_equalityComparer_12();
RuntimeObject * L_2 = ___key0;
int32_t L_3 = InterfaceFuncInvoker1< int32_t, RuntimeObject * >::Invoke(1 /* System.Int32 System.Collections.IEqualityComparer::GetHashCode(System.Object) */, IEqualityComparer_t1493878338_il2cpp_TypeInfo_var, L_1, L_2);
return L_3;
}
IL_0018:
{
RuntimeObject* L_4 = __this->get_hcpRef_9();
if (L_4)
{
goto IL_002a;
}
}
{
RuntimeObject * L_5 = ___key0;
int32_t L_6 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, L_5);
return L_6;
}
IL_002a:
{
RuntimeObject* L_7 = __this->get_hcpRef_9();
RuntimeObject * L_8 = ___key0;
int32_t L_9 = InterfaceFuncInvoker1< int32_t, RuntimeObject * >::Invoke(0 /* System.Int32 System.Collections.IHashCodeProvider::GetHashCode(System.Object) */, IHashCodeProvider_t267601189_il2cpp_TypeInfo_var, L_7, L_8);
return L_9;
}
}
// System.Boolean System.Collections.Hashtable::KeyEquals(System.Object,System.Object)
extern "C" bool Hashtable_KeyEquals_m2549637027 (Hashtable_t1853889766 * __this, RuntimeObject * ___item0, RuntimeObject * ___key1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Hashtable_KeyEquals_m2549637027_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject * L_0 = ___key1;
IL2CPP_RUNTIME_CLASS_INIT(KeyMarker_t2496412495_il2cpp_TypeInfo_var);
KeyMarker_t2496412495 * L_1 = ((KeyMarker_t2496412495_StaticFields*)il2cpp_codegen_static_fields_for(KeyMarker_t2496412495_il2cpp_TypeInfo_var))->get_Removed_0();
if ((!(((RuntimeObject*)(RuntimeObject *)L_0) == ((RuntimeObject*)(KeyMarker_t2496412495 *)L_1))))
{
goto IL_000d;
}
}
{
return (bool)0;
}
IL_000d:
{
RuntimeObject* L_2 = __this->get_equalityComparer_12();
if (!L_2)
{
goto IL_0026;
}
}
{
RuntimeObject* L_3 = __this->get_equalityComparer_12();
RuntimeObject * L_4 = ___item0;
RuntimeObject * L_5 = ___key1;
bool L_6 = InterfaceFuncInvoker2< bool, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Boolean System.Collections.IEqualityComparer::Equals(System.Object,System.Object) */, IEqualityComparer_t1493878338_il2cpp_TypeInfo_var, L_3, L_4, L_5);
return L_6;
}
IL_0026:
{
RuntimeObject* L_7 = __this->get_comparerRef_10();
if (L_7)
{
goto IL_0039;
}
}
{
RuntimeObject * L_8 = ___item0;
RuntimeObject * L_9 = ___key1;
bool L_10 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, L_8, L_9);
return L_10;
}
IL_0039:
{
RuntimeObject* L_11 = __this->get_comparerRef_10();
RuntimeObject * L_12 = ___item0;
RuntimeObject * L_13 = ___key1;
int32_t L_14 = InterfaceFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Int32 System.Collections.IComparer::Compare(System.Object,System.Object) */, IComparer_t1540313114_il2cpp_TypeInfo_var, L_11, L_12, L_13);
return (bool)((((int32_t)L_14) == ((int32_t)0))? 1 : 0);
}
}
// System.Void System.Collections.Hashtable::AdjustThreshold()
extern "C" void Hashtable_AdjustThreshold_m3338727562 (Hashtable_t1853889766 * __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
SlotU5BU5D_t2994659099* L_0 = __this->get_table_4();
V_0 = (((int32_t)((int32_t)(((RuntimeArray *)L_0)->max_length))));
int32_t L_1 = V_0;
float L_2 = __this->get_loadFactor_3();
__this->set_threshold_6((((int32_t)((int32_t)((float)il2cpp_codegen_multiply((float)(((float)((float)L_1))), (float)L_2))))));
int32_t L_3 = __this->get_threshold_6();
int32_t L_4 = V_0;
if ((((int32_t)L_3) < ((int32_t)L_4)))
{
goto IL_002e;
}
}
{
int32_t L_5 = V_0;
__this->set_threshold_6(((int32_t)il2cpp_codegen_subtract((int32_t)L_5, (int32_t)1)));
}
IL_002e:
{
return;
}
}
// System.Void System.Collections.Hashtable::SetTable(System.Collections.Hashtable/Slot[],System.Int32[])
extern "C" void Hashtable_SetTable_m1520626497 (Hashtable_t1853889766 * __this, SlotU5BU5D_t2994659099* ___table0, Int32U5BU5D_t385246372* ___hashes1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Hashtable_SetTable_m1520626497_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
SlotU5BU5D_t2994659099* L_0 = ___table0;
if (L_0)
{
goto IL_0011;
}
}
{
ArgumentNullException_t1615371798 * L_1 = (ArgumentNullException_t1615371798 *)il2cpp_codegen_object_new(ArgumentNullException_t1615371798_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m1170824041(L_1, _stringLiteral3496353285, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1,Hashtable_SetTable_m1520626497_RuntimeMethod_var);
}
IL_0011:
{
SlotU5BU5D_t2994659099* L_2 = ___table0;
__this->set_table_4(L_2);
Int32U5BU5D_t385246372* L_3 = ___hashes1;
__this->set_hashes_5(L_3);
Hashtable_AdjustThreshold_m3338727562(__this, /*hidden argument*/NULL);
return;
}
}
// System.Int32 System.Collections.Hashtable::Find(System.Object)
extern "C" int32_t Hashtable_Find_m1835111773 (Hashtable_t1853889766 * __this, RuntimeObject * ___key0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Hashtable_Find_m1835111773_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
SlotU5BU5D_t2994659099* V_0 = NULL;
Int32U5BU5D_t385246372* V_1 = NULL;
uint32_t V_2 = 0;
int32_t V_3 = 0;
uint32_t V_4 = 0;
uint32_t V_5 = 0;
uint32_t V_6 = 0;
Slot_t3975888750 V_7;
memset(&V_7, 0, sizeof(V_7));
int32_t V_8 = 0;
RuntimeObject * V_9 = NULL;
{
RuntimeObject * L_0 = ___key0;
if (L_0)
{
goto IL_0016;
}
}
{
ArgumentNullException_t1615371798 * L_1 = (ArgumentNullException_t1615371798 *)il2cpp_codegen_object_new(ArgumentNullException_t1615371798_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m2009621981(L_1, _stringLiteral2600271970, _stringLiteral2340372691, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1,Hashtable_Find_m1835111773_RuntimeMethod_var);
}
IL_0016:
{
SlotU5BU5D_t2994659099* L_2 = __this->get_table_4();
V_0 = L_2;
Int32U5BU5D_t385246372* L_3 = __this->get_hashes_5();
V_1 = L_3;
SlotU5BU5D_t2994659099* L_4 = V_0;
V_2 = (((int32_t)((int32_t)(((RuntimeArray *)L_4)->max_length))));
RuntimeObject * L_5 = ___key0;
int32_t L_6 = VirtFuncInvoker1< int32_t, RuntimeObject * >::Invoke(32 /* System.Int32 System.Collections.Hashtable::GetHash(System.Object) */, __this, L_5);
V_3 = ((int32_t)((int32_t)L_6&(int32_t)((int32_t)2147483647LL)));
int32_t L_7 = V_3;
V_4 = L_7;
int32_t L_8 = V_3;
uint32_t L_9 = V_2;
V_5 = ((int32_t)il2cpp_codegen_add((int32_t)((int32_t)((uint32_t)(int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)((int32_t)L_8>>(int32_t)5)), (int32_t)1))%(uint32_t)(int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_9, (int32_t)1)))), (int32_t)1));
uint32_t L_10 = V_2;
V_6 = L_10;
goto IL_00c6;
}
IL_004e:
{
uint32_t L_11 = V_4;
uint32_t L_12 = V_2;
V_4 = ((int32_t)((uint32_t)(int32_t)L_11%(uint32_t)(int32_t)L_12));
SlotU5BU5D_t2994659099* L_13 = V_0;
uint32_t L_14 = V_4;
V_7 = (*(Slot_t3975888750 *)((L_13)->GetAddressAtUnchecked(static_cast<il2cpp_array_size_t>((((uintptr_t)L_14))))));
Int32U5BU5D_t385246372* L_15 = V_1;
uint32_t L_16 = V_4;
uintptr_t L_17 = (((uintptr_t)L_16));
int32_t L_18 = (L_15)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_17));
V_8 = L_18;
RuntimeObject * L_19 = (&V_7)->get_key_0();
V_9 = L_19;
RuntimeObject * L_20 = V_9;
if (L_20)
{
goto IL_0080;
}
}
{
goto IL_00ce;
}
IL_0080:
{
RuntimeObject * L_21 = V_9;
RuntimeObject * L_22 = ___key0;
if ((((RuntimeObject*)(RuntimeObject *)L_21) == ((RuntimeObject*)(RuntimeObject *)L_22)))
{
goto IL_00a4;
}
}
{
int32_t L_23 = V_8;
int32_t L_24 = V_3;
if ((!(((uint32_t)((int32_t)((int32_t)L_23&(int32_t)((int32_t)2147483647LL)))) == ((uint32_t)L_24))))
{
goto IL_00a7;
}
}
{
RuntimeObject * L_25 = ___key0;
RuntimeObject * L_26 = V_9;
bool L_27 = VirtFuncInvoker2< bool, RuntimeObject *, RuntimeObject * >::Invoke(33 /* System.Boolean System.Collections.Hashtable::KeyEquals(System.Object,System.Object) */, __this, L_25, L_26);
if (!L_27)
{
goto IL_00a7;
}
}
IL_00a4:
{
uint32_t L_28 = V_4;
return L_28;
}
IL_00a7:
{
int32_t L_29 = V_8;
if (((int32_t)((int32_t)L_29&(int32_t)((int32_t)-2147483648LL))))
{
goto IL_00b9;
}
}
{
goto IL_00ce;
}
IL_00b9:
{
uint32_t L_30 = V_4;
uint32_t L_31 = V_5;
V_4 = ((int32_t)il2cpp_codegen_add((int32_t)L_30, (int32_t)L_31));
uint32_t L_32 = V_6;
V_6 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_32, (int32_t)1));
}
IL_00c6:
{
uint32_t L_33 = V_6;
if ((!(((uint32_t)L_33) <= ((uint32_t)0))))
{
goto IL_004e;
}
}
IL_00ce:
{
return (-1);
}
}
// System.Void System.Collections.Hashtable::Rehash()
extern "C" void Hashtable_Rehash_m2389268722 (Hashtable_t1853889766 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Hashtable_Rehash_m2389268722_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
uint32_t V_1 = 0;
SlotU5BU5D_t2994659099* V_2 = NULL;
SlotU5BU5D_t2994659099* V_3 = NULL;
Int32U5BU5D_t385246372* V_4 = NULL;
Int32U5BU5D_t385246372* V_5 = NULL;
int32_t V_6 = 0;
Slot_t3975888750 V_7;
memset(&V_7, 0, sizeof(V_7));
int32_t V_8 = 0;
uint32_t V_9 = 0;
uint32_t V_10 = 0;
uint32_t V_11 = 0;
{
SlotU5BU5D_t2994659099* L_0 = __this->get_table_4();
V_0 = (((int32_t)((int32_t)(((RuntimeArray *)L_0)->max_length))));
int32_t L_1 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(Hashtable_t1853889766_il2cpp_TypeInfo_var);
int32_t L_2 = Hashtable_ToPrime_m33531354(NULL /*static, unused*/, ((int32_t)((int32_t)((int32_t)((int32_t)L_1<<(int32_t)1))|(int32_t)1)), /*hidden argument*/NULL);
V_1 = L_2;
uint32_t L_3 = V_1;
V_2 = ((SlotU5BU5D_t2994659099*)SZArrayNew(SlotU5BU5D_t2994659099_il2cpp_TypeInfo_var, (uint32_t)(((uintptr_t)L_3))));
SlotU5BU5D_t2994659099* L_4 = __this->get_table_4();
V_3 = L_4;
uint32_t L_5 = V_1;
V_4 = ((Int32U5BU5D_t385246372*)SZArrayNew(Int32U5BU5D_t385246372_il2cpp_TypeInfo_var, (uint32_t)(((uintptr_t)L_5))));
Int32U5BU5D_t385246372* L_6 = __this->get_hashes_5();
V_5 = L_6;
V_6 = 0;
goto IL_00fe;
}
IL_003c:
{
SlotU5BU5D_t2994659099* L_7 = V_3;
int32_t L_8 = V_6;
V_7 = (*(Slot_t3975888750 *)((L_7)->GetAddressAtUnchecked(static_cast<il2cpp_array_size_t>(L_8))));
RuntimeObject * L_9 = (&V_7)->get_key_0();
if (!L_9)
{
goto IL_00f8;
}
}
{
Int32U5BU5D_t385246372* L_10 = V_5;
int32_t L_11 = V_6;
int32_t L_12 = L_11;
int32_t L_13 = (L_10)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_12));
V_8 = ((int32_t)((int32_t)L_13&(int32_t)((int32_t)2147483647LL)));
int32_t L_14 = V_8;
V_9 = L_14;
int32_t L_15 = V_8;
uint32_t L_16 = V_1;
V_10 = ((int32_t)il2cpp_codegen_add((int32_t)((int32_t)((uint32_t)(int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)((int32_t)L_15>>(int32_t)5)), (int32_t)1))%(uint32_t)(int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_16, (int32_t)1)))), (int32_t)1));
uint32_t L_17 = V_9;
uint32_t L_18 = V_1;
V_11 = ((int32_t)((uint32_t)(int32_t)L_17%(uint32_t)(int32_t)L_18));
goto IL_00f3;
}
IL_0081:
{
SlotU5BU5D_t2994659099* L_19 = V_2;
uint32_t L_20 = V_11;
RuntimeObject * L_21 = ((L_19)->GetAddressAtUnchecked(static_cast<il2cpp_array_size_t>((((uintptr_t)L_20)))))->get_key_0();
if (L_21)
{
goto IL_00d3;
}
}
{
SlotU5BU5D_t2994659099* L_22 = V_2;
uint32_t L_23 = V_11;
RuntimeObject * L_24 = (&V_7)->get_key_0();
((L_22)->GetAddressAtUnchecked(static_cast<il2cpp_array_size_t>((((uintptr_t)L_23)))))->set_key_0(L_24);
SlotU5BU5D_t2994659099* L_25 = V_2;
uint32_t L_26 = V_11;
RuntimeObject * L_27 = (&V_7)->get_value_1();
((L_25)->GetAddressAtUnchecked(static_cast<il2cpp_array_size_t>((((uintptr_t)L_26)))))->set_value_1(L_27);
Int32U5BU5D_t385246372* L_28 = V_4;
uint32_t L_29 = V_11;
int32_t* L_30 = ((L_28)->GetAddressAtUnchecked(static_cast<il2cpp_array_size_t>((((uintptr_t)L_29)))));
int32_t L_31 = V_8;
*((int32_t*)(L_30)) = (int32_t)((int32_t)((int32_t)(*((int32_t*)L_30))|(int32_t)L_31));
goto IL_00f8;
}
IL_00d3:
{
Int32U5BU5D_t385246372* L_32 = V_4;
uint32_t L_33 = V_11;
int32_t* L_34 = ((L_32)->GetAddressAtUnchecked(static_cast<il2cpp_array_size_t>((((uintptr_t)L_33)))));
*((int32_t*)(L_34)) = (int32_t)((int32_t)((int32_t)(*((int32_t*)L_34))|(int32_t)((int32_t)-2147483648LL)));
uint32_t L_35 = V_9;
uint32_t L_36 = V_10;
V_9 = ((int32_t)il2cpp_codegen_add((int32_t)L_35, (int32_t)L_36));
uint32_t L_37 = V_9;
uint32_t L_38 = V_1;
V_11 = ((int32_t)((uint32_t)(int32_t)L_37%(uint32_t)(int32_t)L_38));
}
IL_00f3:
{
goto IL_0081;
}
IL_00f8:
{
int32_t L_39 = V_6;
V_6 = ((int32_t)il2cpp_codegen_add((int32_t)L_39, (int32_t)1));
}
IL_00fe:
{
int32_t L_40 = V_6;
int32_t L_41 = V_0;
if ((((int32_t)L_40) < ((int32_t)L_41)))
{
goto IL_003c;
}
}
{
int32_t L_42 = __this->get_modificationCount_2();
__this->set_modificationCount_2(((int32_t)il2cpp_codegen_add((int32_t)L_42, (int32_t)1)));
SlotU5BU5D_t2994659099* L_43 = V_2;
Int32U5BU5D_t385246372* L_44 = V_4;
Hashtable_SetTable_m1520626497(__this, L_43, L_44, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Collections.Hashtable::PutImpl(System.Object,System.Object,System.Boolean)
extern "C" void Hashtable_PutImpl_m2485103604 (Hashtable_t1853889766 * __this, RuntimeObject * ___key0, RuntimeObject * ___value1, bool ___overwrite2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Hashtable_PutImpl_m2485103604_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
uint32_t V_0 = 0;
int32_t V_1 = 0;
uint32_t V_2 = 0;
uint32_t V_3 = 0;
SlotU5BU5D_t2994659099* V_4 = NULL;
Int32U5BU5D_t385246372* V_5 = NULL;
Slot_t3975888750 V_6;
memset(&V_6, 0, sizeof(V_6));
int32_t V_7 = 0;
int32_t V_8 = 0;
int32_t V_9 = 0;
int32_t V_10 = 0;
{
RuntimeObject * L_0 = ___key0;
if (L_0)
{
goto IL_0016;
}
}
{
ArgumentNullException_t1615371798 * L_1 = (ArgumentNullException_t1615371798 *)il2cpp_codegen_object_new(ArgumentNullException_t1615371798_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m2009621981(L_1, _stringLiteral2600271970, _stringLiteral2340372691, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1,Hashtable_PutImpl_m2485103604_RuntimeMethod_var);
}
IL_0016:
{
int32_t L_2 = __this->get_inUse_1();
int32_t L_3 = __this->get_threshold_6();
if ((((int32_t)L_2) < ((int32_t)L_3)))
{
goto IL_002d;
}
}
{
Hashtable_Rehash_m2389268722(__this, /*hidden argument*/NULL);
}
IL_002d:
{
SlotU5BU5D_t2994659099* L_4 = __this->get_table_4();
V_0 = (((int32_t)((int32_t)(((RuntimeArray *)L_4)->max_length))));
RuntimeObject * L_5 = ___key0;
int32_t L_6 = VirtFuncInvoker1< int32_t, RuntimeObject * >::Invoke(32 /* System.Int32 System.Collections.Hashtable::GetHash(System.Object) */, __this, L_5);
V_1 = ((int32_t)((int32_t)L_6&(int32_t)((int32_t)2147483647LL)));
int32_t L_7 = V_1;
V_2 = L_7;
uint32_t L_8 = V_2;
uint32_t L_9 = V_0;
V_3 = ((int32_t)il2cpp_codegen_add((int32_t)((int32_t)((uint32_t)(int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)((uint32_t)L_8>>5)), (int32_t)1))%(uint32_t)(int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_9, (int32_t)1)))), (int32_t)1));
SlotU5BU5D_t2994659099* L_10 = __this->get_table_4();
V_4 = L_10;
Int32U5BU5D_t385246372* L_11 = __this->get_hashes_5();
V_5 = L_11;
V_7 = (-1);
V_8 = 0;
goto IL_016d;
}
IL_006d:
{
uint32_t L_12 = V_2;
uint32_t L_13 = V_0;
V_9 = ((int32_t)((uint32_t)(int32_t)L_12%(uint32_t)(int32_t)L_13));
SlotU5BU5D_t2994659099* L_14 = V_4;
int32_t L_15 = V_9;
V_6 = (*(Slot_t3975888750 *)((L_14)->GetAddressAtUnchecked(static_cast<il2cpp_array_size_t>(L_15))));
Int32U5BU5D_t385246372* L_16 = V_5;
int32_t L_17 = V_9;
int32_t L_18 = L_17;
int32_t L_19 = (L_16)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_18));
V_10 = L_19;
int32_t L_20 = V_7;
if ((!(((uint32_t)L_20) == ((uint32_t)(-1)))))
{
goto IL_00b3;
}
}
{
RuntimeObject * L_21 = (&V_6)->get_key_0();
IL2CPP_RUNTIME_CLASS_INIT(KeyMarker_t2496412495_il2cpp_TypeInfo_var);
KeyMarker_t2496412495 * L_22 = ((KeyMarker_t2496412495_StaticFields*)il2cpp_codegen_static_fields_for(KeyMarker_t2496412495_il2cpp_TypeInfo_var))->get_Removed_0();
if ((!(((RuntimeObject*)(RuntimeObject *)L_21) == ((RuntimeObject*)(KeyMarker_t2496412495 *)L_22))))
{
goto IL_00b3;
}
}
{
int32_t L_23 = V_10;
if (!((int32_t)((int32_t)L_23&(int32_t)((int32_t)-2147483648LL))))
{
goto IL_00b3;
}
}
{
int32_t L_24 = V_9;
V_7 = L_24;
}
IL_00b3:
{
RuntimeObject * L_25 = (&V_6)->get_key_0();
if (!L_25)
{
goto IL_00dd;
}
}
{
RuntimeObject * L_26 = (&V_6)->get_key_0();
IL2CPP_RUNTIME_CLASS_INIT(KeyMarker_t2496412495_il2cpp_TypeInfo_var);
KeyMarker_t2496412495 * L_27 = ((KeyMarker_t2496412495_StaticFields*)il2cpp_codegen_static_fields_for(KeyMarker_t2496412495_il2cpp_TypeInfo_var))->get_Removed_0();
if ((!(((RuntimeObject*)(RuntimeObject *)L_26) == ((RuntimeObject*)(KeyMarker_t2496412495 *)L_27))))
{
goto IL_00ee;
}
}
{
int32_t L_28 = V_10;
if (((int32_t)((int32_t)L_28&(int32_t)((int32_t)-2147483648LL))))
{
goto IL_00ee;
}
}
IL_00dd:
{
int32_t L_29 = V_7;
if ((!(((uint32_t)L_29) == ((uint32_t)(-1)))))
{
goto IL_00e9;
}
}
{
int32_t L_30 = V_9;
V_7 = L_30;
}
IL_00e9:
{
goto IL_0177;
}
IL_00ee:
{
int32_t L_31 = V_10;
int32_t L_32 = V_1;
if ((!(((uint32_t)((int32_t)((int32_t)L_31&(int32_t)((int32_t)2147483647LL)))) == ((uint32_t)L_32))))
{
goto IL_0149;
}
}
{
RuntimeObject * L_33 = ___key0;
RuntimeObject * L_34 = (&V_6)->get_key_0();
bool L_35 = VirtFuncInvoker2< bool, RuntimeObject *, RuntimeObject * >::Invoke(33 /* System.Boolean System.Collections.Hashtable::KeyEquals(System.Object,System.Object) */, __this, L_33, L_34);
if (!L_35)
{
goto IL_0149;
}
}
{
bool L_36 = ___overwrite2;
if (!L_36)
{
goto IL_0137;
}
}
{
SlotU5BU5D_t2994659099* L_37 = V_4;
int32_t L_38 = V_9;
RuntimeObject * L_39 = ___value1;
((L_37)->GetAddressAtUnchecked(static_cast<il2cpp_array_size_t>(L_38)))->set_value_1(L_39);
int32_t L_40 = __this->get_modificationCount_2();
__this->set_modificationCount_2(((int32_t)il2cpp_codegen_add((int32_t)L_40, (int32_t)1)));
goto IL_0148;
}
IL_0137:
{
RuntimeObject * L_41 = ___key0;
IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
String_t* L_42 = String_Concat_m904156431(NULL /*static, unused*/, _stringLiteral4256447631, L_41, /*hidden argument*/NULL);
ArgumentException_t132251570 * L_43 = (ArgumentException_t132251570 *)il2cpp_codegen_object_new(ArgumentException_t132251570_il2cpp_TypeInfo_var);
ArgumentException__ctor_m1312628991(L_43, L_42, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_43,Hashtable_PutImpl_m2485103604_RuntimeMethod_var);
}
IL_0148:
{
return;
}
IL_0149:
{
int32_t L_44 = V_7;
if ((!(((uint32_t)L_44) == ((uint32_t)(-1)))))
{
goto IL_0163;
}
}
{
Int32U5BU5D_t385246372* L_45 = V_5;
int32_t L_46 = V_9;
int32_t* L_47 = ((L_45)->GetAddressAtUnchecked(static_cast<il2cpp_array_size_t>(L_46)));
*((int32_t*)(L_47)) = (int32_t)((int32_t)((int32_t)(*((int32_t*)L_47))|(int32_t)((int32_t)-2147483648LL)));
}
IL_0163:
{
uint32_t L_48 = V_2;
uint32_t L_49 = V_3;
V_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_48, (int32_t)L_49));
int32_t L_50 = V_8;
V_8 = ((int32_t)il2cpp_codegen_add((int32_t)L_50, (int32_t)1));
}
IL_016d:
{
int32_t L_51 = V_8;
uint32_t L_52 = V_0;
if ((((int64_t)(((int64_t)((int64_t)L_51)))) < ((int64_t)(((int64_t)((uint64_t)L_52))))))
{
goto IL_006d;
}
}
IL_0177:
{
int32_t L_53 = V_7;
if ((((int32_t)L_53) == ((int32_t)(-1))))
{
goto IL_01c7;
}
}
{
SlotU5BU5D_t2994659099* L_54 = V_4;
int32_t L_55 = V_7;
RuntimeObject * L_56 = ___key0;
((L_54)->GetAddressAtUnchecked(static_cast<il2cpp_array_size_t>(L_55)))->set_key_0(L_56);
SlotU5BU5D_t2994659099* L_57 = V_4;
int32_t L_58 = V_7;
RuntimeObject * L_59 = ___value1;
((L_57)->GetAddressAtUnchecked(static_cast<il2cpp_array_size_t>(L_58)))->set_value_1(L_59);
Int32U5BU5D_t385246372* L_60 = V_5;
int32_t L_61 = V_7;
int32_t* L_62 = ((L_60)->GetAddressAtUnchecked(static_cast<il2cpp_array_size_t>(L_61)));
int32_t L_63 = V_1;
*((int32_t*)(L_62)) = (int32_t)((int32_t)((int32_t)(*((int32_t*)L_62))|(int32_t)L_63));
int32_t L_64 = __this->get_inUse_1();
__this->set_inUse_1(((int32_t)il2cpp_codegen_add((int32_t)L_64, (int32_t)1)));
int32_t L_65 = __this->get_modificationCount_2();
__this->set_modificationCount_2(((int32_t)il2cpp_codegen_add((int32_t)L_65, (int32_t)1)));
}
IL_01c7:
{
return;
}
}
// System.Void System.Collections.Hashtable::CopyToArray(System.Array,System.Int32,System.Collections.Hashtable/EnumeratorMode)
extern "C" void Hashtable_CopyToArray_m320168007 (Hashtable_t1853889766 * __this, RuntimeArray * ___arr0, int32_t ___i1, int32_t ___mode2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Hashtable_CopyToArray_m320168007_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
{
int32_t L_0 = ___mode2;
Enumerator_t661358686 * L_1 = (Enumerator_t661358686 *)il2cpp_codegen_object_new(Enumerator_t661358686_il2cpp_TypeInfo_var);
Enumerator__ctor_m3921352641(L_1, __this, L_0, /*hidden argument*/NULL);
V_0 = L_1;
goto IL_001f;
}
IL_000d:
{
RuntimeArray * L_2 = ___arr0;
RuntimeObject* L_3 = V_0;
RuntimeObject * L_4 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(0 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t1853284238_il2cpp_TypeInfo_var, L_3);
int32_t L_5 = ___i1;
int32_t L_6 = L_5;
___i1 = ((int32_t)il2cpp_codegen_add((int32_t)L_6, (int32_t)1));
Array_SetValue_m3412255035(L_2, L_4, L_6, /*hidden argument*/NULL);
}
IL_001f:
{
RuntimeObject* L_7 = V_0;
bool L_8 = InterfaceFuncInvoker0< bool >::Invoke(1 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t1853284238_il2cpp_TypeInfo_var, L_7);
if (L_8)
{
goto IL_000d;
}
}
{
return;
}
}
// System.Boolean System.Collections.Hashtable::TestPrime(System.Int32)
extern "C" bool Hashtable_TestPrime_m3839319309 (RuntimeObject * __this /* static, unused */, int32_t ___x0, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
{
int32_t L_0 = ___x0;
if (!((int32_t)((int32_t)L_0&(int32_t)1)))
{
goto IL_002f;
}
}
{
int32_t L_1 = ___x0;
double L_2 = sqrt((((double)((double)L_1))));
V_0 = (((int32_t)((int32_t)L_2)));
V_1 = 3;
goto IL_0026;
}
IL_0018:
{
int32_t L_3 = ___x0;
int32_t L_4 = V_1;
if (((int32_t)((int32_t)L_3%(int32_t)L_4)))
{
goto IL_0022;
}
}
{
return (bool)0;
}
IL_0022:
{
int32_t L_5 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_5, (int32_t)2));
}
IL_0026:
{
int32_t L_6 = V_1;
int32_t L_7 = V_0;
if ((((int32_t)L_6) < ((int32_t)L_7)))
{
goto IL_0018;
}
}
{
return (bool)1;
}
IL_002f:
{
int32_t L_8 = ___x0;
return (bool)((((int32_t)L_8) == ((int32_t)2))? 1 : 0);
}
}
// System.Int32 System.Collections.Hashtable::CalcPrime(System.Int32)
extern "C" int32_t Hashtable_CalcPrime_m550773117 (RuntimeObject * __this /* static, unused */, int32_t ___x0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Hashtable_CalcPrime_m550773117_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
{
int32_t L_0 = ___x0;
V_0 = ((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)((int32_t)L_0&(int32_t)((int32_t)-2))), (int32_t)1));
goto IL_001d;
}
IL_000c:
{
int32_t L_1 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(Hashtable_t1853889766_il2cpp_TypeInfo_var);
bool L_2 = Hashtable_TestPrime_m3839319309(NULL /*static, unused*/, L_1, /*hidden argument*/NULL);
if (!L_2)
{
goto IL_0019;
}
}
{
int32_t L_3 = V_0;
return L_3;
}
IL_0019:
{
int32_t L_4 = V_0;
V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_4, (int32_t)2));
}
IL_001d:
{
int32_t L_5 = V_0;
if ((((int32_t)L_5) < ((int32_t)((int32_t)2147483647LL))))
{
goto IL_000c;
}
}
{
int32_t L_6 = ___x0;
return L_6;
}
}
// System.Int32 System.Collections.Hashtable::ToPrime(System.Int32)
extern "C" int32_t Hashtable_ToPrime_m33531354 (RuntimeObject * __this /* static, unused */, int32_t ___x0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Hashtable_ToPrime_m33531354_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
{
V_0 = 0;
goto IL_0020;
}
IL_0007:
{
int32_t L_0 = ___x0;
IL2CPP_RUNTIME_CLASS_INIT(Hashtable_t1853889766_il2cpp_TypeInfo_var);
Int32U5BU5D_t385246372* L_1 = ((Hashtable_t1853889766_StaticFields*)il2cpp_codegen_static_fields_for(Hashtable_t1853889766_il2cpp_TypeInfo_var))->get_primeTbl_13();
int32_t L_2 = V_0;
int32_t L_3 = L_2;
int32_t L_4 = (L_1)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_3));
if ((((int32_t)L_0) > ((int32_t)L_4)))
{
goto IL_001c;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(Hashtable_t1853889766_il2cpp_TypeInfo_var);
Int32U5BU5D_t385246372* L_5 = ((Hashtable_t1853889766_StaticFields*)il2cpp_codegen_static_fields_for(Hashtable_t1853889766_il2cpp_TypeInfo_var))->get_primeTbl_13();
int32_t L_6 = V_0;
int32_t L_7 = L_6;
int32_t L_8 = (L_5)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_7));
return L_8;
}
IL_001c:
{
int32_t L_9 = V_0;
V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_9, (int32_t)1));
}
IL_0020:
{
int32_t L_10 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(Hashtable_t1853889766_il2cpp_TypeInfo_var);
Int32U5BU5D_t385246372* L_11 = ((Hashtable_t1853889766_StaticFields*)il2cpp_codegen_static_fields_for(Hashtable_t1853889766_il2cpp_TypeInfo_var))->get_primeTbl_13();
if ((((int32_t)L_10) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_11)->max_length)))))))
{
goto IL_0007;
}
}
{
int32_t L_12 = ___x0;
IL2CPP_RUNTIME_CLASS_INIT(Hashtable_t1853889766_il2cpp_TypeInfo_var);
int32_t L_13 = Hashtable_CalcPrime_m550773117(NULL /*static, unused*/, L_12, /*hidden argument*/NULL);
return L_13;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Collections.Hashtable/Enumerator::.ctor(System.Collections.Hashtable,System.Collections.Hashtable/EnumeratorMode)
extern "C" void Enumerator__ctor_m3921352641 (Enumerator_t661358686 * __this, Hashtable_t1853889766 * ___host0, int32_t ___mode1, const RuntimeMethod* method)
{
{
Object__ctor_m297566312(__this, /*hidden argument*/NULL);
Hashtable_t1853889766 * L_0 = ___host0;
__this->set_host_0(L_0);
Hashtable_t1853889766 * L_1 = ___host0;
int32_t L_2 = L_1->get_modificationCount_2();
__this->set_stamp_1(L_2);
Hashtable_t1853889766 * L_3 = ___host0;
SlotU5BU5D_t2994659099* L_4 = L_3->get_table_4();
__this->set_size_3((((int32_t)((int32_t)(((RuntimeArray *)L_4)->max_length)))));
int32_t L_5 = ___mode1;
__this->set_mode_4(L_5);
Enumerator_Reset_m4274366540(__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Collections.Hashtable/Enumerator::.cctor()
extern "C" void Enumerator__cctor_m4169372056 (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Enumerator__cctor_m4169372056_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
((Enumerator_t661358686_StaticFields*)il2cpp_codegen_static_fields_for(Enumerator_t661358686_il2cpp_TypeInfo_var))->set_xstr_7(_stringLiteral3975821837);
return;
}
}
// System.Void System.Collections.Hashtable/Enumerator::FailFast()
extern "C" void Enumerator_FailFast_m3955249002 (Enumerator_t661358686 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Enumerator_FailFast_m3955249002_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Hashtable_t1853889766 * L_0 = __this->get_host_0();
int32_t L_1 = L_0->get_modificationCount_2();
int32_t L_2 = __this->get_stamp_1();
if ((((int32_t)L_1) == ((int32_t)L_2)))
{
goto IL_0021;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(Enumerator_t661358686_il2cpp_TypeInfo_var);
String_t* L_3 = ((Enumerator_t661358686_StaticFields*)il2cpp_codegen_static_fields_for(Enumerator_t661358686_il2cpp_TypeInfo_var))->get_xstr_7();
InvalidOperationException_t56020091 * L_4 = (InvalidOperationException_t56020091 *)il2cpp_codegen_object_new(InvalidOperationException_t56020091_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m237278729(L_4, L_3, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_4,Enumerator_FailFast_m3955249002_RuntimeMethod_var);
}
IL_0021:
{
return;
}
}
// System.Void System.Collections.Hashtable/Enumerator::Reset()
extern "C" void Enumerator_Reset_m4274366540 (Enumerator_t661358686 * __this, const RuntimeMethod* method)
{
{
Enumerator_FailFast_m3955249002(__this, /*hidden argument*/NULL);
__this->set_pos_2((-1));
__this->set_currentKey_5(NULL);
__this->set_currentValue_6(NULL);
return;
}
}
// System.Boolean System.Collections.Hashtable/Enumerator::MoveNext()
extern "C" bool Enumerator_MoveNext_m1474126172 (Enumerator_t661358686 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Enumerator_MoveNext_m1474126172_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Slot_t3975888750 V_0;
memset(&V_0, 0, sizeof(V_0));
int32_t V_1 = 0;
{
Enumerator_FailFast_m3955249002(__this, /*hidden argument*/NULL);
int32_t L_0 = __this->get_pos_2();
int32_t L_1 = __this->get_size_3();
if ((((int32_t)L_0) >= ((int32_t)L_1)))
{
goto IL_008d;
}
}
{
goto IL_0071;
}
IL_001c:
{
Hashtable_t1853889766 * L_2 = __this->get_host_0();
SlotU5BU5D_t2994659099* L_3 = L_2->get_table_4();
int32_t L_4 = __this->get_pos_2();
V_0 = (*(Slot_t3975888750 *)((L_3)->GetAddressAtUnchecked(static_cast<il2cpp_array_size_t>(L_4))));
RuntimeObject * L_5 = (&V_0)->get_key_0();
if (!L_5)
{
goto IL_0071;
}
}
{
RuntimeObject * L_6 = (&V_0)->get_key_0();
IL2CPP_RUNTIME_CLASS_INIT(KeyMarker_t2496412495_il2cpp_TypeInfo_var);
KeyMarker_t2496412495 * L_7 = ((KeyMarker_t2496412495_StaticFields*)il2cpp_codegen_static_fields_for(KeyMarker_t2496412495_il2cpp_TypeInfo_var))->get_Removed_0();
if ((((RuntimeObject*)(RuntimeObject *)L_6) == ((RuntimeObject*)(KeyMarker_t2496412495 *)L_7)))
{
goto IL_0071;
}
}
{
RuntimeObject * L_8 = (&V_0)->get_key_0();
__this->set_currentKey_5(L_8);
RuntimeObject * L_9 = (&V_0)->get_value_1();
__this->set_currentValue_6(L_9);
return (bool)1;
}
IL_0071:
{
int32_t L_10 = __this->get_pos_2();
int32_t L_11 = ((int32_t)il2cpp_codegen_add((int32_t)L_10, (int32_t)1));
V_1 = L_11;
__this->set_pos_2(L_11);
int32_t L_12 = V_1;
int32_t L_13 = __this->get_size_3();
if ((((int32_t)L_12) < ((int32_t)L_13)))
{
goto IL_001c;
}
}
IL_008d:
{
__this->set_currentKey_5(NULL);
__this->set_currentValue_6(NULL);
return (bool)0;
}
}
// System.Collections.DictionaryEntry System.Collections.Hashtable/Enumerator::get_Entry()
extern "C" DictionaryEntry_t3123975638 Enumerator_get_Entry_m2184304359 (Enumerator_t661358686 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Enumerator_get_Entry_m2184304359_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject * L_0 = __this->get_currentKey_5();
if (L_0)
{
goto IL_0011;
}
}
{
InvalidOperationException_t56020091 * L_1 = (InvalidOperationException_t56020091 *)il2cpp_codegen_object_new(InvalidOperationException_t56020091_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m2734335978(L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1,Enumerator_get_Entry_m2184304359_RuntimeMethod_var);
}
IL_0011:
{
Enumerator_FailFast_m3955249002(__this, /*hidden argument*/NULL);
RuntimeObject * L_2 = __this->get_currentKey_5();
RuntimeObject * L_3 = __this->get_currentValue_6();
DictionaryEntry_t3123975638 L_4;
memset(&L_4, 0, sizeof(L_4));
DictionaryEntry__ctor_m2585376310((&L_4), L_2, L_3, /*hidden argument*/NULL);
return L_4;
}
}
// System.Object System.Collections.Hashtable/Enumerator::get_Key()
extern "C" RuntimeObject * Enumerator_get_Key_m2288024554 (Enumerator_t661358686 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Enumerator_get_Key_m2288024554_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject * L_0 = __this->get_currentKey_5();
if (L_0)
{
goto IL_0011;
}
}
{
InvalidOperationException_t56020091 * L_1 = (InvalidOperationException_t56020091 *)il2cpp_codegen_object_new(InvalidOperationException_t56020091_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m2734335978(L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1,Enumerator_get_Key_m2288024554_RuntimeMethod_var);
}
IL_0011:
{
Enumerator_FailFast_m3955249002(__this, /*hidden argument*/NULL);
RuntimeObject * L_2 = __this->get_currentKey_5();
return L_2;
}
}
// System.Object System.Collections.Hashtable/Enumerator::get_Value()
extern "C" RuntimeObject * Enumerator_get_Value_m1047280424 (Enumerator_t661358686 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Enumerator_get_Value_m1047280424_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject * L_0 = __this->get_currentKey_5();
if (L_0)
{
goto IL_0011;
}
}
{
InvalidOperationException_t56020091 * L_1 = (InvalidOperationException_t56020091 *)il2cpp_codegen_object_new(InvalidOperationException_t56020091_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m2734335978(L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1,Enumerator_get_Value_m1047280424_RuntimeMethod_var);
}
IL_0011:
{
Enumerator_FailFast_m3955249002(__this, /*hidden argument*/NULL);
RuntimeObject * L_2 = __this->get_currentValue_6();
return L_2;
}
}
// System.Object System.Collections.Hashtable/Enumerator::get_Current()
extern "C" RuntimeObject * Enumerator_get_Current_m2763018784 (Enumerator_t661358686 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Enumerator_get_Current_m2763018784_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
{
RuntimeObject * L_0 = __this->get_currentKey_5();
if (L_0)
{
goto IL_0011;
}
}
{
InvalidOperationException_t56020091 * L_1 = (InvalidOperationException_t56020091 *)il2cpp_codegen_object_new(InvalidOperationException_t56020091_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m2734335978(L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1,Enumerator_get_Current_m2763018784_RuntimeMethod_var);
}
IL_0011:
{
int32_t L_2 = __this->get_mode_4();
V_0 = L_2;
int32_t L_3 = V_0;
switch (L_3)
{
case 0:
{
goto IL_002f;
}
case 1:
{
goto IL_0036;
}
case 2:
{
goto IL_003d;
}
}
}
{
goto IL_0054;
}
IL_002f:
{
RuntimeObject * L_4 = __this->get_currentKey_5();
return L_4;
}
IL_0036:
{
RuntimeObject * L_5 = __this->get_currentValue_6();
return L_5;
}
IL_003d:
{
RuntimeObject * L_6 = __this->get_currentKey_5();
RuntimeObject * L_7 = __this->get_currentValue_6();
DictionaryEntry_t3123975638 L_8;
memset(&L_8, 0, sizeof(L_8));
DictionaryEntry__ctor_m2585376310((&L_8), L_6, L_7, /*hidden argument*/NULL);
DictionaryEntry_t3123975638 L_9 = L_8;
RuntimeObject * L_10 = Box(DictionaryEntry_t3123975638_il2cpp_TypeInfo_var, &L_9);
return L_10;
}
IL_0054:
{
Exception_t * L_11 = (Exception_t *)il2cpp_codegen_object_new(Exception_t_il2cpp_TypeInfo_var);
Exception__ctor_m1152696503(L_11, _stringLiteral2944759611, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_11,Enumerator_get_Current_m2763018784_RuntimeMethod_var);
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Collections.Hashtable/HashKeys::.ctor(System.Collections.Hashtable)
extern "C" void HashKeys__ctor_m2668698759 (HashKeys_t1568156503 * __this, Hashtable_t1853889766 * ___host0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (HashKeys__ctor_m2668698759_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Object__ctor_m297566312(__this, /*hidden argument*/NULL);
Hashtable_t1853889766 * L_0 = ___host0;
if (L_0)
{
goto IL_0012;
}
}
{
ArgumentNullException_t1615371798 * L_1 = (ArgumentNullException_t1615371798 *)il2cpp_codegen_object_new(ArgumentNullException_t1615371798_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m2751210921(L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1,HashKeys__ctor_m2668698759_RuntimeMethod_var);
}
IL_0012:
{
Hashtable_t1853889766 * L_2 = ___host0;
__this->set_host_0(L_2);
return;
}
}
// System.Int32 System.Collections.Hashtable/HashKeys::get_Count()
extern "C" int32_t HashKeys_get_Count_m4206343425 (HashKeys_t1568156503 * __this, const RuntimeMethod* method)
{
{
Hashtable_t1853889766 * L_0 = __this->get_host_0();
int32_t L_1 = VirtFuncInvoker0< int32_t >::Invoke(16 /* System.Int32 System.Collections.Hashtable::get_Count() */, L_0);
return L_1;
}
}
// System.Boolean System.Collections.Hashtable/HashKeys::get_IsSynchronized()
extern "C" bool HashKeys_get_IsSynchronized_m174400341 (HashKeys_t1568156503 * __this, const RuntimeMethod* method)
{
{
Hashtable_t1853889766 * L_0 = __this->get_host_0();
bool L_1 = VirtFuncInvoker0< bool >::Invoke(17 /* System.Boolean System.Collections.Hashtable::get_IsSynchronized() */, L_0);
return L_1;
}
}
// System.Object System.Collections.Hashtable/HashKeys::get_SyncRoot()
extern "C" RuntimeObject * HashKeys_get_SyncRoot_m3757723936 (HashKeys_t1568156503 * __this, const RuntimeMethod* method)
{
{
Hashtable_t1853889766 * L_0 = __this->get_host_0();
RuntimeObject * L_1 = VirtFuncInvoker0< RuntimeObject * >::Invoke(18 /* System.Object System.Collections.Hashtable::get_SyncRoot() */, L_0);
return L_1;
}
}
// System.Void System.Collections.Hashtable/HashKeys::CopyTo(System.Array,System.Int32)
extern "C" void HashKeys_CopyTo_m4219627824 (HashKeys_t1568156503 * __this, RuntimeArray * ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (HashKeys_CopyTo_m4219627824_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeArray * L_0 = ___array0;
if (L_0)
{
goto IL_0011;
}
}
{
ArgumentNullException_t1615371798 * L_1 = (ArgumentNullException_t1615371798 *)il2cpp_codegen_object_new(ArgumentNullException_t1615371798_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m1170824041(L_1, _stringLiteral4007973390, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1,HashKeys_CopyTo_m4219627824_RuntimeMethod_var);
}
IL_0011:
{
RuntimeArray * L_2 = ___array0;
int32_t L_3 = Array_get_Rank_m3448755881(L_2, /*hidden argument*/NULL);
if ((((int32_t)L_3) == ((int32_t)1)))
{
goto IL_0028;
}
}
{
ArgumentException_t132251570 * L_4 = (ArgumentException_t132251570 *)il2cpp_codegen_object_new(ArgumentException_t132251570_il2cpp_TypeInfo_var);
ArgumentException__ctor_m1312628991(L_4, _stringLiteral4007973390, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_4,HashKeys_CopyTo_m4219627824_RuntimeMethod_var);
}
IL_0028:
{
int32_t L_5 = ___arrayIndex1;
if ((((int32_t)L_5) >= ((int32_t)0)))
{
goto IL_003a;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_6 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_6, _stringLiteral335484879, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_6,HashKeys_CopyTo_m4219627824_RuntimeMethod_var);
}
IL_003a:
{
RuntimeArray * L_7 = ___array0;
int32_t L_8 = Array_get_Length_m21610649(L_7, /*hidden argument*/NULL);
int32_t L_9 = ___arrayIndex1;
int32_t L_10 = VirtFuncInvoker0< int32_t >::Invoke(9 /* System.Int32 System.Collections.Hashtable/HashKeys::get_Count() */, __this);
if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_8, (int32_t)L_9))) >= ((int32_t)L_10)))
{
goto IL_0058;
}
}
{
ArgumentException_t132251570 * L_11 = (ArgumentException_t132251570 *)il2cpp_codegen_object_new(ArgumentException_t132251570_il2cpp_TypeInfo_var);
ArgumentException__ctor_m1312628991(L_11, _stringLiteral1447312481, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_11,HashKeys_CopyTo_m4219627824_RuntimeMethod_var);
}
IL_0058:
{
Hashtable_t1853889766 * L_12 = __this->get_host_0();
RuntimeArray * L_13 = ___array0;
int32_t L_14 = ___arrayIndex1;
Hashtable_CopyToArray_m320168007(L_12, L_13, L_14, 0, /*hidden argument*/NULL);
return;
}
}
// System.Collections.IEnumerator System.Collections.Hashtable/HashKeys::GetEnumerator()
extern "C" RuntimeObject* HashKeys_GetEnumerator_m3432430781 (HashKeys_t1568156503 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (HashKeys_GetEnumerator_m3432430781_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Hashtable_t1853889766 * L_0 = __this->get_host_0();
Enumerator_t661358686 * L_1 = (Enumerator_t661358686 *)il2cpp_codegen_object_new(Enumerator_t661358686_il2cpp_TypeInfo_var);
Enumerator__ctor_m3921352641(L_1, L_0, 0, /*hidden argument*/NULL);
return L_1;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Collections.Hashtable/HashValues::.ctor(System.Collections.Hashtable)
extern "C" void HashValues__ctor_m1651100305 (HashValues_t618387445 * __this, Hashtable_t1853889766 * ___host0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (HashValues__ctor_m1651100305_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Object__ctor_m297566312(__this, /*hidden argument*/NULL);
Hashtable_t1853889766 * L_0 = ___host0;
if (L_0)
{
goto IL_0012;
}
}
{
ArgumentNullException_t1615371798 * L_1 = (ArgumentNullException_t1615371798 *)il2cpp_codegen_object_new(ArgumentNullException_t1615371798_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m2751210921(L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1,HashValues__ctor_m1651100305_RuntimeMethod_var);
}
IL_0012:
{
Hashtable_t1853889766 * L_2 = ___host0;
__this->set_host_0(L_2);
return;
}
}
// System.Int32 System.Collections.Hashtable/HashValues::get_Count()
extern "C" int32_t HashValues_get_Count_m1050845476 (HashValues_t618387445 * __this, const RuntimeMethod* method)
{
{
Hashtable_t1853889766 * L_0 = __this->get_host_0();
int32_t L_1 = VirtFuncInvoker0< int32_t >::Invoke(16 /* System.Int32 System.Collections.Hashtable::get_Count() */, L_0);
return L_1;
}
}
// System.Boolean System.Collections.Hashtable/HashValues::get_IsSynchronized()
extern "C" bool HashValues_get_IsSynchronized_m3461082747 (HashValues_t618387445 * __this, const RuntimeMethod* method)
{
{
Hashtable_t1853889766 * L_0 = __this->get_host_0();
bool L_1 = VirtFuncInvoker0< bool >::Invoke(17 /* System.Boolean System.Collections.Hashtable::get_IsSynchronized() */, L_0);
return L_1;
}
}
// System.Object System.Collections.Hashtable/HashValues::get_SyncRoot()
extern "C" RuntimeObject * HashValues_get_SyncRoot_m337642017 (HashValues_t618387445 * __this, const RuntimeMethod* method)
{
{
Hashtable_t1853889766 * L_0 = __this->get_host_0();
RuntimeObject * L_1 = VirtFuncInvoker0< RuntimeObject * >::Invoke(18 /* System.Object System.Collections.Hashtable::get_SyncRoot() */, L_0);
return L_1;
}
}
// System.Void System.Collections.Hashtable/HashValues::CopyTo(System.Array,System.Int32)
extern "C" void HashValues_CopyTo_m2621023127 (HashValues_t618387445 * __this, RuntimeArray * ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (HashValues_CopyTo_m2621023127_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeArray * L_0 = ___array0;
if (L_0)
{
goto IL_0011;
}
}
{
ArgumentNullException_t1615371798 * L_1 = (ArgumentNullException_t1615371798 *)il2cpp_codegen_object_new(ArgumentNullException_t1615371798_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m1170824041(L_1, _stringLiteral4007973390, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1,HashValues_CopyTo_m2621023127_RuntimeMethod_var);
}
IL_0011:
{
RuntimeArray * L_2 = ___array0;
int32_t L_3 = Array_get_Rank_m3448755881(L_2, /*hidden argument*/NULL);
if ((((int32_t)L_3) == ((int32_t)1)))
{
goto IL_0028;
}
}
{
ArgumentException_t132251570 * L_4 = (ArgumentException_t132251570 *)il2cpp_codegen_object_new(ArgumentException_t132251570_il2cpp_TypeInfo_var);
ArgumentException__ctor_m1312628991(L_4, _stringLiteral4007973390, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_4,HashValues_CopyTo_m2621023127_RuntimeMethod_var);
}
IL_0028:
{
int32_t L_5 = ___arrayIndex1;
if ((((int32_t)L_5) >= ((int32_t)0)))
{
goto IL_003a;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_6 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_6, _stringLiteral335484879, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_6,HashValues_CopyTo_m2621023127_RuntimeMethod_var);
}
IL_003a:
{
RuntimeArray * L_7 = ___array0;
int32_t L_8 = Array_get_Length_m21610649(L_7, /*hidden argument*/NULL);
int32_t L_9 = ___arrayIndex1;
int32_t L_10 = VirtFuncInvoker0< int32_t >::Invoke(9 /* System.Int32 System.Collections.Hashtable/HashValues::get_Count() */, __this);
if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_8, (int32_t)L_9))) >= ((int32_t)L_10)))
{
goto IL_0058;
}
}
{
ArgumentException_t132251570 * L_11 = (ArgumentException_t132251570 *)il2cpp_codegen_object_new(ArgumentException_t132251570_il2cpp_TypeInfo_var);
ArgumentException__ctor_m1312628991(L_11, _stringLiteral1447312481, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_11,HashValues_CopyTo_m2621023127_RuntimeMethod_var);
}
IL_0058:
{
Hashtable_t1853889766 * L_12 = __this->get_host_0();
RuntimeArray * L_13 = ___array0;
int32_t L_14 = ___arrayIndex1;
Hashtable_CopyToArray_m320168007(L_12, L_13, L_14, 1, /*hidden argument*/NULL);
return;
}
}
// System.Collections.IEnumerator System.Collections.Hashtable/HashValues::GetEnumerator()
extern "C" RuntimeObject* HashValues_GetEnumerator_m2924783834 (HashValues_t618387445 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (HashValues_GetEnumerator_m2924783834_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Hashtable_t1853889766 * L_0 = __this->get_host_0();
Enumerator_t661358686 * L_1 = (Enumerator_t661358686 *)il2cpp_codegen_object_new(Enumerator_t661358686_il2cpp_TypeInfo_var);
Enumerator__ctor_m3921352641(L_1, L_0, 1, /*hidden argument*/NULL);
return L_1;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Collections.Hashtable/KeyMarker::.ctor()
extern "C" void KeyMarker__ctor_m2295185526 (KeyMarker_t2496412495 * __this, const RuntimeMethod* method)
{
{
Object__ctor_m297566312(__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Collections.Hashtable/KeyMarker::.cctor()
extern "C" void KeyMarker__cctor_m2590194914 (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (KeyMarker__cctor_m2590194914_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
KeyMarker_t2496412495 * L_0 = (KeyMarker_t2496412495 *)il2cpp_codegen_object_new(KeyMarker_t2496412495_il2cpp_TypeInfo_var);
KeyMarker__ctor_m2295185526(L_0, /*hidden argument*/NULL);
((KeyMarker_t2496412495_StaticFields*)il2cpp_codegen_static_fields_for(KeyMarker_t2496412495_il2cpp_TypeInfo_var))->set_Removed_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Conversion methods for marshalling of: System.Collections.Hashtable/Slot
extern "C" void Slot_t3975888750_marshal_pinvoke(const Slot_t3975888750& unmarshaled, Slot_t3975888750_marshaled_pinvoke& marshaled)
{
if (unmarshaled.get_key_0() != NULL)
{
if (il2cpp_codegen_is_import_or_windows_runtime(unmarshaled.get_key_0()))
{
il2cpp_hresult_t hr = ((Il2CppComObject *)unmarshaled.get_key_0())->identity->QueryInterface(Il2CppIUnknown::IID, reinterpret_cast<void**>(&marshaled.___key_0));
il2cpp_codegen_com_raise_exception_if_failed(hr, false);
}
else
{
marshaled.___key_0 = il2cpp_codegen_com_get_or_create_ccw<Il2CppIUnknown>(unmarshaled.get_key_0());
}
}
else
{
marshaled.___key_0 = NULL;
}
if (unmarshaled.get_value_1() != NULL)
{
if (il2cpp_codegen_is_import_or_windows_runtime(unmarshaled.get_value_1()))
{
il2cpp_hresult_t hr = ((Il2CppComObject *)unmarshaled.get_value_1())->identity->QueryInterface(Il2CppIUnknown::IID, reinterpret_cast<void**>(&marshaled.___value_1));
il2cpp_codegen_com_raise_exception_if_failed(hr, false);
}
else
{
marshaled.___value_1 = il2cpp_codegen_com_get_or_create_ccw<Il2CppIUnknown>(unmarshaled.get_value_1());
}
}
else
{
marshaled.___value_1 = NULL;
}
}
extern "C" void Slot_t3975888750_marshal_pinvoke_back(const Slot_t3975888750_marshaled_pinvoke& marshaled, Slot_t3975888750& unmarshaled)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Slot_t3975888750_pinvoke_FromNativeMethodDefinition_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
if (marshaled.___key_0 != NULL)
{
unmarshaled.set_key_0(il2cpp_codegen_com_get_or_create_rcw_from_iunknown<RuntimeObject>(marshaled.___key_0, Il2CppComObject_il2cpp_TypeInfo_var));
}
else
{
unmarshaled.set_key_0(NULL);
}
if (marshaled.___value_1 != NULL)
{
unmarshaled.set_value_1(il2cpp_codegen_com_get_or_create_rcw_from_iunknown<RuntimeObject>(marshaled.___value_1, Il2CppComObject_il2cpp_TypeInfo_var));
}
else
{
unmarshaled.set_value_1(NULL);
}
}
// Conversion method for clean up from marshalling of: System.Collections.Hashtable/Slot
extern "C" void Slot_t3975888750_marshal_pinvoke_cleanup(Slot_t3975888750_marshaled_pinvoke& marshaled)
{
if (marshaled.___key_0 != NULL)
{
(marshaled.___key_0)->Release();
marshaled.___key_0 = NULL;
}
if (marshaled.___value_1 != NULL)
{
(marshaled.___value_1)->Release();
marshaled.___value_1 = NULL;
}
}
// Conversion methods for marshalling of: System.Collections.Hashtable/Slot
extern "C" void Slot_t3975888750_marshal_com(const Slot_t3975888750& unmarshaled, Slot_t3975888750_marshaled_com& marshaled)
{
if (unmarshaled.get_key_0() != NULL)
{
if (il2cpp_codegen_is_import_or_windows_runtime(unmarshaled.get_key_0()))
{
il2cpp_hresult_t hr = ((Il2CppComObject *)unmarshaled.get_key_0())->identity->QueryInterface(Il2CppIUnknown::IID, reinterpret_cast<void**>(&marshaled.___key_0));
il2cpp_codegen_com_raise_exception_if_failed(hr, true);
}
else
{
marshaled.___key_0 = il2cpp_codegen_com_get_or_create_ccw<Il2CppIUnknown>(unmarshaled.get_key_0());
}
}
else
{
marshaled.___key_0 = NULL;
}
if (unmarshaled.get_value_1() != NULL)
{
if (il2cpp_codegen_is_import_or_windows_runtime(unmarshaled.get_value_1()))
{
il2cpp_hresult_t hr = ((Il2CppComObject *)unmarshaled.get_value_1())->identity->QueryInterface(Il2CppIUnknown::IID, reinterpret_cast<void**>(&marshaled.___value_1));
il2cpp_codegen_com_raise_exception_if_failed(hr, true);
}
else
{
marshaled.___value_1 = il2cpp_codegen_com_get_or_create_ccw<Il2CppIUnknown>(unmarshaled.get_value_1());
}
}
else
{
marshaled.___value_1 = NULL;
}
}
extern "C" void Slot_t3975888750_marshal_com_back(const Slot_t3975888750_marshaled_com& marshaled, Slot_t3975888750& unmarshaled)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Slot_t3975888750_com_FromNativeMethodDefinition_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
if (marshaled.___key_0 != NULL)
{
unmarshaled.set_key_0(il2cpp_codegen_com_get_or_create_rcw_from_iunknown<RuntimeObject>(marshaled.___key_0, Il2CppComObject_il2cpp_TypeInfo_var));
}
else
{
unmarshaled.set_key_0(NULL);
}
if (marshaled.___value_1 != NULL)
{
unmarshaled.set_value_1(il2cpp_codegen_com_get_or_create_rcw_from_iunknown<RuntimeObject>(marshaled.___value_1, Il2CppComObject_il2cpp_TypeInfo_var));
}
else
{
unmarshaled.set_value_1(NULL);
}
}
// Conversion method for clean up from marshalling of: System.Collections.Hashtable/Slot
extern "C" void Slot_t3975888750_marshal_com_cleanup(Slot_t3975888750_marshaled_com& marshaled)
{
if (marshaled.___key_0 != NULL)
{
(marshaled.___key_0)->Release();
marshaled.___key_0 = NULL;
}
if (marshaled.___value_1 != NULL)
{
(marshaled.___value_1)->Release();
marshaled.___value_1 = NULL;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Collections.Hashtable/SyncHashtable::.ctor(System.Collections.Hashtable)
extern "C" void SyncHashtable__ctor_m988729399 (SyncHashtable_t3569774773 * __this, Hashtable_t1853889766 * ___host0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (SyncHashtable__ctor_m988729399_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(Hashtable_t1853889766_il2cpp_TypeInfo_var);
Hashtable__ctor_m1815022027(__this, /*hidden argument*/NULL);
Hashtable_t1853889766 * L_0 = ___host0;
if (L_0)
{
goto IL_0012;
}
}
{
ArgumentNullException_t1615371798 * L_1 = (ArgumentNullException_t1615371798 *)il2cpp_codegen_object_new(ArgumentNullException_t1615371798_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m2751210921(L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1,SyncHashtable__ctor_m988729399_RuntimeMethod_var);
}
IL_0012:
{
Hashtable_t1853889766 * L_2 = ___host0;
__this->set_host_14(L_2);
return;
}
}
// System.Void System.Collections.Hashtable/SyncHashtable::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
extern "C" void SyncHashtable__ctor_m2449935938 (SyncHashtable_t3569774773 * __this, SerializationInfo_t950877179 * ___info0, StreamingContext_t3711869237 ___context1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (SyncHashtable__ctor_m2449935938_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(Hashtable_t1853889766_il2cpp_TypeInfo_var);
Hashtable__ctor_m1815022027(__this, /*hidden argument*/NULL);
SerializationInfo_t950877179 * L_0 = ___info0;
RuntimeTypeHandle_t3027515415 L_1 = { reinterpret_cast<intptr_t> (Hashtable_t1853889766_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_2 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, L_1, /*hidden argument*/NULL);
RuntimeObject * L_3 = SerializationInfo_GetValue_m42271953(L_0, _stringLiteral1944658239, L_2, /*hidden argument*/NULL);
__this->set_host_14(((Hashtable_t1853889766 *)CastclassClass((RuntimeObject*)L_3, Hashtable_t1853889766_il2cpp_TypeInfo_var)));
return;
}
}
// System.Collections.IEnumerator System.Collections.Hashtable/SyncHashtable::System.Collections.IEnumerable.GetEnumerator()
extern "C" RuntimeObject* SyncHashtable_System_Collections_IEnumerable_GetEnumerator_m1325482064 (SyncHashtable_t3569774773 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (SyncHashtable_System_Collections_IEnumerable_GetEnumerator_m1325482064_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Hashtable_t1853889766 * L_0 = __this->get_host_14();
Enumerator_t661358686 * L_1 = (Enumerator_t661358686 *)il2cpp_codegen_object_new(Enumerator_t661358686_il2cpp_TypeInfo_var);
Enumerator__ctor_m3921352641(L_1, L_0, 2, /*hidden argument*/NULL);
return L_1;
}
}
// System.Int32 System.Collections.Hashtable/SyncHashtable::get_Count()
extern "C" int32_t SyncHashtable_get_Count_m3689832098 (SyncHashtable_t3569774773 * __this, const RuntimeMethod* method)
{
{
Hashtable_t1853889766 * L_0 = __this->get_host_14();
int32_t L_1 = VirtFuncInvoker0< int32_t >::Invoke(16 /* System.Int32 System.Collections.Hashtable::get_Count() */, L_0);
return L_1;
}
}
// System.Boolean System.Collections.Hashtable/SyncHashtable::get_IsSynchronized()
extern "C" bool SyncHashtable_get_IsSynchronized_m2941968827 (SyncHashtable_t3569774773 * __this, const RuntimeMethod* method)
{
{
return (bool)1;
}
}
// System.Object System.Collections.Hashtable/SyncHashtable::get_SyncRoot()
extern "C" RuntimeObject * SyncHashtable_get_SyncRoot_m2724224665 (SyncHashtable_t3569774773 * __this, const RuntimeMethod* method)
{
{
Hashtable_t1853889766 * L_0 = __this->get_host_14();
RuntimeObject * L_1 = VirtFuncInvoker0< RuntimeObject * >::Invoke(18 /* System.Object System.Collections.Hashtable::get_SyncRoot() */, L_0);
return L_1;
}
}
// System.Collections.ICollection System.Collections.Hashtable/SyncHashtable::get_Keys()
extern "C" RuntimeObject* SyncHashtable_get_Keys_m1469437863 (SyncHashtable_t3569774773 * __this, const RuntimeMethod* method)
{
RuntimeObject* V_0 = NULL;
RuntimeObject * V_1 = NULL;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = 0;
NO_UNUSED_WARNING (__leave_target);
{
V_0 = (RuntimeObject*)NULL;
Hashtable_t1853889766 * L_0 = __this->get_host_14();
RuntimeObject * L_1 = VirtFuncInvoker0< RuntimeObject * >::Invoke(18 /* System.Object System.Collections.Hashtable::get_SyncRoot() */, L_0);
V_1 = L_1;
RuntimeObject * L_2 = V_1;
Monitor_Enter_m2249409497(NULL /*static, unused*/, L_2, /*hidden argument*/NULL);
}
IL_0014:
try
{ // begin try (depth: 1)
Hashtable_t1853889766 * L_3 = __this->get_host_14();
RuntimeObject* L_4 = VirtFuncInvoker0< RuntimeObject* >::Invoke(19 /* System.Collections.ICollection System.Collections.Hashtable::get_Keys() */, L_3);
V_0 = L_4;
IL2CPP_LEAVE(0x2C, FINALLY_0025);
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_0025;
}
FINALLY_0025:
{ // begin finally (depth: 1)
RuntimeObject * L_5 = V_1;
Monitor_Exit_m3585316909(NULL /*static, unused*/, L_5, /*hidden argument*/NULL);
IL2CPP_END_FINALLY(37)
} // end finally (depth: 1)
IL2CPP_CLEANUP(37)
{
IL2CPP_JUMP_TBL(0x2C, IL_002c)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_002c:
{
RuntimeObject* L_6 = V_0;
return L_6;
}
}
// System.Collections.ICollection System.Collections.Hashtable/SyncHashtable::get_Values()
extern "C" RuntimeObject* SyncHashtable_get_Values_m3820929471 (SyncHashtable_t3569774773 * __this, const RuntimeMethod* method)
{
RuntimeObject* V_0 = NULL;
RuntimeObject * V_1 = NULL;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = 0;
NO_UNUSED_WARNING (__leave_target);
{
V_0 = (RuntimeObject*)NULL;
Hashtable_t1853889766 * L_0 = __this->get_host_14();
RuntimeObject * L_1 = VirtFuncInvoker0< RuntimeObject * >::Invoke(18 /* System.Object System.Collections.Hashtable::get_SyncRoot() */, L_0);
V_1 = L_1;
RuntimeObject * L_2 = V_1;
Monitor_Enter_m2249409497(NULL /*static, unused*/, L_2, /*hidden argument*/NULL);
}
IL_0014:
try
{ // begin try (depth: 1)
Hashtable_t1853889766 * L_3 = __this->get_host_14();
RuntimeObject* L_4 = VirtFuncInvoker0< RuntimeObject* >::Invoke(20 /* System.Collections.ICollection System.Collections.Hashtable::get_Values() */, L_3);
V_0 = L_4;
IL2CPP_LEAVE(0x2C, FINALLY_0025);
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_0025;
}
FINALLY_0025:
{ // begin finally (depth: 1)
RuntimeObject * L_5 = V_1;
Monitor_Exit_m3585316909(NULL /*static, unused*/, L_5, /*hidden argument*/NULL);
IL2CPP_END_FINALLY(37)
} // end finally (depth: 1)
IL2CPP_CLEANUP(37)
{
IL2CPP_JUMP_TBL(0x2C, IL_002c)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_002c:
{
RuntimeObject* L_6 = V_0;
return L_6;
}
}
// System.Object System.Collections.Hashtable/SyncHashtable::get_Item(System.Object)
extern "C" RuntimeObject * SyncHashtable_get_Item_m2686606216 (SyncHashtable_t3569774773 * __this, RuntimeObject * ___key0, const RuntimeMethod* method)
{
{
Hashtable_t1853889766 * L_0 = __this->get_host_14();
RuntimeObject * L_1 = ___key0;
RuntimeObject * L_2 = VirtFuncInvoker1< RuntimeObject *, RuntimeObject * >::Invoke(21 /* System.Object System.Collections.Hashtable::get_Item(System.Object) */, L_0, L_1);
return L_2;
}
}
// System.Void System.Collections.Hashtable/SyncHashtable::set_Item(System.Object,System.Object)
extern "C" void SyncHashtable_set_Item_m2451773607 (SyncHashtable_t3569774773 * __this, RuntimeObject * ___key0, RuntimeObject * ___value1, const RuntimeMethod* method)
{
RuntimeObject * V_0 = NULL;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = 0;
NO_UNUSED_WARNING (__leave_target);
{
Hashtable_t1853889766 * L_0 = __this->get_host_14();
RuntimeObject * L_1 = VirtFuncInvoker0< RuntimeObject * >::Invoke(18 /* System.Object System.Collections.Hashtable::get_SyncRoot() */, L_0);
V_0 = L_1;
RuntimeObject * L_2 = V_0;
Monitor_Enter_m2249409497(NULL /*static, unused*/, L_2, /*hidden argument*/NULL);
}
IL_0012:
try
{ // begin try (depth: 1)
Hashtable_t1853889766 * L_3 = __this->get_host_14();
RuntimeObject * L_4 = ___key0;
RuntimeObject * L_5 = ___value1;
VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(22 /* System.Void System.Collections.Hashtable::set_Item(System.Object,System.Object) */, L_3, L_4, L_5);
IL2CPP_LEAVE(0x2B, FINALLY_0024);
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_0024;
}
FINALLY_0024:
{ // begin finally (depth: 1)
RuntimeObject * L_6 = V_0;
Monitor_Exit_m3585316909(NULL /*static, unused*/, L_6, /*hidden argument*/NULL);
IL2CPP_END_FINALLY(36)
} // end finally (depth: 1)
IL2CPP_CLEANUP(36)
{
IL2CPP_JUMP_TBL(0x2B, IL_002b)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_002b:
{
return;
}
}
// System.Void System.Collections.Hashtable/SyncHashtable::CopyTo(System.Array,System.Int32)
extern "C" void SyncHashtable_CopyTo_m3934112540 (SyncHashtable_t3569774773 * __this, RuntimeArray * ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method)
{
{
Hashtable_t1853889766 * L_0 = __this->get_host_14();
RuntimeArray * L_1 = ___array0;
int32_t L_2 = ___arrayIndex1;
VirtActionInvoker2< RuntimeArray *, int32_t >::Invoke(23 /* System.Void System.Collections.Hashtable::CopyTo(System.Array,System.Int32) */, L_0, L_1, L_2);
return;
}
}
// System.Void System.Collections.Hashtable/SyncHashtable::Add(System.Object,System.Object)
extern "C" void SyncHashtable_Add_m3016107307 (SyncHashtable_t3569774773 * __this, RuntimeObject * ___key0, RuntimeObject * ___value1, const RuntimeMethod* method)
{
RuntimeObject * V_0 = NULL;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = 0;
NO_UNUSED_WARNING (__leave_target);
{
Hashtable_t1853889766 * L_0 = __this->get_host_14();
RuntimeObject * L_1 = VirtFuncInvoker0< RuntimeObject * >::Invoke(18 /* System.Object System.Collections.Hashtable::get_SyncRoot() */, L_0);
V_0 = L_1;
RuntimeObject * L_2 = V_0;
Monitor_Enter_m2249409497(NULL /*static, unused*/, L_2, /*hidden argument*/NULL);
}
IL_0012:
try
{ // begin try (depth: 1)
Hashtable_t1853889766 * L_3 = __this->get_host_14();
RuntimeObject * L_4 = ___key0;
RuntimeObject * L_5 = ___value1;
VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(24 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_3, L_4, L_5);
IL2CPP_LEAVE(0x2B, FINALLY_0024);
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_0024;
}
FINALLY_0024:
{ // begin finally (depth: 1)
RuntimeObject * L_6 = V_0;
Monitor_Exit_m3585316909(NULL /*static, unused*/, L_6, /*hidden argument*/NULL);
IL2CPP_END_FINALLY(36)
} // end finally (depth: 1)
IL2CPP_CLEANUP(36)
{
IL2CPP_JUMP_TBL(0x2B, IL_002b)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_002b:
{
return;
}
}
// System.Void System.Collections.Hashtable/SyncHashtable::Clear()
extern "C" void SyncHashtable_Clear_m714964133 (SyncHashtable_t3569774773 * __this, const RuntimeMethod* method)
{
RuntimeObject * V_0 = NULL;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = 0;
NO_UNUSED_WARNING (__leave_target);
{
Hashtable_t1853889766 * L_0 = __this->get_host_14();
RuntimeObject * L_1 = VirtFuncInvoker0< RuntimeObject * >::Invoke(18 /* System.Object System.Collections.Hashtable::get_SyncRoot() */, L_0);
V_0 = L_1;
RuntimeObject * L_2 = V_0;
Monitor_Enter_m2249409497(NULL /*static, unused*/, L_2, /*hidden argument*/NULL);
}
IL_0012:
try
{ // begin try (depth: 1)
Hashtable_t1853889766 * L_3 = __this->get_host_14();
VirtActionInvoker0::Invoke(25 /* System.Void System.Collections.Hashtable::Clear() */, L_3);
IL2CPP_LEAVE(0x29, FINALLY_0022);
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_0022;
}
FINALLY_0022:
{ // begin finally (depth: 1)
RuntimeObject * L_4 = V_0;
Monitor_Exit_m3585316909(NULL /*static, unused*/, L_4, /*hidden argument*/NULL);
IL2CPP_END_FINALLY(34)
} // end finally (depth: 1)
IL2CPP_CLEANUP(34)
{
IL2CPP_JUMP_TBL(0x29, IL_0029)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_0029:
{
return;
}
}
// System.Boolean System.Collections.Hashtable/SyncHashtable::Contains(System.Object)
extern "C" bool SyncHashtable_Contains_m2292068165 (SyncHashtable_t3569774773 * __this, RuntimeObject * ___key0, const RuntimeMethod* method)
{
{
Hashtable_t1853889766 * L_0 = __this->get_host_14();
RuntimeObject * L_1 = ___key0;
int32_t L_2 = Hashtable_Find_m1835111773(L_0, L_1, /*hidden argument*/NULL);
return (bool)((((int32_t)((((int32_t)L_2) < ((int32_t)0))? 1 : 0)) == ((int32_t)0))? 1 : 0);
}
}
// System.Collections.IDictionaryEnumerator System.Collections.Hashtable/SyncHashtable::GetEnumerator()
extern "C" RuntimeObject* SyncHashtable_GetEnumerator_m4254656826 (SyncHashtable_t3569774773 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (SyncHashtable_GetEnumerator_m4254656826_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Hashtable_t1853889766 * L_0 = __this->get_host_14();
Enumerator_t661358686 * L_1 = (Enumerator_t661358686 *)il2cpp_codegen_object_new(Enumerator_t661358686_il2cpp_TypeInfo_var);
Enumerator__ctor_m3921352641(L_1, L_0, 2, /*hidden argument*/NULL);
return L_1;
}
}
// System.Void System.Collections.Hashtable/SyncHashtable::Remove(System.Object)
extern "C" void SyncHashtable_Remove_m4179265271 (SyncHashtable_t3569774773 * __this, RuntimeObject * ___key0, const RuntimeMethod* method)
{
RuntimeObject * V_0 = NULL;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = 0;
NO_UNUSED_WARNING (__leave_target);
{
Hashtable_t1853889766 * L_0 = __this->get_host_14();
RuntimeObject * L_1 = VirtFuncInvoker0< RuntimeObject * >::Invoke(18 /* System.Object System.Collections.Hashtable::get_SyncRoot() */, L_0);
V_0 = L_1;
RuntimeObject * L_2 = V_0;
Monitor_Enter_m2249409497(NULL /*static, unused*/, L_2, /*hidden argument*/NULL);
}
IL_0012:
try
{ // begin try (depth: 1)
Hashtable_t1853889766 * L_3 = __this->get_host_14();
RuntimeObject * L_4 = ___key0;
VirtActionInvoker1< RuntimeObject * >::Invoke(28 /* System.Void System.Collections.Hashtable::Remove(System.Object) */, L_3, L_4);
IL2CPP_LEAVE(0x2A, FINALLY_0023);
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_0023;
}
FINALLY_0023:
{ // begin finally (depth: 1)
RuntimeObject * L_5 = V_0;
Monitor_Exit_m3585316909(NULL /*static, unused*/, L_5, /*hidden argument*/NULL);
IL2CPP_END_FINALLY(35)
} // end finally (depth: 1)
IL2CPP_CLEANUP(35)
{
IL2CPP_JUMP_TBL(0x2A, IL_002a)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_002a:
{
return;
}
}
// System.Boolean System.Collections.Hashtable/SyncHashtable::ContainsKey(System.Object)
extern "C" bool SyncHashtable_ContainsKey_m4051091192 (SyncHashtable_t3569774773 * __this, RuntimeObject * ___key0, const RuntimeMethod* method)
{
{
Hashtable_t1853889766 * L_0 = __this->get_host_14();
RuntimeObject * L_1 = ___key0;
bool L_2 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(26 /* System.Boolean System.Collections.Hashtable::Contains(System.Object) */, L_0, L_1);
return L_2;
}
}
// System.Object System.Collections.Hashtable/SyncHashtable::Clone()
extern "C" RuntimeObject * SyncHashtable_Clone_m3726939774 (SyncHashtable_t3569774773 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (SyncHashtable_Clone_m3726939774_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RuntimeObject * V_0 = NULL;
RuntimeObject * V_1 = NULL;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = 0;
NO_UNUSED_WARNING (__leave_target);
{
Hashtable_t1853889766 * L_0 = __this->get_host_14();
RuntimeObject * L_1 = VirtFuncInvoker0< RuntimeObject * >::Invoke(18 /* System.Object System.Collections.Hashtable::get_SyncRoot() */, L_0);
V_0 = L_1;
RuntimeObject * L_2 = V_0;
Monitor_Enter_m2249409497(NULL /*static, unused*/, L_2, /*hidden argument*/NULL);
}
IL_0012:
try
{ // begin try (depth: 1)
{
Hashtable_t1853889766 * L_3 = __this->get_host_14();
RuntimeObject * L_4 = VirtFuncInvoker0< RuntimeObject * >::Invoke(30 /* System.Object System.Collections.Hashtable::Clone() */, L_3);
SyncHashtable_t3569774773 * L_5 = (SyncHashtable_t3569774773 *)il2cpp_codegen_object_new(SyncHashtable_t3569774773_il2cpp_TypeInfo_var);
SyncHashtable__ctor_m988729399(L_5, ((Hashtable_t1853889766 *)CastclassClass((RuntimeObject*)L_4, Hashtable_t1853889766_il2cpp_TypeInfo_var)), /*hidden argument*/NULL);
V_1 = L_5;
IL2CPP_LEAVE(0x39, FINALLY_0032);
}
IL_002d:
{
; // IL_002d: leave IL_0039
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_0032;
}
FINALLY_0032:
{ // begin finally (depth: 1)
RuntimeObject * L_6 = V_0;
Monitor_Exit_m3585316909(NULL /*static, unused*/, L_6, /*hidden argument*/NULL);
IL2CPP_END_FINALLY(50)
} // end finally (depth: 1)
IL2CPP_CLEANUP(50)
{
IL2CPP_JUMP_TBL(0x39, IL_0039)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_0039:
{
RuntimeObject * L_7 = V_1;
return L_7;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Collections.SortedList::.ctor()
extern "C" void SortedList__ctor_m1261191695 (SortedList_t2427694641 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (SortedList__ctor_m1261191695_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(SortedList_t2427694641_il2cpp_TypeInfo_var);
int32_t L_0 = ((SortedList_t2427694641_StaticFields*)il2cpp_codegen_static_fields_for(SortedList_t2427694641_il2cpp_TypeInfo_var))->get_INITIAL_SIZE_0();
SortedList__ctor_m449121548(__this, (RuntimeObject*)NULL, L_0, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Collections.SortedList::.ctor(System.Int32)
extern "C" void SortedList__ctor_m4140760769 (SortedList_t2427694641 * __this, int32_t ___initialCapacity0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___initialCapacity0;
SortedList__ctor_m449121548(__this, (RuntimeObject*)NULL, L_0, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Collections.SortedList::.ctor(System.Collections.IComparer,System.Int32)
extern "C" void SortedList__ctor_m449121548 (SortedList_t2427694641 * __this, RuntimeObject* ___comparer0, int32_t ___capacity1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (SortedList__ctor_m449121548_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Object__ctor_m297566312(__this, /*hidden argument*/NULL);
int32_t L_0 = ___capacity1;
if ((((int32_t)L_0) >= ((int32_t)0)))
{
goto IL_0018;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_1 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_1, _stringLiteral3623012086, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1,SortedList__ctor_m449121548_RuntimeMethod_var);
}
IL_0018:
{
int32_t L_2 = ___capacity1;
if (L_2)
{
goto IL_002a;
}
}
{
__this->set_defaultCapacity_5(0);
goto IL_0035;
}
IL_002a:
{
IL2CPP_RUNTIME_CLASS_INIT(SortedList_t2427694641_il2cpp_TypeInfo_var);
int32_t L_3 = ((SortedList_t2427694641_StaticFields*)il2cpp_codegen_static_fields_for(SortedList_t2427694641_il2cpp_TypeInfo_var))->get_INITIAL_SIZE_0();
__this->set_defaultCapacity_5(L_3);
}
IL_0035:
{
RuntimeObject* L_4 = ___comparer0;
__this->set_comparer_4(L_4);
int32_t L_5 = ___capacity1;
SortedList_InitTable_m875730861(__this, L_5, (bool)1, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Collections.SortedList::.ctor(System.Collections.IDictionary,System.Collections.IComparer)
extern "C" void SortedList__ctor_m3676552745 (SortedList_t2427694641 * __this, RuntimeObject* ___d0, RuntimeObject* ___comparer1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (SortedList__ctor_m3676552745_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
{
Object__ctor_m297566312(__this, /*hidden argument*/NULL);
RuntimeObject* L_0 = ___d0;
if (L_0)
{
goto IL_0017;
}
}
{
ArgumentNullException_t1615371798 * L_1 = (ArgumentNullException_t1615371798 *)il2cpp_codegen_object_new(ArgumentNullException_t1615371798_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m1170824041(L_1, _stringLiteral2957729587, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1,SortedList__ctor_m3676552745_RuntimeMethod_var);
}
IL_0017:
{
RuntimeObject* L_2 = ___d0;
int32_t L_3 = InterfaceFuncInvoker0< int32_t >::Invoke(0 /* System.Int32 System.Collections.ICollection::get_Count() */, ICollection_t3904884886_il2cpp_TypeInfo_var, L_2);
SortedList_InitTable_m875730861(__this, L_3, (bool)1, /*hidden argument*/NULL);
RuntimeObject* L_4 = ___comparer1;
__this->set_comparer_4(L_4);
RuntimeObject* L_5 = ___d0;
RuntimeObject* L_6 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(3 /* System.Collections.IDictionaryEnumerator System.Collections.IDictionary::GetEnumerator() */, IDictionary_t1363984059_il2cpp_TypeInfo_var, L_5);
V_0 = L_6;
goto IL_0049;
}
IL_0037:
{
RuntimeObject* L_7 = V_0;
RuntimeObject * L_8 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(1 /* System.Object System.Collections.IDictionaryEnumerator::get_Key() */, IDictionaryEnumerator_t1693217257_il2cpp_TypeInfo_var, L_7);
RuntimeObject* L_9 = V_0;
RuntimeObject * L_10 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(2 /* System.Object System.Collections.IDictionaryEnumerator::get_Value() */, IDictionaryEnumerator_t1693217257_il2cpp_TypeInfo_var, L_9);
VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(24 /* System.Void System.Collections.SortedList::Add(System.Object,System.Object) */, __this, L_8, L_10);
}
IL_0049:
{
RuntimeObject* L_11 = V_0;
bool L_12 = InterfaceFuncInvoker0< bool >::Invoke(1 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t1853284238_il2cpp_TypeInfo_var, L_11);
if (L_12)
{
goto IL_0037;
}
}
{
return;
}
}
// System.Void System.Collections.SortedList::.cctor()
extern "C" void SortedList__cctor_m1247132 (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (SortedList__cctor_m1247132_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
((SortedList_t2427694641_StaticFields*)il2cpp_codegen_static_fields_for(SortedList_t2427694641_il2cpp_TypeInfo_var))->set_INITIAL_SIZE_0(((int32_t)16));
return;
}
}
// System.Collections.IEnumerator System.Collections.SortedList::System.Collections.IEnumerable.GetEnumerator()
extern "C" RuntimeObject* SortedList_System_Collections_IEnumerable_GetEnumerator_m2738760439 (SortedList_t2427694641 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (SortedList_System_Collections_IEnumerable_GetEnumerator_m2738760439_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Enumerator_t3548462377 * L_0 = (Enumerator_t3548462377 *)il2cpp_codegen_object_new(Enumerator_t3548462377_il2cpp_TypeInfo_var);
Enumerator__ctor_m4264210349(L_0, __this, 2, /*hidden argument*/NULL);
return L_0;
}
}
// System.Int32 System.Collections.SortedList::get_Count()
extern "C" int32_t SortedList_get_Count_m3860639970 (SortedList_t2427694641 * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->get_inUse_1();
return L_0;
}
}
// System.Boolean System.Collections.SortedList::get_IsSynchronized()
extern "C" bool SortedList_get_IsSynchronized_m2987909703 (SortedList_t2427694641 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// System.Object System.Collections.SortedList::get_SyncRoot()
extern "C" RuntimeObject * SortedList_get_SyncRoot_m914428425 (SortedList_t2427694641 * __this, const RuntimeMethod* method)
{
{
return __this;
}
}
// System.Boolean System.Collections.SortedList::get_IsFixedSize()
extern "C" bool SortedList_get_IsFixedSize_m2192379219 (SortedList_t2427694641 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// System.Boolean System.Collections.SortedList::get_IsReadOnly()
extern "C" bool SortedList_get_IsReadOnly_m1554442113 (SortedList_t2427694641 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// System.Object System.Collections.SortedList::get_Item(System.Object)
extern "C" RuntimeObject * SortedList_get_Item_m3673863299 (SortedList_t2427694641 * __this, RuntimeObject * ___key0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (SortedList_get_Item_m3673863299_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject * L_0 = ___key0;
if (L_0)
{
goto IL_000c;
}
}
{
ArgumentNullException_t1615371798 * L_1 = (ArgumentNullException_t1615371798 *)il2cpp_codegen_object_new(ArgumentNullException_t1615371798_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m2751210921(L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1,SortedList_get_Item_m3673863299_RuntimeMethod_var);
}
IL_000c:
{
RuntimeObject * L_2 = ___key0;
RuntimeObject * L_3 = SortedList_GetImpl_m3689246167(__this, L_2, /*hidden argument*/NULL);
return L_3;
}
}
// System.Void System.Collections.SortedList::set_Item(System.Object,System.Object)
extern "C" void SortedList_set_Item_m32382988 (SortedList_t2427694641 * __this, RuntimeObject * ___key0, RuntimeObject * ___value1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (SortedList_set_Item_m32382988_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject * L_0 = ___key0;
if (L_0)
{
goto IL_000c;
}
}
{
ArgumentNullException_t1615371798 * L_1 = (ArgumentNullException_t1615371798 *)il2cpp_codegen_object_new(ArgumentNullException_t1615371798_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m2751210921(L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1,SortedList_set_Item_m32382988_RuntimeMethod_var);
}
IL_000c:
{
bool L_2 = VirtFuncInvoker0< bool >::Invoke(19 /* System.Boolean System.Collections.SortedList::get_IsReadOnly() */, __this);
if (!L_2)
{
goto IL_0022;
}
}
{
NotSupportedException_t1314879016 * L_3 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var);
NotSupportedException__ctor_m2494070935(L_3, _stringLiteral3755497266, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3,SortedList_set_Item_m32382988_RuntimeMethod_var);
}
IL_0022:
{
RuntimeObject * L_4 = ___key0;
int32_t L_5 = SortedList_Find_m3363512987(__this, L_4, /*hidden argument*/NULL);
if ((((int32_t)L_5) >= ((int32_t)0)))
{
goto IL_0045;
}
}
{
bool L_6 = VirtFuncInvoker0< bool >::Invoke(18 /* System.Boolean System.Collections.SortedList::get_IsFixedSize() */, __this);
if (!L_6)
{
goto IL_0045;
}
}
{
NotSupportedException_t1314879016 * L_7 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var);
NotSupportedException__ctor_m2494070935(L_7, _stringLiteral537584632, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_7,SortedList_set_Item_m32382988_RuntimeMethod_var);
}
IL_0045:
{
RuntimeObject * L_8 = ___key0;
RuntimeObject * L_9 = ___value1;
SortedList_PutImpl_m3408406199(__this, L_8, L_9, (bool)1, /*hidden argument*/NULL);
return;
}
}
// System.Int32 System.Collections.SortedList::get_Capacity()
extern "C" int32_t SortedList_get_Capacity_m919184864 (SortedList_t2427694641 * __this, const RuntimeMethod* method)
{
{
SlotU5BU5D_t227397015* L_0 = __this->get_table_3();
return (((int32_t)((int32_t)(((RuntimeArray *)L_0)->max_length))));
}
}
// System.Void System.Collections.SortedList::set_Capacity(System.Int32)
extern "C" void SortedList_set_Capacity_m509376950 (SortedList_t2427694641 * __this, int32_t ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (SortedList_set_Capacity_m509376950_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
SlotU5BU5D_t227397015* V_1 = NULL;
SlotU5BU5D_t227397015* V_2 = NULL;
SlotU5BU5D_t227397015* V_3 = NULL;
{
SlotU5BU5D_t227397015* L_0 = __this->get_table_3();
V_0 = (((int32_t)((int32_t)(((RuntimeArray *)L_0)->max_length))));
int32_t L_1 = __this->get_inUse_1();
int32_t L_2 = ___value0;
if ((((int32_t)L_1) <= ((int32_t)L_2)))
{
goto IL_0020;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_3 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_3, _stringLiteral2892361463, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3,SortedList_set_Capacity_m509376950_RuntimeMethod_var);
}
IL_0020:
{
int32_t L_4 = ___value0;
if (L_4)
{
goto IL_0050;
}
}
{
int32_t L_5 = __this->get_defaultCapacity_5();
V_1 = ((SlotU5BU5D_t227397015*)SZArrayNew(SlotU5BU5D_t227397015_il2cpp_TypeInfo_var, (uint32_t)L_5));
SlotU5BU5D_t227397015* L_6 = __this->get_table_3();
SlotU5BU5D_t227397015* L_7 = V_1;
int32_t L_8 = __this->get_inUse_1();
Array_Copy_m1988217701(NULL /*static, unused*/, (RuntimeArray *)(RuntimeArray *)L_6, (RuntimeArray *)(RuntimeArray *)L_7, L_8, /*hidden argument*/NULL);
SlotU5BU5D_t227397015* L_9 = V_1;
__this->set_table_3(L_9);
goto IL_00a3;
}
IL_0050:
{
int32_t L_10 = ___value0;
int32_t L_11 = __this->get_inUse_1();
if ((((int32_t)L_10) <= ((int32_t)L_11)))
{
goto IL_0081;
}
}
{
int32_t L_12 = ___value0;
V_2 = ((SlotU5BU5D_t227397015*)SZArrayNew(SlotU5BU5D_t227397015_il2cpp_TypeInfo_var, (uint32_t)L_12));
SlotU5BU5D_t227397015* L_13 = __this->get_table_3();
SlotU5BU5D_t227397015* L_14 = V_2;
int32_t L_15 = __this->get_inUse_1();
Array_Copy_m1988217701(NULL /*static, unused*/, (RuntimeArray *)(RuntimeArray *)L_13, (RuntimeArray *)(RuntimeArray *)L_14, L_15, /*hidden argument*/NULL);
SlotU5BU5D_t227397015* L_16 = V_2;
__this->set_table_3(L_16);
goto IL_00a3;
}
IL_0081:
{
int32_t L_17 = ___value0;
int32_t L_18 = V_0;
if ((((int32_t)L_17) <= ((int32_t)L_18)))
{
goto IL_00a3;
}
}
{
int32_t L_19 = ___value0;
V_3 = ((SlotU5BU5D_t227397015*)SZArrayNew(SlotU5BU5D_t227397015_il2cpp_TypeInfo_var, (uint32_t)L_19));
SlotU5BU5D_t227397015* L_20 = __this->get_table_3();
SlotU5BU5D_t227397015* L_21 = V_3;
int32_t L_22 = V_0;
Array_Copy_m1988217701(NULL /*static, unused*/, (RuntimeArray *)(RuntimeArray *)L_20, (RuntimeArray *)(RuntimeArray *)L_21, L_22, /*hidden argument*/NULL);
SlotU5BU5D_t227397015* L_23 = V_3;
__this->set_table_3(L_23);
}
IL_00a3:
{
return;
}
}
// System.Void System.Collections.SortedList::Add(System.Object,System.Object)
extern "C" void SortedList_Add_m810900317 (SortedList_t2427694641 * __this, RuntimeObject * ___key0, RuntimeObject * ___value1, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = ___key0;
RuntimeObject * L_1 = ___value1;
SortedList_PutImpl_m3408406199(__this, L_0, L_1, (bool)0, /*hidden argument*/NULL);
return;
}
}
// System.Boolean System.Collections.SortedList::Contains(System.Object)
extern "C" bool SortedList_Contains_m559482983 (SortedList_t2427694641 * __this, RuntimeObject * ___key0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (SortedList_Contains_m559482983_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = 0;
NO_UNUSED_WARNING (__leave_target);
{
RuntimeObject * L_0 = ___key0;
if (L_0)
{
goto IL_000c;
}
}
{
ArgumentNullException_t1615371798 * L_1 = (ArgumentNullException_t1615371798 *)il2cpp_codegen_object_new(ArgumentNullException_t1615371798_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m2751210921(L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1,SortedList_Contains_m559482983_RuntimeMethod_var);
}
IL_000c:
try
{ // begin try (depth: 1)
{
RuntimeObject * L_2 = ___key0;
int32_t L_3 = SortedList_Find_m3363512987(__this, L_2, /*hidden argument*/NULL);
V_0 = (bool)((((int32_t)((((int32_t)L_3) < ((int32_t)0))? 1 : 0)) == ((int32_t)0))? 1 : 0);
goto IL_0030;
}
IL_001f:
{
; // IL_001f: leave IL_0030
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__exception_local = (Exception_t *)e.ex;
if(il2cpp_codegen_class_is_assignable_from (Exception_t_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex)))
goto CATCH_0024;
throw e;
}
CATCH_0024:
{ // begin catch(System.Exception)
{
InvalidOperationException_t56020091 * L_4 = (InvalidOperationException_t56020091 *)il2cpp_codegen_object_new(InvalidOperationException_t56020091_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m2734335978(L_4, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_4,SortedList_Contains_m559482983_RuntimeMethod_var);
}
IL_002b:
{
goto IL_0030;
}
} // end catch (depth: 1)
IL_0030:
{
bool L_5 = V_0;
return L_5;
}
}
// System.Collections.IDictionaryEnumerator System.Collections.SortedList::GetEnumerator()
extern "C" RuntimeObject* SortedList_GetEnumerator_m772783392 (SortedList_t2427694641 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (SortedList_GetEnumerator_m772783392_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Enumerator_t3548462377 * L_0 = (Enumerator_t3548462377 *)il2cpp_codegen_object_new(Enumerator_t3548462377_il2cpp_TypeInfo_var);
Enumerator__ctor_m4264210349(L_0, __this, 2, /*hidden argument*/NULL);
return L_0;
}
}
// System.Void System.Collections.SortedList::Remove(System.Object)
extern "C" void SortedList_Remove_m2784369438 (SortedList_t2427694641 * __this, RuntimeObject * ___key0, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
RuntimeObject * L_0 = ___key0;
int32_t L_1 = VirtFuncInvoker1< int32_t, RuntimeObject * >::Invoke(31 /* System.Int32 System.Collections.SortedList::IndexOfKey(System.Object) */, __this, L_0);
V_0 = L_1;
int32_t L_2 = V_0;
if ((((int32_t)L_2) < ((int32_t)0)))
{
goto IL_0016;
}
}
{
int32_t L_3 = V_0;
VirtActionInvoker1< int32_t >::Invoke(30 /* System.Void System.Collections.SortedList::RemoveAt(System.Int32) */, __this, L_3);
}
IL_0016:
{
return;
}
}
// System.Void System.Collections.SortedList::CopyTo(System.Array,System.Int32)
extern "C" void SortedList_CopyTo_m3001281572 (SortedList_t2427694641 * __this, RuntimeArray * ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (SortedList_CopyTo_m3001281572_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
int32_t V_1 = 0;
{
RuntimeArray * L_0 = ___array0;
if (L_0)
{
goto IL_000c;
}
}
{
ArgumentNullException_t1615371798 * L_1 = (ArgumentNullException_t1615371798 *)il2cpp_codegen_object_new(ArgumentNullException_t1615371798_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m2751210921(L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1,SortedList_CopyTo_m3001281572_RuntimeMethod_var);
}
IL_000c:
{
int32_t L_2 = ___arrayIndex1;
if ((((int32_t)L_2) >= ((int32_t)0)))
{
goto IL_0019;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_3 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m2047740448(L_3, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3,SortedList_CopyTo_m3001281572_RuntimeMethod_var);
}
IL_0019:
{
RuntimeArray * L_4 = ___array0;
int32_t L_5 = Array_get_Rank_m3448755881(L_4, /*hidden argument*/NULL);
if ((((int32_t)L_5) <= ((int32_t)1)))
{
goto IL_0030;
}
}
{
ArgumentException_t132251570 * L_6 = (ArgumentException_t132251570 *)il2cpp_codegen_object_new(ArgumentException_t132251570_il2cpp_TypeInfo_var);
ArgumentException__ctor_m1312628991(L_6, _stringLiteral212975728, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_6,SortedList_CopyTo_m3001281572_RuntimeMethod_var);
}
IL_0030:
{
int32_t L_7 = ___arrayIndex1;
RuntimeArray * L_8 = ___array0;
int32_t L_9 = Array_get_Length_m21610649(L_8, /*hidden argument*/NULL);
if ((((int32_t)L_7) < ((int32_t)L_9)))
{
goto IL_0047;
}
}
{
ArgumentNullException_t1615371798 * L_10 = (ArgumentNullException_t1615371798 *)il2cpp_codegen_object_new(ArgumentNullException_t1615371798_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m1170824041(L_10, _stringLiteral2572553248, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_10,SortedList_CopyTo_m3001281572_RuntimeMethod_var);
}
IL_0047:
{
int32_t L_11 = VirtFuncInvoker0< int32_t >::Invoke(15 /* System.Int32 System.Collections.SortedList::get_Count() */, __this);
RuntimeArray * L_12 = ___array0;
int32_t L_13 = Array_get_Length_m21610649(L_12, /*hidden argument*/NULL);
int32_t L_14 = ___arrayIndex1;
if ((((int32_t)L_11) <= ((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_13, (int32_t)L_14)))))
{
goto IL_0065;
}
}
{
ArgumentNullException_t1615371798 * L_15 = (ArgumentNullException_t1615371798 *)il2cpp_codegen_object_new(ArgumentNullException_t1615371798_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m1170824041(L_15, _stringLiteral4047089040, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_15,SortedList_CopyTo_m3001281572_RuntimeMethod_var);
}
IL_0065:
{
RuntimeObject* L_16 = VirtFuncInvoker0< RuntimeObject* >::Invoke(26 /* System.Collections.IDictionaryEnumerator System.Collections.SortedList::GetEnumerator() */, __this);
V_0 = L_16;
int32_t L_17 = ___arrayIndex1;
V_1 = L_17;
goto IL_0089;
}
IL_0073:
{
RuntimeArray * L_18 = ___array0;
RuntimeObject* L_19 = V_0;
DictionaryEntry_t3123975638 L_20 = InterfaceFuncInvoker0< DictionaryEntry_t3123975638 >::Invoke(0 /* System.Collections.DictionaryEntry System.Collections.IDictionaryEnumerator::get_Entry() */, IDictionaryEnumerator_t1693217257_il2cpp_TypeInfo_var, L_19);
DictionaryEntry_t3123975638 L_21 = L_20;
RuntimeObject * L_22 = Box(DictionaryEntry_t3123975638_il2cpp_TypeInfo_var, &L_21);
int32_t L_23 = V_1;
int32_t L_24 = L_23;
V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_24, (int32_t)1));
Array_SetValue_m3412255035(L_18, L_22, L_24, /*hidden argument*/NULL);
}
IL_0089:
{
RuntimeObject* L_25 = V_0;
bool L_26 = InterfaceFuncInvoker0< bool >::Invoke(1 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t1853284238_il2cpp_TypeInfo_var, L_25);
if (L_26)
{
goto IL_0073;
}
}
{
return;
}
}
// System.Object System.Collections.SortedList::Clone()
extern "C" RuntimeObject * SortedList_Clone_m928094797 (SortedList_t2427694641 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (SortedList_Clone_m928094797_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
SortedList_t2427694641 * V_0 = NULL;
{
RuntimeObject* L_0 = __this->get_comparer_4();
SortedList_t2427694641 * L_1 = (SortedList_t2427694641 *)il2cpp_codegen_object_new(SortedList_t2427694641_il2cpp_TypeInfo_var);
SortedList__ctor_m3676552745(L_1, __this, L_0, /*hidden argument*/NULL);
V_0 = L_1;
SortedList_t2427694641 * L_2 = V_0;
int32_t L_3 = __this->get_modificationCount_2();
L_2->set_modificationCount_2(L_3);
SortedList_t2427694641 * L_4 = V_0;
return L_4;
}
}
// System.Void System.Collections.SortedList::RemoveAt(System.Int32)
extern "C" void SortedList_RemoveAt_m1767403850 (SortedList_t2427694641 * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (SortedList_RemoveAt_m1767403850_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
SlotU5BU5D_t227397015* V_0 = NULL;
int32_t V_1 = 0;
{
SlotU5BU5D_t227397015* L_0 = __this->get_table_3();
V_0 = L_0;
int32_t L_1 = VirtFuncInvoker0< int32_t >::Invoke(15 /* System.Int32 System.Collections.SortedList::get_Count() */, __this);
V_1 = L_1;
int32_t L_2 = ___index0;
if ((((int32_t)L_2) < ((int32_t)0)))
{
goto IL_0075;
}
}
{
int32_t L_3 = ___index0;
int32_t L_4 = V_1;
if ((((int32_t)L_3) >= ((int32_t)L_4)))
{
goto IL_0075;
}
}
{
int32_t L_5 = ___index0;
int32_t L_6 = V_1;
if ((((int32_t)L_5) == ((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)1)))))
{
goto IL_003a;
}
}
{
SlotU5BU5D_t227397015* L_7 = V_0;
int32_t L_8 = ___index0;
SlotU5BU5D_t227397015* L_9 = V_0;
int32_t L_10 = ___index0;
int32_t L_11 = V_1;
int32_t L_12 = ___index0;
Array_Copy_m344457298(NULL /*static, unused*/, (RuntimeArray *)(RuntimeArray *)L_7, ((int32_t)il2cpp_codegen_add((int32_t)L_8, (int32_t)1)), (RuntimeArray *)(RuntimeArray *)L_9, L_10, ((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_11, (int32_t)1)), (int32_t)L_12)), /*hidden argument*/NULL);
goto IL_0054;
}
IL_003a:
{
SlotU5BU5D_t227397015* L_13 = V_0;
int32_t L_14 = ___index0;
((L_13)->GetAddressAtUnchecked(static_cast<il2cpp_array_size_t>(L_14)))->set_key_0(NULL);
SlotU5BU5D_t227397015* L_15 = V_0;
int32_t L_16 = ___index0;
((L_15)->GetAddressAtUnchecked(static_cast<il2cpp_array_size_t>(L_16)))->set_value_1(NULL);
}
IL_0054:
{
int32_t L_17 = __this->get_inUse_1();
__this->set_inUse_1(((int32_t)il2cpp_codegen_subtract((int32_t)L_17, (int32_t)1)));
int32_t L_18 = __this->get_modificationCount_2();
__this->set_modificationCount_2(((int32_t)il2cpp_codegen_add((int32_t)L_18, (int32_t)1)));
goto IL_0080;
}
IL_0075:
{
ArgumentOutOfRangeException_t777629997 * L_19 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_19, _stringLiteral2876180, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_19,SortedList_RemoveAt_m1767403850_RuntimeMethod_var);
}
IL_0080:
{
return;
}
}
// System.Int32 System.Collections.SortedList::IndexOfKey(System.Object)
extern "C" int32_t SortedList_IndexOfKey_m91331983 (SortedList_t2427694641 * __this, RuntimeObject * ___key0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (SortedList_IndexOfKey_m91331983_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = 0;
NO_UNUSED_WARNING (__leave_target);
{
RuntimeObject * L_0 = ___key0;
if (L_0)
{
goto IL_000c;
}
}
{
ArgumentNullException_t1615371798 * L_1 = (ArgumentNullException_t1615371798 *)il2cpp_codegen_object_new(ArgumentNullException_t1615371798_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m2751210921(L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1,SortedList_IndexOfKey_m91331983_RuntimeMethod_var);
}
IL_000c:
{
V_0 = 0;
}
IL_000e:
try
{ // begin try (depth: 1)
RuntimeObject * L_2 = ___key0;
int32_t L_3 = SortedList_Find_m3363512987(__this, L_2, /*hidden argument*/NULL);
V_0 = L_3;
goto IL_0027;
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__exception_local = (Exception_t *)e.ex;
if(il2cpp_codegen_class_is_assignable_from (Exception_t_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex)))
goto CATCH_001b;
throw e;
}
CATCH_001b:
{ // begin catch(System.Exception)
{
InvalidOperationException_t56020091 * L_4 = (InvalidOperationException_t56020091 *)il2cpp_codegen_object_new(InvalidOperationException_t56020091_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m2734335978(L_4, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_4,SortedList_IndexOfKey_m91331983_RuntimeMethod_var);
}
IL_0022:
{
goto IL_0027;
}
} // end catch (depth: 1)
IL_0027:
{
int32_t L_5 = V_0;
int32_t L_6 = V_0;
return ((int32_t)((int32_t)L_5|(int32_t)((int32_t)((int32_t)L_6>>(int32_t)((int32_t)31)))));
}
}
// System.Boolean System.Collections.SortedList::ContainsKey(System.Object)
extern "C" bool SortedList_ContainsKey_m2883715045 (SortedList_t2427694641 * __this, RuntimeObject * ___key0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (SortedList_ContainsKey_m2883715045_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = 0;
NO_UNUSED_WARNING (__leave_target);
{
RuntimeObject * L_0 = ___key0;
if (L_0)
{
goto IL_000c;
}
}
{
ArgumentNullException_t1615371798 * L_1 = (ArgumentNullException_t1615371798 *)il2cpp_codegen_object_new(ArgumentNullException_t1615371798_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m2751210921(L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1,SortedList_ContainsKey_m2883715045_RuntimeMethod_var);
}
IL_000c:
try
{ // begin try (depth: 1)
{
RuntimeObject * L_2 = ___key0;
bool L_3 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(25 /* System.Boolean System.Collections.SortedList::Contains(System.Object) */, __this, L_2);
V_0 = L_3;
goto IL_002a;
}
IL_0019:
{
; // IL_0019: leave IL_002a
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__exception_local = (Exception_t *)e.ex;
if(il2cpp_codegen_class_is_assignable_from (Exception_t_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex)))
goto CATCH_001e;
throw e;
}
CATCH_001e:
{ // begin catch(System.Exception)
{
InvalidOperationException_t56020091 * L_4 = (InvalidOperationException_t56020091 *)il2cpp_codegen_object_new(InvalidOperationException_t56020091_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m2734335978(L_4, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_4,SortedList_ContainsKey_m2883715045_RuntimeMethod_var);
}
IL_0025:
{
goto IL_002a;
}
} // end catch (depth: 1)
IL_002a:
{
bool L_5 = V_0;
return L_5;
}
}
// System.Object System.Collections.SortedList::GetByIndex(System.Int32)
extern "C" RuntimeObject * SortedList_GetByIndex_m3848565786 (SortedList_t2427694641 * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (SortedList_GetByIndex_m3848565786_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = ___index0;
if ((((int32_t)L_0) < ((int32_t)0)))
{
goto IL_0025;
}
}
{
int32_t L_1 = ___index0;
int32_t L_2 = VirtFuncInvoker0< int32_t >::Invoke(15 /* System.Int32 System.Collections.SortedList::get_Count() */, __this);
if ((((int32_t)L_1) >= ((int32_t)L_2)))
{
goto IL_0025;
}
}
{
SlotU5BU5D_t227397015* L_3 = __this->get_table_3();
int32_t L_4 = ___index0;
RuntimeObject * L_5 = ((L_3)->GetAddressAtUnchecked(static_cast<il2cpp_array_size_t>(L_4)))->get_value_1();
return L_5;
}
IL_0025:
{
ArgumentOutOfRangeException_t777629997 * L_6 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_6, _stringLiteral2876180, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_6,SortedList_GetByIndex_m3848565786_RuntimeMethod_var);
}
}
// System.Void System.Collections.SortedList::EnsureCapacity(System.Int32,System.Int32)
extern "C" void SortedList_EnsureCapacity_m1354099314 (SortedList_t2427694641 * __this, int32_t ___n0, int32_t ___free1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (SortedList_EnsureCapacity_m1354099314_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
SlotU5BU5D_t227397015* V_0 = NULL;
SlotU5BU5D_t227397015* V_1 = NULL;
int32_t V_2 = 0;
bool V_3 = false;
int32_t V_4 = 0;
int32_t G_B3_0 = 0;
{
SlotU5BU5D_t227397015* L_0 = __this->get_table_3();
V_0 = L_0;
V_1 = (SlotU5BU5D_t227397015*)NULL;
int32_t L_1 = VirtFuncInvoker0< int32_t >::Invoke(22 /* System.Int32 System.Collections.SortedList::get_Capacity() */, __this);
V_2 = L_1;
int32_t L_2 = ___free1;
if ((((int32_t)L_2) < ((int32_t)0)))
{
goto IL_0022;
}
}
{
int32_t L_3 = ___free1;
int32_t L_4 = VirtFuncInvoker0< int32_t >::Invoke(15 /* System.Int32 System.Collections.SortedList::get_Count() */, __this);
G_B3_0 = ((((int32_t)L_3) < ((int32_t)L_4))? 1 : 0);
goto IL_0023;
}
IL_0022:
{
G_B3_0 = 0;
}
IL_0023:
{
V_3 = (bool)G_B3_0;
int32_t L_5 = ___n0;
int32_t L_6 = V_2;
if ((((int32_t)L_5) <= ((int32_t)L_6)))
{
goto IL_0034;
}
}
{
int32_t L_7 = ___n0;
V_1 = ((SlotU5BU5D_t227397015*)SZArrayNew(SlotU5BU5D_t227397015_il2cpp_TypeInfo_var, (uint32_t)((int32_t)((int32_t)L_7<<(int32_t)1))));
}
IL_0034:
{
SlotU5BU5D_t227397015* L_8 = V_1;
if (!L_8)
{
goto IL_0093;
}
}
{
bool L_9 = V_3;
if (!L_9)
{
goto IL_007a;
}
}
{
int32_t L_10 = ___free1;
V_4 = L_10;
int32_t L_11 = V_4;
if ((((int32_t)L_11) <= ((int32_t)0)))
{
goto IL_0056;
}
}
{
SlotU5BU5D_t227397015* L_12 = V_0;
SlotU5BU5D_t227397015* L_13 = V_1;
int32_t L_14 = V_4;
Array_Copy_m344457298(NULL /*static, unused*/, (RuntimeArray *)(RuntimeArray *)L_12, 0, (RuntimeArray *)(RuntimeArray *)L_13, 0, L_14, /*hidden argument*/NULL);
}
IL_0056:
{
int32_t L_15 = VirtFuncInvoker0< int32_t >::Invoke(15 /* System.Int32 System.Collections.SortedList::get_Count() */, __this);
int32_t L_16 = ___free1;
V_4 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_15, (int32_t)L_16));
int32_t L_17 = V_4;
if ((((int32_t)L_17) <= ((int32_t)0)))
{
goto IL_0075;
}
}
{
SlotU5BU5D_t227397015* L_18 = V_0;
int32_t L_19 = ___free1;
SlotU5BU5D_t227397015* L_20 = V_1;
int32_t L_21 = ___free1;
int32_t L_22 = V_4;
Array_Copy_m344457298(NULL /*static, unused*/, (RuntimeArray *)(RuntimeArray *)L_18, L_19, (RuntimeArray *)(RuntimeArray *)L_20, ((int32_t)il2cpp_codegen_add((int32_t)L_21, (int32_t)1)), L_22, /*hidden argument*/NULL);
}
IL_0075:
{
goto IL_0087;
}
IL_007a:
{
SlotU5BU5D_t227397015* L_23 = V_0;
SlotU5BU5D_t227397015* L_24 = V_1;
int32_t L_25 = VirtFuncInvoker0< int32_t >::Invoke(15 /* System.Int32 System.Collections.SortedList::get_Count() */, __this);
Array_Copy_m1988217701(NULL /*static, unused*/, (RuntimeArray *)(RuntimeArray *)L_23, (RuntimeArray *)(RuntimeArray *)L_24, L_25, /*hidden argument*/NULL);
}
IL_0087:
{
SlotU5BU5D_t227397015* L_26 = V_1;
__this->set_table_3(L_26);
goto IL_00ac;
}
IL_0093:
{
bool L_27 = V_3;
if (!L_27)
{
goto IL_00ac;
}
}
{
SlotU5BU5D_t227397015* L_28 = V_0;
int32_t L_29 = ___free1;
SlotU5BU5D_t227397015* L_30 = V_0;
int32_t L_31 = ___free1;
int32_t L_32 = VirtFuncInvoker0< int32_t >::Invoke(15 /* System.Int32 System.Collections.SortedList::get_Count() */, __this);
int32_t L_33 = ___free1;
Array_Copy_m344457298(NULL /*static, unused*/, (RuntimeArray *)(RuntimeArray *)L_28, L_29, (RuntimeArray *)(RuntimeArray *)L_30, ((int32_t)il2cpp_codegen_add((int32_t)L_31, (int32_t)1)), ((int32_t)il2cpp_codegen_subtract((int32_t)L_32, (int32_t)L_33)), /*hidden argument*/NULL);
}
IL_00ac:
{
return;
}
}
// System.Void System.Collections.SortedList::PutImpl(System.Object,System.Object,System.Boolean)
extern "C" void SortedList_PutImpl_m3408406199 (SortedList_t2427694641 * __this, RuntimeObject * ___key0, RuntimeObject * ___value1, bool ___overwrite2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (SortedList_PutImpl_m3408406199_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
SlotU5BU5D_t227397015* V_0 = NULL;
int32_t V_1 = 0;
String_t* V_2 = NULL;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = 0;
NO_UNUSED_WARNING (__leave_target);
{
RuntimeObject * L_0 = ___key0;
if (L_0)
{
goto IL_0011;
}
}
{
ArgumentNullException_t1615371798 * L_1 = (ArgumentNullException_t1615371798 *)il2cpp_codegen_object_new(ArgumentNullException_t1615371798_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m1170824041(L_1, _stringLiteral2340372691, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1,SortedList_PutImpl_m3408406199_RuntimeMethod_var);
}
IL_0011:
{
SlotU5BU5D_t227397015* L_2 = __this->get_table_3();
V_0 = L_2;
V_1 = (-1);
}
IL_001a:
try
{ // begin try (depth: 1)
RuntimeObject * L_3 = ___key0;
int32_t L_4 = SortedList_Find_m3363512987(__this, L_3, /*hidden argument*/NULL);
V_1 = L_4;
goto IL_0033;
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__exception_local = (Exception_t *)e.ex;
if(il2cpp_codegen_class_is_assignable_from (Exception_t_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex)))
goto CATCH_0027;
throw e;
}
CATCH_0027:
{ // begin catch(System.Exception)
{
InvalidOperationException_t56020091 * L_5 = (InvalidOperationException_t56020091 *)il2cpp_codegen_object_new(InvalidOperationException_t56020091_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m2734335978(L_5, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5,SortedList_PutImpl_m3408406199_RuntimeMethod_var);
}
IL_002e:
{
goto IL_0033;
}
} // end catch (depth: 1)
IL_0033:
{
int32_t L_6 = V_1;
if ((((int32_t)L_6) < ((int32_t)0)))
{
goto IL_0078;
}
}
{
bool L_7 = ___overwrite2;
if (L_7)
{
goto IL_005c;
}
}
{
ObjectU5BU5D_t2843939325* L_8 = ((ObjectU5BU5D_t2843939325*)SZArrayNew(ObjectU5BU5D_t2843939325_il2cpp_TypeInfo_var, (uint32_t)1));
RuntimeObject * L_9 = ___key0;
ArrayElementTypeCheck (L_8, L_9);
(L_8)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_9);
String_t* L_10 = Locale_GetText_m1601577974(NULL /*static, unused*/, _stringLiteral4048624017, L_8, /*hidden argument*/NULL);
V_2 = L_10;
String_t* L_11 = V_2;
ArgumentException_t132251570 * L_12 = (ArgumentException_t132251570 *)il2cpp_codegen_object_new(ArgumentException_t132251570_il2cpp_TypeInfo_var);
ArgumentException__ctor_m1312628991(L_12, L_11, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_12,SortedList_PutImpl_m3408406199_RuntimeMethod_var);
}
IL_005c:
{
SlotU5BU5D_t227397015* L_13 = V_0;
int32_t L_14 = V_1;
RuntimeObject * L_15 = ___value1;
((L_13)->GetAddressAtUnchecked(static_cast<il2cpp_array_size_t>(L_14)))->set_value_1(L_15);
int32_t L_16 = __this->get_modificationCount_2();
__this->set_modificationCount_2(((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1)));
return;
}
IL_0078:
{
int32_t L_17 = V_1;
V_1 = ((~L_17));
int32_t L_18 = V_1;
int32_t L_19 = VirtFuncInvoker0< int32_t >::Invoke(22 /* System.Int32 System.Collections.SortedList::get_Capacity() */, __this);
if ((((int32_t)L_18) <= ((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_19, (int32_t)1)))))
{
goto IL_00cb;
}
}
{
ObjectU5BU5D_t2843939325* L_20 = ((ObjectU5BU5D_t2843939325*)SZArrayNew(ObjectU5BU5D_t2843939325_il2cpp_TypeInfo_var, (uint32_t)7));
ArrayElementTypeCheck (L_20, _stringLiteral2449404886);
(L_20)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)_stringLiteral2449404886);
ObjectU5BU5D_t2843939325* L_21 = L_20;
RuntimeObject * L_22 = ___key0;
ArrayElementTypeCheck (L_21, L_22);
(L_21)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(1), (RuntimeObject *)L_22);
ObjectU5BU5D_t2843939325* L_23 = L_21;
ArrayElementTypeCheck (L_23, _stringLiteral3450517380);
(L_23)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(2), (RuntimeObject *)_stringLiteral3450517380);
ObjectU5BU5D_t2843939325* L_24 = L_23;
RuntimeObject * L_25 = ___value1;
ArrayElementTypeCheck (L_24, L_25);
(L_24)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(3), (RuntimeObject *)L_25);
ObjectU5BU5D_t2843939325* L_26 = L_24;
ArrayElementTypeCheck (L_26, _stringLiteral2154733698);
(L_26)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(4), (RuntimeObject *)_stringLiteral2154733698);
ObjectU5BU5D_t2843939325* L_27 = L_26;
int32_t L_28 = V_1;
int32_t L_29 = L_28;
RuntimeObject * L_30 = Box(Int32_t2950945753_il2cpp_TypeInfo_var, &L_29);
ArrayElementTypeCheck (L_27, L_30);
(L_27)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(5), (RuntimeObject *)L_30);
ObjectU5BU5D_t2843939325* L_31 = L_27;
ArrayElementTypeCheck (L_31, _stringLiteral3452614643);
(L_31)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(6), (RuntimeObject *)_stringLiteral3452614643);
IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
String_t* L_32 = String_Concat_m2971454694(NULL /*static, unused*/, L_31, /*hidden argument*/NULL);
Exception_t * L_33 = (Exception_t *)il2cpp_codegen_object_new(Exception_t_il2cpp_TypeInfo_var);
Exception__ctor_m1152696503(L_33, L_32, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_33,SortedList_PutImpl_m3408406199_RuntimeMethod_var);
}
IL_00cb:
{
int32_t L_34 = VirtFuncInvoker0< int32_t >::Invoke(15 /* System.Int32 System.Collections.SortedList::get_Count() */, __this);
int32_t L_35 = V_1;
SortedList_EnsureCapacity_m1354099314(__this, ((int32_t)il2cpp_codegen_add((int32_t)L_34, (int32_t)1)), L_35, /*hidden argument*/NULL);
SlotU5BU5D_t227397015* L_36 = __this->get_table_3();
V_0 = L_36;
SlotU5BU5D_t227397015* L_37 = V_0;
int32_t L_38 = V_1;
RuntimeObject * L_39 = ___key0;
((L_37)->GetAddressAtUnchecked(static_cast<il2cpp_array_size_t>(L_38)))->set_key_0(L_39);
SlotU5BU5D_t227397015* L_40 = V_0;
int32_t L_41 = V_1;
RuntimeObject * L_42 = ___value1;
((L_40)->GetAddressAtUnchecked(static_cast<il2cpp_array_size_t>(L_41)))->set_value_1(L_42);
int32_t L_43 = __this->get_inUse_1();
__this->set_inUse_1(((int32_t)il2cpp_codegen_add((int32_t)L_43, (int32_t)1)));
int32_t L_44 = __this->get_modificationCount_2();
__this->set_modificationCount_2(((int32_t)il2cpp_codegen_add((int32_t)L_44, (int32_t)1)));
return;
}
}
// System.Object System.Collections.SortedList::GetImpl(System.Object)
extern "C" RuntimeObject * SortedList_GetImpl_m3689246167 (SortedList_t2427694641 * __this, RuntimeObject * ___key0, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
RuntimeObject * L_0 = ___key0;
int32_t L_1 = SortedList_Find_m3363512987(__this, L_0, /*hidden argument*/NULL);
V_0 = L_1;
int32_t L_2 = V_0;
if ((((int32_t)L_2) < ((int32_t)0)))
{
goto IL_0021;
}
}
{
SlotU5BU5D_t227397015* L_3 = __this->get_table_3();
int32_t L_4 = V_0;
RuntimeObject * L_5 = ((L_3)->GetAddressAtUnchecked(static_cast<il2cpp_array_size_t>(L_4)))->get_value_1();
return L_5;
}
IL_0021:
{
return NULL;
}
}
// System.Void System.Collections.SortedList::InitTable(System.Int32,System.Boolean)
extern "C" void SortedList_InitTable_m875730861 (SortedList_t2427694641 * __this, int32_t ___capacity0, bool ___forceSize1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (SortedList_InitTable_m875730861_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
bool L_0 = ___forceSize1;
if (L_0)
{
goto IL_001a;
}
}
{
int32_t L_1 = ___capacity0;
int32_t L_2 = __this->get_defaultCapacity_5();
if ((((int32_t)L_1) >= ((int32_t)L_2)))
{
goto IL_001a;
}
}
{
int32_t L_3 = __this->get_defaultCapacity_5();
___capacity0 = L_3;
}
IL_001a:
{
int32_t L_4 = ___capacity0;
__this->set_table_3(((SlotU5BU5D_t227397015*)SZArrayNew(SlotU5BU5D_t227397015_il2cpp_TypeInfo_var, (uint32_t)L_4)));
__this->set_inUse_1(0);
__this->set_modificationCount_2(0);
return;
}
}
// System.Int32 System.Collections.SortedList::Find(System.Object)
extern "C" int32_t SortedList_Find_m3363512987 (SortedList_t2427694641 * __this, RuntimeObject * ___key0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (SortedList_Find_m3363512987_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
SlotU5BU5D_t227397015* V_0 = NULL;
int32_t V_1 = 0;
RuntimeObject* V_2 = NULL;
int32_t V_3 = 0;
int32_t V_4 = 0;
int32_t V_5 = 0;
int32_t V_6 = 0;
RuntimeObject* V_7 = NULL;
RuntimeObject* G_B5_0 = NULL;
{
SlotU5BU5D_t227397015* L_0 = __this->get_table_3();
V_0 = L_0;
int32_t L_1 = VirtFuncInvoker0< int32_t >::Invoke(15 /* System.Int32 System.Collections.SortedList::get_Count() */, __this);
V_1 = L_1;
int32_t L_2 = V_1;
if (L_2)
{
goto IL_0016;
}
}
{
return (-1);
}
IL_0016:
{
RuntimeObject* L_3 = __this->get_comparer_4();
if (L_3)
{
goto IL_002f;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(Comparer_t1912461351_il2cpp_TypeInfo_var);
Comparer_t1912461351 * L_4 = ((Comparer_t1912461351_StaticFields*)il2cpp_codegen_static_fields_for(Comparer_t1912461351_il2cpp_TypeInfo_var))->get_Default_0();
V_7 = L_4;
RuntimeObject* L_5 = V_7;
G_B5_0 = L_5;
goto IL_0035;
}
IL_002f:
{
RuntimeObject* L_6 = __this->get_comparer_4();
G_B5_0 = L_6;
}
IL_0035:
{
V_2 = G_B5_0;
V_3 = 0;
int32_t L_7 = V_1;
V_4 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_7, (int32_t)1));
goto IL_0082;
}
IL_0042:
{
int32_t L_8 = V_3;
int32_t L_9 = V_4;
V_5 = ((int32_t)((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_8, (int32_t)L_9))>>(int32_t)1));
RuntimeObject* L_10 = V_2;
SlotU5BU5D_t227397015* L_11 = V_0;
int32_t L_12 = V_5;
RuntimeObject * L_13 = ((L_11)->GetAddressAtUnchecked(static_cast<il2cpp_array_size_t>(L_12)))->get_key_0();
RuntimeObject * L_14 = ___key0;
int32_t L_15 = InterfaceFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Int32 System.Collections.IComparer::Compare(System.Object,System.Object) */, IComparer_t1540313114_il2cpp_TypeInfo_var, L_10, L_13, L_14);
V_6 = L_15;
int32_t L_16 = V_6;
if (L_16)
{
goto IL_006a;
}
}
{
int32_t L_17 = V_5;
return L_17;
}
IL_006a:
{
int32_t L_18 = V_6;
if ((((int32_t)L_18) >= ((int32_t)0)))
{
goto IL_007c;
}
}
{
int32_t L_19 = V_5;
V_3 = ((int32_t)il2cpp_codegen_add((int32_t)L_19, (int32_t)1));
goto IL_0082;
}
IL_007c:
{
int32_t L_20 = V_5;
V_4 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_20, (int32_t)1));
}
IL_0082:
{
int32_t L_21 = V_3;
int32_t L_22 = V_4;
if ((((int32_t)L_21) <= ((int32_t)L_22)))
{
goto IL_0042;
}
}
{
int32_t L_23 = V_3;
return ((~L_23));
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Collections.SortedList/Enumerator::.ctor(System.Collections.SortedList,System.Collections.SortedList/EnumeratorMode)
extern "C" void Enumerator__ctor_m4264210349 (Enumerator_t3548462377 * __this, SortedList_t2427694641 * ___host0, int32_t ___mode1, const RuntimeMethod* method)
{
{
Object__ctor_m297566312(__this, /*hidden argument*/NULL);
SortedList_t2427694641 * L_0 = ___host0;
__this->set_host_0(L_0);
SortedList_t2427694641 * L_1 = ___host0;
int32_t L_2 = L_1->get_modificationCount_2();
__this->set_stamp_1(L_2);
SortedList_t2427694641 * L_3 = ___host0;
int32_t L_4 = VirtFuncInvoker0< int32_t >::Invoke(15 /* System.Int32 System.Collections.SortedList::get_Count() */, L_3);
__this->set_size_3(L_4);
int32_t L_5 = ___mode1;
__this->set_mode_4(L_5);
Enumerator_Reset_m1367479817(__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Collections.SortedList/Enumerator::.cctor()
extern "C" void Enumerator__cctor_m3377250123 (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Enumerator__cctor_m3377250123_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
((Enumerator_t3548462377_StaticFields*)il2cpp_codegen_static_fields_for(Enumerator_t3548462377_il2cpp_TypeInfo_var))->set_xstr_8(_stringLiteral3773069608);
return;
}
}
// System.Void System.Collections.SortedList/Enumerator::Reset()
extern "C" void Enumerator_Reset_m1367479817 (Enumerator_t3548462377 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Enumerator_Reset_m1367479817_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
SortedList_t2427694641 * L_0 = __this->get_host_0();
int32_t L_1 = L_0->get_modificationCount_2();
int32_t L_2 = __this->get_stamp_1();
if ((!(((uint32_t)L_1) == ((uint32_t)L_2))))
{
goto IL_0021;
}
}
{
bool L_3 = __this->get_invalid_7();
if (!L_3)
{
goto IL_002c;
}
}
IL_0021:
{
IL2CPP_RUNTIME_CLASS_INIT(Enumerator_t3548462377_il2cpp_TypeInfo_var);
String_t* L_4 = ((Enumerator_t3548462377_StaticFields*)il2cpp_codegen_static_fields_for(Enumerator_t3548462377_il2cpp_TypeInfo_var))->get_xstr_8();
InvalidOperationException_t56020091 * L_5 = (InvalidOperationException_t56020091 *)il2cpp_codegen_object_new(InvalidOperationException_t56020091_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m237278729(L_5, L_4, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5,Enumerator_Reset_m1367479817_RuntimeMethod_var);
}
IL_002c:
{
__this->set_pos_2((-1));
__this->set_currentKey_5(NULL);
__this->set_currentValue_6(NULL);
return;
}
}
// System.Boolean System.Collections.SortedList/Enumerator::MoveNext()
extern "C" bool Enumerator_MoveNext_m635366482 (Enumerator_t3548462377 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Enumerator_MoveNext_m635366482_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
SlotU5BU5D_t227397015* V_0 = NULL;
Slot_t384495010 V_1;
memset(&V_1, 0, sizeof(V_1));
int32_t V_2 = 0;
{
SortedList_t2427694641 * L_0 = __this->get_host_0();
int32_t L_1 = L_0->get_modificationCount_2();
int32_t L_2 = __this->get_stamp_1();
if ((!(((uint32_t)L_1) == ((uint32_t)L_2))))
{
goto IL_0021;
}
}
{
bool L_3 = __this->get_invalid_7();
if (!L_3)
{
goto IL_002c;
}
}
IL_0021:
{
IL2CPP_RUNTIME_CLASS_INIT(Enumerator_t3548462377_il2cpp_TypeInfo_var);
String_t* L_4 = ((Enumerator_t3548462377_StaticFields*)il2cpp_codegen_static_fields_for(Enumerator_t3548462377_il2cpp_TypeInfo_var))->get_xstr_8();
InvalidOperationException_t56020091 * L_5 = (InvalidOperationException_t56020091 *)il2cpp_codegen_object_new(InvalidOperationException_t56020091_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m237278729(L_5, L_4, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5,Enumerator_MoveNext_m635366482_RuntimeMethod_var);
}
IL_002c:
{
SortedList_t2427694641 * L_6 = __this->get_host_0();
SlotU5BU5D_t227397015* L_7 = L_6->get_table_3();
V_0 = L_7;
int32_t L_8 = __this->get_pos_2();
int32_t L_9 = ((int32_t)il2cpp_codegen_add((int32_t)L_8, (int32_t)1));
V_2 = L_9;
__this->set_pos_2(L_9);
int32_t L_10 = V_2;
int32_t L_11 = __this->get_size_3();
if ((((int32_t)L_10) >= ((int32_t)L_11)))
{
goto IL_0082;
}
}
{
SlotU5BU5D_t227397015* L_12 = V_0;
int32_t L_13 = __this->get_pos_2();
V_1 = (*(Slot_t384495010 *)((L_12)->GetAddressAtUnchecked(static_cast<il2cpp_array_size_t>(L_13))));
RuntimeObject * L_14 = (&V_1)->get_key_0();
__this->set_currentKey_5(L_14);
RuntimeObject * L_15 = (&V_1)->get_value_1();
__this->set_currentValue_6(L_15);
return (bool)1;
}
IL_0082:
{
__this->set_currentKey_5(NULL);
__this->set_currentValue_6(NULL);
return (bool)0;
}
}
// System.Collections.DictionaryEntry System.Collections.SortedList/Enumerator::get_Entry()
extern "C" DictionaryEntry_t3123975638 Enumerator_get_Entry_m3561948123 (Enumerator_t3548462377 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Enumerator_get_Entry_m3561948123_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
bool L_0 = __this->get_invalid_7();
if (L_0)
{
goto IL_0028;
}
}
{
int32_t L_1 = __this->get_pos_2();
int32_t L_2 = __this->get_size_3();
if ((((int32_t)L_1) >= ((int32_t)L_2)))
{
goto IL_0028;
}
}
{
int32_t L_3 = __this->get_pos_2();
if ((!(((uint32_t)L_3) == ((uint32_t)(-1)))))
{
goto IL_0033;
}
}
IL_0028:
{
IL2CPP_RUNTIME_CLASS_INIT(Enumerator_t3548462377_il2cpp_TypeInfo_var);
String_t* L_4 = ((Enumerator_t3548462377_StaticFields*)il2cpp_codegen_static_fields_for(Enumerator_t3548462377_il2cpp_TypeInfo_var))->get_xstr_8();
InvalidOperationException_t56020091 * L_5 = (InvalidOperationException_t56020091 *)il2cpp_codegen_object_new(InvalidOperationException_t56020091_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m237278729(L_5, L_4, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5,Enumerator_get_Entry_m3561948123_RuntimeMethod_var);
}
IL_0033:
{
RuntimeObject * L_6 = __this->get_currentKey_5();
RuntimeObject * L_7 = __this->get_currentValue_6();
DictionaryEntry_t3123975638 L_8;
memset(&L_8, 0, sizeof(L_8));
DictionaryEntry__ctor_m2585376310((&L_8), L_6, L_7, /*hidden argument*/NULL);
return L_8;
}
}
// System.Object System.Collections.SortedList/Enumerator::get_Key()
extern "C" RuntimeObject * Enumerator_get_Key_m1796421380 (Enumerator_t3548462377 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Enumerator_get_Key_m1796421380_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
bool L_0 = __this->get_invalid_7();
if (L_0)
{
goto IL_0028;
}
}
{
int32_t L_1 = __this->get_pos_2();
int32_t L_2 = __this->get_size_3();
if ((((int32_t)L_1) >= ((int32_t)L_2)))
{
goto IL_0028;
}
}
{
int32_t L_3 = __this->get_pos_2();
if ((!(((uint32_t)L_3) == ((uint32_t)(-1)))))
{
goto IL_0033;
}
}
IL_0028:
{
IL2CPP_RUNTIME_CLASS_INIT(Enumerator_t3548462377_il2cpp_TypeInfo_var);
String_t* L_4 = ((Enumerator_t3548462377_StaticFields*)il2cpp_codegen_static_fields_for(Enumerator_t3548462377_il2cpp_TypeInfo_var))->get_xstr_8();
InvalidOperationException_t56020091 * L_5 = (InvalidOperationException_t56020091 *)il2cpp_codegen_object_new(InvalidOperationException_t56020091_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m237278729(L_5, L_4, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5,Enumerator_get_Key_m1796421380_RuntimeMethod_var);
}
IL_0033:
{
RuntimeObject * L_6 = __this->get_currentKey_5();
return L_6;
}
}
// System.Object System.Collections.SortedList/Enumerator::get_Value()
extern "C" RuntimeObject * Enumerator_get_Value_m3071982030 (Enumerator_t3548462377 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Enumerator_get_Value_m3071982030_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
bool L_0 = __this->get_invalid_7();
if (L_0)
{
goto IL_0028;
}
}
{
int32_t L_1 = __this->get_pos_2();
int32_t L_2 = __this->get_size_3();
if ((((int32_t)L_1) >= ((int32_t)L_2)))
{
goto IL_0028;
}
}
{
int32_t L_3 = __this->get_pos_2();
if ((!(((uint32_t)L_3) == ((uint32_t)(-1)))))
{
goto IL_0033;
}
}
IL_0028:
{
IL2CPP_RUNTIME_CLASS_INIT(Enumerator_t3548462377_il2cpp_TypeInfo_var);
String_t* L_4 = ((Enumerator_t3548462377_StaticFields*)il2cpp_codegen_static_fields_for(Enumerator_t3548462377_il2cpp_TypeInfo_var))->get_xstr_8();
InvalidOperationException_t56020091 * L_5 = (InvalidOperationException_t56020091 *)il2cpp_codegen_object_new(InvalidOperationException_t56020091_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m237278729(L_5, L_4, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5,Enumerator_get_Value_m3071982030_RuntimeMethod_var);
}
IL_0033:
{
RuntimeObject * L_6 = __this->get_currentValue_6();
return L_6;
}
}
// System.Object System.Collections.SortedList/Enumerator::get_Current()
extern "C" RuntimeObject * Enumerator_get_Current_m3370609987 (Enumerator_t3548462377 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Enumerator_get_Current_m3370609987_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
{
bool L_0 = __this->get_invalid_7();
if (L_0)
{
goto IL_0028;
}
}
{
int32_t L_1 = __this->get_pos_2();
int32_t L_2 = __this->get_size_3();
if ((((int32_t)L_1) >= ((int32_t)L_2)))
{
goto IL_0028;
}
}
{
int32_t L_3 = __this->get_pos_2();
if ((!(((uint32_t)L_3) == ((uint32_t)(-1)))))
{
goto IL_0033;
}
}
IL_0028:
{
IL2CPP_RUNTIME_CLASS_INIT(Enumerator_t3548462377_il2cpp_TypeInfo_var);
String_t* L_4 = ((Enumerator_t3548462377_StaticFields*)il2cpp_codegen_static_fields_for(Enumerator_t3548462377_il2cpp_TypeInfo_var))->get_xstr_8();
InvalidOperationException_t56020091 * L_5 = (InvalidOperationException_t56020091 *)il2cpp_codegen_object_new(InvalidOperationException_t56020091_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m237278729(L_5, L_4, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5,Enumerator_get_Current_m3370609987_RuntimeMethod_var);
}
IL_0033:
{
int32_t L_6 = __this->get_mode_4();
V_0 = L_6;
int32_t L_7 = V_0;
switch (L_7)
{
case 0:
{
goto IL_0051;
}
case 1:
{
goto IL_0058;
}
case 2:
{
goto IL_005f;
}
}
}
{
goto IL_006b;
}
IL_0051:
{
RuntimeObject * L_8 = __this->get_currentKey_5();
return L_8;
}
IL_0058:
{
RuntimeObject * L_9 = __this->get_currentValue_6();
return L_9;
}
IL_005f:
{
DictionaryEntry_t3123975638 L_10 = Enumerator_get_Entry_m3561948123(__this, /*hidden argument*/NULL);
DictionaryEntry_t3123975638 L_11 = L_10;
RuntimeObject * L_12 = Box(DictionaryEntry_t3123975638_il2cpp_TypeInfo_var, &L_11);
return L_12;
}
IL_006b:
{
int32_t L_13 = __this->get_mode_4();
int32_t L_14 = L_13;
RuntimeObject * L_15 = Box(EnumeratorMode_t3719608883_il2cpp_TypeInfo_var, &L_14);
IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
String_t* L_16 = String_Concat_m904156431(NULL /*static, unused*/, L_15, _stringLiteral2698904487, /*hidden argument*/NULL);
NotSupportedException_t1314879016 * L_17 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var);
NotSupportedException__ctor_m2494070935(L_17, L_16, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_17,Enumerator_get_Current_m3370609987_RuntimeMethod_var);
}
}
// System.Object System.Collections.SortedList/Enumerator::Clone()
extern "C" RuntimeObject * Enumerator_Clone_m1942171085 (Enumerator_t3548462377 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Enumerator_Clone_m1942171085_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Enumerator_t3548462377 * V_0 = NULL;
{
SortedList_t2427694641 * L_0 = __this->get_host_0();
int32_t L_1 = __this->get_mode_4();
Enumerator_t3548462377 * L_2 = (Enumerator_t3548462377 *)il2cpp_codegen_object_new(Enumerator_t3548462377_il2cpp_TypeInfo_var);
Enumerator__ctor_m4264210349(L_2, L_0, L_1, /*hidden argument*/NULL);
V_0 = L_2;
Enumerator_t3548462377 * L_3 = V_0;
int32_t L_4 = __this->get_stamp_1();
L_3->set_stamp_1(L_4);
Enumerator_t3548462377 * L_5 = V_0;
int32_t L_6 = __this->get_pos_2();
L_5->set_pos_2(L_6);
Enumerator_t3548462377 * L_7 = V_0;
int32_t L_8 = __this->get_size_3();
L_7->set_size_3(L_8);
Enumerator_t3548462377 * L_9 = V_0;
RuntimeObject * L_10 = __this->get_currentKey_5();
L_9->set_currentKey_5(L_10);
Enumerator_t3548462377 * L_11 = V_0;
RuntimeObject * L_12 = __this->get_currentValue_6();
L_11->set_currentValue_6(L_12);
Enumerator_t3548462377 * L_13 = V_0;
bool L_14 = __this->get_invalid_7();
L_13->set_invalid_7(L_14);
Enumerator_t3548462377 * L_15 = V_0;
return L_15;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Conversion methods for marshalling of: System.Collections.SortedList/Slot
extern "C" void Slot_t384495010_marshal_pinvoke(const Slot_t384495010& unmarshaled, Slot_t384495010_marshaled_pinvoke& marshaled)
{
if (unmarshaled.get_key_0() != NULL)
{
if (il2cpp_codegen_is_import_or_windows_runtime(unmarshaled.get_key_0()))
{
il2cpp_hresult_t hr = ((Il2CppComObject *)unmarshaled.get_key_0())->identity->QueryInterface(Il2CppIUnknown::IID, reinterpret_cast<void**>(&marshaled.___key_0));
il2cpp_codegen_com_raise_exception_if_failed(hr, false);
}
else
{
marshaled.___key_0 = il2cpp_codegen_com_get_or_create_ccw<Il2CppIUnknown>(unmarshaled.get_key_0());
}
}
else
{
marshaled.___key_0 = NULL;
}
if (unmarshaled.get_value_1() != NULL)
{
if (il2cpp_codegen_is_import_or_windows_runtime(unmarshaled.get_value_1()))
{
il2cpp_hresult_t hr = ((Il2CppComObject *)unmarshaled.get_value_1())->identity->QueryInterface(Il2CppIUnknown::IID, reinterpret_cast<void**>(&marshaled.___value_1));
il2cpp_codegen_com_raise_exception_if_failed(hr, false);
}
else
{
marshaled.___value_1 = il2cpp_codegen_com_get_or_create_ccw<Il2CppIUnknown>(unmarshaled.get_value_1());
}
}
else
{
marshaled.___value_1 = NULL;
}
}
extern "C" void Slot_t384495010_marshal_pinvoke_back(const Slot_t384495010_marshaled_pinvoke& marshaled, Slot_t384495010& unmarshaled)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Slot_t384495010_pinvoke_FromNativeMethodDefinition_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
if (marshaled.___key_0 != NULL)
{
unmarshaled.set_key_0(il2cpp_codegen_com_get_or_create_rcw_from_iunknown<RuntimeObject>(marshaled.___key_0, Il2CppComObject_il2cpp_TypeInfo_var));
}
else
{
unmarshaled.set_key_0(NULL);
}
if (marshaled.___value_1 != NULL)
{
unmarshaled.set_value_1(il2cpp_codegen_com_get_or_create_rcw_from_iunknown<RuntimeObject>(marshaled.___value_1, Il2CppComObject_il2cpp_TypeInfo_var));
}
else
{
unmarshaled.set_value_1(NULL);
}
}
// Conversion method for clean up from marshalling of: System.Collections.SortedList/Slot
extern "C" void Slot_t384495010_marshal_pinvoke_cleanup(Slot_t384495010_marshaled_pinvoke& marshaled)
{
if (marshaled.___key_0 != NULL)
{
(marshaled.___key_0)->Release();
marshaled.___key_0 = NULL;
}
if (marshaled.___value_1 != NULL)
{
(marshaled.___value_1)->Release();
marshaled.___value_1 = NULL;
}
}
// Conversion methods for marshalling of: System.Collections.SortedList/Slot
extern "C" void Slot_t384495010_marshal_com(const Slot_t384495010& unmarshaled, Slot_t384495010_marshaled_com& marshaled)
{
if (unmarshaled.get_key_0() != NULL)
{
if (il2cpp_codegen_is_import_or_windows_runtime(unmarshaled.get_key_0()))
{
il2cpp_hresult_t hr = ((Il2CppComObject *)unmarshaled.get_key_0())->identity->QueryInterface(Il2CppIUnknown::IID, reinterpret_cast<void**>(&marshaled.___key_0));
il2cpp_codegen_com_raise_exception_if_failed(hr, true);
}
else
{
marshaled.___key_0 = il2cpp_codegen_com_get_or_create_ccw<Il2CppIUnknown>(unmarshaled.get_key_0());
}
}
else
{
marshaled.___key_0 = NULL;
}
if (unmarshaled.get_value_1() != NULL)
{
if (il2cpp_codegen_is_import_or_windows_runtime(unmarshaled.get_value_1()))
{
il2cpp_hresult_t hr = ((Il2CppComObject *)unmarshaled.get_value_1())->identity->QueryInterface(Il2CppIUnknown::IID, reinterpret_cast<void**>(&marshaled.___value_1));
il2cpp_codegen_com_raise_exception_if_failed(hr, true);
}
else
{
marshaled.___value_1 = il2cpp_codegen_com_get_or_create_ccw<Il2CppIUnknown>(unmarshaled.get_value_1());
}
}
else
{
marshaled.___value_1 = NULL;
}
}
extern "C" void Slot_t384495010_marshal_com_back(const Slot_t384495010_marshaled_com& marshaled, Slot_t384495010& unmarshaled)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Slot_t384495010_com_FromNativeMethodDefinition_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
if (marshaled.___key_0 != NULL)
{
unmarshaled.set_key_0(il2cpp_codegen_com_get_or_create_rcw_from_iunknown<RuntimeObject>(marshaled.___key_0, Il2CppComObject_il2cpp_TypeInfo_var));
}
else
{
unmarshaled.set_key_0(NULL);
}
if (marshaled.___value_1 != NULL)
{
unmarshaled.set_value_1(il2cpp_codegen_com_get_or_create_rcw_from_iunknown<RuntimeObject>(marshaled.___value_1, Il2CppComObject_il2cpp_TypeInfo_var));
}
else
{
unmarshaled.set_value_1(NULL);
}
}
// Conversion method for clean up from marshalling of: System.Collections.SortedList/Slot
extern "C" void Slot_t384495010_marshal_com_cleanup(Slot_t384495010_marshaled_com& marshaled)
{
if (marshaled.___key_0 != NULL)
{
(marshaled.___key_0)->Release();
marshaled.___key_0 = NULL;
}
if (marshaled.___value_1 != NULL)
{
(marshaled.___value_1)->Release();
marshaled.___value_1 = NULL;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Collections.Stack::.ctor()
extern "C" void Stack__ctor_m2907601956 (Stack_t2329662280 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Stack__ctor_m2907601956_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
__this->set_current_1((-1));
Object__ctor_m297566312(__this, /*hidden argument*/NULL);
__this->set_contents_0(((ObjectU5BU5D_t2843939325*)SZArrayNew(ObjectU5BU5D_t2843939325_il2cpp_TypeInfo_var, (uint32_t)((int32_t)16))));
__this->set_capacity_3(((int32_t)16));
return;
}
}
// System.Void System.Collections.Stack::.ctor(System.Collections.ICollection)
extern "C" void Stack__ctor_m2602729586 (Stack_t2329662280 * __this, RuntimeObject* ___col0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Stack__ctor_m2602729586_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RuntimeObject * V_0 = NULL;
RuntimeObject* V_1 = NULL;
RuntimeObject* V_2 = NULL;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = 0;
NO_UNUSED_WARNING (__leave_target);
Stack_t2329662280 * G_B2_0 = NULL;
Stack_t2329662280 * G_B1_0 = NULL;
int32_t G_B3_0 = 0;
Stack_t2329662280 * G_B3_1 = NULL;
{
RuntimeObject* L_0 = ___col0;
G_B1_0 = __this;
if (L_0)
{
G_B2_0 = __this;
goto IL_000e;
}
}
{
G_B3_0 = ((int32_t)16);
G_B3_1 = G_B1_0;
goto IL_0014;
}
IL_000e:
{
RuntimeObject* L_1 = ___col0;
int32_t L_2 = InterfaceFuncInvoker0< int32_t >::Invoke(0 /* System.Int32 System.Collections.ICollection::get_Count() */, ICollection_t3904884886_il2cpp_TypeInfo_var, L_1);
G_B3_0 = L_2;
G_B3_1 = G_B2_0;
}
IL_0014:
{
Stack__ctor_m3503577671(G_B3_1, G_B3_0, /*hidden argument*/NULL);
RuntimeObject* L_3 = ___col0;
if (L_3)
{
goto IL_002a;
}
}
{
ArgumentNullException_t1615371798 * L_4 = (ArgumentNullException_t1615371798 *)il2cpp_codegen_object_new(ArgumentNullException_t1615371798_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m1170824041(L_4, _stringLiteral2909841371, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_4,Stack__ctor_m2602729586_RuntimeMethod_var);
}
IL_002a:
{
RuntimeObject* L_5 = ___col0;
RuntimeObject* L_6 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.IEnumerator System.Collections.IEnumerable::GetEnumerator() */, IEnumerable_t1941168011_il2cpp_TypeInfo_var, L_5);
V_1 = L_6;
}
IL_0031:
try
{ // begin try (depth: 1)
{
goto IL_0044;
}
IL_0036:
{
RuntimeObject* L_7 = V_1;
RuntimeObject * L_8 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(0 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t1853284238_il2cpp_TypeInfo_var, L_7);
V_0 = L_8;
RuntimeObject * L_9 = V_0;
VirtActionInvoker1< RuntimeObject * >::Invoke(19 /* System.Void System.Collections.Stack::Push(System.Object) */, __this, L_9);
}
IL_0044:
{
RuntimeObject* L_10 = V_1;
bool L_11 = InterfaceFuncInvoker0< bool >::Invoke(1 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t1853284238_il2cpp_TypeInfo_var, L_10);
if (L_11)
{
goto IL_0036;
}
}
IL_004f:
{
IL2CPP_LEAVE(0x66, FINALLY_0054);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_0054;
}
FINALLY_0054:
{ // begin finally (depth: 1)
{
RuntimeObject* L_12 = V_1;
V_2 = ((RuntimeObject*)IsInst((RuntimeObject*)L_12, IDisposable_t3640265483_il2cpp_TypeInfo_var));
RuntimeObject* L_13 = V_2;
if (L_13)
{
goto IL_005f;
}
}
IL_005e:
{
IL2CPP_END_FINALLY(84)
}
IL_005f:
{
RuntimeObject* L_14 = V_2;
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t3640265483_il2cpp_TypeInfo_var, L_14);
IL2CPP_END_FINALLY(84)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(84)
{
IL2CPP_JUMP_TBL(0x66, IL_0066)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_0066:
{
return;
}
}
// System.Void System.Collections.Stack::.ctor(System.Int32)
extern "C" void Stack__ctor_m3503577671 (Stack_t2329662280 * __this, int32_t ___initialCapacity0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Stack__ctor_m3503577671_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
__this->set_current_1((-1));
Object__ctor_m297566312(__this, /*hidden argument*/NULL);
int32_t L_0 = ___initialCapacity0;
if ((((int32_t)L_0) >= ((int32_t)0)))
{
goto IL_001f;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_1 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_1, _stringLiteral2623602555, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1,Stack__ctor_m3503577671_RuntimeMethod_var);
}
IL_001f:
{
int32_t L_2 = ___initialCapacity0;
__this->set_capacity_3(L_2);
int32_t L_3 = __this->get_capacity_3();
__this->set_contents_0(((ObjectU5BU5D_t2843939325*)SZArrayNew(ObjectU5BU5D_t2843939325_il2cpp_TypeInfo_var, (uint32_t)L_3)));
return;
}
}
// System.Void System.Collections.Stack::Resize(System.Int32)
extern "C" void Stack_Resize_m3124769495 (Stack_t2329662280 * __this, int32_t ___ncapacity0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Stack_Resize_m3124769495_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t2843939325* V_0 = NULL;
{
int32_t L_0 = ___ncapacity0;
int32_t L_1 = Math_Max_m1873195862(NULL /*static, unused*/, L_0, ((int32_t)16), /*hidden argument*/NULL);
___ncapacity0 = L_1;
int32_t L_2 = ___ncapacity0;
V_0 = ((ObjectU5BU5D_t2843939325*)SZArrayNew(ObjectU5BU5D_t2843939325_il2cpp_TypeInfo_var, (uint32_t)L_2));
ObjectU5BU5D_t2843939325* L_3 = __this->get_contents_0();
ObjectU5BU5D_t2843939325* L_4 = V_0;
int32_t L_5 = __this->get_count_2();
Array_Copy_m1988217701(NULL /*static, unused*/, (RuntimeArray *)(RuntimeArray *)L_3, (RuntimeArray *)(RuntimeArray *)L_4, L_5, /*hidden argument*/NULL);
int32_t L_6 = ___ncapacity0;
__this->set_capacity_3(L_6);
ObjectU5BU5D_t2843939325* L_7 = V_0;
__this->set_contents_0(L_7);
return;
}
}
// System.Int32 System.Collections.Stack::get_Count()
extern "C" int32_t Stack_get_Count_m2258661097 (Stack_t2329662280 * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->get_count_2();
return L_0;
}
}
// System.Boolean System.Collections.Stack::get_IsSynchronized()
extern "C" bool Stack_get_IsSynchronized_m2265747620 (Stack_t2329662280 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// System.Object System.Collections.Stack::get_SyncRoot()
extern "C" RuntimeObject * Stack_get_SyncRoot_m2243371357 (Stack_t2329662280 * __this, const RuntimeMethod* method)
{
{
return __this;
}
}
// System.Void System.Collections.Stack::Clear()
extern "C" void Stack_Clear_m2010200235 (Stack_t2329662280 * __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
int32_t L_0 = __this->get_modCount_4();
__this->set_modCount_4(((int32_t)il2cpp_codegen_add((int32_t)L_0, (int32_t)1)));
V_0 = 0;
goto IL_0022;
}
IL_0015:
{
ObjectU5BU5D_t2843939325* L_1 = __this->get_contents_0();
int32_t L_2 = V_0;
ArrayElementTypeCheck (L_1, NULL);
(L_1)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(L_2), (RuntimeObject *)NULL);
int32_t L_3 = V_0;
V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1));
}
IL_0022:
{
int32_t L_4 = V_0;
int32_t L_5 = __this->get_count_2();
if ((((int32_t)L_4) < ((int32_t)L_5)))
{
goto IL_0015;
}
}
{
__this->set_count_2(0);
__this->set_current_1((-1));
return;
}
}
// System.Object System.Collections.Stack::Clone()
extern "C" RuntimeObject * Stack_Clone_m2625073663 (Stack_t2329662280 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Stack_Clone_m2625073663_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Stack_t2329662280 * V_0 = NULL;
{
ObjectU5BU5D_t2843939325* L_0 = __this->get_contents_0();
Stack_t2329662280 * L_1 = (Stack_t2329662280 *)il2cpp_codegen_object_new(Stack_t2329662280_il2cpp_TypeInfo_var);
Stack__ctor_m2602729586(L_1, (RuntimeObject*)(RuntimeObject*)L_0, /*hidden argument*/NULL);
V_0 = L_1;
Stack_t2329662280 * L_2 = V_0;
int32_t L_3 = __this->get_current_1();
L_2->set_current_1(L_3);
Stack_t2329662280 * L_4 = V_0;
int32_t L_5 = __this->get_count_2();
L_4->set_count_2(L_5);
Stack_t2329662280 * L_6 = V_0;
return L_6;
}
}
// System.Void System.Collections.Stack::CopyTo(System.Array,System.Int32)
extern "C" void Stack_CopyTo_m953825709 (Stack_t2329662280 * __this, RuntimeArray * ___array0, int32_t ___index1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Stack_CopyTo_m953825709_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
{
RuntimeArray * L_0 = ___array0;
if (L_0)
{
goto IL_0011;
}
}
{
ArgumentNullException_t1615371798 * L_1 = (ArgumentNullException_t1615371798 *)il2cpp_codegen_object_new(ArgumentNullException_t1615371798_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m1170824041(L_1, _stringLiteral4007973390, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1,Stack_CopyTo_m953825709_RuntimeMethod_var);
}
IL_0011:
{
int32_t L_2 = ___index1;
if ((((int32_t)L_2) >= ((int32_t)0)))
{
goto IL_0023;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_3 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_3, _stringLiteral797640427, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3,Stack_CopyTo_m953825709_RuntimeMethod_var);
}
IL_0023:
{
RuntimeArray * L_4 = ___array0;
int32_t L_5 = Array_get_Rank_m3448755881(L_4, /*hidden argument*/NULL);
if ((((int32_t)L_5) > ((int32_t)1)))
{
goto IL_005a;
}
}
{
RuntimeArray * L_6 = ___array0;
int32_t L_7 = Array_get_Length_m21610649(L_6, /*hidden argument*/NULL);
if ((((int32_t)L_7) <= ((int32_t)0)))
{
goto IL_0047;
}
}
{
int32_t L_8 = ___index1;
RuntimeArray * L_9 = ___array0;
int32_t L_10 = Array_get_Length_m21610649(L_9, /*hidden argument*/NULL);
if ((((int32_t)L_8) >= ((int32_t)L_10)))
{
goto IL_005a;
}
}
IL_0047:
{
int32_t L_11 = __this->get_count_2();
RuntimeArray * L_12 = ___array0;
int32_t L_13 = Array_get_Length_m21610649(L_12, /*hidden argument*/NULL);
int32_t L_14 = ___index1;
if ((((int32_t)L_11) <= ((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_13, (int32_t)L_14)))))
{
goto IL_0060;
}
}
IL_005a:
{
ArgumentException_t132251570 * L_15 = (ArgumentException_t132251570 *)il2cpp_codegen_object_new(ArgumentException_t132251570_il2cpp_TypeInfo_var);
ArgumentException__ctor_m3698743796(L_15, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_15,Stack_CopyTo_m953825709_RuntimeMethod_var);
}
IL_0060:
{
int32_t L_16 = __this->get_current_1();
V_0 = L_16;
goto IL_008a;
}
IL_006c:
{
RuntimeArray * L_17 = ___array0;
ObjectU5BU5D_t2843939325* L_18 = __this->get_contents_0();
int32_t L_19 = V_0;
int32_t L_20 = L_19;
RuntimeObject * L_21 = (L_18)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_20));
int32_t L_22 = __this->get_count_2();
int32_t L_23 = V_0;
int32_t L_24 = ___index1;
Array_SetValue_m3412255035(L_17, L_21, ((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_22, (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_23, (int32_t)1)))), (int32_t)L_24)), /*hidden argument*/NULL);
int32_t L_25 = V_0;
V_0 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_25, (int32_t)1));
}
IL_008a:
{
int32_t L_26 = V_0;
if ((!(((uint32_t)L_26) == ((uint32_t)(-1)))))
{
goto IL_006c;
}
}
{
return;
}
}
// System.Collections.IEnumerator System.Collections.Stack::GetEnumerator()
extern "C" RuntimeObject* Stack_GetEnumerator_m2673437525 (Stack_t2329662280 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Stack_GetEnumerator_m2673437525_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Enumerator_t2929709194 * L_0 = (Enumerator_t2929709194 *)il2cpp_codegen_object_new(Enumerator_t2929709194_il2cpp_TypeInfo_var);
Enumerator__ctor_m3362421874(L_0, __this, /*hidden argument*/NULL);
return L_0;
}
}
// System.Object System.Collections.Stack::Peek()
extern "C" RuntimeObject * Stack_Peek_m2216191248 (Stack_t2329662280 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Stack_Peek_m2216191248_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = __this->get_current_1();
if ((!(((uint32_t)L_0) == ((uint32_t)(-1)))))
{
goto IL_0012;
}
}
{
InvalidOperationException_t56020091 * L_1 = (InvalidOperationException_t56020091 *)il2cpp_codegen_object_new(InvalidOperationException_t56020091_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m2734335978(L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1,Stack_Peek_m2216191248_RuntimeMethod_var);
}
IL_0012:
{
ObjectU5BU5D_t2843939325* L_2 = __this->get_contents_0();
int32_t L_3 = __this->get_current_1();
int32_t L_4 = L_3;
RuntimeObject * L_5 = (L_2)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_4));
return L_5;
}
}
// System.Object System.Collections.Stack::Pop()
extern "C" RuntimeObject * Stack_Pop_m4248134981 (Stack_t2329662280 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Stack_Pop_m4248134981_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RuntimeObject * V_0 = NULL;
{
int32_t L_0 = __this->get_current_1();
if ((!(((uint32_t)L_0) == ((uint32_t)(-1)))))
{
goto IL_0012;
}
}
{
InvalidOperationException_t56020091 * L_1 = (InvalidOperationException_t56020091 *)il2cpp_codegen_object_new(InvalidOperationException_t56020091_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m2734335978(L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1,Stack_Pop_m4248134981_RuntimeMethod_var);
}
IL_0012:
{
int32_t L_2 = __this->get_modCount_4();
__this->set_modCount_4(((int32_t)il2cpp_codegen_add((int32_t)L_2, (int32_t)1)));
ObjectU5BU5D_t2843939325* L_3 = __this->get_contents_0();
int32_t L_4 = __this->get_current_1();
int32_t L_5 = L_4;
RuntimeObject * L_6 = (L_3)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_5));
V_0 = L_6;
ObjectU5BU5D_t2843939325* L_7 = __this->get_contents_0();
int32_t L_8 = __this->get_current_1();
ArrayElementTypeCheck (L_7, NULL);
(L_7)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(L_8), (RuntimeObject *)NULL);
int32_t L_9 = __this->get_count_2();
__this->set_count_2(((int32_t)il2cpp_codegen_subtract((int32_t)L_9, (int32_t)1)));
int32_t L_10 = __this->get_current_1();
__this->set_current_1(((int32_t)il2cpp_codegen_subtract((int32_t)L_10, (int32_t)1)));
int32_t L_11 = __this->get_count_2();
int32_t L_12 = __this->get_capacity_3();
if ((((int32_t)L_11) > ((int32_t)((int32_t)((int32_t)L_12/(int32_t)4)))))
{
goto IL_0086;
}
}
{
int32_t L_13 = __this->get_count_2();
if ((((int32_t)L_13) <= ((int32_t)((int32_t)16))))
{
goto IL_0086;
}
}
{
int32_t L_14 = __this->get_capacity_3();
Stack_Resize_m3124769495(__this, ((int32_t)((int32_t)L_14/(int32_t)2)), /*hidden argument*/NULL);
}
IL_0086:
{
RuntimeObject * L_15 = V_0;
return L_15;
}
}
// System.Void System.Collections.Stack::Push(System.Object)
extern "C" void Stack_Push_m2529252115 (Stack_t2329662280 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->get_modCount_4();
__this->set_modCount_4(((int32_t)il2cpp_codegen_add((int32_t)L_0, (int32_t)1)));
int32_t L_1 = __this->get_capacity_3();
int32_t L_2 = __this->get_count_2();
if ((!(((uint32_t)L_1) == ((uint32_t)L_2))))
{
goto IL_002d;
}
}
{
int32_t L_3 = __this->get_capacity_3();
Stack_Resize_m3124769495(__this, ((int32_t)il2cpp_codegen_multiply((int32_t)L_3, (int32_t)2)), /*hidden argument*/NULL);
}
IL_002d:
{
int32_t L_4 = __this->get_count_2();
__this->set_count_2(((int32_t)il2cpp_codegen_add((int32_t)L_4, (int32_t)1)));
int32_t L_5 = __this->get_current_1();
__this->set_current_1(((int32_t)il2cpp_codegen_add((int32_t)L_5, (int32_t)1)));
ObjectU5BU5D_t2843939325* L_6 = __this->get_contents_0();
int32_t L_7 = __this->get_current_1();
RuntimeObject * L_8 = ___obj0;
ArrayElementTypeCheck (L_6, L_8);
(L_6)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(L_7), (RuntimeObject *)L_8);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Collections.Stack/Enumerator::.ctor(System.Collections.Stack)
extern "C" void Enumerator__ctor_m3362421874 (Enumerator_t2929709194 * __this, Stack_t2329662280 * ___s0, const RuntimeMethod* method)
{
{
Object__ctor_m297566312(__this, /*hidden argument*/NULL);
Stack_t2329662280 * L_0 = ___s0;
__this->set_stack_0(L_0);
Stack_t2329662280 * L_1 = ___s0;
int32_t L_2 = L_1->get_modCount_4();
__this->set_modCount_1(L_2);
__this->set_current_2(((int32_t)-2));
return;
}
}
// System.Object System.Collections.Stack/Enumerator::Clone()
extern "C" RuntimeObject * Enumerator_Clone_m1203486474 (Enumerator_t2929709194 * __this, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = Object_MemberwiseClone_m1474068832(__this, /*hidden argument*/NULL);
return L_0;
}
}
// System.Object System.Collections.Stack/Enumerator::get_Current()
extern "C" RuntimeObject * Enumerator_get_Current_m2520471220 (Enumerator_t2929709194 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Enumerator_get_Current_m2520471220_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = __this->get_modCount_1();
Stack_t2329662280 * L_1 = __this->get_stack_0();
int32_t L_2 = L_1->get_modCount_4();
if ((!(((uint32_t)L_0) == ((uint32_t)L_2))))
{
goto IL_0045;
}
}
{
int32_t L_3 = __this->get_current_2();
if ((((int32_t)L_3) == ((int32_t)((int32_t)-2))))
{
goto IL_0045;
}
}
{
int32_t L_4 = __this->get_current_2();
if ((((int32_t)L_4) == ((int32_t)(-1))))
{
goto IL_0045;
}
}
{
int32_t L_5 = __this->get_current_2();
Stack_t2329662280 * L_6 = __this->get_stack_0();
int32_t L_7 = L_6->get_count_2();
if ((((int32_t)L_5) <= ((int32_t)L_7)))
{
goto IL_004b;
}
}
IL_0045:
{
InvalidOperationException_t56020091 * L_8 = (InvalidOperationException_t56020091 *)il2cpp_codegen_object_new(InvalidOperationException_t56020091_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m2734335978(L_8, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_8,Enumerator_get_Current_m2520471220_RuntimeMethod_var);
}
IL_004b:
{
Stack_t2329662280 * L_9 = __this->get_stack_0();
ObjectU5BU5D_t2843939325* L_10 = L_9->get_contents_0();
int32_t L_11 = __this->get_current_2();
int32_t L_12 = L_11;
RuntimeObject * L_13 = (L_10)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_12));
return L_13;
}
}
// System.Boolean System.Collections.Stack/Enumerator::MoveNext()
extern "C" bool Enumerator_MoveNext_m3995713679 (Enumerator_t2929709194 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Enumerator_MoveNext_m3995713679_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
{
int32_t L_0 = __this->get_modCount_1();
Stack_t2329662280 * L_1 = __this->get_stack_0();
int32_t L_2 = L_1->get_modCount_4();
if ((((int32_t)L_0) == ((int32_t)L_2)))
{
goto IL_001c;
}
}
{
InvalidOperationException_t56020091 * L_3 = (InvalidOperationException_t56020091 *)il2cpp_codegen_object_new(InvalidOperationException_t56020091_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m2734335978(L_3, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3,Enumerator_MoveNext_m3995713679_RuntimeMethod_var);
}
IL_001c:
{
int32_t L_4 = __this->get_current_2();
V_0 = L_4;
int32_t L_5 = V_0;
if ((((int32_t)L_5) == ((int32_t)((int32_t)-2))))
{
goto IL_0037;
}
}
{
int32_t L_6 = V_0;
if ((((int32_t)L_6) == ((int32_t)(-1))))
{
goto IL_0055;
}
}
{
goto IL_0057;
}
IL_0037:
{
Stack_t2329662280 * L_7 = __this->get_stack_0();
int32_t L_8 = L_7->get_current_1();
__this->set_current_2(L_8);
int32_t L_9 = __this->get_current_2();
return (bool)((((int32_t)((((int32_t)L_9) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
}
IL_0055:
{
return (bool)0;
}
IL_0057:
{
int32_t L_10 = __this->get_current_2();
__this->set_current_2(((int32_t)il2cpp_codegen_subtract((int32_t)L_10, (int32_t)1)));
int32_t L_11 = __this->get_current_2();
return (bool)((((int32_t)((((int32_t)L_11) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
}
}
// System.Void System.Collections.Stack/Enumerator::Reset()
extern "C" void Enumerator_Reset_m2459931042 (Enumerator_t2929709194 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Enumerator_Reset_m2459931042_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = __this->get_modCount_1();
Stack_t2329662280 * L_1 = __this->get_stack_0();
int32_t L_2 = L_1->get_modCount_4();
if ((((int32_t)L_0) == ((int32_t)L_2)))
{
goto IL_001c;
}
}
{
InvalidOperationException_t56020091 * L_3 = (InvalidOperationException_t56020091 *)il2cpp_codegen_object_new(InvalidOperationException_t56020091_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m2734335978(L_3, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3,Enumerator_Reset_m2459931042_RuntimeMethod_var);
}
IL_001c:
{
__this->set_current_2(((int32_t)-2));
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Console::.cctor()
extern "C" void Console__cctor_m1860305256 (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Console__cctor_m1860305256_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
{
bool L_0 = Environment_get_IsRunningOnWindows_m1804804030(NULL /*static, unused*/, /*hidden argument*/NULL);
if (!L_0)
{
goto IL_001f;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(Encoding_t1523322056_il2cpp_TypeInfo_var);
Encoding_t1523322056 * L_1 = Encoding_get_Default_m1632902165(NULL /*static, unused*/, /*hidden argument*/NULL);
Encoding_t1523322056 * L_2 = L_1;
((Console_t3208230065_StaticFields*)il2cpp_codegen_static_fields_for(Console_t3208230065_il2cpp_TypeInfo_var))->set_outputEncoding_4(L_2);
((Console_t3208230065_StaticFields*)il2cpp_codegen_static_fields_for(Console_t3208230065_il2cpp_TypeInfo_var))->set_inputEncoding_3(L_2);
goto IL_006e;
}
IL_001f:
{
V_0 = 0;
IL2CPP_RUNTIME_CLASS_INIT(Encoding_t1523322056_il2cpp_TypeInfo_var);
Encoding_InternalCodePage_m4154357846(NULL /*static, unused*/, (&V_0), /*hidden argument*/NULL);
int32_t L_3 = V_0;
if ((((int32_t)L_3) == ((int32_t)(-1))))
{
goto IL_005e;
}
}
{
int32_t L_4 = V_0;
if ((((int32_t)((int32_t)((int32_t)L_4&(int32_t)((int32_t)268435455)))) == ((int32_t)3)))
{
goto IL_0049;
}
}
{
int32_t L_5 = V_0;
if (!((int32_t)((int32_t)L_5&(int32_t)((int32_t)268435456))))
{
goto IL_005e;
}
}
IL_0049:
{
IL2CPP_RUNTIME_CLASS_INIT(Encoding_t1523322056_il2cpp_TypeInfo_var);
Encoding_t1523322056 * L_6 = Encoding_get_UTF8Unmarked_m3350637783(NULL /*static, unused*/, /*hidden argument*/NULL);
Encoding_t1523322056 * L_7 = L_6;
((Console_t3208230065_StaticFields*)il2cpp_codegen_static_fields_for(Console_t3208230065_il2cpp_TypeInfo_var))->set_outputEncoding_4(L_7);
((Console_t3208230065_StaticFields*)il2cpp_codegen_static_fields_for(Console_t3208230065_il2cpp_TypeInfo_var))->set_inputEncoding_3(L_7);
goto IL_006e;
}
IL_005e:
{
IL2CPP_RUNTIME_CLASS_INIT(Encoding_t1523322056_il2cpp_TypeInfo_var);
Encoding_t1523322056 * L_8 = Encoding_get_Default_m1632902165(NULL /*static, unused*/, /*hidden argument*/NULL);
Encoding_t1523322056 * L_9 = L_8;
((Console_t3208230065_StaticFields*)il2cpp_codegen_static_fields_for(Console_t3208230065_il2cpp_TypeInfo_var))->set_outputEncoding_4(L_9);
((Console_t3208230065_StaticFields*)il2cpp_codegen_static_fields_for(Console_t3208230065_il2cpp_TypeInfo_var))->set_inputEncoding_3(L_9);
}
IL_006e:
{
Encoding_t1523322056 * L_10 = ((Console_t3208230065_StaticFields*)il2cpp_codegen_static_fields_for(Console_t3208230065_il2cpp_TypeInfo_var))->get_inputEncoding_3();
Encoding_t1523322056 * L_11 = ((Console_t3208230065_StaticFields*)il2cpp_codegen_static_fields_for(Console_t3208230065_il2cpp_TypeInfo_var))->get_outputEncoding_4();
Console_SetEncodings_m1501183766(NULL /*static, unused*/, L_10, L_11, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Console::SetEncodings(System.Text.Encoding,System.Text.Encoding)
extern "C" void Console_SetEncodings_m1501183766 (RuntimeObject * __this /* static, unused */, Encoding_t1523322056 * ___inputEncoding0, Encoding_t1523322056 * ___outputEncoding1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Console_SetEncodings_m1501183766_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(Console_t3208230065_il2cpp_TypeInfo_var);
Stream_t1273022909 * L_0 = Console_OpenStandardError_m294613724(NULL /*static, unused*/, 0, /*hidden argument*/NULL);
Encoding_t1523322056 * L_1 = ___outputEncoding1;
UnexceptionalStreamWriter_t2539306459 * L_2 = (UnexceptionalStreamWriter_t2539306459 *)il2cpp_codegen_object_new(UnexceptionalStreamWriter_t2539306459_il2cpp_TypeInfo_var);
UnexceptionalStreamWriter__ctor_m1310404920(L_2, L_0, L_1, /*hidden argument*/NULL);
((Console_t3208230065_StaticFields*)il2cpp_codegen_static_fields_for(Console_t3208230065_il2cpp_TypeInfo_var))->set_stderr_1(L_2);
TextWriter_t3478189236 * L_3 = ((Console_t3208230065_StaticFields*)il2cpp_codegen_static_fields_for(Console_t3208230065_il2cpp_TypeInfo_var))->get_stderr_1();
VirtActionInvoker1< bool >::Invoke(14 /* System.Void System.IO.StreamWriter::set_AutoFlush(System.Boolean) */, ((StreamWriter_t1266378904 *)CastclassClass((RuntimeObject*)L_3, StreamWriter_t1266378904_il2cpp_TypeInfo_var)), (bool)1);
TextWriter_t3478189236 * L_4 = ((Console_t3208230065_StaticFields*)il2cpp_codegen_static_fields_for(Console_t3208230065_il2cpp_TypeInfo_var))->get_stderr_1();
IL2CPP_RUNTIME_CLASS_INIT(TextWriter_t3478189236_il2cpp_TypeInfo_var);
TextWriter_t3478189236 * L_5 = TextWriter_Synchronized_m904006265(NULL /*static, unused*/, L_4, (bool)1, /*hidden argument*/NULL);
((Console_t3208230065_StaticFields*)il2cpp_codegen_static_fields_for(Console_t3208230065_il2cpp_TypeInfo_var))->set_stderr_1(L_5);
Stream_t1273022909 * L_6 = Console_OpenStandardOutput_m1257556731(NULL /*static, unused*/, 0, /*hidden argument*/NULL);
Encoding_t1523322056 * L_7 = ___outputEncoding1;
UnexceptionalStreamWriter_t2539306459 * L_8 = (UnexceptionalStreamWriter_t2539306459 *)il2cpp_codegen_object_new(UnexceptionalStreamWriter_t2539306459_il2cpp_TypeInfo_var);
UnexceptionalStreamWriter__ctor_m1310404920(L_8, L_6, L_7, /*hidden argument*/NULL);
((Console_t3208230065_StaticFields*)il2cpp_codegen_static_fields_for(Console_t3208230065_il2cpp_TypeInfo_var))->set_stdout_0(L_8);
TextWriter_t3478189236 * L_9 = ((Console_t3208230065_StaticFields*)il2cpp_codegen_static_fields_for(Console_t3208230065_il2cpp_TypeInfo_var))->get_stdout_0();
VirtActionInvoker1< bool >::Invoke(14 /* System.Void System.IO.StreamWriter::set_AutoFlush(System.Boolean) */, ((StreamWriter_t1266378904 *)CastclassClass((RuntimeObject*)L_9, StreamWriter_t1266378904_il2cpp_TypeInfo_var)), (bool)1);
TextWriter_t3478189236 * L_10 = ((Console_t3208230065_StaticFields*)il2cpp_codegen_static_fields_for(Console_t3208230065_il2cpp_TypeInfo_var))->get_stdout_0();
TextWriter_t3478189236 * L_11 = TextWriter_Synchronized_m904006265(NULL /*static, unused*/, L_10, (bool)1, /*hidden argument*/NULL);
((Console_t3208230065_StaticFields*)il2cpp_codegen_static_fields_for(Console_t3208230065_il2cpp_TypeInfo_var))->set_stdout_0(L_11);
Stream_t1273022909 * L_12 = Console_OpenStandardInput_m3262421490(NULL /*static, unused*/, 0, /*hidden argument*/NULL);
Encoding_t1523322056 * L_13 = ___inputEncoding0;
UnexceptionalStreamReader_t2154476246 * L_14 = (UnexceptionalStreamReader_t2154476246 *)il2cpp_codegen_object_new(UnexceptionalStreamReader_t2154476246_il2cpp_TypeInfo_var);
UnexceptionalStreamReader__ctor_m1568917069(L_14, L_12, L_13, /*hidden argument*/NULL);
((Console_t3208230065_StaticFields*)il2cpp_codegen_static_fields_for(Console_t3208230065_il2cpp_TypeInfo_var))->set_stdin_2(L_14);
TextReader_t283511965 * L_15 = ((Console_t3208230065_StaticFields*)il2cpp_codegen_static_fields_for(Console_t3208230065_il2cpp_TypeInfo_var))->get_stdin_2();
IL2CPP_RUNTIME_CLASS_INIT(TextReader_t283511965_il2cpp_TypeInfo_var);
TextReader_t283511965 * L_16 = TextReader_Synchronized_m3004980758(NULL /*static, unused*/, L_15, /*hidden argument*/NULL);
((Console_t3208230065_StaticFields*)il2cpp_codegen_static_fields_for(Console_t3208230065_il2cpp_TypeInfo_var))->set_stdin_2(L_16);
TextWriter_t3478189236 * L_17 = ((Console_t3208230065_StaticFields*)il2cpp_codegen_static_fields_for(Console_t3208230065_il2cpp_TypeInfo_var))->get_stdout_0();
GC_SuppressFinalize_m1177400158(NULL /*static, unused*/, L_17, /*hidden argument*/NULL);
TextWriter_t3478189236 * L_18 = ((Console_t3208230065_StaticFields*)il2cpp_codegen_static_fields_for(Console_t3208230065_il2cpp_TypeInfo_var))->get_stderr_1();
GC_SuppressFinalize_m1177400158(NULL /*static, unused*/, L_18, /*hidden argument*/NULL);
TextReader_t283511965 * L_19 = ((Console_t3208230065_StaticFields*)il2cpp_codegen_static_fields_for(Console_t3208230065_il2cpp_TypeInfo_var))->get_stdin_2();
GC_SuppressFinalize_m1177400158(NULL /*static, unused*/, L_19, /*hidden argument*/NULL);
return;
}
}
// System.IO.TextWriter System.Console::get_Error()
extern "C" TextWriter_t3478189236 * Console_get_Error_m1839879495 (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Console_get_Error_m1839879495_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(Console_t3208230065_il2cpp_TypeInfo_var);
TextWriter_t3478189236 * L_0 = ((Console_t3208230065_StaticFields*)il2cpp_codegen_static_fields_for(Console_t3208230065_il2cpp_TypeInfo_var))->get_stderr_1();
return L_0;
}
}
// System.IO.Stream System.Console::Open(System.IntPtr,System.IO.FileAccess,System.Int32)
extern "C" Stream_t1273022909 * Console_Open_m3077673205 (RuntimeObject * __this /* static, unused */, intptr_t ___handle0, int32_t ___access1, int32_t ___bufferSize2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Console_Open_m3077673205_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Stream_t1273022909 * V_0 = NULL;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = 0;
NO_UNUSED_WARNING (__leave_target);
IL_0000:
try
{ // begin try (depth: 1)
{
intptr_t L_0 = ___handle0;
int32_t L_1 = ___access1;
int32_t L_2 = ___bufferSize2;
int32_t L_3 = ___bufferSize2;
FileStream_t4292183065 * L_4 = (FileStream_t4292183065 *)il2cpp_codegen_object_new(FileStream_t4292183065_il2cpp_TypeInfo_var);
FileStream__ctor_m3087090334(L_4, L_0, L_1, (bool)0, L_2, (bool)0, (bool)((((int32_t)L_3) == ((int32_t)0))? 1 : 0), /*hidden argument*/NULL);
V_0 = L_4;
goto IL_002a;
}
IL_0014:
{
; // IL_0014: leave IL_002a
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__exception_local = (Exception_t *)e.ex;
if(il2cpp_codegen_class_is_assignable_from (IOException_t4088381929_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex)))
goto CATCH_0019;
throw e;
}
CATCH_0019:
{ // begin catch(System.IO.IOException)
{
NullStream_t1684893697 * L_5 = (NullStream_t1684893697 *)il2cpp_codegen_object_new(NullStream_t1684893697_il2cpp_TypeInfo_var);
NullStream__ctor_m2992573138(L_5, /*hidden argument*/NULL);
V_0 = L_5;
goto IL_002a;
}
IL_0025:
{
; // IL_0025: leave IL_002a
}
} // end catch (depth: 1)
IL_002a:
{
Stream_t1273022909 * L_6 = V_0;
return L_6;
}
}
// System.IO.Stream System.Console::OpenStandardError(System.Int32)
extern "C" Stream_t1273022909 * Console_OpenStandardError_m294613724 (RuntimeObject * __this /* static, unused */, int32_t ___bufferSize0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Console_OpenStandardError_m294613724_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(MonoIO_t2601436415_il2cpp_TypeInfo_var);
intptr_t L_0 = MonoIO_get_ConsoleError_m1156784591(NULL /*static, unused*/, /*hidden argument*/NULL);
int32_t L_1 = ___bufferSize0;
IL2CPP_RUNTIME_CLASS_INIT(Console_t3208230065_il2cpp_TypeInfo_var);
Stream_t1273022909 * L_2 = Console_Open_m3077673205(NULL /*static, unused*/, L_0, 2, L_1, /*hidden argument*/NULL);
return L_2;
}
}
// System.IO.Stream System.Console::OpenStandardInput(System.Int32)
extern "C" Stream_t1273022909 * Console_OpenStandardInput_m3262421490 (RuntimeObject * __this /* static, unused */, int32_t ___bufferSize0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Console_OpenStandardInput_m3262421490_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(MonoIO_t2601436415_il2cpp_TypeInfo_var);
intptr_t L_0 = MonoIO_get_ConsoleInput_m610865495(NULL /*static, unused*/, /*hidden argument*/NULL);
int32_t L_1 = ___bufferSize0;
IL2CPP_RUNTIME_CLASS_INIT(Console_t3208230065_il2cpp_TypeInfo_var);
Stream_t1273022909 * L_2 = Console_Open_m3077673205(NULL /*static, unused*/, L_0, 1, L_1, /*hidden argument*/NULL);
return L_2;
}
}
// System.IO.Stream System.Console::OpenStandardOutput(System.Int32)
extern "C" Stream_t1273022909 * Console_OpenStandardOutput_m1257556731 (RuntimeObject * __this /* static, unused */, int32_t ___bufferSize0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Console_OpenStandardOutput_m1257556731_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(MonoIO_t2601436415_il2cpp_TypeInfo_var);
intptr_t L_0 = MonoIO_get_ConsoleOutput_m1601613425(NULL /*static, unused*/, /*hidden argument*/NULL);
int32_t L_1 = ___bufferSize0;
IL2CPP_RUNTIME_CLASS_INIT(Console_t3208230065_il2cpp_TypeInfo_var);
Stream_t1273022909 * L_2 = Console_Open_m3077673205(NULL /*static, unused*/, L_0, 2, L_1, /*hidden argument*/NULL);
return L_2;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.ContextBoundObject::.ctor()
extern "C" void ContextBoundObject__ctor_m308624197 (ContextBoundObject_t1394786030 * __this, const RuntimeMethod* method)
{
{
MarshalByRefObject__ctor_m3039543187(__this, /*hidden argument*/NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Convert::.cctor()
extern "C" void Convert__cctor_m2847208289 (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Convert__cctor_m2847208289_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(DBNull_t3725197148_il2cpp_TypeInfo_var);
DBNull_t3725197148 * L_0 = ((DBNull_t3725197148_StaticFields*)il2cpp_codegen_static_fields_for(DBNull_t3725197148_il2cpp_TypeInfo_var))->get_Value_0();
((Convert_t2465617642_StaticFields*)il2cpp_codegen_static_fields_for(Convert_t2465617642_il2cpp_TypeInfo_var))->set_DBNull_0(L_0);
TypeU5BU5D_t3940880105* L_1 = ((TypeU5BU5D_t3940880105*)SZArrayNew(TypeU5BU5D_t3940880105_il2cpp_TypeInfo_var, (uint32_t)((int32_t)19)));
RuntimeTypeHandle_t3027515415 L_2 = { reinterpret_cast<intptr_t> (RuntimeObject_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_3 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, L_2, /*hidden argument*/NULL);
ArrayElementTypeCheck (L_1, L_3);
(L_1)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(1), (Type_t *)L_3);
TypeU5BU5D_t3940880105* L_4 = L_1;
RuntimeTypeHandle_t3027515415 L_5 = { reinterpret_cast<intptr_t> (DBNull_t3725197148_0_0_0_var) };
Type_t * L_6 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, L_5, /*hidden argument*/NULL);
ArrayElementTypeCheck (L_4, L_6);
(L_4)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(2), (Type_t *)L_6);
TypeU5BU5D_t3940880105* L_7 = L_4;
RuntimeTypeHandle_t3027515415 L_8 = { reinterpret_cast<intptr_t> (Boolean_t97287965_0_0_0_var) };
Type_t * L_9 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, L_8, /*hidden argument*/NULL);
ArrayElementTypeCheck (L_7, L_9);
(L_7)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(3), (Type_t *)L_9);
TypeU5BU5D_t3940880105* L_10 = L_7;
RuntimeTypeHandle_t3027515415 L_11 = { reinterpret_cast<intptr_t> (Char_t3634460470_0_0_0_var) };
Type_t * L_12 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, L_11, /*hidden argument*/NULL);
ArrayElementTypeCheck (L_10, L_12);
(L_10)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(4), (Type_t *)L_12);
TypeU5BU5D_t3940880105* L_13 = L_10;
RuntimeTypeHandle_t3027515415 L_14 = { reinterpret_cast<intptr_t> (SByte_t1669577662_0_0_0_var) };
Type_t * L_15 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, L_14, /*hidden argument*/NULL);
ArrayElementTypeCheck (L_13, L_15);
(L_13)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(5), (Type_t *)L_15);
TypeU5BU5D_t3940880105* L_16 = L_13;
RuntimeTypeHandle_t3027515415 L_17 = { reinterpret_cast<intptr_t> (Byte_t1134296376_0_0_0_var) };
Type_t * L_18 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, L_17, /*hidden argument*/NULL);
ArrayElementTypeCheck (L_16, L_18);
(L_16)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(6), (Type_t *)L_18);
TypeU5BU5D_t3940880105* L_19 = L_16;
RuntimeTypeHandle_t3027515415 L_20 = { reinterpret_cast<intptr_t> (Int16_t2552820387_0_0_0_var) };
Type_t * L_21 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, L_20, /*hidden argument*/NULL);
ArrayElementTypeCheck (L_19, L_21);
(L_19)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(7), (Type_t *)L_21);
TypeU5BU5D_t3940880105* L_22 = L_19;
RuntimeTypeHandle_t3027515415 L_23 = { reinterpret_cast<intptr_t> (UInt16_t2177724958_0_0_0_var) };
Type_t * L_24 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, L_23, /*hidden argument*/NULL);
ArrayElementTypeCheck (L_22, L_24);
(L_22)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(8), (Type_t *)L_24);
TypeU5BU5D_t3940880105* L_25 = L_22;
RuntimeTypeHandle_t3027515415 L_26 = { reinterpret_cast<intptr_t> (Int32_t2950945753_0_0_0_var) };
Type_t * L_27 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, L_26, /*hidden argument*/NULL);
ArrayElementTypeCheck (L_25, L_27);
(L_25)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(((int32_t)9)), (Type_t *)L_27);
TypeU5BU5D_t3940880105* L_28 = L_25;
RuntimeTypeHandle_t3027515415 L_29 = { reinterpret_cast<intptr_t> (UInt32_t2560061978_0_0_0_var) };
Type_t * L_30 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, L_29, /*hidden argument*/NULL);
ArrayElementTypeCheck (L_28, L_30);
(L_28)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(((int32_t)10)), (Type_t *)L_30);
TypeU5BU5D_t3940880105* L_31 = L_28;
RuntimeTypeHandle_t3027515415 L_32 = { reinterpret_cast<intptr_t> (Int64_t3736567304_0_0_0_var) };
Type_t * L_33 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, L_32, /*hidden argument*/NULL);
ArrayElementTypeCheck (L_31, L_33);
(L_31)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(((int32_t)11)), (Type_t *)L_33);
TypeU5BU5D_t3940880105* L_34 = L_31;
RuntimeTypeHandle_t3027515415 L_35 = { reinterpret_cast<intptr_t> (UInt64_t4134040092_0_0_0_var) };
Type_t * L_36 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, L_35, /*hidden argument*/NULL);
ArrayElementTypeCheck (L_34, L_36);
(L_34)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(((int32_t)12)), (Type_t *)L_36);
TypeU5BU5D_t3940880105* L_37 = L_34;
RuntimeTypeHandle_t3027515415 L_38 = { reinterpret_cast<intptr_t> (Single_t1397266774_0_0_0_var) };
Type_t * L_39 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, L_38, /*hidden argument*/NULL);
ArrayElementTypeCheck (L_37, L_39);
(L_37)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(((int32_t)13)), (Type_t *)L_39);
TypeU5BU5D_t3940880105* L_40 = L_37;
RuntimeTypeHandle_t3027515415 L_41 = { reinterpret_cast<intptr_t> (Double_t594665363_0_0_0_var) };
Type_t * L_42 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, L_41, /*hidden argument*/NULL);
ArrayElementTypeCheck (L_40, L_42);
(L_40)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(((int32_t)14)), (Type_t *)L_42);
TypeU5BU5D_t3940880105* L_43 = L_40;
RuntimeTypeHandle_t3027515415 L_44 = { reinterpret_cast<intptr_t> (Decimal_t2948259380_0_0_0_var) };
Type_t * L_45 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, L_44, /*hidden argument*/NULL);
ArrayElementTypeCheck (L_43, L_45);
(L_43)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(((int32_t)15)), (Type_t *)L_45);
TypeU5BU5D_t3940880105* L_46 = L_43;
RuntimeTypeHandle_t3027515415 L_47 = { reinterpret_cast<intptr_t> (DateTime_t3738529785_0_0_0_var) };
Type_t * L_48 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, L_47, /*hidden argument*/NULL);
ArrayElementTypeCheck (L_46, L_48);
(L_46)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(((int32_t)16)), (Type_t *)L_48);
TypeU5BU5D_t3940880105* L_49 = L_46;
RuntimeTypeHandle_t3027515415 L_50 = { reinterpret_cast<intptr_t> (String_t_0_0_0_var) };
Type_t * L_51 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, L_50, /*hidden argument*/NULL);
ArrayElementTypeCheck (L_49, L_51);
(L_49)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(((int32_t)18)), (Type_t *)L_51);
((Convert_t2465617642_StaticFields*)il2cpp_codegen_static_fields_for(Convert_t2465617642_il2cpp_TypeInfo_var))->set_conversionTable_1(L_49);
return;
}
}
// System.Byte[] System.Convert::InternalFromBase64String(System.String,System.Boolean)
extern "C" ByteU5BU5D_t4116647657* Convert_InternalFromBase64String_m918800179 (RuntimeObject * __this /* static, unused */, String_t* ___str0, bool ___allowWhitespaceOnly1, const RuntimeMethod* method)
{
typedef ByteU5BU5D_t4116647657* (*Convert_InternalFromBase64String_m918800179_ftn) (String_t*, bool);
using namespace il2cpp::icalls;
return ((Convert_InternalFromBase64String_m918800179_ftn)mscorlib::System::Convert::InternalFromBase64String) (___str0, ___allowWhitespaceOnly1);
}
// System.Byte[] System.Convert::FromBase64String(System.String)
extern "C" ByteU5BU5D_t4116647657* Convert_FromBase64String_m3685135396 (RuntimeObject * __this /* static, unused */, String_t* ___s0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Convert_FromBase64String_m3685135396_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = ___s0;
if (L_0)
{
goto IL_0011;
}
}
{
ArgumentNullException_t1615371798 * L_1 = (ArgumentNullException_t1615371798 *)il2cpp_codegen_object_new(ArgumentNullException_t1615371798_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m1170824041(L_1, _stringLiteral3452614605, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1,Convert_FromBase64String_m3685135396_RuntimeMethod_var);
}
IL_0011:
{
String_t* L_2 = ___s0;
int32_t L_3 = String_get_Length_m3847582255(L_2, /*hidden argument*/NULL);
if (L_3)
{
goto IL_0023;
}
}
{
return ((ByteU5BU5D_t4116647657*)SZArrayNew(ByteU5BU5D_t4116647657_il2cpp_TypeInfo_var, (uint32_t)0));
}
IL_0023:
{
String_t* L_4 = ___s0;
IL2CPP_RUNTIME_CLASS_INIT(Convert_t2465617642_il2cpp_TypeInfo_var);
ByteU5BU5D_t4116647657* L_5 = Convert_InternalFromBase64String_m918800179(NULL /*static, unused*/, L_4, (bool)1, /*hidden argument*/NULL);
return L_5;
}
}
// System.String System.Convert::ToBase64String(System.Byte[])
extern "C" String_t* Convert_ToBase64String_m3839334935 (RuntimeObject * __this /* static, unused */, ByteU5BU5D_t4116647657* ___inArray0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Convert_ToBase64String_m3839334935_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
ByteU5BU5D_t4116647657* L_0 = ___inArray0;
if (L_0)
{
goto IL_0011;
}
}
{
ArgumentNullException_t1615371798 * L_1 = (ArgumentNullException_t1615371798 *)il2cpp_codegen_object_new(ArgumentNullException_t1615371798_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m1170824041(L_1, _stringLiteral3370457935, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1,Convert_ToBase64String_m3839334935_RuntimeMethod_var);
}
IL_0011:
{
ByteU5BU5D_t4116647657* L_2 = ___inArray0;
ByteU5BU5D_t4116647657* L_3 = ___inArray0;
IL2CPP_RUNTIME_CLASS_INIT(Convert_t2465617642_il2cpp_TypeInfo_var);
String_t* L_4 = Convert_ToBase64String_m1959325926(NULL /*static, unused*/, L_2, 0, (((int32_t)((int32_t)(((RuntimeArray *)L_3)->max_length)))), /*hidden argument*/NULL);
return L_4;
}
}
// System.String System.Convert::ToBase64String(System.Byte[],System.Int32,System.Int32)
extern "C" String_t* Convert_ToBase64String_m1959325926 (RuntimeObject * __this /* static, unused */, ByteU5BU5D_t4116647657* ___inArray0, int32_t ___offset1, int32_t ___length2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Convert_ToBase64String_m1959325926_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ByteU5BU5D_t4116647657* V_0 = NULL;
{
ByteU5BU5D_t4116647657* L_0 = ___inArray0;
if (L_0)
{
goto IL_0011;
}
}
{
ArgumentNullException_t1615371798 * L_1 = (ArgumentNullException_t1615371798 *)il2cpp_codegen_object_new(ArgumentNullException_t1615371798_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m1170824041(L_1, _stringLiteral3370457935, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1,Convert_ToBase64String_m1959325926_RuntimeMethod_var);
}
IL_0011:
{
int32_t L_2 = ___offset1;
if ((((int32_t)L_2) < ((int32_t)0)))
{
goto IL_001f;
}
}
{
int32_t L_3 = ___length2;
if ((((int32_t)L_3) >= ((int32_t)0)))
{
goto IL_002a;
}
}
IL_001f:
{
ArgumentOutOfRangeException_t777629997 * L_4 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_4, _stringLiteral4195418819, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_4,Convert_ToBase64String_m1959325926_RuntimeMethod_var);
}
IL_002a:
{
int32_t L_5 = ___offset1;
ByteU5BU5D_t4116647657* L_6 = ___inArray0;
int32_t L_7 = ___length2;
if ((((int32_t)L_5) <= ((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_6)->max_length)))), (int32_t)L_7)))))
{
goto IL_0040;
}
}
{
ArgumentOutOfRangeException_t777629997 * L_8 = (ArgumentOutOfRangeException_t777629997 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t777629997_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m3628145864(L_8, _stringLiteral2616087032, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_8,Convert_ToBase64String_m1959325926_RuntimeMethod_var);
}
IL_0040:
{
ByteU5BU5D_t4116647657* L_9 = ___inArray0;
int32_t L_10 = ___offset1;
int32_t L_11 = ___length2;
ByteU5BU5D_t4116647657* L_12 = ToBase64Transform_InternalTransformFinalBlock_m360524956(NULL /*static, unused*/, L_9, L_10, L_11, /*hidden argument*/NULL);
V_0 = L_12;
ASCIIEncoding_t3446586211 * L_13 = (ASCIIEncoding_t3446586211 *)il2cpp_codegen_object_new(ASCIIEncoding_t3446586211_il2cpp_TypeInfo_var);
ASCIIEncoding__ctor_m1380190655(L_13, /*hidden argument*/NULL);
ByteU5BU5D_t4116647657* L_14 = V_0;
String_t* L_15 = VirtFuncInvoker1< String_t*, ByteU5BU5D_t4116647657* >::Invoke(22 /* System.String System.Text.Encoding::GetString(System.Byte[]) */, L_13, L_14);
return L_15;
}
}
// System.Boolean System.Convert::ToBoolean(System.Byte)
extern "C" bool Convert_ToBoolean_m2984378204 (RuntimeObject * __this /* static, unused */, uint8_t ___value0, const RuntimeMethod* method)
{
{
uint8_t L_0 = ___value0;
return (bool)((((int32_t)((((int32_t)L_0) == ((int32_t)0))? 1 : 0)) == ((int32_t)0))? 1 : 0);
}
}
// System.Boolean System.Convert::ToBoolean(System.Decimal)
extern "C" bool Convert_ToBoolean_m2694598181 (RuntimeObject * __this /* static, unused */, Decimal_t2948259380 ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Convert_ToBoolean_m2694598181_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Decimal_t2948259380 L_0 = ___value0;
Decimal_t2948259380 L_1;
memset(&L_1, 0, sizeof(L_1));
Decimal__ctor_m1256289983((&L_1), 0, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Decimal_t2948259380_il2cpp_TypeInfo_var);
bool L_2 = Decimal_op_Inequality_m3543190500(NULL /*static, unused*/, L_0, L_1, /*hidden argument*/NULL);
return L_2;
}
}
// System.Boolean System.Convert::ToBoolean(System.Double)
extern "C" bool Convert_ToBoolean_m4098720762 (RuntimeObject * __this /* static, unused */, double ___value0, const RuntimeMethod* method)
{
{
double L_0 = ___value0;
return (bool)((((int32_t)((((double)L_0) == ((double)(0.0)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
}
}
// System.Boolean System.Convert::ToBoolean(System.Single)
extern "C" bool Convert_ToBoolean_m4244349331 (RuntimeObject * __this /* static, unused */, float ___value0, const RuntimeMethod* method)
{
{
float L_0 = ___value0;
return (bool)((((int32_t)((((float)L_0) == ((float)(0.0f)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
}
}
// System.Boolean System.Convert::ToBoolean(System.Int32)
extern "C" bool Convert_ToBoolean_m2833489984 (RuntimeObject * __this /* static, unused */, int32_t ___value0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___value0;
return (bool)((((int32_t)((((int32_t)L_0) == ((int32_t)0))? 1 : 0)) == ((int32_t)0))? 1 : 0);
}
}
// System.Boolean System.Convert::ToBoolean(System.Int64)
extern "C" bool Convert_ToBoolean_m2833621053 (RuntimeObject * __this /* static, unused */, int64_t ___value0, const RuntimeMethod* method)
{
{
int64_t L_0 = ___value0;
return (bool)((((int32_t)((((int64_t)L_0) == ((int64_t)(((int64_t)((int64_t)0)))))? 1 : 0)) == ((int32_t)0))? 1 : 0);
}
}
// System.Boolean System.Convert::ToBoolean(System.SByte)
extern "C" bool Convert_ToBoolean_m40300963 (RuntimeObject * __this /* static, unused */, int8_t ___value0, const RuntimeMethod* method)
{
{
int8_t L_0 = ___value0;
return (bool)((((int32_t)((((int32_t)(((int32_t)((int32_t)L_0)))) == ((int32_t)0))? 1 : 0)) == ((int32_t)0))? 1 : 0);
}
}
// System.Boolean System.Convert::ToBoolean(System.Int16)
extern "C" bool Convert_ToBoolean_m2833752130 (RuntimeObject * __this /* static, unused */, int16_t ___value0, const RuntimeMethod* method)
{
{
int16_t L_0 = ___value0;
return (bool)((((int32_t)((((int32_t)L_0) == ((int32_t)0))? 1 : 0)) == ((int32_t)0))? 1 : 0);
}
}
// System.Boolean System.Convert::ToBoolean(System.String,System.IFormatProvider)
extern "C" bool Convert_ToBoolean_m3588715767 (RuntimeObject * __this /* static, unused */, String_t* ___value0, RuntimeObject* ___provider1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Convert_ToBoolean_m3588715767_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = ___value0;
if (L_0)
{
goto IL_0008;
}
}
{
return (bool)0;
}
IL_0008:
{
String_t* L_1 = ___value0;
IL2CPP_RUNTIME_CLASS_INIT(Boolean_t97287965_il2cpp_TypeInfo_var);
bool L_2 = Boolean_Parse_m2370352694(NULL /*static, unused*/, L_1, /*hidden argument*/NULL);
return L_2;
}
}
// System.Boolean System.Convert::ToBoolean(System.UInt32)
extern "C" bool Convert_ToBoolean_m2807110707 (RuntimeObject * __this /* static, unused */, uint32_t ___value0, const RuntimeMethod* method)
{
{
uint32_t L_0 = ___value0;
return (bool)((((int32_t)((((int32_t)L_0) == ((int32_t)0))? 1 : 0)) == ((int32_t)0))? 1 : 0);
}
}
// System.Boolean System.Convert::ToBoolean(System.UInt64)
extern "C" bool Convert_ToBoolean_m3613483153 (RuntimeObject * __this /* static, unused */, uint64_t ___value0, const RuntimeMethod* method)
{
{
uint64_t L_0 = ___value0;
return (bool)((((int32_t)((((int64_t)L_0) == ((int64_t)(((int64_t)((int64_t)0)))))? 1 : 0)) == ((int32_t)0))? 1 : 0);
}
}
// System.Boolean System.Convert::ToBoolean(System.UInt16)
extern "C" bool Convert_ToBoolean_m481380807 (RuntimeObject * __this /* static, unused */, uint16_t ___value0, const RuntimeMethod* method)
{
{
uint16_t L_0 = ___value0;
return (bool)((((int32_t)((((int32_t)L_0) == ((int32_t)0))? 1 : 0)) == ((int32_t)0))? 1 : 0);
}
}
// System.Boolean System.Convert::ToBoolean(System.Object)
extern "C" bool Convert_ToBoolean_m2072772931 (RuntimeObject * __this /* static, unused */, RuntimeObject * ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Convert_ToBoolean_m2072772931_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject * L_0 = ___value0;
if (L_0)
{
goto IL_0008;
}
}
{
return (bool)0;
}
IL_0008:
{
RuntimeObject * L_1 = ___value0;
IL2CPP_RUNTIME_CLASS_INIT(Convert_t2465617642_il2cpp_TypeInfo_var);
bool L_2 = Convert_ToBoolean_m4120735400(NULL /*static, unused*/, L_1, (RuntimeObject*)NULL, /*hidden argument*/NULL);
return L_2;
}
}
// System.Boolean System.Convert::ToBoolean(System.Object,System.IFormatProvider)
extern "C" bool Convert_ToBoolean_m4120735400 (RuntimeObject * __this /* static, unused */, RuntimeObject * ___value0, RuntimeObject* ___provider1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Convert_ToBoolean_m4120735400_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject * L_0 = ___value0;
if (L_0)
{
goto IL_0008;
}
}
{
return (bool)0;
}
IL_0008:
{
RuntimeObject * L_1 = ___value0;
RuntimeObject* L_2 = ___provider1;
bool L_3 = InterfaceFuncInvoker1< bool, RuntimeObject* >::Invoke(0 /* System.Boolean System.IConvertible::ToBoolean(System.IFormatProvider) */, IConvertible_t2977365677_il2cpp_TypeInfo_var, ((RuntimeObject*)Castclass((RuntimeObject*)L_1, IConvertible_t2977365677_il2cpp_TypeInfo_var)), L_2);
return L_3;
}
}
// System.Byte System.Convert::ToByte(System.Boolean)
extern "C" uint8_t Convert_ToByte_m306367912 (RuntimeObject * __this /* static, unused */, bool ___value0, const RuntimeMethod* method)
{
int32_t G_B3_0 = 0;
{
bool L_0 = ___value0;
if (!L_0)
{
goto IL_000c;
}
}
{
G_B3_0 = 1;
goto IL_000d;
}
IL_000c:
{
G_B3_0 = 0;
}
IL_000d:
{
return (uint8_t)(((int32_t)((uint8_t)G_B3_0)));
}
}
// System.Byte System.Convert::ToByte(System.Char)
extern "C" uint8_t Convert_ToByte_m143827699 (RuntimeObject * __this /* static, unused */, Il2CppChar ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Convert_ToByte_m143827699_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Il2CppChar L_0 = ___value0;
if ((((int32_t)L_0) <= ((int32_t)((int32_t)255))))
{
goto IL_001b;
}
}
{
String_t* L_1 = Locale_GetText_m3374010885(NULL /*static, unused*/, _stringLiteral2033665859, /*hidden argument*/NULL);
OverflowException_t2020128637 * L_2 = (OverflowException_t2020128637 *)il2cpp_codegen_object_new(OverflowException_t2020128637_il2cpp_TypeInfo_var);
OverflowException__ctor_m694321376(L_2, L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2,Convert_ToByte_m143827699_RuntimeMethod_var);
}
IL_001b:
{
Il2CppChar L_3 = ___value0;
return (uint8_t)(((int32_t)((uint8_t)L_3)));
}
}
// System.Byte System.Convert::ToByte(System.Decimal)
extern "C" uint8_t Convert_ToByte_m4214436835 (RuntimeObject * __this /* static, unused */, Decimal_t2948259380 ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Convert_ToByte_m4214436835_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Decimal_t2948259380 L_0 = ___value0;
Decimal_t2948259380 L_1;
memset(&L_1, 0, sizeof(L_1));
Decimal__ctor_m1256289983((&L_1), ((int32_t)255), /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Decimal_t2948259380_il2cpp_TypeInfo_var);
bool L_2 = Decimal_op_GreaterThan_m627311519(NULL /*static, unused*/, L_0, L_1, /*hidden argument*/NULL);
if (L_2)
{
goto IL_0026;
}
}
{
Decimal_t2948259380 L_3 = ___value0;
Decimal_t2948259380 L_4;
memset(&L_4, 0, sizeof(L_4));
Decimal__ctor_m1256289983((&L_4), 0, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Decimal_t2948259380_il2cpp_TypeInfo_var);
bool L_5 = Decimal_op_LessThan_m1273833514(NULL /*static, unused*/, L_3, L_4, /*hidden argument*/NULL);
if (!L_5)
{
goto IL_0036;
}
}
IL_0026:
{
String_t* L_6 = Locale_GetText_m3374010885(NULL /*static, unused*/, _stringLiteral3787107145, /*hidden argument*/NULL);
OverflowException_t2020128637 * L_7 = (OverflowException_t2020128637 *)il2cpp_codegen_object_new(OverflowException_t2020128637_il2cpp_TypeInfo_var);
OverflowException__ctor_m694321376(L_7, L_6, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_7,Convert_ToByte_m4214436835_RuntimeMethod_var);
}
IL_0036:
{
Decimal_t2948259380 L_8 = ___value0;
Decimal_t2948259380 L_9 = Math_Round_m3018379666(NULL /*static, unused*/, L_8, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Decimal_t2948259380_il2cpp_TypeInfo_var);
uint8_t L_10 = Decimal_op_Explicit_m2848387298(NULL /*static, unused*/, L_9, /*hidden argument*/NULL);
return L_10;
}
}
// System.Byte System.Convert::ToByte(System.Double)
extern "C" uint8_t Convert_ToByte_m3824130483 (RuntimeObject * __this /* static, unused */, double ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Convert_ToByte_m3824130483_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
double L_0 = ___value0;
if ((((double)L_0) > ((double)(255.0))))
{
goto IL_001e;
}
}
{
double L_1 = ___value0;
if ((!(((double)L_1) < ((double)(0.0)))))
{
goto IL_002e;
}
}
IL_001e:
{
String_t* L_2 = Locale_GetText_m3374010885(NULL /*static, unused*/, _stringLiteral3787107145, /*hidden argument*/NULL);
OverflowException_t2020128637 * L_3 = (OverflowException_t2020128637 *)il2cpp_codegen_object_new(OverflowException_t2020128637_il2cpp_TypeInfo_var);
OverflowException__ctor_m694321376(L_3, L_2, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3,Convert_ToByte_m3824130483_RuntimeMethod_var);
}
IL_002e:
{
double L_4 = ___value0;
bool L_5 = Double_IsNaN_m649024406(NULL /*static, unused*/, L_4, /*hidden argument*/NULL);
if (L_5)
{
goto IL_0044;
}
}
{
double L_6 = ___value0;
bool L_7 = Double_IsInfinity_m820013146(NULL /*static, unused*/, L_6, /*hidden argument*/NULL);
if (!L_7)
{
goto IL_0054;
}
}
IL_0044:
{
String_t* L_8 = Locale_GetText_m3374010885(NULL /*static, unused*/, _stringLiteral1094002144, /*hidden argument*/NULL);
OverflowException_t2020128637 * L_9 = (OverflowException_t2020128637 *)il2cpp_codegen_object_new(OverflowException_t2020128637_il2cpp_TypeInfo_var);
OverflowException__ctor_m694321376(L_9, L_8, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_9,Convert_ToByte_m3824130483_RuntimeMethod_var);
}
IL_0054:
{
double L_10 = ___value0;
double L_11 = bankers_round(L_10);
return (uint8_t)(((int32_t)((uint8_t)L_11)));
}
}
// System.Byte System.Convert::ToByte(System.Single)
extern "C" uint8_t Convert_ToByte_m4146281512 (RuntimeObject * __this /* static, unused */, float ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Convert_ToByte_m4146281512_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
float L_0 = ___value0;
if ((((float)L_0) > ((float)(255.0f))))
{
goto IL_0016;
}
}
{
float L_1 = ___value0;
if ((!(((float)L_1) < ((float)(0.0f)))))
{
goto IL_0026;
}
}
IL_0016:
{
String_t* L_2 = Locale_GetText_m3374010885(NULL /*static, unused*/, _stringLiteral2278533264, /*hidden argument*/NULL);
OverflowException_t2020128637 * L_3 = (OverflowException_t2020128637 *)il2cpp_codegen_object_new(OverflowException_t2020128637_il2cpp_TypeInfo_var);
OverflowException__ctor_m694321376(L_3, L_2, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3,Convert_ToByte_m4146281512_RuntimeMethod_var);
}
IL_0026:
{
float L_4 = ___value0;
bool L_5 = Single_IsNaN_m4024467661(NULL /*static, unused*/, L_4, /*hidden argument*/NULL);
if (L_5)
{
goto IL_003c;
}
}
{
float L_6 = ___value0;
bool L_7 = Single_IsInfinity_m936314085(NULL /*static, unused*/, L_6, /*hidden argument*/NULL);
if (!L_7)
{
goto IL_004c;
}
}
IL_003c:
{
String_t* L_8 = Locale_GetText_m3374010885(NULL /*static, unused*/, _stringLiteral1871323949, /*hidden argument*/NULL);
OverflowException_t2020128637 * L_9 = (OverflowException_t2020128637 *)il2cpp_codegen_object_new(OverflowException_t2020128637_il2cpp_TypeInfo_var);
OverflowException__ctor_m694321376(L_9, L_8, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_9,Convert_ToByte_m4146281512_RuntimeMethod_var);
}
IL_004c:
{
float L_10 = ___value0;
double L_11 = bankers_round((((double)((double)L_10))));
return (uint8_t)(((int32_t)((uint8_t)L_11)));
}
}
// System.Byte System.Convert::ToByte(System.Int32)
extern "C" uint8_t Convert_ToByte_m1734770211 (RuntimeObject * __this /* static, unused */, int32_t ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Convert_ToByte_m1734770211_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = ___value0;
if ((((int32_t)L_0) > ((int32_t)((int32_t)255))))
{
goto IL_0012;
}
}
{
int32_t L_1 = ___value0;
if ((((int32_t)L_1) >= ((int32_t)0)))
{
goto IL_0022;
}
}
IL_0012:
{
String_t* L_2 = Locale_GetText_m3374010885(NULL /*static, unused*/, _stringLiteral3787107145, /*hidden argument*/NULL);
OverflowException_t2020128637 * L_3 = (OverflowException_t2020128637 *)il2cpp_codegen_object_new(OverflowException_t2020128637_il2cpp_TypeInfo_var);
OverflowException__ctor_m694321376(L_3, L_2, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3,Convert_ToByte_m1734770211_RuntimeMethod_var);
}
IL_0022:
{
int32_t L_4 = ___value0;
return (uint8_t)(((int32_t)((uint8_t)L_4)));
}
}
// System.Byte System.Convert::ToByte(System.Int64)
extern "C" uint8_t Convert_ToByte_m2122266396 (RuntimeObject * __this /* static, unused */, int64_t ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Convert_ToByte_m2122266396_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int64_t L_0 = ___value0;
if ((((int64_t)L_0) > ((int64_t)(((int64_t)((int64_t)((int32_t)255)))))))
{
goto IL_0014;
}
}
{
int64_t L_1 = ___value0;
if ((((int64_t)L_1) >= ((int64_t)(((int64_t)((int64_t)0))))))
{
goto IL_0024;
}
}
IL_0014:
{
String_t* L_2 = Locale_GetText_m3374010885(NULL /*static, unused*/, _stringLiteral3787107145, /*hidden argument*/NULL);
OverflowException_t2020128637 * L_3 = (OverflowException_t2020128637 *)il2cpp_codegen_object_new(OverflowException_t2020128637_il2cpp_TypeInfo_var);
OverflowException__ctor_m694321376(L_3, L_2, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3,Convert_ToByte_m2122266396_RuntimeMethod_var);
}
IL_0024:
{
int64_t L_4 = ___value0;
return (uint8_t)(((int32_t)((uint8_t)L_4)));
}
}
// System.Byte System.Convert::ToByte(System.SByte)
extern "C" uint8_t Convert_ToByte_m1442000130 (RuntimeObject * __this /* static, unused */, int8_t ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Convert_ToByte_m1442000130_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int8_t L_0 = ___value0;
if ((((int32_t)(((int32_t)((int32_t)L_0)))) >= ((int32_t)0)))
{
goto IL_0018;
}
}
{
String_t* L_1 = Locale_GetText_m3374010885(NULL /*static, unused*/, _stringLiteral218462200, /*hidden argument*/NULL);
OverflowException_t2020128637 * L_2 = (OverflowException_t2020128637 *)il2cpp_codegen_object_new(OverflowException_t2020128637_il2cpp_TypeInfo_var);
OverflowException__ctor_m694321376(L_2, L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2,Convert_ToByte_m1442000130_RuntimeMethod_var);
}
IL_0018:
{
int8_t L_3 = ___value0;
return (uint8_t)(((int32_t)((uint8_t)L_3)));
}
}
// System.Byte System.Convert::ToByte(System.Int16)
extern "C" uint8_t Convert_ToByte_m1336644845 (RuntimeObject * __this /* static, unused */, int16_t ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Convert_ToByte_m1336644845_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int16_t L_0 = ___value0;
if ((((int32_t)L_0) > ((int32_t)((int32_t)255))))
{
goto IL_0012;
}
}
{
int16_t L_1 = ___value0;
if ((((int32_t)L_1) >= ((int32_t)0)))
{
goto IL_0022;
}
}
IL_0012:
{
String_t* L_2 = Locale_GetText_m3374010885(NULL /*static, unused*/, _stringLiteral3787107145, /*hidden argument*/NULL);
OverflowException_t2020128637 * L_3 = (OverflowException_t2020128637 *)il2cpp_codegen_object_new(OverflowException_t2020128637_il2cpp_TypeInfo_var);
OverflowException__ctor_m694321376(L_3, L_2, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3,Convert_ToByte_m1336644845_RuntimeMethod_var);
}
IL_0022:
{
int16_t L_4 = ___value0;
return (uint8_t)(((int32_t)((uint8_t)L_4)));
}
}
// System.Byte System.Convert::ToByte(System.String)
extern "C" uint8_t Convert_ToByte_m1779682469 (RuntimeObject * __this /* static, unused */, String_t* ___value0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___value0;
if (L_0)
{
goto IL_0008;
}
}
{
return (uint8_t)0;
}
IL_0008:
{
String_t* L_1 = ___value0;
uint8_t L_2 = Byte_Parse_m678312347(NULL /*static, unused*/, L_1, /*hidden argument*/NULL);
return L_2;
}
}
// System.Byte System.Convert::ToByte(System.String,System.IFormatProvider)
extern "C" uint8_t Convert_ToByte_m3367409178 (RuntimeObject * __this /* static, unused */, String_t* ___value0, RuntimeObject* ___provider1, const RuntimeMethod* method)
{
{
String_t* L_0 = ___value0;
if (L_0)
{
goto IL_0008;
}
}
{
return (uint8_t)0;
}
IL_0008:
{
String_t* L_1 = ___value0;
RuntimeObject* L_2 = ___provider1;
uint8_t L_3 = Byte_Parse_m2607942050(NULL /*static, unused*/, L_1, L_2, /*hidden argument*/NULL);
return L_3;
}
}
// System.Byte System.Convert::ToByte(System.UInt32)
extern "C" uint8_t Convert_ToByte_m1993550870 (RuntimeObject * __this /* static, unused */, uint32_t ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Convert_ToByte_m1993550870_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
uint32_t L_0 = ___value0;
if ((!(((uint32_t)L_0) > ((uint32_t)((int32_t)255)))))
{
goto IL_001b;
}
}
{
String_t* L_1 = Locale_GetText_m3374010885(NULL /*static, unused*/, _stringLiteral2033665859, /*hidden argument*/NULL);
OverflowException_t2020128637 * L_2 = (OverflowException_t2020128637 *)il2cpp_codegen_object_new(OverflowException_t2020128637_il2cpp_TypeInfo_var);
OverflowException__ctor_m694321376(L_2, L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2,Convert_ToByte_m1993550870_RuntimeMethod_var);
}
IL_001b:
{
uint32_t L_3 = ___value0;
return (uint8_t)(((int32_t)((uint8_t)L_3)));
}
}
// System.Byte System.Convert::ToByte(System.UInt64)
extern "C" uint8_t Convert_ToByte_m3567528984 (RuntimeObject * __this /* static, unused */, uint64_t ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Convert_ToByte_m3567528984_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
uint64_t L_0 = ___value0;
if ((!(((uint64_t)L_0) > ((uint64_t)(((int64_t)((int64_t)((int32_t)255))))))))
{
goto IL_001c;
}
}
{
String_t* L_1 = Locale_GetText_m3374010885(NULL /*static, unused*/, _stringLiteral2033665859, /*hidden argument*/NULL);
OverflowException_t2020128637 * L_2 = (OverflowException_t2020128637 *)il2cpp_codegen_object_new(OverflowException_t2020128637_il2cpp_TypeInfo_var);
OverflowException__ctor_m694321376(L_2, L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2,Convert_ToByte_m3567528984_RuntimeMethod_var);
}
IL_001c:
{
uint64_t L_3 = ___value0;
return (uint8_t)(((int32_t)((uint8_t)L_3)));
}
}
// System.Byte System.Convert::ToByte(System.UInt16)
extern "C" uint8_t Convert_ToByte_m2375887898 (RuntimeObject * __this /* static, unused */, uint16_t ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Convert_ToByte_m2375887898_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
uint16_t L_0 = ___value0;
if ((((int32_t)L_0) <= ((int32_t)((int32_t)255))))
{
goto IL_001b;
}
}
{
String_t* L_1 = Locale_GetText_m3374010885(NULL /*static, unused*/, _stringLiteral2033665859, /*hidden argument*/NULL);
OverflowException_t2020128637 * L_2 = (OverflowException_t2020128637 *)il2cpp_codegen_object_new(OverflowException_t2020128637_il2cpp_TypeInfo_var);
OverflowException__ctor_m694321376(L_2, L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2,Convert_ToByte_m2375887898_RuntimeMethod_var);
}
IL_001b:
{
uint16_t L_3 = ___value0;
return (uint8_t)(((int32_t)((uint8_t)L_3)));
}
}
// System.Byte System.Convert::ToByte(System.Object,System.IFormatProvider)
extern "C" uint8_t Convert_ToByte_m3527805587 (RuntimeObject * __this /* static, unused */, RuntimeObject * ___value0, RuntimeObject* ___provider1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Convert_ToByte_m3527805587_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject * L_0 = ___value0;
if (L_0)
{
goto IL_0008;
}
}
{
return (uint8_t)0;
}
IL_0008:
{
RuntimeObject * L_1 = ___value0;
RuntimeObject* L_2 = ___provider1;
uint8_t L_3 = InterfaceFuncInvoker1< uint8_t, RuntimeObject* >::Invoke(1 /* System.Byte System.IConvertible::ToByte(System.IFormatProvider) */, IConvertible_t2977365677_il2cpp_TypeInfo_var, ((RuntimeObject*)Castclass((RuntimeObject*)L_1, IConvertible_t2977365677_il2cpp_TypeInfo_var)), L_2);
return L_3;
}
}
// System.Char System.Convert::ToChar(System.Byte)
extern "C" Il2CppChar Convert_ToChar_m2532412511 (RuntimeObject * __this /* static, unused */, uint8_t ___value0, const RuntimeMethod* method)
{
{
uint8_t L_0 = ___value0;
return (((int32_t)((uint16_t)L_0)));
}
}
// System.Char System.Convert::ToChar(System.Int32)
extern "C" Il2CppChar Convert_ToChar_m4189066566 (RuntimeObject * __this /* static, unused */, int32_t ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Convert_ToChar_m4189066566_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = ___value0;
if ((((int32_t)L_0) > ((int32_t)((int32_t)65535))))
{
goto IL_0012;
}
}
{
int32_t L_1 = ___value0;
if ((((int32_t)L_1) >= ((int32_t)0)))
{
goto IL_0022;
}
}
IL_0012:
{
String_t* L_2 = Locale_GetText_m3374010885(NULL /*static, unused*/, _stringLiteral3573694151, /*hidden argument*/NULL);
OverflowException_t2020128637 * L_3 = (OverflowException_t2020128637 *)il2cpp_codegen_object_new(OverflowException_t2020128637_il2cpp_TypeInfo_var);
OverflowException__ctor_m694321376(L_3, L_2, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3,Convert_ToChar_m4189066566_RuntimeMethod_var);
}
IL_0022:
{
int32_t L_4 = ___value0;
return (((int32_t)((uint16_t)L_4)));
}
}
// System.Char System.Convert::ToChar(System.Int64)
extern "C" Il2CppChar Convert_ToChar_m4210014069 (RuntimeObject * __this /* static, unused */, int64_t ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Convert_ToChar_m4210014069_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int64_t L_0 = ___value0;
if ((((int64_t)L_0) > ((int64_t)(((int64_t)((int64_t)((int32_t)65535)))))))
{
goto IL_0014;
}
}
{
int64_t L_1 = ___value0;
if ((((int64_t)L_1) >= ((int64_t)(((int64_t)((int64_t)0))))))
{
goto IL_0024;
}
}
IL_0014:
{
String_t* L_2 = Locale_GetText_m3374010885(NULL /*static, unused*/, _stringLiteral3573694151, /*hidden argument*/NULL);
OverflowException_t2020128637 * L_3 = (OverflowException_t2020128637 *)il2cpp_codegen_object_new(OverflowException_t2020128637_il2cpp_TypeInfo_var);
OverflowException__ctor_m694321376(L_3, L_2, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3,Convert_ToChar_m4210014069_RuntimeMethod_var);
}
IL_0024:
{
int64_t L_4 = ___value0;
return (((int32_t)((uint16_t)L_4)));
}
}
// System.Char System.Convert::ToChar(System.Single)
extern "C" Il2CppChar Convert_ToChar_m2522572389 (RuntimeObject * __this /* static, unused */, float ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Convert_ToChar_m2522572389_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
InvalidCastException_t3927145244 * L_0 = (InvalidCastException_t3927145244 *)il2cpp_codegen_object_new(InvalidCastException_t3927145244_il2cpp_TypeInfo_var);
InvalidCastException__ctor_m318645277(L_0, _stringLiteral3362215234, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0,Convert_ToChar_m2522572389_RuntimeMethod_var);
}
}
// System.Char System.Convert::ToChar(System.SByte)
extern "C" Il2CppChar Convert_ToChar_m3776556379 (RuntimeObject * __this /* static, unused */, int8_t ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Convert_ToChar_m3776556379_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int8_t L_0 = ___value0;
if ((((int32_t)(((int32_t)((int32_t)L_0)))) >= ((int32_t)0)))
{
goto IL_0018;
}
}
{
String_t* L_1 = Locale_GetText_m3374010885(NULL /*static, unused*/, _stringLiteral1852120378, /*hidden argument*/NULL);
OverflowException_t2020128637 * L_2 = (OverflowException_t2020128637 *)il2cpp_codegen_object_new(OverflowException_t2020128637_il2cpp_TypeInfo_var);
OverflowException__ctor_m694321376(L_2, L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2,Convert_ToChar_m3776556379_RuntimeMethod_var);
}
IL_0018:
{
int8_t L_3 = ___value0;
return (((int32_t)((uint16_t)L_3)));
}
}
// System.Char System.Convert::ToChar(System.Int16)
extern "C" Il2CppChar Convert_ToChar_m2261593104 (RuntimeObject * __this /* static, unused */, int16_t ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Convert_ToChar_m2261593104_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int16_t L_0 = ___value0;
if ((((int32_t)L_0) >= ((int32_t)0)))
{
goto IL_0017;
}
}
{
String_t* L_1 = Locale_GetText_m3374010885(NULL /*static, unused*/, _stringLiteral1852120378, /*hidden argument*/NULL);
OverflowException_t2020128637 * L_2 = (OverflowException_t2020128637 *)il2cpp_codegen_object_new(OverflowException_t2020128637_il2cpp_TypeInfo_var);
OverflowException__ctor_m694321376(L_2, L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2,Convert_ToChar_m2261593104_RuntimeMethod_var);
}
IL_0017:
{
int16_t L_3 = ___value0;
return (((int32_t)((uint16_t)L_3)));
}
}
// System.Char System.Convert::ToChar(System.String,System.IFormatProvider)
extern "C" Il2CppChar Convert_ToChar_m1442101407 (RuntimeObject * __this /* static, unused */, String_t* ___value0, RuntimeObject* ___provider1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Convert_ToChar_m1442101407_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = ___value0;
IL2CPP_RUNTIME_CLASS_INIT(Char_t3634460470_il2cpp_TypeInfo_var);
Il2CppChar L_1 = Char_Parse_m82218915(NULL /*static, unused*/, L_0, /*hidden argument*/NULL);
return L_1;
}
}
// System.Char System.Convert::ToChar(System.UInt32)
extern "C" Il2CppChar Convert_ToChar_m2796006345 (RuntimeObject * __this /* static, unused */, uint32_t ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Convert_ToChar_m2796006345_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
uint32_t L_0 = ___value0;
if ((!(((uint32_t)L_0) > ((uint32_t)((int32_t)65535)))))
{
goto IL_001b;
}
}
{
String_t* L_1 = Locale_GetText_m3374010885(NULL /*static, unused*/, _stringLiteral3036456040, /*hidden argument*/NULL);
OverflowException_t2020128637 * L_2 = (OverflowException_t2020128637 *)il2cpp_codegen_object_new(OverflowException_t2020128637_il2cpp_TypeInfo_var);
OverflowException__ctor_m694321376(L_2, L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2,Convert_ToChar_m2796006345_RuntimeMethod_var);
}
IL_001b:
{
uint32_t L_3 = ___value0;
return (((int32_t)((uint16_t)L_3)));
}
}
// System.Char System.Convert::ToChar(System.UInt64)
extern "C" Il2CppChar Convert_ToChar_m1604365259 (RuntimeObject * __this /* static, unused */, uint64_t ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Convert_ToChar_m1604365259_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
uint64_t L_0 = ___value0;
if ((!(((uint64_t)L_0) > ((uint64_t)(((int64_t)((int64_t)((int32_t)65535))))))))
{
goto IL_001c;
}
}
{
String_t* L_1 = Locale_GetText_m3374010885(NULL /*static, unused*/, _stringLiteral3036456040, /*hidden argument*/NULL);
OverflowException_t2020128637 * L_2 = (OverflowException_t2020128637 *)il2cpp_codegen_object_new(OverflowException_t2020128637_il2cpp_TypeInfo_var);
OverflowException__ctor_m694321376(L_2, L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2,Convert_ToChar_m1604365259_RuntimeMethod_var);
}
IL_001c:
{
uint64_t L_3 = ___value0;
return (((int32_t)((uint16_t)L_3)));
}
}
// System.Char System.Convert::ToChar(System.UInt16)
extern "C" Il2CppChar Convert_ToChar_m3178343373 (RuntimeObject * __this /* static, unused */, uint16_t ___value0, const RuntimeMethod* method)
{
{
uint16_t L_0 = ___value0;
return L_0;
}
}
// System.Char System.Convert::ToChar(System.Object,System.IFormatProvider)
extern "C" Il2CppChar Convert_ToChar_m3757390865 (RuntimeObject * __this /* static, unused */, RuntimeObject * ___value0, RuntimeObject* ___provider1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Convert_ToChar_m3757390865_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject * L_0 = ___value0;
if (L_0)
{
goto IL_0008;
}
}
{
return 0;
}
IL_0008:
{
RuntimeObject * L_1 = ___value0;
RuntimeObject* L_2 = ___provider1;
Il2CppChar L_3 = InterfaceFuncInvoker1< Il2CppChar, RuntimeObject* >::Invoke(2 /* System.Char System.IConvertible::ToChar(System.IFormatProvider) */, IConvertible_t2977365677_il2cpp_TypeInfo_var, ((RuntimeObject*)Castclass((RuntimeObject*)L_1, IConvertible_t2977365677_il2cpp_TypeInfo_var)), L_2);
return L_3;
}
}
// System.DateTime System.Convert::ToDateTime(System.String,System.IFormatProvider)
extern "C" DateTime_t3738529785 Convert_ToDateTime_m3802186295 (RuntimeObject * __this /* static, unused */, String_t* ___value0, RuntimeObject* ___provider1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Convert_ToDateTime_m3802186295_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = ___value0;
if (L_0)
{
goto IL_000c;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(DateTime_t3738529785_il2cpp_TypeInfo_var);
DateTime_t3738529785 L_1 = ((DateTime_t3738529785_StaticFields*)il2cpp_codegen_static_fields_for(DateTime_t3738529785_il2cpp_TypeInfo_var))->get_MinValue_3();
return L_1;
}
IL_000c:
{
String_t* L_2 = ___value0;
RuntimeObject* L_3 = ___provider1;
IL2CPP_RUNTIME_CLASS_INIT(DateTime_t3738529785_il2cpp_TypeInfo_var);
DateTime_t3738529785 L_4 = DateTime_Parse_m3729096069(NULL /*static, unused*/, L_2, L_3, /*hidden argument*/NULL);
return L_4;
}
}
// System.DateTime System.Convert::ToDateTime(System.Int16)
extern "C" DateTime_t3738529785 Convert_ToDateTime_m626620011 (RuntimeObject * __this /* static, unused */, int16_t ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Convert_ToDateTime_m626620011_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
InvalidCastException_t3927145244 * L_0 = (InvalidCastException_t3927145244 *)il2cpp_codegen_object_new(InvalidCastException_t3927145244_il2cpp_TypeInfo_var);
InvalidCastException__ctor_m318645277(L_0, _stringLiteral3362215234, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0,Convert_ToDateTime_m626620011_RuntimeMethod_var);
}
}
// System.DateTime System.Convert::ToDateTime(System.Int32)
extern "C" DateTime_t3738529785 Convert_ToDateTime_m228494645 (RuntimeObject * __this /* static, unused */, int32_t ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Convert_ToDateTime_m228494645_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
InvalidCastException_t3927145244 * L_0 = (InvalidCastException_t3927145244 *)il2cpp_codegen_object_new(InvalidCastException_t3927145244_il2cpp_TypeInfo_var);
InvalidCastException__ctor_m318645277(L_0, _stringLiteral3362215234, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0,Convert_ToDateTime_m228494645_RuntimeMethod_var);
}
}
// System.DateTime System.Convert::ToDateTime(System.Int64)
extern "C" DateTime_t3738529785 Convert_ToDateTime_m2616935982 (RuntimeObject * __this /* static, unused */, int64_t ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Convert_ToDateTime_m2616935982_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
InvalidCastException_t3927145244 * L_0 = (InvalidCastException_t3927145244 *)il2cpp_codegen_object_new(InvalidCastException_t3927145244_il2cpp_TypeInfo_var);
InvalidCastException__ctor_m318645277(L_0, _stringLiteral3362215234, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0,Convert_ToDateTime_m2616935982_RuntimeMethod_var);
}
}
// System.DateTime System.Convert::ToDateTime(System.Single)
extern "C" DateTime_t3738529785 Convert_ToDateTime_m1800003024 (RuntimeObject * __this /* static, unused */, float ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Convert_ToDateTime_m1800003024_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
InvalidCastException_t3927145244 * L_0 = (InvalidCastException_t3927145244 *)il2cpp_codegen_object_new(InvalidCastException_t3927145244_il2cpp_TypeInfo_var);
InvalidCastException__ctor_m318645277(L_0, _stringLiteral3362215234, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0,Convert_ToDateTime_m1800003024_RuntimeMethod_var);
}
}
// System.DateTime System.Convert::ToDateTime(System.Object,System.IFormatProvider)
extern "C" DateTime_t3738529785 Convert_ToDateTime_m1567637286 (RuntimeObject * __this /* static, unused */, RuntimeObject * ___value0, RuntimeObject* ___provider1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Convert_ToDateTime_m1567637286_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject * L_0 = ___value0;
if (L_0)
{
goto IL_000c;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(DateTime_t3738529785_il2cpp_TypeInfo_var);
DateTime_t3738529785 L_1 = ((DateTime_t3738529785_StaticFields*)il2cpp_codegen_static_fields_for(DateTime_t3738529785_il2cpp_TypeInfo_var))->get_MinValue_3();
return L_1;
}
IL_000c:
{
RuntimeObject * L_2 = ___value0;
RuntimeObject* L_3 = ___provider1;
DateTime_t3738529785 L_4 = InterfaceFuncInvoker1< DateTime_t3738529785 , RuntimeObject* >::Invoke(3 /* System.DateTime System.IConvertible::ToDateTime(System.IFormatProvider) */, IConvertible_t2977365677_il2cpp_TypeInfo_var, ((RuntimeObject*)Castclass((RuntimeObject*)L_2, IConvertible_t2977365677_il2cpp_TypeInfo_var)), L_3);
return L_4;
}
}
// System.DateTime System.Convert::ToDateTime(System.SByte)
extern "C" DateTime_t3738529785 Convert_ToDateTime_m296553984 (RuntimeObject * __this /* static, unused */, int8_t ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Convert_ToDateTime_m296553984_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
InvalidCastException_t3927145244 * L_0 = (InvalidCastException_t3927145244 *)il2cpp_codegen_object_new(InvalidCastException_t3927145244_il2cpp_TypeInfo_var);
InvalidCastException__ctor_m318645277(L_0, _stringLiteral3362215234, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0,Convert_ToDateTime_m296553984_RuntimeMethod_var);
}
}
// System.DateTime System.Convert::ToDateTime(System.UInt16)
extern "C" DateTime_t3738529785 Convert_ToDateTime_m649137482 (RuntimeObject * __this /* static, unused */, uint16_t ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Convert_ToDateTime_m649137482_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
InvalidCastException_t3927145244 * L_0 = (InvalidCastException_t3927145244 *)il2cpp_codegen_object_new(InvalidCastException_t3927145244_il2cpp_TypeInfo_var);
InvalidCastException__ctor_m318645277(L_0, _stringLiteral3362215234, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0,Convert_ToDateTime_m649137482_RuntimeMethod_var);
}
}
// System.DateTime System.Convert::ToDateTime(System.UInt32)
extern "C" DateTime_t3738529785 Convert_ToDateTime_m1031474510 (RuntimeObject * __this /* static, unused */, uint32_t ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Convert_ToDateTime_m1031474510_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
InvalidCastException_t3927145244 * L_0 = (InvalidCastException_t3927145244 *)il2cpp_codegen_object_new(InvalidCastException_t3927145244_il2cpp_TypeInfo_var);
InvalidCastException__ctor_m318645277(L_0, _stringLiteral3362215234, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0,Convert_ToDateTime_m1031474510_RuntimeMethod_var);
}
}
// System.DateTime System.Convert::ToDateTime(System.UInt64)
extern "C" DateTime_t3738529785 Convert_ToDateTime_m3752463692 (RuntimeObject * __this /* static, unused */, uint64_t ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Convert_ToDateTime_m3752463692_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
InvalidCastException_t3927145244 * L_0 = (InvalidCastException_t3927145244 *)il2cpp_codegen_object_new(InvalidCastException_t3927145244_il2cpp_TypeInfo_var);
InvalidCastException__ctor_m318645277(L_0, _stringLiteral3362215234, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0,Convert_ToDateTime_m3752463692_RuntimeMethod_var);
}
}
// System.Decimal System.Convert::ToDecimal(System.Boolean)
extern "C" Decimal_t2948259380 Convert_ToDecimal_m2233265097 (RuntimeObject * __this /* static, unused */, bool ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Convert_ToDecimal_m2233265097_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t G_B3_0 = 0;
{
bool L_0 = ___value0;
if (!L_0)
{
goto IL_000c;
}
}
{
G_B3_0 = 1;
goto IL_000d;
}
IL_000c:
{
G_B3_0 = 0;
}
IL_000d:
{
IL2CPP_RUNTIME_CLASS_INIT(Decimal_t2948259380_il2cpp_TypeInfo_var);
Decimal_t2948259380 L_1 = Decimal_op_Implicit_m1328901562(NULL /*static, unused*/, G_B3_0, /*hidden argument*/NULL);
return L_1;
}
}
// System.Decimal System.Convert::ToDecimal(System.Byte)
extern "C" Decimal_t2948259380 Convert_ToDecimal_m3209124080 (RuntimeObject * __this /* static, unused */, uint8_t ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Convert_ToDecimal_m3209124080_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
uint8_t L_0 = ___value0;
IL2CPP_RUNTIME_CLASS_INIT(Decimal_t2948259380_il2cpp_TypeInfo_var);
Decimal_t2948259380 L_1 = Decimal_op_Implicit_m29414198(NULL /*static, unused*/, L_0, /*hidden argument*/NULL);
return L_1;
}
}
// System.Decimal System.Convert::ToDecimal(System.Decimal)
extern "C" Decimal_t2948259380 Convert_ToDecimal_m1783778724 (RuntimeObject * __this /* static, unused */, Decimal_t2948259380 ___value0, const RuntimeMethod* method)
{
{
Decimal_t2948259380 L_0 = ___value0;
return L_0;
}
}
// System.Decimal System.Convert::ToDecimal(System.Double)
extern "C" Decimal_t2948259380 Convert_ToDecimal_m841368097 (RuntimeObject * __this /* static, unused */, double ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Convert_ToDecimal_m841368097_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
double L_0 = ___value0;
IL2CPP_RUNTIME_CLASS_INIT(Decimal_t2948259380_il2cpp_TypeInfo_var);
Decimal_t2948259380 L_1 = Decimal_op_Explicit_m2433293820(NULL /*static, unused*/, L_0, /*hidden argument*/NULL);
return L_1;
}
}
// System.Decimal System.Convert::ToDecimal(System.Single)
extern "C" Decimal_t2948259380 Convert_ToDecimal_m3508035522 (RuntimeObject * __this /* static, unused */, float ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Convert_ToDecimal_m3508035522_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
float L_0 = ___value0;
IL2CPP_RUNTIME_CLASS_INIT(Decimal_t2948259380_il2cpp_TypeInfo_var);
Decimal_t2948259380 L_1 = Decimal_op_Explicit_m2070069477(NULL /*static, unused*/, L_0, /*hidden argument*/NULL);
return L_1;
}
}
// System.Decimal System.Convert::ToDecimal(System.Int32)
extern "C" Decimal_t2948259380 Convert_ToDecimal_m1284148187 (RuntimeObject * __this /* static, unused */, int32_t ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Convert_ToDecimal_m1284148187_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = ___value0;
IL2CPP_RUNTIME_CLASS_INIT(Decimal_t2948259380_il2cpp_TypeInfo_var);
Decimal_t2948259380 L_1 = Decimal_op_Implicit_m1328901562(NULL /*static, unused*/, L_0, /*hidden argument*/NULL);
return L_1;
}
}
// System.Decimal System.Convert::ToDecimal(System.Int64)
extern "C" Decimal_t2948259380 Convert_ToDecimal_m1284279264 (RuntimeObject * __this /* static, unused */, int64_t ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Convert_ToDecimal_m1284279264_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int64_t L_0 = ___value0;
IL2CPP_RUNTIME_CLASS_INIT(Decimal_t2948259380_il2cpp_TypeInfo_var);
Decimal_t2948259380 L_1 = Decimal_op_Implicit_m1349849065(NULL /*static, unused*/, L_0, /*hidden argument*/NULL);
return L_1;
}
}
// System.Decimal System.Convert::ToDecimal(System.SByte)
extern "C" Decimal_t2948259380 Convert_ToDecimal_m996138310 (RuntimeObject * __this /* static, unused */, int8_t ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Convert_ToDecimal_m996138310_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int8_t L_0 = ___value0;
IL2CPP_RUNTIME_CLASS_INIT(Decimal_t2948259380_il2cpp_TypeInfo_var);
Decimal_t2948259380 L_1 = Decimal_op_Implicit_m1920400487(NULL /*static, unused*/, L_0, /*hidden argument*/NULL);
return L_1;
}
}
// System.Decimal System.Convert::ToDecimal(System.Int16)
extern "C" Decimal_t2948259380 Convert_ToDecimal_m1284410333 (RuntimeObject * __this /* static, unused */, int16_t ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Convert_ToDecimal_m1284410333_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int16_t L_0 = ___value0;
IL2CPP_RUNTIME_CLASS_INIT(Decimal_t2948259380_il2cpp_TypeInfo_var);
Decimal_t2948259380 L_1 = Decimal_op_Implicit_m3696395396(NULL /*static, unused*/, L_0, /*hidden argument*/NULL);
return L_1;
}
}
// System.Decimal System.Convert::ToDecimal(System.String,System.IFormatProvider)
extern "C" Decimal_t2948259380 Convert_ToDecimal_m1233667008 (RuntimeObject * __this /* static, unused */, String_t* ___value0, RuntimeObject* ___provider1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Convert_ToDecimal_m1233667008_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = ___value0;
if (L_0)
{
goto IL_000d;
}
}
{
Decimal_t2948259380 L_1;
memset(&L_1, 0, sizeof(L_1));
Decimal__ctor_m1256289983((&L_1), 0, /*hidden argument*/NULL);
return L_1;
}
IL_000d:
{
String_t* L_2 = ___value0;
RuntimeObject* L_3 = ___provider1;
IL2CPP_RUNTIME_CLASS_INIT(Decimal_t2948259380_il2cpp_TypeInfo_var);
Decimal_t2948259380 L_4 = Decimal_Parse_m4154418249(NULL /*static, unused*/, L_2, L_3, /*hidden argument*/NULL);
return L_4;
}
}
// System.Decimal System.Convert::ToDecimal(System.UInt32)
extern "C" Decimal_t2948259380 Convert_ToDecimal_m889385228 (RuntimeObject * __this /* static, unused */, uint32_t ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Convert_ToDecimal_m889385228_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
uint32_t L_0 = ___value0;
IL2CPP_RUNTIME_CLASS_INIT(Decimal_t2948259380_il2cpp_TypeInfo_var);
Decimal_t2948259380 L_1 = Decimal_op_Implicit_m3873897383(NULL /*static, unused*/, L_0, /*hidden argument*/NULL);
return L_1;
}
}
// System.Decimal System.Convert::ToDecimal(System.UInt64)
extern "C" Decimal_t2948259380 Convert_ToDecimal_m1695757674 (RuntimeObject * __this /* static, unused */, uint64_t ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Convert_ToDecimal_m1695757674_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
uint64_t L_0 = ___value0;
IL2CPP_RUNTIME_CLASS_INIT(Decimal_t2948259380_il2cpp_TypeInfo_var);
Decimal_t2948259380 L_1 = Decimal_op_Implicit_m2299919277(NULL /*static, unused*/, L_0, /*hidden argument*/NULL);
return L_1;
}
}
// System.Decimal System.Convert::ToDecimal(System.UInt16)
extern "C" Decimal_t2948259380 Convert_ToDecimal_m2858622624 (RuntimeObject * __this /* static, unused */, uint16_t ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Convert_ToDecimal_m2858622624_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
uint16_t L_0 = ___value0;
IL2CPP_RUNTIME_CLASS_INIT(Decimal_t2948259380_il2cpp_TypeInfo_var);
Decimal_t2948259380 L_1 = Decimal_op_Implicit_m4256234411(NULL /*static, unused*/, L_0, /*hidden argument*/NULL);
return L_1;
}
}
// System.Decimal System.Convert::ToDecimal(System.Object,System.IFormatProvider)
extern "C" Decimal_t2948259380 Convert_ToDecimal_m3815908452 (RuntimeObject * __this /* static, unused */, RuntimeObject * ___value0, RuntimeObject* ___provider1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Convert_ToDecimal_m3815908452_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject * L_0 = ___value0;
if (L_0)
{
goto IL_000d;
}
}
{
Decimal_t2948259380 L_1;
memset(&L_1, 0, sizeof(L_1));
Decimal__ctor_m1256289983((&L_1), 0, /*hidden argument*/NULL);
return L_1;
}
IL_000d:
{
RuntimeObject * L_2 = ___value0;
RuntimeObject* L_3 = ___provider1;
Decimal_t2948259380 L_4 = InterfaceFuncInvoker1< Decimal_t2948259380 , RuntimeObject* >::Invoke(4 /* System.Decimal System.IConvertible::ToDecimal(System.IFormatProvider) */, IConvertible_t2977365677_il2cpp_TypeInfo_var, ((RuntimeObject*)Castclass((RuntimeObject*)L_2, IConvertible_t2977365677_il2cpp_TypeInfo_var)), L_3);
return L_4;
}
}
// System.Double System.Convert::ToDouble(System.Boolean)
extern "C" double Convert_ToDouble_m954895424 (RuntimeObject * __this /* static, unused */, bool ___value0, const RuntimeMethod* method)
{
int32_t G_B3_0 = 0;
{
bool L_0 = ___value0;
if (!L_0)
{
goto IL_000c;
}
}
{
G_B3_0 = 1;
goto IL_000d;
}
IL_000c:
{
G_B3_0 = 0;
}
IL_000d:
{
return (((double)((double)G_B3_0)));
}
}
// System.Double System.Convert::ToDouble(System.Byte)
extern "C" double Convert_ToDouble_m3124823876 (RuntimeObject * __this /* static, unused */, uint8_t ___value0, const RuntimeMethod* method)
{
{
uint8_t L_0 = ___value0;
return (((double)((double)L_0)));
}
}
// System.Double System.Convert::ToDouble(System.Decimal)
extern "C" double Convert_ToDouble_m1177445661 (RuntimeObject * __this /* static, unused */, Decimal_t2948259380 ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Convert_ToDouble_m1177445661_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Decimal_t2948259380 L_0 = ___value0;
IL2CPP_RUNTIME_CLASS_INIT(Decimal_t2948259380_il2cpp_TypeInfo_var);
double L_1 = Decimal_op_Explicit_m2816896069(NULL /*static, unused*/, L_0, /*hidden argument*/NULL);
return L_1;
}
}
// System.Double System.Convert::ToDouble(System.Double)
extern "C" double Convert_ToDouble_m278900635 (RuntimeObject * __this /* static, unused */, double ___value0, const RuntimeMethod* method)
{
{
double L_0 = ___value0;
return L_0;
}
}
// System.Double System.Convert::ToDouble(System.Single)
extern "C" double Convert_ToDouble_m217737046 (RuntimeObject * __this /* static, unused */, float ___value0, const RuntimeMethod* method)
{
{
float L_0 = ___value0;
return (((double)((double)L_0)));
}
}
// System.Double System.Convert::ToDouble(System.Int32)
extern "C" double Convert_ToDouble_m2924063577 (RuntimeObject * __this /* static, unused */, int32_t ___value0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___value0;
return (((double)((double)L_0)));
}
}
// System.Double System.Convert::ToDouble(System.Int64)
extern "C" double Convert_ToDouble_m2180337032 (RuntimeObject * __this /* static, unused */, int64_t ___value0, const RuntimeMethod* method)
{
{
int64_t L_0 = ___value0;
return (((double)((double)L_0)));
}
}
// System.Double System.Convert::ToDouble(System.SByte)
extern "C" double Convert_ToDouble_m2949593046 (RuntimeObject * __this /* static, unused */, int8_t ___value0, const RuntimeMethod* method)
{
{
int8_t L_0 = ___value0;
return (((double)((double)L_0)));
}
}
// System.Double System.Convert::ToDouble(System.Int16)
extern "C" double Convert_ToDouble_m996590115 (RuntimeObject * __this /* static, unused */, int16_t ___value0, const RuntimeMethod* method)
{
{
int16_t L_0 = ___value0;
return (((double)((double)L_0)));
}
}
// System.Double System.Convert::ToDouble(System.String,System.IFormatProvider)
extern "C" double Convert_ToDouble_m2291761709 (RuntimeObject * __this /* static, unused */, String_t* ___value0, RuntimeObject* ___provider1, const RuntimeMethod* method)
{
{
String_t* L_0 = ___value0;
if (L_0)
{
goto IL_0010;
}
}
{
return (0.0);
}
IL_0010:
{
String_t* L_1 = ___value0;
RuntimeObject* L_2 = ___provider1;
double L_3 = Double_Parse_m3456374109(NULL /*static, unused*/, L_1, L_2, /*hidden argument*/NULL);
return L_3;
}
}
// System.Double System.Convert::ToDouble(System.UInt32)
extern "C" double Convert_ToDouble_m2222536920 (RuntimeObject * __this /* static, unused */, uint32_t ___value0, const RuntimeMethod* method)
{
{
uint32_t L_0 = ___value0;
return (((double)((double)(((double)((uint32_t)L_0))))));
}
}
// System.Double System.Convert::ToDouble(System.UInt64)
extern "C" double Convert_ToDouble_m1030895834 (RuntimeObject * __this /* static, unused */, uint64_t ___value0, const RuntimeMethod* method)
{
{
uint64_t L_0 = ___value0;
return (((double)((double)(((double)((uint64_t)L_0))))));
}
}
// System.Double System.Convert::ToDouble(System.UInt16)
extern "C" double Convert_ToDouble_m1840199900 (RuntimeObject * __this /* static, unused */, uint16_t ___value0, const RuntimeMethod* method)
{
{
uint16_t L_0 = ___value0;
return (((double)((double)L_0)));
}
}
// System.Double System.Convert::ToDouble(System.Object,System.IFormatProvider)
extern "C" double Convert_ToDouble_m4017511472 (RuntimeObject * __this /* static, unused */, RuntimeObject * ___value0, RuntimeObject* ___provider1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Convert_ToDouble_m4017511472_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject * L_0 = ___value0;
if (L_0)
{
goto IL_0010;
}
}
{
return (0.0);
}
IL_0010:
{
RuntimeObject * L_1 = ___value0;
RuntimeObject* L_2 = ___provider1;
double L_3 = InterfaceFuncInvoker1< double, RuntimeObject* >::Invoke(5 /* System.Double System.IConvertible::ToDouble(System.IFormatProvider) */, IConvertible_t2977365677_il2cpp_TypeInfo_var, ((RuntimeObject*)Castclass((RuntimeObject*)L_1, IConvertible_t2977365677_il2cpp_TypeInfo_var)), L_2);
return L_3;
}
}
// System.Int16 System.Convert::ToInt16(System.Boolean)
extern "C" int16_t Convert_ToInt16_m3324557887 (RuntimeObject * __this /* static, unused */, bool ___value0, const RuntimeMethod* method)
{
int32_t G_B3_0 = 0;
{
bool L_0 = ___value0;
if (!L_0)
{
goto IL_000c;
}
}
{
G_B3_0 = 1;
goto IL_000d;
}
IL_000c:
{
G_B3_0 = 0;
}
IL_000d:
{
return (((int16_t)((int16_t)G_B3_0)));
}
}
// System.Int16 System.Convert::ToInt16(System.Byte)
extern "C" int16_t Convert_ToInt16_m701474428 (RuntimeObject * __this /* static, unused */, uint8_t ___value0, const RuntimeMethod* method)
{
{
uint8_t L_0 = ___value0;
return L_0;
}
}
// System.Int16 System.Convert::ToInt16(System.Char)
extern "C" int16_t Convert_ToInt16_m3018161032 (RuntimeObject * __this /* static, unused */, Il2CppChar ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Convert_ToInt16_m3018161032_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Il2CppChar L_0 = ___value0;
if ((((int32_t)L_0) <= ((int32_t)((int32_t)32767))))
{
goto IL_001b;
}
}
{
String_t* L_1 = Locale_GetText_m3374010885(NULL /*static, unused*/, _stringLiteral2917292804, /*hidden argument*/NULL);
OverflowException_t2020128637 * L_2 = (OverflowException_t2020128637 *)il2cpp_codegen_object_new(OverflowException_t2020128637_il2cpp_TypeInfo_var);
OverflowException__ctor_m694321376(L_2, L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2,Convert_ToInt16_m3018161032_RuntimeMethod_var);
}
IL_001b:
{
Il2CppChar L_3 = ___value0;
return (((int16_t)((int16_t)L_3)));
}
}
// System.Int16 System.Convert::ToInt16(System.Decimal)
extern "C" int16_t Convert_ToInt16_m2763665794 (RuntimeObject * __this /* static, unused */, Decimal_t2948259380 ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Convert_ToInt16_m2763665794_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Decimal_t2948259380 L_0 = ___value0;
Decimal_t2948259380 L_1;
memset(&L_1, 0, sizeof(L_1));
Decimal__ctor_m1256289983((&L_1), ((int32_t)32767), /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Decimal_t2948259380_il2cpp_TypeInfo_var);
bool L_2 = Decimal_op_GreaterThan_m627311519(NULL /*static, unused*/, L_0, L_1, /*hidden argument*/NULL);
if (L_2)
{
goto IL_002a;
}
}
{
Decimal_t2948259380 L_3 = ___value0;
Decimal_t2948259380 L_4;
memset(&L_4, 0, sizeof(L_4));
Decimal__ctor_m1256289983((&L_4), ((int32_t)-32768), /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Decimal_t2948259380_il2cpp_TypeInfo_var);
bool L_5 = Decimal_op_LessThan_m1273833514(NULL /*static, unused*/, L_3, L_4, /*hidden argument*/NULL);
if (!L_5)
{
goto IL_003a;
}
}
IL_002a:
{
String_t* L_6 = Locale_GetText_m3374010885(NULL /*static, unused*/, _stringLiteral3531382908, /*hidden argument*/NULL);
OverflowException_t2020128637 * L_7 = (OverflowException_t2020128637 *)il2cpp_codegen_object_new(OverflowException_t2020128637_il2cpp_TypeInfo_var);
OverflowException__ctor_m694321376(L_7, L_6, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_7,Convert_ToInt16_m2763665794_RuntimeMethod_var);
}
IL_003a:
{
Decimal_t2948259380 L_8 = ___value0;
Decimal_t2948259380 L_9 = Math_Round_m3018379666(NULL /*static, unused*/, L_8, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Decimal_t2948259380_il2cpp_TypeInfo_var);
int16_t L_10 = Decimal_op_Explicit_m4231101593(NULL /*static, unused*/, L_9, /*hidden argument*/NULL);
return L_10;
}
}
// System.Int16 System.Convert::ToInt16(System.Double)
extern "C" int16_t Convert_ToInt16_m2780199356 (RuntimeObject * __this /* static, unused */, double ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Convert_ToInt16_m2780199356_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
double L_0 = ___value0;
if ((((double)L_0) > ((double)(32767.0))))
{
goto IL_001e;
}
}
{
double L_1 = ___value0;
if ((!(((double)L_1) < ((double)(-32768.0)))))
{
goto IL_002e;
}
}
IL_001e:
{
String_t* L_2 = Locale_GetText_m3374010885(NULL /*static, unused*/, _stringLiteral3531382908, /*hidden argument*/NULL);
OverflowException_t2020128637 * L_3 = (OverflowException_t2020128637 *)il2cpp_codegen_object_new(OverflowException_t2020128637_il2cpp_TypeInfo_var);
OverflowException__ctor_m694321376(L_3, L_2, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3,Convert_ToInt16_m2780199356_RuntimeMethod_var);
}
IL_002e:
{
double L_4 = ___value0;
double L_5 = bankers_round(L_4);
return (((int16_t)((int16_t)L_5)));
}
}
// System.Int16 System.Convert::ToInt16(System.Single)
extern "C" int16_t Convert_ToInt16_m1336719169 (RuntimeObject * __this /* static, unused */, float ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Convert_ToInt16_m1336719169_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
float L_0 = ___value0;
if ((((float)L_0) > ((float)(32767.0f))))
{
goto IL_0016;
}
}
{
float L_1 = ___value0;
if ((!(((float)L_1) < ((float)(-32768.0f)))))
{
goto IL_0026;
}
}
IL_0016:
{
String_t* L_2 = Locale_GetText_m3374010885(NULL /*static, unused*/, _stringLiteral3531382908, /*hidden argument*/NULL);
OverflowException_t2020128637 * L_3 = (OverflowException_t2020128637 *)il2cpp_codegen_object_new(OverflowException_t2020128637_il2cpp_TypeInfo_var);
OverflowException__ctor_m694321376(L_3, L_2, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3,Convert_ToInt16_m1336719169_RuntimeMethod_var);
}
IL_0026:
{
float L_4 = ___value0;
double L_5 = bankers_round((((double)((double)L_4))));
return (((int16_t)((int16_t)L_5)));
}
}
// System.Int16 System.Convert::ToInt16(System.Int32)
extern "C" int16_t Convert_ToInt16_m4174308322 (RuntimeObject * __this /* static, unused */, int32_t ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Convert_ToInt16_m4174308322_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = ___value0;
if ((((int32_t)L_0) > ((int32_t)((int32_t)32767))))
{
goto IL_0016;
}
}
{
int32_t L_1 = ___value0;
if ((((int32_t)L_1) >= ((int32_t)((int32_t)-32768))))
{
goto IL_0026;
}
}
IL_0016:
{
String_t* L_2 = Locale_GetText_m3374010885(NULL /*static, unused*/, _stringLiteral3531382908, /*hidden argument*/NULL);
OverflowException_t2020128637 * L_3 = (OverflowException_t2020128637 *)il2cpp_codegen_object_new(OverflowException_t2020128637_il2cpp_TypeInfo_var);
OverflowException__ctor_m694321376(L_3, L_2, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3,Convert_ToInt16_m4174308322_RuntimeMethod_var);
}
IL_0026:
{
int32_t L_4 = ___value0;
return (((int16_t)((int16_t)L_4)));
}
}
// System.Int16 System.Convert::ToInt16(System.Int64)
extern "C" int16_t Convert_ToInt16_m4174439391 (RuntimeObject * __this /* static, unused */, int64_t ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Convert_ToInt16_m4174439391_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int64_t L_0 = ___value0;
if ((((int64_t)L_0) > ((int64_t)(((int64_t)((int64_t)((int32_t)32767)))))))
{
goto IL_0018;
}
}
{
int64_t L_1 = ___value0;
if ((((int64_t)L_1) >= ((int64_t)(((int64_t)((int64_t)((int32_t)-32768)))))))
{
goto IL_0028;
}
}
IL_0018:
{
String_t* L_2 = Locale_GetText_m3374010885(NULL /*static, unused*/, _stringLiteral3531382908, /*hidden argument*/NULL);
OverflowException_t2020128637 * L_3 = (OverflowException_t2020128637 *)il2cpp_codegen_object_new(OverflowException_t2020128637_il2cpp_TypeInfo_var);
OverflowException__ctor_m694321376(L_3, L_2, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3,Convert_ToInt16_m4174439391_RuntimeMethod_var);
}
IL_0028:
{
int64_t L_4 = ___value0;
return (((int16_t)((int16_t)L_4)));
}
}
// System.Int16 System.Convert::ToInt16(System.SByte)
extern "C" int16_t Convert_ToInt16_m155265449 (RuntimeObject * __this /* static, unused */, int8_t ___value0, const RuntimeMethod* method)
{
{
int8_t L_0 = ___value0;
return (((int16_t)((int16_t)L_0)));
}
}
// System.Int16 System.Convert::ToInt16(System.Int16)
extern "C" int16_t Convert_ToInt16_m4174570464 (RuntimeObject * __this /* static, unused */, int16_t ___value0, const RuntimeMethod* method)
{
{
int16_t L_0 = ___value0;
return L_0;
}
}
// System.Int16 System.Convert::ToInt16(System.String,System.IFormatProvider)
extern "C" int16_t Convert_ToInt16_m3185404879 (RuntimeObject * __this /* static, unused */, String_t* ___value0, RuntimeObject* ___provider1, const RuntimeMethod* method)
{
{
String_t* L_0 = ___value0;
if (L_0)
{
goto IL_0008;
}
}
{
return (int16_t)0;
}
IL_0008:
{
String_t* L_1 = ___value0;
RuntimeObject* L_2 = ___provider1;
int16_t L_3 = Int16_Parse_m138525169(NULL /*static, unused*/, L_1, L_2, /*hidden argument*/NULL);
return L_3;
}
}
// System.Int16 System.Convert::ToInt16(System.UInt32)
extern "C" int16_t Convert_ToInt16_m571189957 (RuntimeObject * __this /* static, unused */, uint32_t ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Convert_ToInt16_m571189957_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
uint32_t L_0 = ___value0;
if ((((int64_t)(((int64_t)((uint64_t)L_0)))) <= ((int64_t)(((int64_t)((int64_t)((int32_t)32767)))))))
{
goto IL_001d;
}
}
{
String_t* L_1 = Locale_GetText_m3374010885(NULL /*static, unused*/, _stringLiteral2917292804, /*hidden argument*/NULL);
OverflowException_t2020128637 * L_2 = (OverflowException_t2020128637 *)il2cpp_codegen_object_new(OverflowException_t2020128637_il2cpp_TypeInfo_var);
OverflowException__ctor_m694321376(L_2, L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2,Convert_ToInt16_m571189957_RuntimeMethod_var);
}
IL_001d:
{
uint32_t L_3 = ___value0;
return (((int16_t)((int16_t)L_3)));
}
}
// System.Int16 System.Convert::ToInt16(System.UInt64)
extern "C" int16_t Convert_ToInt16_m1733792763 (RuntimeObject * __this /* static, unused */, uint64_t ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Convert_ToInt16_m1733792763_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
uint64_t L_0 = ___value0;
if ((!(((uint64_t)L_0) > ((uint64_t)(((int64_t)((int64_t)((int32_t)32767))))))))
{
goto IL_001c;
}
}
{
String_t* L_1 = Locale_GetText_m3374010885(NULL /*static, unused*/, _stringLiteral2917292804, /*hidden argument*/NULL);
OverflowException_t2020128637 * L_2 = (OverflowException_t2020128637 *)il2cpp_codegen_object_new(OverflowException_t2020128637_il2cpp_TypeInfo_var);
OverflowException__ctor_m694321376(L_2, L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2,Convert_ToInt16_m1733792763_RuntimeMethod_var);
}
IL_001c:
{
uint64_t L_3 = ___value0;
return (((int16_t)((int16_t)L_3)));
}
}
// System.Int16 System.Convert::ToInt16(System.UInt16)
extern "C" int16_t Convert_ToInt16_m2896657713 (RuntimeObject * __this /* static, unused */, uint16_t ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Convert_ToInt16_m2896657713_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
uint16_t L_0 = ___value0;
if ((((int32_t)L_0) <= ((int32_t)((int32_t)32767))))
{
goto IL_001b;
}
}
{
String_t* L_1 = Locale_GetText_m3374010885(NULL /*static, unused*/, _stringLiteral2917292804, /*hidden argument*/NULL);
OverflowException_t2020128637 * L_2 = (OverflowException_t2020128637 *)il2cpp_codegen_object_new(OverflowException_t2020128637_il2cpp_TypeInfo_var);
OverflowException__ctor_m694321376(L_2, L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2,Convert_ToInt16_m2896657713_RuntimeMethod_var);
}
IL_001b:
{
uint16_t L_3 = ___value0;
return (((int16_t)((int16_t)L_3)));
}
}
// System.Int16 System.Convert::ToInt16(System.Object)
extern "C" int16_t Convert_ToInt16_m198393465 (RuntimeObject * __this /* static, unused */, RuntimeObject * ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Convert_ToInt16_m198393465_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject * L_0 = ___value0;
if (L_0)
{
goto IL_0008;
}
}
{
return (int16_t)0;
}
IL_0008:
{
RuntimeObject * L_1 = ___value0;
IL2CPP_RUNTIME_CLASS_INIT(Convert_t2465617642_il2cpp_TypeInfo_var);
int16_t L_2 = Convert_ToInt16_m1223489986(NULL /*static, unused*/, L_1, (RuntimeObject*)NULL, /*hidden argument*/NULL);
return L_2;
}
}
// System.Int16 System.Convert::ToInt16(System.Object,System.IFormatProvider)
extern "C" int16_t Convert_ToInt16_m1223489986 (RuntimeObject * __this /* static, unused */, RuntimeObject * ___value0, RuntimeObject* ___provider1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Convert_ToInt16_m1223489986_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject * L_0 = ___value0;
if (L_0)
{
goto IL_0008;
}
}
{
return (int16_t)0;
}
IL_0008:
{
RuntimeObject * L_1 = ___value0;
RuntimeObject* L_2 = ___provider1;
int16_t L_3 = InterfaceFuncInvoker1< int16_t, RuntimeObject* >::Invoke(6 /* System.Int16 System.IConvertible::ToInt16(System.IFormatProvider) */, IConvertible_t2977365677_il2cpp_TypeInfo_var, ((RuntimeObject*)Castclass((RuntimeObject*)L_1, IConvertible_t2977365677_il2cpp_TypeInfo_var)), L_2);
return L_3;
}
}
// System.Int32 System.Convert::ToInt32(System.Boolean)
extern "C" int32_t Convert_ToInt32_m2100527582 (RuntimeObject * __this /* static, unused */, bool ___value0, const RuntimeMethod* method)
{
int32_t G_B3_0 = 0;
{
bool L_0 = ___value0;
if (!L_0)
{
goto IL_000c;
}
}
{
G_B3_0 = 1;
goto IL_000d;
}
IL_000c:
{
G_B3_0 = 0;
}
IL_000d:
{
return G_B3_0;
}
}
// System.Int32 System.Convert::ToInt32(System.Byte)
extern "C" int32_t Convert_ToInt32_m2505564049 (RuntimeObject * __this /* static, unused */, uint8_t ___value0, const RuntimeMethod* method)
{
{
uint8_t L_0 = ___value0;
return L_0;
}
}
// System.Int32 System.Convert::ToInt32(System.Char)
extern "C" int32_t Convert_ToInt32_m1876369743 (RuntimeObject * __this /* static, unused */, Il2CppChar ___value0, const RuntimeMethod* method)
{
{
Il2CppChar L_0 = ___value0;
return L_0;
}
}
// System.Int32 System.Convert::ToInt32(System.Decimal)
extern "C" int32_t Convert_ToInt32_m3048308591 (RuntimeObject * __this /* static, unused */, Decimal_t2948259380 ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Convert_ToInt32_m3048308591_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Decimal_t2948259380 L_0 = ___value0;
Decimal_t2948259380 L_1;
memset(&L_1, 0, sizeof(L_1));
Decimal__ctor_m1256289983((&L_1), ((int32_t)2147483647LL), /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Decimal_t2948259380_il2cpp_TypeInfo_var);
bool L_2 = Decimal_op_GreaterThan_m627311519(NULL /*static, unused*/, L_0, L_1, /*hidden argument*/NULL);
if (L_2)
{
goto IL_002a;
}
}
{
Decimal_t2948259380 L_3 = ___value0;
Decimal_t2948259380 L_4;
memset(&L_4, 0, sizeof(L_4));
Decimal__ctor_m1256289983((&L_4), ((int32_t)-2147483648LL), /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Decimal_t2948259380_il2cpp_TypeInfo_var);
bool L_5 = Decimal_op_LessThan_m1273833514(NULL /*static, unused*/, L_3, L_4, /*hidden argument*/NULL);
if (!L_5)
{
goto IL_003a;
}
}
IL_002a:
{
String_t* L_6 = Locale_GetText_m3374010885(NULL /*static, unused*/, _stringLiteral3389715555, /*hidden argument*/NULL);
OverflowException_t2020128637 * L_7 = (OverflowException_t2020128637 *)il2cpp_codegen_object_new(OverflowException_t2020128637_il2cpp_TypeInfo_var);
OverflowException__ctor_m694321376(L_7, L_6, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_7,Convert_ToInt32_m3048308591_RuntimeMethod_var);
}
IL_003a:
{
Decimal_t2948259380 L_8 = ___value0;
Decimal_t2948259380 L_9 = Math_Round_m3018379666(NULL /*static, unused*/, L_8, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Decimal_t2948259380_il2cpp_TypeInfo_var);
int32_t L_10 = Decimal_op_Explicit_m1842265407(NULL /*static, unused*/, L_9, /*hidden argument*/NULL);
return L_10;
}
}
// System.Int32 System.Convert::ToInt32(System.Double)
extern "C" int32_t Convert_ToInt32_m2880498116 (RuntimeObject * __this /* static, unused */, double ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Convert_ToInt32_m2880498116_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
double L_0 = ___value0;
if ((((double)L_0) > ((double)(2147483647.0))))
{
goto IL_001e;
}
}
{
double L_1 = ___value0;
if ((!(((double)L_1) < ((double)(-2147483648.0)))))
{
goto IL_002e;
}
}
IL_001e:
{
String_t* L_2 = Locale_GetText_m3374010885(NULL /*static, unused*/, _stringLiteral3389715555, /*hidden argument*/NULL);
OverflowException_t2020128637 * L_3 = (OverflowException_t2020128637 *)il2cpp_codegen_object_new(OverflowException_t2020128637_il2cpp_TypeInfo_var);
OverflowException__ctor_m694321376(L_3, L_2, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3,Convert_ToInt32_m2880498116_RuntimeMethod_var);
}
IL_002e:
{
double L_4 = ___value0;
double L_5 = bankers_round(L_4);
if (L_5 > (double)(2147483647LL)) IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_overflow_exception(),NULL);
return (((int32_t)((int32_t)L_5)));
}
}
// System.Int32 System.Convert::ToInt32(System.Single)
extern "C" int32_t Convert_ToInt32_m1613163543 (RuntimeObject * __this /* static, unused */, float ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Convert_ToInt32_m1613163543_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
float L_0 = ___value0;
if ((((float)L_0) > ((float)(2.14748365E+09f))))
{
goto IL_0016;
}
}
{
float L_1 = ___value0;
if ((!(((float)L_1) < ((float)(-2.14748365E+09f)))))
{
goto IL_0026;
}
}
IL_0016:
{
String_t* L_2 = Locale_GetText_m3374010885(NULL /*static, unused*/, _stringLiteral3389715555, /*hidden argument*/NULL);
OverflowException_t2020128637 * L_3 = (OverflowException_t2020128637 *)il2cpp_codegen_object_new(OverflowException_t2020128637_il2cpp_TypeInfo_var);
OverflowException__ctor_m694321376(L_3, L_2, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3,Convert_ToInt32_m1613163543_RuntimeMethod_var);
}
IL_0026:
{
float L_4 = ___value0;
double L_5 = bankers_round((((double)((double)L_4))));
if (L_5 > (double)(2147483647LL)) IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_overflow_exception(),NULL);
return (((int32_t)((int32_t)L_5)));
}
}
// System.Int32 System.Convert::ToInt32(System.Int64)
extern "C" int32_t Convert_ToInt32_m1085875835 (RuntimeObject * __this /* static, unused */, int64_t ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Convert_ToInt32_m1085875835_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int64_t L_0 = ___value0;
if ((((int64_t)L_0) > ((int64_t)(((int64_t)((int64_t)((int32_t)2147483647LL)))))))
{
goto IL_0018;
}
}
{
int64_t L_1 = ___value0;
if ((((int64_t)L_1) >= ((int64_t)(((int64_t)((int64_t)((int32_t)-2147483648LL)))))))
{
goto IL_0028;
}
}
IL_0018:
{
String_t* L_2 = Locale_GetText_m3374010885(NULL /*static, unused*/, _stringLiteral3389715555, /*hidden argument*/NULL);
OverflowException_t2020128637 * L_3 = (OverflowException_t2020128637 *)il2cpp_codegen_object_new(OverflowException_t2020128637_il2cpp_TypeInfo_var);
OverflowException__ctor_m694321376(L_3, L_2, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3,Convert_ToInt32_m1085875835_RuntimeMethod_var);
}
IL_0028:
{
int64_t L_4 = ___value0;
return (((int32_t)((int32_t)L_4)));
}
}
// System.Int32 System.Convert::ToInt32(System.SByte)
extern "C" int32_t Convert_ToInt32_m1405693041 (RuntimeObject * __this /* static, unused */, int8_t ___value0, const RuntimeMethod* method)
{
{
int8_t L_0 = ___value0;
return (((int32_t)((int32_t)L_0)));
}
}
// System.Int32 System.Convert::ToInt32(System.Int16)
extern "C" int32_t Convert_ToInt32_m1085744762 (RuntimeObject * __this /* static, unused */, int16_t ___value0, const RuntimeMethod* method)
{
{
int16_t L_0 = ___value0;
return L_0;
}
}
// System.Int32 System.Convert::ToInt32(System.String,System.IFormatProvider)
extern "C" int32_t Convert_ToInt32_m2128774575 (RuntimeObject * __this /* static, unused */, String_t* ___value0, RuntimeObject* ___provider1, const RuntimeMethod* method)
{
{
String_t* L_0 = ___value0;
if (L_0)
{
goto IL_0008;
}
}
{
return 0;
}
IL_0008:
{
String_t* L_1 = ___value0;
RuntimeObject* L_2 = ___provider1;
int32_t L_3 = Int32_Parse_m2087562008(NULL /*static, unused*/, L_1, L_2, /*hidden argument*/NULL);
return L_3;
}
}
// System.Int32 System.Convert::ToInt32(System.UInt32)
extern "C" int32_t Convert_ToInt32_m3956995719 (RuntimeObject * __this /* static, unused */, uint32_t ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Convert_ToInt32_m3956995719_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
uint32_t L_0 = ___value0;
if ((!(((uint32_t)L_0) > ((uint32_t)((int32_t)2147483647LL)))))
{
goto IL_001b;
}
}
{
String_t* L_1 = Locale_GetText_m3374010885(NULL /*static, unused*/, _stringLiteral1342583032, /*hidden argument*/NULL);
OverflowException_t2020128637 * L_2 = (OverflowException_t2020128637 *)il2cpp_codegen_object_new(OverflowException_t2020128637_il2cpp_TypeInfo_var);
OverflowException__ctor_m694321376(L_2, L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2,Convert_ToInt32_m3956995719_RuntimeMethod_var);
}
IL_001b:
{
uint32_t L_3 = ___value0;
return L_3;
}
}
// System.Int32 System.Convert::ToInt32(System.UInt64)
extern "C" int32_t Convert_ToInt32_m825155517 (RuntimeObject * __this /* static, unused */, uint64_t ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Convert_ToInt32_m825155517_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
uint64_t L_0 = ___value0;
if ((!(((uint64_t)L_0) > ((uint64_t)(((int64_t)((int64_t)((int32_t)2147483647LL))))))))
{
goto IL_001c;
}
}
{
String_t* L_1 = Locale_GetText_m3374010885(NULL /*static, unused*/, _stringLiteral1342583032, /*hidden argument*/NULL);
OverflowException_t2020128637 * L_2 = (OverflowException_t2020128637 *)il2cpp_codegen_object_new(OverflowException_t2020128637_il2cpp_TypeInfo_var);
OverflowException__ctor_m694321376(L_2, L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2,Convert_ToInt32_m825155517_RuntimeMethod_var);
}
IL_001c:
{
uint64_t L_3 = ___value0;
return (((int32_t)((int32_t)L_3)));
}
}
// System.Int32 System.Convert::ToInt32(System.UInt16)
extern "C" int32_t Convert_ToInt32_m1987758323 (RuntimeObject * __this /* static, unused */, uint16_t ___value0, const RuntimeMethod* method)
{
{
uint16_t L_0 = ___value0;
return L_0;
}
}
// System.Int32 System.Convert::ToInt32(System.Object)
extern "C" int32_t Convert_ToInt32_m2608095889 (RuntimeObject * __this /* static, unused */, RuntimeObject * ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Convert_ToInt32_m2608095889_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject * L_0 = ___value0;
if (L_0)
{
goto IL_0008;
}
}
{
return 0;
}
IL_0008:
{
RuntimeObject * L_1 = ___value0;
IL2CPP_RUNTIME_CLASS_INIT(Convert_t2465617642_il2cpp_TypeInfo_var);
int32_t L_2 = Convert_ToInt32_m3211312035(NULL /*static, unused*/, L_1, (RuntimeObject*)NULL, /*hidden argument*/NULL);
return L_2;
}
}
// System.Int32 System.Convert::ToInt32(System.Object,System.IFormatProvider)
extern "C" int32_t Convert_ToInt32_m3211312035 (RuntimeObject * __this /* static, unused */, RuntimeObject * ___value0, RuntimeObject* ___provider1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Convert_ToInt32_m3211312035_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject * L_0 = ___value0;
if (L_0)
{
goto IL_0008;
}
}
{
return 0;
}
IL_0008:
{
RuntimeObject * L_1 = ___value0;
RuntimeObject* L_2 = ___provider1;
int32_t L_3 = InterfaceFuncInvoker1< int32_t, RuntimeObject* >::Invoke(7 /* System.Int32 System.IConvertible::ToInt32(System.IFormatProvider) */, IConvertible_t2977365677_il2cpp_TypeInfo_var, ((RuntimeObject*)Castclass((RuntimeObject*)L_1, IConvertible_t2977365677_il2cpp_TypeInfo_var)), L_2);
return L_3;
}
}
// System.Int64 System.Convert::ToInt64(System.Boolean)
extern "C" int64_t Convert_ToInt64_m2812720657 (RuntimeObject * __this /* static, unused */, bool ___value0, const RuntimeMethod* method)
{
int32_t G_B3_0 = 0;
{
bool L_0 = ___value0;
if (!L_0)
{
goto IL_000c;
}
}
{
G_B3_0 = 1;
goto IL_000d;
}
IL_000c:
{
G_B3_0 = 0;
}
IL_000d:
{
return (((int64_t)((int64_t)G_B3_0)));
}
}
// System.Int64 System.Convert::ToInt64(System.Byte)
extern "C" int64_t Convert_ToInt64_m395638860 (RuntimeObject * __this /* static, unused */, uint8_t ___value0, const RuntimeMethod* method)
{
{
uint8_t L_0 = ___value0;
return (((int64_t)((uint64_t)L_0)));
}
}
// System.Int64 System.Convert::ToInt64(System.Char)
extern "C" int64_t Convert_ToInt64_m3122543124 (RuntimeObject * __this /* static, unused */, Il2CppChar ___value0, const RuntimeMethod* method)
{
{
Il2CppChar L_0 = ___value0;
return (((int64_t)((int64_t)L_0)));
}
}
// System.Int64 System.Convert::ToInt64(System.Decimal)
extern "C" int64_t Convert_ToInt64_m4082637156 (RuntimeObject * __this /* static, unused */, Decimal_t2948259380 ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Convert_ToInt64_m4082637156_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Decimal_t2948259380 L_0 = ___value0;
Decimal_t2948259380 L_1;
memset(&L_1, 0, sizeof(L_1));
Decimal__ctor_m3650533794((&L_1), (-1), ((int32_t)2147483647LL), 0, (bool)0, (uint8_t)0, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Decimal_t2948259380_il2cpp_TypeInfo_var);
bool L_2 = Decimal_op_GreaterThan_m627311519(NULL /*static, unused*/, L_0, L_1, /*hidden argument*/NULL);
if (L_2)
{
goto IL_0032;
}
}
{
Decimal_t2948259380 L_3 = ___value0;
Decimal_t2948259380 L_4;
memset(&L_4, 0, sizeof(L_4));
Decimal__ctor_m3650533794((&L_4), 0, ((int32_t)-2147483648LL), 0, (bool)(-1), (uint8_t)0, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Decimal_t2948259380_il2cpp_TypeInfo_var);
bool L_5 = Decimal_op_LessThan_m1273833514(NULL /*static, unused*/, L_3, L_4, /*hidden argument*/NULL);
if (!L_5)
{
goto IL_0042;
}
}
IL_0032:
{
String_t* L_6 = Locale_GetText_m3374010885(NULL /*static, unused*/, _stringLiteral3205301826, /*hidden argument*/NULL);
OverflowException_t2020128637 * L_7 = (OverflowException_t2020128637 *)il2cpp_codegen_object_new(OverflowException_t2020128637_il2cpp_TypeInfo_var);
OverflowException__ctor_m694321376(L_7, L_6, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_7,Convert_ToInt64_m4082637156_RuntimeMethod_var);
}
IL_0042:
{
Decimal_t2948259380 L_8 = ___value0;
Decimal_t2948259380 L_9 = Math_Round_m3018379666(NULL /*static, unused*/, L_8, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Decimal_t2948259380_il2cpp_TypeInfo_var);
int64_t L_10 = Decimal_op_Explicit_m438967917(NULL /*static, unused*/, L_9, /*hidden argument*/NULL);
return L_10;
}
}
// System.Int64 System.Convert::ToInt64(System.Double)
extern "C" int64_t Convert_ToInt64_m3758262873 (RuntimeObject * __this /* static, unused */, double ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Convert_ToInt64_m3758262873_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
double L_0 = ___value0;
if ((((double)L_0) > ((double)(9.2233720368547758E+18))))
{
goto IL_001e;
}
}
{
double L_1 = ___value0;
if ((!(((double)L_1) < ((double)(-9.2233720368547758E+18)))))
{
goto IL_002e;
}
}
IL_001e:
{
String_t* L_2 = Locale_GetText_m3374010885(NULL /*static, unused*/, _stringLiteral3205301826, /*hidden argument*/NULL);
OverflowException_t2020128637 * L_3 = (OverflowException_t2020128637 *)il2cpp_codegen_object_new(OverflowException_t2020128637_il2cpp_TypeInfo_var);
OverflowException__ctor_m694321376(L_3, L_2, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3,Convert_ToInt64_m3758262873_RuntimeMethod_var);
}
IL_002e:
{
double L_4 = ___value0;
double L_5 = bankers_round(L_4);
return (((int64_t)((int64_t)L_5)));
}
}
// System.Int64 System.Convert::ToInt64(System.Single)
extern "C" int64_t Convert_ToInt64_m658295522 (RuntimeObject * __this /* static, unused */, float ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Convert_ToInt64_m658295522_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
float L_0 = ___value0;
if ((((float)L_0) > ((float)(9.223372E+18f))))
{
goto IL_0016;
}
}
{
float L_1 = ___value0;
if ((!(((float)L_1) < ((float)(-9.223372E+18f)))))
{
goto IL_0026;
}
}
IL_0016:
{
String_t* L_2 = Locale_GetText_m3374010885(NULL /*static, unused*/, _stringLiteral3205301826, /*hidden argument*/NULL);
OverflowException_t2020128637 * L_3 = (OverflowException_t2020128637 *)il2cpp_codegen_object_new(OverflowException_t2020128637_il2cpp_TypeInfo_var);
OverflowException__ctor_m694321376(L_3, L_2, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3,Convert_ToInt64_m658295522_RuntimeMethod_var);
}
IL_0026:
{
float L_4 = ___value0;
double L_5 = bankers_round((((double)((double)L_4))));
return (((int64_t)((int64_t)L_5)));
}
}
// System.Int64 System.Convert::ToInt64(System.Int32)
extern "C" int64_t Convert_ToInt64_m2075293963 (RuntimeObject * __this /* static, unused */, int32_t ___value0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___value0;
return (((int64_t)((int64_t)L_0)));
}
}
// System.Int64 System.Convert::ToInt64(System.Int64)
extern "C" int64_t Convert_ToInt64_m2075162888 (RuntimeObject * __this /* static, unused */, int64_t ___value0, const RuntimeMethod* method)
{
{
int64_t L_0 = ___value0;
return L_0;
}
}
// System.Int64 System.Convert::ToInt64(System.SByte)
extern "C" int64_t Convert_ToInt64_m3916071102 (RuntimeObject * __this /* static, unused */, int8_t ___value0, const RuntimeMethod* method)
{
{
int8_t L_0 = ___value0;
return (((int64_t)((int64_t)L_0)));
}
}
// System.Int64 System.Convert::ToInt64(System.Int16)
extern "C" int64_t Convert_ToInt64_m2075031821 (RuntimeObject * __this /* static, unused */, int16_t ___value0, const RuntimeMethod* method)
{
{
int16_t L_0 = ___value0;
return (((int64_t)((int64_t)L_0)));
}
}
// System.Int64 System.Convert::ToInt64(System.String)
extern "C" int64_t Convert_ToInt64_m4087101237 (RuntimeObject * __this /* static, unused */, String_t* ___value0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___value0;
if (L_0)
{
goto IL_0009;
}
}
{
return (((int64_t)((int64_t)0)));
}
IL_0009:
{
String_t* L_1 = ___value0;
int64_t L_2 = Int64_Parse_m662659148(NULL /*static, unused*/, L_1, /*hidden argument*/NULL);
return L_2;
}
}
// System.Int64 System.Convert::ToInt64(System.String,System.IFormatProvider)
extern "C" int64_t Convert_ToInt64_m2849840611 (RuntimeObject * __this /* static, unused */, String_t* ___value0, RuntimeObject* ___provider1, const RuntimeMethod* method)
{
{
String_t* L_0 = ___value0;
if (L_0)
{
goto IL_0009;
}
}
{
return (((int64_t)((int64_t)0)));
}
IL_0009:
{
String_t* L_1 = ___value0;
RuntimeObject* L_2 = ___provider1;
int64_t L_3 = Int64_Parse_m1331690076(NULL /*static, unused*/, L_1, L_2, /*hidden argument*/NULL);
return L_3;
}
}
// System.Int64 System.Convert::ToInt64(System.UInt32)
extern "C" int64_t Convert_ToInt64_m3392013556 (RuntimeObject * __this /* static, unused */, uint32_t ___value0, const RuntimeMethod* method)
{
{
uint32_t L_0 = ___value0;
return (((int64_t)((uint64_t)L_0)));
}
}
// System.Int64 System.Convert::ToInt64(System.UInt64)
extern "C" int64_t Convert_ToInt64_m260173354 (RuntimeObject * __this /* static, unused */, uint64_t ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Convert_ToInt64_m260173354_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
uint64_t L_0 = ___value0;
if ((!(((uint64_t)L_0) > ((uint64_t)((int64_t)std::numeric_limits<int64_t>::max())))))
{
goto IL_001f;
}
}
{
String_t* L_1 = Locale_GetText_m3374010885(NULL /*static, unused*/, _stringLiteral2667268558, /*hidden argument*/NULL);
OverflowException_t2020128637 * L_2 = (OverflowException_t2020128637 *)il2cpp_codegen_object_new(OverflowException_t2020128637_il2cpp_TypeInfo_var);
OverflowException__ctor_m694321376(L_2, L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2,Convert_ToInt64_m260173354_RuntimeMethod_var);
}
IL_001f:
{
uint64_t L_3 = ___value0;
return L_3;
}
}
// System.Int64 System.Convert::ToInt64(System.UInt16)
extern "C" int64_t Convert_ToInt64_m1422776160 (RuntimeObject * __this /* static, unused */, uint16_t ___value0, const RuntimeMethod* method)
{
{
uint16_t L_0 = ___value0;
return (((int64_t)((uint64_t)L_0)));
}
}
// System.Int64 System.Convert::ToInt64(System.Object)
extern "C" int64_t Convert_ToInt64_m3240678588 (RuntimeObject * __this /* static, unused */, RuntimeObject * ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Convert_ToInt64_m3240678588_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject * L_0 = ___value0;
if (L_0)
{
goto IL_0009;
}
}
{
return (((int64_t)((int64_t)0)));
}
IL_0009:
{
RuntimeObject * L_1 = ___value0;
IL2CPP_RUNTIME_CLASS_INIT(Convert_t2465617642_il2cpp_TypeInfo_var);
int64_t L_2 = Convert_ToInt64_m2643251823(NULL /*static, unused*/, L_1, (RuntimeObject*)NULL, /*hidden argument*/NULL);
return L_2;
}
}
// System.Int64 System.Convert::ToInt64(System.Object,System.IFormatProvider)
extern "C" int64_t Convert_ToInt64_m2643251823 (RuntimeObject * __this /* static, unused */, RuntimeObject * ___value0, RuntimeObject* ___provider1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Convert_ToInt64_m2643251823_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject * L_0 = ___value0;
if (L_0)
{
goto IL_0009;
}
}
{
return (((int64_t)((int64_t)0)));
}
IL_0009:
{
RuntimeObject * L_1 = ___value0;
RuntimeObject* L_2 = ___provider1;
int64_t L_3 = InterfaceFuncInvoker1< int64_t, RuntimeObject* >::Invoke(8 /* System.Int64 System.IConvertible::ToInt64(System.IFormatProvider) */, IConvertible_t2977365677_il2cpp_TypeInfo_var, ((RuntimeObject*)Castclass((RuntimeObject*)L_1, IConvertible_t2977365677_il2cpp_TypeInfo_var)), L_2);
return L_3;
}
}
// System.SByte System.Convert::ToSByte(System.Boolean)
extern "C" int8_t Convert_ToSByte_m3284376536 (RuntimeObject * __this /* static, unused */, bool ___value0, const RuntimeMethod* method)
{
int32_t G_B3_0 = 0;
{
bool L_0 = ___value0;
if (!L_0)
{
goto IL_000c;
}
}
{
G_B3_0 = 1;
goto IL_000d;
}
IL_000c:
{
G_B3_0 = 0;
}
IL_000d:
{
return (((int8_t)((int8_t)G_B3_0)));
}
}
// System.SByte System.Convert::ToSByte(System.Byte)
extern "C" int8_t Convert_ToSByte_m717245755 (RuntimeObject * __this /* static, unused */, uint8_t ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Convert_ToSByte_m717245755_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
uint8_t L_0 = ___value0;
if ((((int32_t)L_0) <= ((int32_t)((int32_t)127))))
{
goto IL_0018;
}
}
{
String_t* L_1 = Locale_GetText_m3374010885(NULL /*static, unused*/, _stringLiteral661645146, /*hidden argument*/NULL);
OverflowException_t2020128637 * L_2 = (OverflowException_t2020128637 *)il2cpp_codegen_object_new(OverflowException_t2020128637_il2cpp_TypeInfo_var);
OverflowException__ctor_m694321376(L_2, L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2,Convert_ToSByte_m717245755_RuntimeMethod_var);
}
IL_0018:
{
uint8_t L_3 = ___value0;
return (((int8_t)((int8_t)L_3)));
}
}
// System.SByte System.Convert::ToSByte(System.Char)
extern "C" int8_t Convert_ToSByte_m1350241137 (RuntimeObject * __this /* static, unused */, Il2CppChar ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Convert_ToSByte_m1350241137_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Il2CppChar L_0 = ___value0;
if ((((int32_t)L_0) <= ((int32_t)((int32_t)127))))
{
goto IL_0018;
}
}
{
String_t* L_1 = Locale_GetText_m3374010885(NULL /*static, unused*/, _stringLiteral661645146, /*hidden argument*/NULL);
OverflowException_t2020128637 * L_2 = (OverflowException_t2020128637 *)il2cpp_codegen_object_new(OverflowException_t2020128637_il2cpp_TypeInfo_var);
OverflowException__ctor_m694321376(L_2, L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2,Convert_ToSByte_m1350241137_RuntimeMethod_var);
}
IL_0018:
{
Il2CppChar L_3 = ___value0;
return (((int8_t)((int8_t)L_3)));
}
}
// System.SByte System.Convert::ToSByte(System.Decimal)
extern "C" int8_t Convert_ToSByte_m2991657475 (RuntimeObject * __this /* static, unused */, Decimal_t2948259380 ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Convert_ToSByte_m2991657475_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Decimal_t2948259380 L_0 = ___value0;
Decimal_t2948259380 L_1;
memset(&L_1, 0, sizeof(L_1));
Decimal__ctor_m1256289983((&L_1), ((int32_t)127), /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Decimal_t2948259380_il2cpp_TypeInfo_var);
bool L_2 = Decimal_op_GreaterThan_m627311519(NULL /*static, unused*/, L_0, L_1, /*hidden argument*/NULL);
if (L_2)
{
goto IL_0024;
}
}
{
Decimal_t2948259380 L_3 = ___value0;
Decimal_t2948259380 L_4;
memset(&L_4, 0, sizeof(L_4));
Decimal__ctor_m1256289983((&L_4), ((int32_t)-128), /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Decimal_t2948259380_il2cpp_TypeInfo_var);
bool L_5 = Decimal_op_LessThan_m1273833514(NULL /*static, unused*/, L_3, L_4, /*hidden argument*/NULL);
if (!L_5)
{
goto IL_0034;
}
}
IL_0024:
{
String_t* L_6 = Locale_GetText_m3374010885(NULL /*static, unused*/, _stringLiteral1770622501, /*hidden argument*/NULL);
OverflowException_t2020128637 * L_7 = (OverflowException_t2020128637 *)il2cpp_codegen_object_new(OverflowException_t2020128637_il2cpp_TypeInfo_var);
OverflowException__ctor_m694321376(L_7, L_6, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_7,Convert_ToSByte_m2991657475_RuntimeMethod_var);
}
IL_0034:
{
Decimal_t2948259380 L_8 = ___value0;
Decimal_t2948259380 L_9 = Math_Round_m3018379666(NULL /*static, unused*/, L_8, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Decimal_t2948259380_il2cpp_TypeInfo_var);
int8_t L_10 = Decimal_op_Explicit_m1824467517(NULL /*static, unused*/, L_9, /*hidden argument*/NULL);
return L_10;
}
}
// System.SByte System.Convert::ToSByte(System.Double)
extern "C" int8_t Convert_ToSByte_m3796870839 (RuntimeObject * __this /* static, unused */, double ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Convert_ToSByte_m3796870839_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
double L_0 = ___value0;
if ((((double)L_0) > ((double)(127.0))))
{
goto IL_001e;
}
}
{
double L_1 = ___value0;
if ((!(((double)L_1) < ((double)(-128.0)))))
{
goto IL_002e;
}
}
IL_001e:
{
String_t* L_2 = Locale_GetText_m3374010885(NULL /*static, unused*/, _stringLiteral1770622501, /*hidden argument*/NULL);
OverflowException_t2020128637 * L_3 = (OverflowException_t2020128637 *)il2cpp_codegen_object_new(OverflowException_t2020128637_il2cpp_TypeInfo_var);
OverflowException__ctor_m694321376(L_3, L_2, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3,Convert_ToSByte_m3796870839_RuntimeMethod_var);
}
IL_002e:
{
double L_4 = ___value0;
double L_5 = bankers_round(L_4);
return (((int8_t)((int8_t)L_5)));
}
}
// System.SByte System.Convert::ToSByte(System.Single)
extern "C" int8_t Convert_ToSByte_m3472794164 (RuntimeObject * __this /* static, unused */, float ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Convert_ToSByte_m3472794164_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
float L_0 = ___value0;
if ((((float)L_0) > ((float)(127.0f))))
{
goto IL_0016;
}
}
{
float L_1 = ___value0;
if ((!(((float)L_1) < ((float)(-128.0f)))))
{
goto IL_0026;
}
}
IL_0016:
{
String_t* L_2 = Locale_GetText_m3374010885(NULL /*static, unused*/, _stringLiteral2856141936, /*hidden argument*/NULL);
OverflowException_t2020128637 * L_3 = (OverflowException_t2020128637 *)il2cpp_codegen_object_new(OverflowException_t2020128637_il2cpp_TypeInfo_var);
OverflowException__ctor_m694321376(L_3, L_2, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3,Convert_ToSByte_m3472794164_RuntimeMethod_var);
}
IL_0026:
{
float L_4 = ___value0;
double L_5 = bankers_round((((double)((double)L_4))));
return (((int8_t)((int8_t)L_5)));
}
}
// System.SByte System.Convert::ToSByte(System.Int32)
extern "C" int8_t Convert_ToSByte_m2653418303 (RuntimeObject * __this /* static, unused */, int32_t ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Convert_ToSByte_m2653418303_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = ___value0;
if ((((int32_t)L_0) > ((int32_t)((int32_t)127))))
{
goto IL_0010;
}
}
{
int32_t L_1 = ___value0;
if ((((int32_t)L_1) >= ((int32_t)((int32_t)-128))))
{
goto IL_0020;
}
}
IL_0010:
{
String_t* L_2 = Locale_GetText_m3374010885(NULL /*static, unused*/, _stringLiteral1770622501, /*hidden argument*/NULL);
OverflowException_t2020128637 * L_3 = (OverflowException_t2020128637 *)il2cpp_codegen_object_new(OverflowException_t2020128637_il2cpp_TypeInfo_var);
OverflowException__ctor_m694321376(L_3, L_2, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3,Convert_ToSByte_m2653418303_RuntimeMethod_var);
}
IL_0020:
{
int32_t L_4 = ___value0;
return (((int8_t)((int8_t)L_4)));
}
}
// System.SByte System.Convert::ToSByte(System.Int64)
extern "C" int8_t Convert_ToSByte_m2653811524 (RuntimeObject * __this /* static, unused */, int64_t ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Convert_ToSByte_m2653811524_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int64_t L_0 = ___value0;
if ((((int64_t)L_0) > ((int64_t)(((int64_t)((int64_t)((int32_t)127)))))))
{
goto IL_0012;
}
}
{
int64_t L_1 = ___value0;
if ((((int64_t)L_1) >= ((int64_t)(((int64_t)((int64_t)((int32_t)-128)))))))
{
goto IL_0022;
}
}
IL_0012:
{
String_t* L_2 = Locale_GetText_m3374010885(NULL /*static, unused*/, _stringLiteral1770622501, /*hidden argument*/NULL);
OverflowException_t2020128637 * L_3 = (OverflowException_t2020128637 *)il2cpp_codegen_object_new(OverflowException_t2020128637_il2cpp_TypeInfo_var);
OverflowException__ctor_m694321376(L_3, L_2, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3,Convert_ToSByte_m2653811524_RuntimeMethod_var);
}
IL_0022:
{
int64_t L_4 = ___value0;
return (((int8_t)((int8_t)L_4)));
}
}
// System.SByte System.Convert::ToSByte(System.Int16)
extern "C" int8_t Convert_ToSByte_m2653680449 (RuntimeObject * __this /* static, unused */, int16_t ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Convert_ToSByte_m2653680449_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int16_t L_0 = ___value0;
if ((((int32_t)L_0) > ((int32_t)((int32_t)127))))
{
goto IL_0010;
}
}
{
int16_t L_1 = ___value0;
if ((((int32_t)L_1) >= ((int32_t)((int32_t)-128))))
{
goto IL_0020;
}
}
IL_0010:
{
String_t* L_2 = Locale_GetText_m3374010885(NULL /*static, unused*/, _stringLiteral1770622501, /*hidden argument*/NULL);
OverflowException_t2020128637 * L_3 = (OverflowException_t2020128637 *)il2cpp_codegen_object_new(OverflowException_t2020128637_il2cpp_TypeInfo_var);
OverflowException__ctor_m694321376(L_3, L_2, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3,Convert_ToSByte_m2653680449_RuntimeMethod_var);
}
IL_0020:
{
int16_t L_4 = ___value0;
return (((int8_t)((int8_t)L_4)));
}
}
// System.SByte System.Convert::ToSByte(System.String,System.IFormatProvider)
extern "C" int8_t Convert_ToSByte_m4075629912 (RuntimeObject * __this /* static, unused */, String_t* ___value0, RuntimeObject* ___provider1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Convert_ToSByte_m4075629912_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = ___value0;
if (L_0)
{
goto IL_0011;
}
}
{
ArgumentNullException_t1615371798 * L_1 = (ArgumentNullException_t1615371798 *)il2cpp_codegen_object_new(ArgumentNullException_t1615371798_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m1170824041(L_1, _stringLiteral3493618073, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1,Convert_ToSByte_m4075629912_RuntimeMethod_var);
}
IL_0011:
{
String_t* L_2 = ___value0;
RuntimeObject* L_3 = ___provider1;
int8_t L_4 = SByte_Parse_m3250497834(NULL /*static, unused*/, L_2, L_3, /*hidden argument*/NULL);
return L_4;
}
}
// System.SByte System.Convert::ToSByte(System.UInt32)
extern "C" int8_t Convert_ToSByte_m2486156346 (RuntimeObject * __this /* static, unused */, uint32_t ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Convert_ToSByte_m2486156346_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
uint32_t L_0 = ___value0;
if ((((int64_t)(((int64_t)((uint64_t)L_0)))) <= ((int64_t)(((int64_t)((int64_t)((int32_t)127)))))))
{
goto IL_001a;
}
}
{
String_t* L_1 = Locale_GetText_m3374010885(NULL /*static, unused*/, _stringLiteral661645146, /*hidden argument*/NULL);
OverflowException_t2020128637 * L_2 = (OverflowException_t2020128637 *)il2cpp_codegen_object_new(OverflowException_t2020128637_il2cpp_TypeInfo_var);
OverflowException__ctor_m694321376(L_2, L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2,Convert_ToSByte_m2486156346_RuntimeMethod_var);
}
IL_001a:
{
uint32_t L_3 = ___value0;
return (((int8_t)((int8_t)L_3)));
}
}
// System.SByte System.Convert::ToSByte(System.UInt64)
extern "C" int8_t Convert_ToSByte_m1679390684 (RuntimeObject * __this /* static, unused */, uint64_t ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Convert_ToSByte_m1679390684_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
uint64_t L_0 = ___value0;
if ((!(((uint64_t)L_0) > ((uint64_t)(((int64_t)((int64_t)((int32_t)127))))))))
{
goto IL_0019;
}
}
{
String_t* L_1 = Locale_GetText_m3374010885(NULL /*static, unused*/, _stringLiteral661645146, /*hidden argument*/NULL);
OverflowException_t2020128637 * L_2 = (OverflowException_t2020128637 *)il2cpp_codegen_object_new(OverflowException_t2020128637_il2cpp_TypeInfo_var);
OverflowException__ctor_m694321376(L_2, L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2,Convert_ToSByte_m1679390684_RuntimeMethod_var);
}
IL_0019:
{
uint64_t L_3 = ___value0;
return (((int8_t)((int8_t)L_3)));
}
}
// System.SByte System.Convert::ToSByte(System.UInt16)
extern "C" int8_t Convert_ToSByte_m516918950 (RuntimeObject * __this /* static, unused */, uint16_t ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Convert_ToSByte_m516918950_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
uint16_t L_0 = ___value0;
if ((((int32_t)L_0) <= ((int32_t)((int32_t)127))))
{
goto IL_0018;
}
}
{
String_t* L_1 = Locale_GetText_m3374010885(NULL /*static, unused*/, _stringLiteral661645146, /*hidden argument*/NULL);
OverflowException_t2020128637 * L_2 = (OverflowException_t2020128637 *)il2cpp_codegen_object_new(OverflowException_t2020128637_il2cpp_TypeInfo_var);
OverflowException__ctor_m694321376(L_2, L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2,Convert_ToSByte_m516918950_RuntimeMethod_var);
}
IL_0018:
{
uint16_t L_3 = ___value0;
return (((int8_t)((int8_t)L_3)));
}
}
// System.SByte System.Convert::ToSByte(System.Object,System.IFormatProvider)
extern "C" int8_t Convert_ToSByte_m4061885981 (RuntimeObject * __this /* static, unused */, RuntimeObject * ___value0, RuntimeObject* ___provider1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Convert_ToSByte_m4061885981_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject * L_0 = ___value0;
if (L_0)
{
goto IL_0008;
}
}
{
return (int8_t)0;
}
IL_0008:
{
RuntimeObject * L_1 = ___value0;
RuntimeObject* L_2 = ___provider1;
int8_t L_3 = InterfaceFuncInvoker1< int8_t, RuntimeObject* >::Invoke(9 /* System.SByte System.IConvertible::ToSByte(System.IFormatProvider) */, IConvertible_t2977365677_il2cpp_TypeInfo_var, ((RuntimeObject*)Castclass((RuntimeObject*)L_1, IConvertible_t2977365677_il2cpp_TypeInfo_var)), L_2);
return L_3;
}
}
// System.Single System.Convert::ToSingle(System.Boolean)
extern "C" float Convert_ToSingle_m1386109941 (RuntimeObject * __this /* static, unused */, bool ___value0, const RuntimeMethod* method)
{
int32_t G_B3_0 = 0;
{
bool L_0 = ___value0;
if (!L_0)
{
goto IL_000c;
}
}
{
G_B3_0 = 1;
goto IL_000d;
}
IL_000c:
{
G_B3_0 = 0;
}
IL_000d:
{
return (((float)((float)G_B3_0)));
}
}
// System.Single System.Convert::ToSingle(System.Byte)
extern "C" float Convert_ToSingle_m2769033141 (RuntimeObject * __this /* static, unused */, uint8_t ___value0, const RuntimeMethod* method)
{
{
uint8_t L_0 = ___value0;
return (((float)((float)L_0)));
}
}
// System.Single System.Convert::ToSingle(System.Decimal)
extern "C" float Convert_ToSingle_m1389817074 (RuntimeObject * __this /* static, unused */, Decimal_t2948259380 ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Convert_ToSingle_m1389817074_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Decimal_t2948259380 L_0 = ___value0;
IL2CPP_RUNTIME_CLASS_INIT(Decimal_t2948259380_il2cpp_TypeInfo_var);
float L_1 = Decimal_op_Explicit_m3488287464(NULL /*static, unused*/, L_0, /*hidden argument*/NULL);
return L_1;
}
}
// System.Single System.Convert::ToSingle(System.Double)
extern "C" float Convert_ToSingle_m3227075028 (RuntimeObject * __this /* static, unused */, double ___value0, const RuntimeMethod* method)
{
{
double L_0 = ___value0;
return (((float)((float)L_0)));
}
}
// System.Single System.Convert::ToSingle(System.Single)
extern "C" float Convert_ToSingle_m835189399 (RuntimeObject * __this /* static, unused */, float ___value0, const RuntimeMethod* method)
{
{
float L_0 = ___value0;
return L_0;
}
}
// System.Single System.Convert::ToSingle(System.Int32)
extern "C" float Convert_ToSingle_m3635698920 (RuntimeObject * __this /* static, unused */, int32_t ___value0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___value0;
return (((float)((float)L_0)));
}
}
// System.Single System.Convert::ToSingle(System.Int64)
extern "C" float Convert_ToSingle_m2891972375 (RuntimeObject * __this /* static, unused */, int64_t ___value0, const RuntimeMethod* method)
{
{
int64_t L_0 = ___value0;
return (((float)((float)L_0)));
}
}
// System.Single System.Convert::ToSingle(System.SByte)
extern "C" float Convert_ToSingle_m164367433 (RuntimeObject * __this /* static, unused */, int8_t ___value0, const RuntimeMethod* method)
{
{
int8_t L_0 = ___value0;
return (((float)((float)L_0)));
}
}
// System.Single System.Convert::ToSingle(System.Int16)
extern "C" float Convert_ToSingle_m4033824286 (RuntimeObject * __this /* static, unused */, int16_t ___value0, const RuntimeMethod* method)
{
{
int16_t L_0 = ___value0;
return (((float)((float)L_0)));
}
}
// System.Single System.Convert::ToSingle(System.String,System.IFormatProvider)
extern "C" float Convert_ToSingle_m2533452644 (RuntimeObject * __this /* static, unused */, String_t* ___value0, RuntimeObject* ___provider1, const RuntimeMethod* method)
{
{
String_t* L_0 = ___value0;
if (L_0)
{
goto IL_000c;
}
}
{
return (0.0f);
}
IL_000c:
{
String_t* L_1 = ___value0;
RuntimeObject* L_2 = ___provider1;
float L_3 = Single_Parse_m3840407583(NULL /*static, unused*/, L_1, L_2, /*hidden argument*/NULL);
return L_3;
}
}
// System.Single System.Convert::ToSingle(System.UInt32)
extern "C" float Convert_ToSingle_m3983149863 (RuntimeObject * __this /* static, unused */, uint32_t ___value0, const RuntimeMethod* method)
{
{
uint32_t L_0 = ___value0;
return (((float)((float)(((double)((uint32_t)L_0))))));
}
}
// System.Single System.Convert::ToSingle(System.UInt64)
extern "C" float Convert_ToSingle_m2791508777 (RuntimeObject * __this /* static, unused */, uint64_t ___value0, const RuntimeMethod* method)
{
{
uint64_t L_0 = ___value0;
return (((float)((float)(((double)((uint64_t)L_0))))));
}
}
// System.Single System.Convert::ToSingle(System.UInt16)
extern "C" float Convert_ToSingle_m3600812843 (RuntimeObject * __this /* static, unused */, uint16_t ___value0, const RuntimeMethod* method)
{
{
uint16_t L_0 = ___value0;
return (((float)((float)L_0)));
}
}
// System.Single System.Convert::ToSingle(System.Object,System.IFormatProvider)
extern "C" float Convert_ToSingle_m3605848385 (RuntimeObject * __this /* static, unused */, RuntimeObject * ___value0, RuntimeObject* ___provider1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Convert_ToSingle_m3605848385_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject * L_0 = ___value0;
if (L_0)
{
goto IL_000c;
}
}
{
return (0.0f);
}
IL_000c:
{
RuntimeObject * L_1 = ___value0;
RuntimeObject* L_2 = ___provider1;
float L_3 = InterfaceFuncInvoker1< float, RuntimeObject* >::Invoke(10 /* System.Single System.IConvertible::ToSingle(System.IFormatProvider) */, IConvertible_t2977365677_il2cpp_TypeInfo_var, ((RuntimeObject*)Castclass((RuntimeObject*)L_1, IConvertible_t2977365677_il2cpp_TypeInfo_var)), L_2);
return L_3;
}
}
// System.String System.Convert::ToString(System.Object)
extern "C" String_t* Convert_ToString_m2219349533 (RuntimeObject * __this /* static, unused */, RuntimeObject * ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Convert_ToString_m2219349533_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject * L_0 = ___value0;
IL2CPP_RUNTIME_CLASS_INIT(Convert_t2465617642_il2cpp_TypeInfo_var);
String_t* L_1 = Convert_ToString_m1854379141(NULL /*static, unused*/, L_0, (RuntimeObject*)NULL, /*hidden argument*/NULL);
return L_1;
}
}
// System.String System.Convert::ToString(System.Object,System.IFormatProvider)
extern "C" String_t* Convert_ToString_m1854379141 (RuntimeObject * __this /* static, unused */, RuntimeObject * ___value0, RuntimeObject* ___provider1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Convert_ToString_m1854379141_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject * L_0 = ___value0;
if (!((RuntimeObject*)IsInst((RuntimeObject*)L_0, IConvertible_t2977365677_il2cpp_TypeInfo_var)))
{
goto IL_0018;
}
}
{
RuntimeObject * L_1 = ___value0;
RuntimeObject* L_2 = ___provider1;
String_t* L_3 = InterfaceFuncInvoker1< String_t*, RuntimeObject* >::Invoke(11 /* System.String System.IConvertible::ToString(System.IFormatProvider) */, IConvertible_t2977365677_il2cpp_TypeInfo_var, ((RuntimeObject*)Castclass((RuntimeObject*)L_1, IConvertible_t2977365677_il2cpp_TypeInfo_var)), L_2);
return L_3;
}
IL_0018:
{
RuntimeObject * L_4 = ___value0;
if (!L_4)
{
goto IL_0025;
}
}
{
RuntimeObject * L_5 = ___value0;
String_t* L_6 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_5);
return L_6;
}
IL_0025:
{
IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
String_t* L_7 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_2();
return L_7;
}
}
// System.UInt16 System.Convert::ToUInt16(System.Boolean)
extern "C" uint16_t Convert_ToUInt16_m3116648921 (RuntimeObject * __this /* static, unused */, bool ___value0, const RuntimeMethod* method)
{
int32_t G_B3_0 = 0;
{
bool L_0 = ___value0;
if (!L_0)
{
goto IL_000c;
}
}
{
G_B3_0 = 1;
goto IL_000d;
}
IL_000c:
{
G_B3_0 = 0;
}
IL_000d:
{
return (uint16_t)(((int32_t)((uint16_t)G_B3_0)));
}
}
// System.UInt16 System.Convert::ToUInt16(System.Byte)
extern "C" uint16_t Convert_ToUInt16_m4064261444 (RuntimeObject * __this /* static, unused */, uint8_t ___value0, const RuntimeMethod* method)
{
{
uint8_t L_0 = ___value0;
return L_0;
}
}
// System.UInt16 System.Convert::ToUInt16(System.Char)
extern "C" uint16_t Convert_ToUInt16_m2952781888 (RuntimeObject * __this /* static, unused */, Il2CppChar ___value0, const RuntimeMethod* method)
{
{
Il2CppChar L_0 = ___value0;
return L_0;
}
}
// System.UInt16 System.Convert::ToUInt16(System.Decimal)
extern "C" uint16_t Convert_ToUInt16_m867476252 (RuntimeObject * __this /* static, unused */, Decimal_t2948259380 ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Convert_ToUInt16_m867476252_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Decimal_t2948259380 L_0 = ___value0;
Decimal_t2948259380 L_1;
memset(&L_1, 0, sizeof(L_1));
Decimal__ctor_m1256289983((&L_1), ((int32_t)65535), /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Decimal_t2948259380_il2cpp_TypeInfo_var);
bool L_2 = Decimal_op_GreaterThan_m627311519(NULL /*static, unused*/, L_0, L_1, /*hidden argument*/NULL);
if (L_2)
{
goto IL_0026;
}
}
{
Decimal_t2948259380 L_3 = ___value0;
Decimal_t2948259380 L_4;
memset(&L_4, 0, sizeof(L_4));
Decimal__ctor_m1256289983((&L_4), 0, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Decimal_t2948259380_il2cpp_TypeInfo_var);
bool L_5 = Decimal_op_LessThan_m1273833514(NULL /*static, unused*/, L_3, L_4, /*hidden argument*/NULL);
if (!L_5)
{
goto IL_0036;
}
}
IL_0026:
{
String_t* L_6 = Locale_GetText_m3374010885(NULL /*static, unused*/, _stringLiteral588587340, /*hidden argument*/NULL);
OverflowException_t2020128637 * L_7 = (OverflowException_t2020128637 *)il2cpp_codegen_object_new(OverflowException_t2020128637_il2cpp_TypeInfo_var);
OverflowException__ctor_m694321376(L_7, L_6, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_7,Convert_ToUInt16_m867476252_RuntimeMethod_var);
}
IL_0036:
{
Decimal_t2948259380 L_8 = ___value0;
Decimal_t2948259380 L_9 = Math_Round_m3018379666(NULL /*static, unused*/, L_8, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Decimal_t2948259380_il2cpp_TypeInfo_var);
uint16_t L_10 = Decimal_op_Explicit_m3716368008(NULL /*static, unused*/, L_9, /*hidden argument*/NULL);
return L_10;
}
}
// System.UInt16 System.Convert::ToUInt16(System.Double)
extern "C" uint16_t Convert_ToUInt16_m3523269149 (RuntimeObject * __this /* static, unused */, double ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Convert_ToUInt16_m3523269149_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
double L_0 = ___value0;
if ((((double)L_0) > ((double)(65535.0))))
{
goto IL_001e;
}
}
{
double L_1 = ___value0;
if ((!(((double)L_1) < ((double)(0.0)))))
{
goto IL_002e;
}
}
IL_001e:
{
String_t* L_2 = Locale_GetText_m3374010885(NULL /*static, unused*/, _stringLiteral588587340, /*hidden argument*/NULL);
OverflowException_t2020128637 * L_3 = (OverflowException_t2020128637 *)il2cpp_codegen_object_new(OverflowException_t2020128637_il2cpp_TypeInfo_var);
OverflowException__ctor_m694321376(L_3, L_2, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3,Convert_ToUInt16_m3523269149_RuntimeMethod_var);
}
IL_002e:
{
double L_4 = ___value0;
double L_5 = bankers_round(L_4);
return (uint16_t)(((int32_t)((uint16_t)L_5)));
}
}
// System.UInt16 System.Convert::ToUInt16(System.Single)
extern "C" uint16_t Convert_ToUInt16_m2185524030 (RuntimeObject * __this /* static, unused */, float ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Convert_ToUInt16_m2185524030_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
float L_0 = ___value0;
if ((((float)L_0) > ((float)(65535.0f))))
{
goto IL_0016;
}
}
{
float L_1 = ___value0;
if ((!(((float)L_1) < ((float)(0.0f)))))
{
goto IL_0026;
}
}
IL_0016:
{
String_t* L_2 = Locale_GetText_m3374010885(NULL /*static, unused*/, _stringLiteral588587340, /*hidden argument*/NULL);
OverflowException_t2020128637 * L_3 = (OverflowException_t2020128637 *)il2cpp_codegen_object_new(OverflowException_t2020128637_il2cpp_TypeInfo_var);
OverflowException__ctor_m694321376(L_3, L_2, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3,Convert_ToUInt16_m2185524030_RuntimeMethod_var);
}
IL_0026:
{
float L_4 = ___value0;
double L_5 = bankers_round((((double)((double)L_4))));
return (uint16_t)(((int32_t)((uint16_t)L_5)));
}
}
// System.UInt16 System.Convert::ToUInt16(System.Int32)
extern "C" uint16_t Convert_ToUInt16_m3515425647 (RuntimeObject * __this /* static, unused */, int32_t ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Convert_ToUInt16_m3515425647_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = ___value0;
if ((((int32_t)L_0) > ((int32_t)((int32_t)65535))))
{
goto IL_0012;
}
}
{
int32_t L_1 = ___value0;
if ((((int32_t)L_1) >= ((int32_t)0)))
{
goto IL_0022;
}
}
IL_0012:
{
String_t* L_2 = Locale_GetText_m3374010885(NULL /*static, unused*/, _stringLiteral588587340, /*hidden argument*/NULL);
OverflowException_t2020128637 * L_3 = (OverflowException_t2020128637 *)il2cpp_codegen_object_new(OverflowException_t2020128637_il2cpp_TypeInfo_var);
OverflowException__ctor_m694321376(L_3, L_2, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3,Convert_ToUInt16_m3515425647_RuntimeMethod_var);
}
IL_0022:
{
int32_t L_4 = ___value0;
return (uint16_t)(((int32_t)((uint16_t)L_4)));
}
}
// System.UInt16 System.Convert::ToUInt16(System.Int64)
extern "C" uint16_t Convert_ToUInt16_m3902921832 (RuntimeObject * __this /* static, unused */, int64_t ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Convert_ToUInt16_m3902921832_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int64_t L_0 = ___value0;
if ((((int64_t)L_0) > ((int64_t)(((int64_t)((int64_t)((int32_t)65535)))))))
{
goto IL_0014;
}
}
{
int64_t L_1 = ___value0;
if ((((int64_t)L_1) >= ((int64_t)(((int64_t)((int64_t)0))))))
{
goto IL_0024;
}
}
IL_0014:
{
String_t* L_2 = Locale_GetText_m3374010885(NULL /*static, unused*/, _stringLiteral588587340, /*hidden argument*/NULL);
OverflowException_t2020128637 * L_3 = (OverflowException_t2020128637 *)il2cpp_codegen_object_new(OverflowException_t2020128637_il2cpp_TypeInfo_var);
OverflowException__ctor_m694321376(L_3, L_2, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3,Convert_ToUInt16_m3902921832_RuntimeMethod_var);
}
IL_0024:
{
int64_t L_4 = ___value0;
return (uint16_t)(((int32_t)((uint16_t)L_4)));
}
}
// System.UInt16 System.Convert::ToUInt16(System.SByte)
extern "C" uint16_t Convert_ToUInt16_m3736443170 (RuntimeObject * __this /* static, unused */, int8_t ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Convert_ToUInt16_m3736443170_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int8_t L_0 = ___value0;
if ((((int32_t)(((int32_t)((int32_t)L_0)))) >= ((int32_t)0)))
{
goto IL_0018;
}
}
{
String_t* L_1 = Locale_GetText_m3374010885(NULL /*static, unused*/, _stringLiteral2375818832, /*hidden argument*/NULL);
OverflowException_t2020128637 * L_2 = (OverflowException_t2020128637 *)il2cpp_codegen_object_new(OverflowException_t2020128637_il2cpp_TypeInfo_var);
OverflowException__ctor_m694321376(L_2, L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2,Convert_ToUInt16_m3736443170_RuntimeMethod_var);
}
IL_0018:
{
int8_t L_3 = ___value0;
return (uint16_t)(((int32_t)((uint16_t)L_3)));
}
}
// System.UInt16 System.Convert::ToUInt16(System.Int16)
extern "C" uint16_t Convert_ToUInt16_m1147931813 (RuntimeObject * __this /* static, unused */, int16_t ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Convert_ToUInt16_m1147931813_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int16_t L_0 = ___value0;
if ((((int32_t)L_0) >= ((int32_t)0)))
{
goto IL_0017;
}
}
{
String_t* L_1 = Locale_GetText_m3374010885(NULL /*static, unused*/, _stringLiteral2375818832, /*hidden argument*/NULL);
OverflowException_t2020128637 * L_2 = (OverflowException_t2020128637 *)il2cpp_codegen_object_new(OverflowException_t2020128637_il2cpp_TypeInfo_var);
OverflowException__ctor_m694321376(L_2, L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2,Convert_ToUInt16_m1147931813_RuntimeMethod_var);
}
IL_0017:
{
int16_t L_3 = ___value0;
return (uint16_t)(((int32_t)((uint16_t)L_3)));
}
}
// System.UInt16 System.Convert::ToUInt16(System.String,System.IFormatProvider)
extern "C" uint16_t Convert_ToUInt16_m3216249716 (RuntimeObject * __this /* static, unused */, String_t* ___value0, RuntimeObject* ___provider1, const RuntimeMethod* method)
{
{
String_t* L_0 = ___value0;
if (L_0)
{
goto IL_0008;
}
}
{
return (uint16_t)0;
}
IL_0008:
{
String_t* L_1 = ___value0;
RuntimeObject* L_2 = ___provider1;
uint16_t L_3 = UInt16_Parse_m1613088384(NULL /*static, unused*/, L_1, L_2, /*hidden argument*/NULL);
return L_3;
}
}
// System.UInt16 System.Convert::ToUInt16(System.UInt32)
extern "C" uint16_t Convert_ToUInt16_m1480956416 (RuntimeObject * __this /* static, unused */, uint32_t ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Convert_ToUInt16_m1480956416_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
uint32_t L_0 = ___value0;
if ((!(((uint32_t)L_0) > ((uint32_t)((int32_t)65535)))))
{
goto IL_001b;
}
}
{
String_t* L_1 = Locale_GetText_m3374010885(NULL /*static, unused*/, _stringLiteral3910897868, /*hidden argument*/NULL);
OverflowException_t2020128637 * L_2 = (OverflowException_t2020128637 *)il2cpp_codegen_object_new(OverflowException_t2020128637_il2cpp_TypeInfo_var);
OverflowException__ctor_m694321376(L_2, L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2,Convert_ToUInt16_m1480956416_RuntimeMethod_var);
}
IL_001b:
{
uint32_t L_3 = ___value0;
return (uint16_t)(((int32_t)((uint16_t)L_3)));
}
}
// System.UInt16 System.Convert::ToUInt16(System.UInt64)
extern "C" uint16_t Convert_ToUInt16_m2672597498 (RuntimeObject * __this /* static, unused */, uint64_t ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Convert_ToUInt16_m2672597498_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
uint64_t L_0 = ___value0;
if ((!(((uint64_t)L_0) > ((uint64_t)(((int64_t)((int64_t)((int32_t)65535))))))))
{
goto IL_001c;
}
}
{
String_t* L_1 = Locale_GetText_m3374010885(NULL /*static, unused*/, _stringLiteral3910897868, /*hidden argument*/NULL);
OverflowException_t2020128637 * L_2 = (OverflowException_t2020128637 *)il2cpp_codegen_object_new(OverflowException_t2020128637_il2cpp_TypeInfo_var);
OverflowException__ctor_m694321376(L_2, L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2,Convert_ToUInt16_m2672597498_RuntimeMethod_var);
}
IL_001c:
{
uint64_t L_3 = ___value0;
return (uint16_t)(((int32_t)((uint16_t)L_3)));
}
}
// System.UInt16 System.Convert::ToUInt16(System.Object,System.IFormatProvider)
extern "C" uint16_t Convert_ToUInt16_m4211508274 (RuntimeObject * __this /* static, unused */, RuntimeObject * ___value0, RuntimeObject* ___provider1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Convert_ToUInt16_m4211508274_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject * L_0 = ___value0;
if (L_0)
{
goto IL_0008;
}
}
{
return (uint16_t)0;
}
IL_0008:
{
RuntimeObject * L_1 = ___value0;
RuntimeObject* L_2 = ___provider1;
uint16_t L_3 = InterfaceFuncInvoker1< uint16_t, RuntimeObject* >::Invoke(13 /* System.UInt16 System.IConvertible::ToUInt16(System.IFormatProvider) */, IConvertible_t2977365677_il2cpp_TypeInfo_var, ((RuntimeObject*)Castclass((RuntimeObject*)L_1, IConvertible_t2977365677_il2cpp_TypeInfo_var)), L_2);
return L_3;
}
}
// System.UInt32 System.Convert::ToUInt32(System.Boolean)
extern "C" uint32_t Convert_ToUInt32_m835119716 (RuntimeObject * __this /* static, unused */, bool ___value0, const RuntimeMethod* method)
{
int32_t G_B3_0 = 0;
{
bool L_0 = ___value0;
if (!L_0)
{
goto IL_000c;
}
}
{
G_B3_0 = 1;
goto IL_000d;
}
IL_000c:
{
G_B3_0 = 0;
}
IL_000d:
{
return G_B3_0;
}
}
// System.UInt32 System.Convert::ToUInt32(System.Byte)
extern "C" uint32_t Convert_ToUInt32_m360864467 (RuntimeObject * __this /* static, unused */, uint8_t ___value0, const RuntimeMethod* method)
{
{
uint8_t L_0 = ___value0;
return L_0;
}
}
// System.UInt32 System.Convert::ToUInt32(System.Char)
extern "C" uint32_t Convert_ToUInt32_m3188121845 (RuntimeObject * __this /* static, unused */, Il2CppChar ___value0, const RuntimeMethod* method)
{
{
Il2CppChar L_0 = ___value0;
return L_0;
}
}
// System.UInt32 System.Convert::ToUInt32(System.Decimal)
extern "C" uint32_t Convert_ToUInt32_m3622072499 (RuntimeObject * __this /* static, unused */, Decimal_t2948259380 ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Convert_ToUInt32_m3622072499_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Decimal_t2948259380 L_0 = ___value0;
Decimal_t2948259380 L_1;
memset(&L_1, 0, sizeof(L_1));
Decimal__ctor_m3650533794((&L_1), (-1), 0, 0, (bool)0, (uint8_t)0, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Decimal_t2948259380_il2cpp_TypeInfo_var);
bool L_2 = Decimal_op_GreaterThan_m627311519(NULL /*static, unused*/, L_0, L_1, /*hidden argument*/NULL);
if (L_2)
{
goto IL_0026;
}
}
{
Decimal_t2948259380 L_3 = ___value0;
Decimal_t2948259380 L_4;
memset(&L_4, 0, sizeof(L_4));
Decimal__ctor_m1256289983((&L_4), 0, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Decimal_t2948259380_il2cpp_TypeInfo_var);
bool L_5 = Decimal_op_LessThan_m1273833514(NULL /*static, unused*/, L_3, L_4, /*hidden argument*/NULL);
if (!L_5)
{
goto IL_0036;
}
}
IL_0026:
{
String_t* L_6 = Locale_GetText_m3374010885(NULL /*static, unused*/, _stringLiteral894538182, /*hidden argument*/NULL);
OverflowException_t2020128637 * L_7 = (OverflowException_t2020128637 *)il2cpp_codegen_object_new(OverflowException_t2020128637_il2cpp_TypeInfo_var);
OverflowException__ctor_m694321376(L_7, L_6, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_7,Convert_ToUInt32_m3622072499_RuntimeMethod_var);
}
IL_0036:
{
Decimal_t2948259380 L_8 = ___value0;
Decimal_t2948259380 L_9 = Math_Round_m3018379666(NULL /*static, unused*/, L_8, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Decimal_t2948259380_il2cpp_TypeInfo_var);
uint32_t L_10 = Decimal_op_Explicit_m1639916169(NULL /*static, unused*/, L_9, /*hidden argument*/NULL);
return L_10;
}
}
// System.UInt32 System.Convert::ToUInt32(System.Double)
extern "C" uint32_t Convert_ToUInt32_m1453583008 (RuntimeObject * __this /* static, unused */, double ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Convert_ToUInt32_m1453583008_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
double L_0 = ___value0;
if ((((double)L_0) > ((double)(4294967295.0))))
{
goto IL_001e;
}
}
{
double L_1 = ___value0;
if ((!(((double)L_1) < ((double)(0.0)))))
{
goto IL_002e;
}
}
IL_001e:
{
String_t* L_2 = Locale_GetText_m3374010885(NULL /*static, unused*/, _stringLiteral894538182, /*hidden argument*/NULL);
OverflowException_t2020128637 * L_3 = (OverflowException_t2020128637 *)il2cpp_codegen_object_new(OverflowException_t2020128637_il2cpp_TypeInfo_var);
OverflowException__ctor_m694321376(L_3, L_2, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3,Convert_ToUInt32_m1453583008_RuntimeMethod_var);
}
IL_002e:
{
double L_4 = ___value0;
double L_5 = bankers_round(L_4);
return (((int32_t)((uint32_t)L_5)));
}
}
// System.UInt32 System.Convert::ToUInt32(System.Single)
extern "C" uint32_t Convert_ToUInt32_m2045194461 (RuntimeObject * __this /* static, unused */, float ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Convert_ToUInt32_m2045194461_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
float L_0 = ___value0;
if ((((float)L_0) > ((float)(4.2949673E+09f))))
{
goto IL_0016;
}
}
{
float L_1 = ___value0;
if ((!(((float)L_1) < ((float)(0.0f)))))
{
goto IL_0026;
}
}
IL_0016:
{
String_t* L_2 = Locale_GetText_m3374010885(NULL /*static, unused*/, _stringLiteral894538182, /*hidden argument*/NULL);
OverflowException_t2020128637 * L_3 = (OverflowException_t2020128637 *)il2cpp_codegen_object_new(OverflowException_t2020128637_il2cpp_TypeInfo_var);
OverflowException__ctor_m694321376(L_3, L_2, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3,Convert_ToUInt32_m2045194461_RuntimeMethod_var);
}
IL_0026:
{
float L_4 = ___value0;
double L_5 = bankers_round((((double)((double)L_4))));
return (((int32_t)((uint32_t)L_5)));
}
}
// System.UInt32 System.Convert::ToUInt32(System.Int32)
extern "C" uint32_t Convert_ToUInt32_m2215525276 (RuntimeObject * __this /* static, unused */, int32_t ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Convert_ToUInt32_m2215525276_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = ___value0;
if ((((int64_t)(((int64_t)((int64_t)L_0)))) >= ((int64_t)(((int64_t)((int64_t)0))))))
{
goto IL_0019;
}
}
{
String_t* L_1 = Locale_GetText_m3374010885(NULL /*static, unused*/, _stringLiteral2580672812, /*hidden argument*/NULL);
OverflowException_t2020128637 * L_2 = (OverflowException_t2020128637 *)il2cpp_codegen_object_new(OverflowException_t2020128637_il2cpp_TypeInfo_var);
OverflowException__ctor_m694321376(L_2, L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2,Convert_ToUInt32_m2215525276_RuntimeMethod_var);
}
IL_0019:
{
int32_t L_3 = ___value0;
return L_3;
}
}
// System.UInt32 System.Convert::ToUInt32(System.Int64)
extern "C" uint32_t Convert_ToUInt32_m2194577773 (RuntimeObject * __this /* static, unused */, int64_t ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Convert_ToUInt32_m2194577773_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int64_t L_0 = ___value0;
if ((((int64_t)L_0) > ((int64_t)(((int64_t)((uint64_t)(((uint32_t)((uint32_t)(-1))))))))))
{
goto IL_0010;
}
}
{
int64_t L_1 = ___value0;
if ((((int64_t)L_1) >= ((int64_t)(((int64_t)((int64_t)0))))))
{
goto IL_0020;
}
}
IL_0010:
{
String_t* L_2 = Locale_GetText_m3374010885(NULL /*static, unused*/, _stringLiteral894538182, /*hidden argument*/NULL);
OverflowException_t2020128637 * L_3 = (OverflowException_t2020128637 *)il2cpp_codegen_object_new(OverflowException_t2020128637_il2cpp_TypeInfo_var);
OverflowException__ctor_m694321376(L_3, L_2, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3,Convert_ToUInt32_m2194577773_RuntimeMethod_var);
}
IL_0020:
{
int64_t L_4 = ___value0;
return (((int32_t)((uint32_t)L_4)));
}
}
// System.UInt32 System.Convert::ToUInt32(System.SByte)
extern "C" uint32_t Convert_ToUInt32_m3592050311 (RuntimeObject * __this /* static, unused */, int8_t ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Convert_ToUInt32_m3592050311_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int8_t L_0 = ___value0;
if ((((int64_t)(((int64_t)((int64_t)L_0)))) >= ((int64_t)(((int64_t)((int64_t)0))))))
{
goto IL_0019;
}
}
{
String_t* L_1 = Locale_GetText_m3374010885(NULL /*static, unused*/, _stringLiteral2580672812, /*hidden argument*/NULL);
OverflowException_t2020128637 * L_2 = (OverflowException_t2020128637 *)il2cpp_codegen_object_new(OverflowException_t2020128637_il2cpp_TypeInfo_var);
OverflowException__ctor_m694321376(L_2, L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2,Convert_ToUInt32_m3592050311_RuntimeMethod_var);
}
IL_0019:
{
int8_t L_3 = ___value0;
return (((int32_t)((uint32_t)L_3)));
}
}
// System.UInt32 System.Convert::ToUInt32(System.Int16)
extern "C" uint32_t Convert_ToUInt32_m4142998738 (RuntimeObject * __this /* static, unused */, int16_t ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Convert_ToUInt32_m4142998738_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int16_t L_0 = ___value0;
if ((((int64_t)(((int64_t)((int64_t)L_0)))) >= ((int64_t)(((int64_t)((int64_t)0))))))
{
goto IL_0019;
}
}
{
String_t* L_1 = Locale_GetText_m3374010885(NULL /*static, unused*/, _stringLiteral2580672812, /*hidden argument*/NULL);
OverflowException_t2020128637 * L_2 = (OverflowException_t2020128637 *)il2cpp_codegen_object_new(OverflowException_t2020128637_il2cpp_TypeInfo_var);
OverflowException__ctor_m694321376(L_2, L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2,Convert_ToUInt32_m4142998738_RuntimeMethod_var);
}
IL_0019:
{
int16_t L_3 = ___value0;
return (((int32_t)((uint32_t)L_3)));
}
}
// System.UInt32 System.Convert::ToUInt32(System.String,System.IFormatProvider)
extern "C" uint32_t Convert_ToUInt32_m3920761395 (RuntimeObject * __this /* static, unused */, String_t* ___value0, RuntimeObject* ___provider1, const RuntimeMethod* method)
{
{
String_t* L_0 = ___value0;
if (L_0)
{
goto IL_0008;
}
}
{
return 0;
}
IL_0008:
{
String_t* L_1 = ___value0;
RuntimeObject* L_2 = ___provider1;
uint32_t L_3 = UInt32_Parse_m1373460382(NULL /*static, unused*/, L_1, L_2, /*hidden argument*/NULL);
return L_3;
}
}
// System.UInt32 System.Convert::ToUInt32(System.UInt64)
extern "C" uint32_t Convert_ToUInt32_m1767593911 (RuntimeObject * __this /* static, unused */, uint64_t ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Convert_ToUInt32_m1767593911_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
uint64_t L_0 = ___value0;
if ((!(((uint64_t)L_0) > ((uint64_t)(((int64_t)((uint64_t)(((uint32_t)((uint32_t)(-1)))))))))))
{
goto IL_0018;
}
}
{
String_t* L_1 = Locale_GetText_m3374010885(NULL /*static, unused*/, _stringLiteral3367608834, /*hidden argument*/NULL);
OverflowException_t2020128637 * L_2 = (OverflowException_t2020128637 *)il2cpp_codegen_object_new(OverflowException_t2020128637_il2cpp_TypeInfo_var);
OverflowException__ctor_m694321376(L_2, L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2,Convert_ToUInt32_m1767593911_RuntimeMethod_var);
}
IL_0018:
{
uint64_t L_3 = ___value0;
return (((int32_t)((uint32_t)L_3)));
}
}
// System.UInt32 System.Convert::ToUInt32(System.UInt16)
extern "C" uint32_t Convert_ToUInt32_m193615797 (RuntimeObject * __this /* static, unused */, uint16_t ___value0, const RuntimeMethod* method)
{
{
uint16_t L_0 = ___value0;
return L_0;
}
}
// System.UInt32 System.Convert::ToUInt32(System.Object,System.IFormatProvider)
extern "C" uint32_t Convert_ToUInt32_m2061619287 (RuntimeObject * __this /* static, unused */, RuntimeObject * ___value0, RuntimeObject* ___provider1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Convert_ToUInt32_m2061619287_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject * L_0 = ___value0;
if (L_0)
{
goto IL_0008;
}
}
{
return 0;
}
IL_0008:
{
RuntimeObject * L_1 = ___value0;
RuntimeObject* L_2 = ___provider1;
uint32_t L_3 = InterfaceFuncInvoker1< uint32_t, RuntimeObject* >::Invoke(14 /* System.UInt32 System.IConvertible::ToUInt32(System.IFormatProvider) */, IConvertible_t2977365677_il2cpp_TypeInfo_var, ((RuntimeObject*)Castclass((RuntimeObject*)L_1, IConvertible_t2977365677_il2cpp_TypeInfo_var)), L_2);
return L_3;
}
}
// System.UInt64 System.Convert::ToUInt64(System.Boolean)
extern "C" uint64_t Convert_ToUInt64_m2343585091 (RuntimeObject * __this /* static, unused */, bool ___value0, const RuntimeMethod* method)
{
int32_t G_B3_0 = 0;
{
bool L_0 = ___value0;
if (!L_0)
{
goto IL_000c;
}
}
{
G_B3_0 = 1;
goto IL_000d;
}
IL_000c:
{
G_B3_0 = 0;
}
IL_000d:
{
return (((int64_t)((int64_t)G_B3_0)));
}
}
// System.UInt64 System.Convert::ToUInt64(System.Byte)
extern "C" uint64_t Convert_ToUInt64_m2652538228 (RuntimeObject * __this /* static, unused */, uint8_t ___value0, const RuntimeMethod* method)
{
{
uint8_t L_0 = ___value0;
return (((int64_t)((uint64_t)L_0)));
}
}
// System.UInt64 System.Convert::ToUInt64(System.Char)
extern "C" uint64_t Convert_ToUInt64_m3102114524 (RuntimeObject * __this /* static, unused */, Il2CppChar ___value0, const RuntimeMethod* method)
{
{
Il2CppChar L_0 = ___value0;
return (((int64_t)((uint64_t)L_0)));
}
}
// System.UInt64 System.Convert::ToUInt64(System.Decimal)
extern "C" uint64_t Convert_ToUInt64_m92315402 (RuntimeObject * __this /* static, unused */, Decimal_t2948259380 ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Convert_ToUInt64_m92315402_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Decimal_t2948259380 L_0 = ___value0;
Decimal_t2948259380 L_1;
memset(&L_1, 0, sizeof(L_1));
Decimal__ctor_m3650533794((&L_1), (-1), (-1), 0, (bool)0, (uint8_t)0, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Decimal_t2948259380_il2cpp_TypeInfo_var);
bool L_2 = Decimal_op_GreaterThan_m627311519(NULL /*static, unused*/, L_0, L_1, /*hidden argument*/NULL);
if (L_2)
{
goto IL_0026;
}
}
{
Decimal_t2948259380 L_3 = ___value0;
Decimal_t2948259380 L_4;
memset(&L_4, 0, sizeof(L_4));
Decimal__ctor_m1256289983((&L_4), 0, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Decimal_t2948259380_il2cpp_TypeInfo_var);
bool L_5 = Decimal_op_LessThan_m1273833514(NULL /*static, unused*/, L_3, L_4, /*hidden argument*/NULL);
if (!L_5)
{
goto IL_0036;
}
}
IL_0026:
{
String_t* L_6 = Locale_GetText_m3374010885(NULL /*static, unused*/, _stringLiteral2015603325, /*hidden argument*/NULL);
OverflowException_t2020128637 * L_7 = (OverflowException_t2020128637 *)il2cpp_codegen_object_new(OverflowException_t2020128637_il2cpp_TypeInfo_var);
OverflowException__ctor_m694321376(L_7, L_6, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_7,Convert_ToUInt64_m92315402_RuntimeMethod_var);
}
IL_0036:
{
Decimal_t2948259380 L_8 = ___value0;
Decimal_t2948259380 L_9 = Math_Round_m3018379666(NULL /*static, unused*/, L_8, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Decimal_t2948259380_il2cpp_TypeInfo_var);
uint64_t L_10 = Decimal_op_Explicit_m1503081942(NULL /*static, unused*/, L_9, /*hidden argument*/NULL);
return L_10;
}
}
// System.UInt64 System.Convert::ToUInt64(System.Double)
extern "C" uint64_t Convert_ToUInt64_m1433697267 (RuntimeObject * __this /* static, unused */, double ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Convert_ToUInt64_m1433697267_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
double L_0 = ___value0;
if ((((double)L_0) > ((double)(1.8446744073709552E+19))))
{
goto IL_001e;
}
}
{
double L_1 = ___value0;
if ((!(((double)L_1) < ((double)(0.0)))))
{
goto IL_002e;
}
}
IL_001e:
{
String_t* L_2 = Locale_GetText_m3374010885(NULL /*static, unused*/, _stringLiteral2015603325, /*hidden argument*/NULL);
OverflowException_t2020128637 * L_3 = (OverflowException_t2020128637 *)il2cpp_codegen_object_new(OverflowException_t2020128637_il2cpp_TypeInfo_var);
OverflowException__ctor_m694321376(L_3, L_2, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3,Convert_ToUInt64_m1433697267_RuntimeMethod_var);
}
IL_002e:
{
double L_4 = ___value0;
double L_5 = bankers_round(L_4);
return (((int64_t)((uint64_t)L_5)));
}
}
// System.UInt64 System.Convert::ToUInt64(System.Single)
extern "C" uint64_t Convert_ToUInt64_m1627266664 (RuntimeObject * __this /* static, unused */, float ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Convert_ToUInt64_m1627266664_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
float L_0 = ___value0;
if ((((float)L_0) > ((float)(1.84467441E+19f))))
{
goto IL_0016;
}
}
{
float L_1 = ___value0;
if ((!(((float)L_1) < ((float)(0.0f)))))
{
goto IL_0026;
}
}
IL_0016:
{
String_t* L_2 = Locale_GetText_m3374010885(NULL /*static, unused*/, _stringLiteral2015603325, /*hidden argument*/NULL);
OverflowException_t2020128637 * L_3 = (OverflowException_t2020128637 *)il2cpp_codegen_object_new(OverflowException_t2020128637_il2cpp_TypeInfo_var);
OverflowException__ctor_m694321376(L_3, L_2, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3,Convert_ToUInt64_m1627266664_RuntimeMethod_var);
}
IL_0026:
{
float L_4 = ___value0;
double L_5 = bankers_round((((double)((double)L_4))));
return (((int64_t)((uint64_t)L_5)));
}
}
// System.UInt64 System.Convert::ToUInt64(System.Int32)
extern "C" uint64_t Convert_ToUInt64_m786726853 (RuntimeObject * __this /* static, unused */, int32_t ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Convert_ToUInt64_m786726853_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = ___value0;
if ((((int32_t)L_0) >= ((int32_t)0)))
{
goto IL_0017;
}
}
{
String_t* L_1 = Locale_GetText_m3374010885(NULL /*static, unused*/, _stringLiteral2977630634, /*hidden argument*/NULL);
OverflowException_t2020128637 * L_2 = (OverflowException_t2020128637 *)il2cpp_codegen_object_new(OverflowException_t2020128637_il2cpp_TypeInfo_var);
OverflowException__ctor_m694321376(L_2, L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2,Convert_ToUInt64_m786726853_RuntimeMethod_var);
}
IL_0017:
{
int32_t L_3 = ___value0;
return (((int64_t)((int64_t)L_3)));
}
}
// System.UInt64 System.Convert::ToUInt64(System.Int64)
extern "C" uint64_t Convert_ToUInt64_m409548990 (RuntimeObject * __this /* static, unused */, int64_t ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Convert_ToUInt64_m409548990_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int64_t L_0 = ___value0;
if ((((int64_t)L_0) >= ((int64_t)(((int64_t)((int64_t)0))))))
{
goto IL_0018;
}
}
{
String_t* L_1 = Locale_GetText_m3374010885(NULL /*static, unused*/, _stringLiteral2977630634, /*hidden argument*/NULL);
OverflowException_t2020128637 * L_2 = (OverflowException_t2020128637 *)il2cpp_codegen_object_new(OverflowException_t2020128637_il2cpp_TypeInfo_var);
OverflowException__ctor_m694321376(L_2, L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2,Convert_ToUInt64_m409548990_RuntimeMethod_var);
}
IL_0018:
{
int64_t L_3 = ___value0;
return L_3;
}
}
// System.UInt64 System.Convert::ToUInt64(System.SByte)
extern "C" uint64_t Convert_ToUInt64_m473526756 (RuntimeObject * __this /* static, unused */, int8_t ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Convert_ToUInt64_m473526756_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int8_t L_0 = ___value0;
if ((((int32_t)(((int32_t)((int32_t)L_0)))) >= ((int32_t)0)))
{
goto IL_0013;
}
}
{
OverflowException_t2020128637 * L_1 = (OverflowException_t2020128637 *)il2cpp_codegen_object_new(OverflowException_t2020128637_il2cpp_TypeInfo_var);
OverflowException__ctor_m694321376(L_1, _stringLiteral2977630634, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1,Convert_ToUInt64_m473526756_RuntimeMethod_var);
}
IL_0013:
{
int8_t L_2 = ___value0;
return (((int64_t)((int64_t)L_2)));
}
}
// System.UInt64 System.Convert::ToUInt64(System.Int16)
extern "C" uint64_t Convert_ToUInt64_m388601487 (RuntimeObject * __this /* static, unused */, int16_t ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Convert_ToUInt64_m388601487_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int16_t L_0 = ___value0;
if ((((int32_t)L_0) >= ((int32_t)0)))
{
goto IL_0017;
}
}
{
String_t* L_1 = Locale_GetText_m3374010885(NULL /*static, unused*/, _stringLiteral2977630634, /*hidden argument*/NULL);
OverflowException_t2020128637 * L_2 = (OverflowException_t2020128637 *)il2cpp_codegen_object_new(OverflowException_t2020128637_il2cpp_TypeInfo_var);
OverflowException__ctor_m694321376(L_2, L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2,Convert_ToUInt64_m388601487_RuntimeMethod_var);
}
IL_0017:
{
int16_t L_3 = ___value0;
return (((int64_t)((int64_t)L_3)));
}
}
// System.UInt64 System.Convert::ToUInt64(System.String,System.IFormatProvider)
extern "C" uint64_t Convert_ToUInt64_m2629133713 (RuntimeObject * __this /* static, unused */, String_t* ___value0, RuntimeObject* ___provider1, const RuntimeMethod* method)
{
{
String_t* L_0 = ___value0;
if (L_0)
{
goto IL_0009;
}
}
{
return (((int64_t)((int64_t)0)));
}
IL_0009:
{
String_t* L_1 = ___value0;
RuntimeObject* L_2 = ___provider1;
uint64_t L_3 = UInt64_Parse_m819899889(NULL /*static, unused*/, L_1, L_2, /*hidden argument*/NULL);
return L_3;
}
}
// System.UInt64 System.Convert::ToUInt64(System.UInt32)
extern "C" uint64_t Convert_ToUInt64_m1745056470 (RuntimeObject * __this /* static, unused */, uint32_t ___value0, const RuntimeMethod* method)
{
{
uint32_t L_0 = ___value0;
return (((int64_t)((uint64_t)L_0)));
}
}
// System.UInt64 System.Convert::ToUInt64(System.UInt16)
extern "C" uint64_t Convert_ToUInt64_m1362719450 (RuntimeObject * __this /* static, unused */, uint16_t ___value0, const RuntimeMethod* method)
{
{
uint16_t L_0 = ___value0;
return (((int64_t)((uint64_t)L_0)));
}
}
// System.UInt64 System.Convert::ToUInt64(System.Object)
extern "C" uint64_t Convert_ToUInt64_m1841050714 (RuntimeObject * __this /* static, unused */, RuntimeObject * ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Convert_ToUInt64_m1841050714_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject * L_0 = ___value0;
if (L_0)
{
goto IL_0009;
}
}
{
return (((int64_t)((int64_t)0)));
}
IL_0009:
{
RuntimeObject * L_1 = ___value0;
IL2CPP_RUNTIME_CLASS_INIT(Convert_t2465617642_il2cpp_TypeInfo_var);
uint64_t L_2 = Convert_ToUInt64_m3170916409(NULL /*static, unused*/, L_1, (RuntimeObject*)NULL, /*hidden argument*/NULL);
return L_2;
}
}
// System.UInt64 System.Convert::ToUInt64(System.Object,System.IFormatProvider)
extern "C" uint64_t Convert_ToUInt64_m3170916409 (RuntimeObject * __this /* static, unused */, RuntimeObject * ___value0, RuntimeObject* ___provider1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Convert_ToUInt64_m3170916409_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject * L_0 = ___value0;
if (L_0)
{
goto IL_0009;
}
}
{
return (((int64_t)((int64_t)0)));
}
IL_0009:
{
RuntimeObject * L_1 = ___value0;
RuntimeObject* L_2 = ___provider1;
uint64_t L_3 = InterfaceFuncInvoker1< uint64_t, RuntimeObject* >::Invoke(15 /* System.UInt64 System.IConvertible::ToUInt64(System.IFormatProvider) */, IConvertible_t2977365677_il2cpp_TypeInfo_var, ((RuntimeObject*)Castclass((RuntimeObject*)L_1, IConvertible_t2977365677_il2cpp_TypeInfo_var)), L_2);
return L_3;
}
}
// System.Object System.Convert::ChangeType(System.Object,System.Type)
extern "C" RuntimeObject * Convert_ChangeType_m739676612 (RuntimeObject * __this /* static, unused */, RuntimeObject * ___value0, Type_t * ___conversionType1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Convert_ChangeType_m739676612_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
CultureInfo_t4157843068 * V_0 = NULL;
RuntimeObject* V_1 = NULL;
{
RuntimeObject * L_0 = ___value0;
if (!L_0)
{
goto IL_0017;
}
}
{
Type_t * L_1 = ___conversionType1;
if (L_1)
{
goto IL_0017;
}
}
{
ArgumentNullException_t1615371798 * L_2 = (ArgumentNullException_t1615371798 *)il2cpp_codegen_object_new(ArgumentNullException_t1615371798_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m1170824041(L_2, _stringLiteral1255815265, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2,Convert_ChangeType_m739676612_RuntimeMethod_var);
}
IL_0017:
{
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t4157843068_il2cpp_TypeInfo_var);
CultureInfo_t4157843068 * L_3 = CultureInfo_get_CurrentCulture_m1632690660(NULL /*static, unused*/, /*hidden argument*/NULL);
V_0 = L_3;
Type_t * L_4 = ___conversionType1;
RuntimeTypeHandle_t3027515415 L_5 = { reinterpret_cast<intptr_t> (DateTime_t3738529785_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_6 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, L_5, /*hidden argument*/NULL);
if ((!(((RuntimeObject*)(Type_t *)L_4) == ((RuntimeObject*)(Type_t *)L_6))))
{
goto IL_0039;
}
}
{
CultureInfo_t4157843068 * L_7 = V_0;
DateTimeFormatInfo_t2405853701 * L_8 = VirtFuncInvoker0< DateTimeFormatInfo_t2405853701 * >::Invoke(15 /* System.Globalization.DateTimeFormatInfo System.Globalization.CultureInfo::get_DateTimeFormat() */, L_7);
V_1 = L_8;
goto IL_0040;
}
IL_0039:
{
CultureInfo_t4157843068 * L_9 = V_0;
NumberFormatInfo_t435877138 * L_10 = VirtFuncInvoker0< NumberFormatInfo_t435877138 * >::Invoke(13 /* System.Globalization.NumberFormatInfo System.Globalization.CultureInfo::get_NumberFormat() */, L_9);
V_1 = L_10;
}
IL_0040:
{
RuntimeObject * L_11 = ___value0;
Type_t * L_12 = ___conversionType1;
RuntimeObject* L_13 = V_1;
IL2CPP_RUNTIME_CLASS_INIT(Convert_t2465617642_il2cpp_TypeInfo_var);
RuntimeObject * L_14 = Convert_ToType_m2406080310(NULL /*static, unused*/, L_11, L_12, L_13, (bool)1, /*hidden argument*/NULL);
return L_14;
}
}
// System.Object System.Convert::ToType(System.Object,System.Type,System.IFormatProvider,System.Boolean)
extern "C" RuntimeObject * Convert_ToType_m2406080310 (RuntimeObject * __this /* static, unused */, RuntimeObject * ___value0, Type_t * ___conversionType1, RuntimeObject* ___provider2, bool ___try_target_to_type3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Convert_ToType_m2406080310_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
{
RuntimeObject * L_0 = ___value0;
if (L_0)
{
goto IL_0024;
}
}
{
Type_t * L_1 = ___conversionType1;
if (!L_1)
{
goto IL_0022;
}
}
{
Type_t * L_2 = ___conversionType1;
bool L_3 = Type_get_IsValueType_m3108065642(L_2, /*hidden argument*/NULL);
if (!L_3)
{
goto IL_0022;
}
}
{
InvalidCastException_t3927145244 * L_4 = (InvalidCastException_t3927145244 *)il2cpp_codegen_object_new(InvalidCastException_t3927145244_il2cpp_TypeInfo_var);
InvalidCastException__ctor_m318645277(L_4, _stringLiteral3495165633, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_4,Convert_ToType_m2406080310_RuntimeMethod_var);
}
IL_0022:
{
return NULL;
}
IL_0024:
{
Type_t * L_5 = ___conversionType1;
if (L_5)
{
goto IL_0035;
}
}
{
InvalidCastException_t3927145244 * L_6 = (InvalidCastException_t3927145244 *)il2cpp_codegen_object_new(InvalidCastException_t3927145244_il2cpp_TypeInfo_var);
InvalidCastException__ctor_m318645277(L_6, _stringLiteral2617833356, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_6,Convert_ToType_m2406080310_RuntimeMethod_var);
}
IL_0035:
{
RuntimeObject * L_7 = ___value0;
Type_t * L_8 = Object_GetType_m88164663(L_7, /*hidden argument*/NULL);
Type_t * L_9 = ___conversionType1;
if ((!(((RuntimeObject*)(Type_t *)L_8) == ((RuntimeObject*)(Type_t *)L_9))))
{
goto IL_0043;
}
}
{
RuntimeObject * L_10 = ___value0;
return L_10;
}
IL_0043:
{
RuntimeObject * L_11 = ___value0;
if (!((RuntimeObject*)IsInst((RuntimeObject*)L_11, IConvertible_t2977365677_il2cpp_TypeInfo_var)))
{
goto IL_0228;
}
}
{
RuntimeObject * L_12 = ___value0;
V_0 = ((RuntimeObject*)Castclass((RuntimeObject*)L_12, IConvertible_t2977365677_il2cpp_TypeInfo_var));
Type_t * L_13 = ___conversionType1;
IL2CPP_RUNTIME_CLASS_INIT(Convert_t2465617642_il2cpp_TypeInfo_var);
TypeU5BU5D_t3940880105* L_14 = ((Convert_t2465617642_StaticFields*)il2cpp_codegen_static_fields_for(Convert_t2465617642_il2cpp_TypeInfo_var))->get_conversionTable_1();
int32_t L_15 = 0;
Type_t * L_16 = (L_14)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_15));
if ((!(((RuntimeObject*)(Type_t *)L_13) == ((RuntimeObject*)(Type_t *)L_16))))
{
goto IL_0068;
}
}
{
ArgumentNullException_t1615371798 * L_17 = (ArgumentNullException_t1615371798 *)il2cpp_codegen_object_new(ArgumentNullException_t1615371798_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m2751210921(L_17, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_17,Convert_ToType_m2406080310_RuntimeMethod_var);
}
IL_0068:
{
Type_t * L_18 = ___conversionType1;
IL2CPP_RUNTIME_CLASS_INIT(Convert_t2465617642_il2cpp_TypeInfo_var);
TypeU5BU5D_t3940880105* L_19 = ((Convert_t2465617642_StaticFields*)il2cpp_codegen_static_fields_for(Convert_t2465617642_il2cpp_TypeInfo_var))->get_conversionTable_1();
int32_t L_20 = 1;
Type_t * L_21 = (L_19)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_20));
if ((!(((RuntimeObject*)(Type_t *)L_18) == ((RuntimeObject*)(Type_t *)L_21))))
{
goto IL_0077;
}
}
{
RuntimeObject * L_22 = ___value0;
return L_22;
}
IL_0077:
{
Type_t * L_23 = ___conversionType1;
IL2CPP_RUNTIME_CLASS_INIT(Convert_t2465617642_il2cpp_TypeInfo_var);
TypeU5BU5D_t3940880105* L_24 = ((Convert_t2465617642_StaticFields*)il2cpp_codegen_static_fields_for(Convert_t2465617642_il2cpp_TypeInfo_var))->get_conversionTable_1();
int32_t L_25 = 2;
Type_t * L_26 = (L_24)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_25));
if ((!(((RuntimeObject*)(Type_t *)L_23) == ((RuntimeObject*)(Type_t *)L_26))))
{
goto IL_008f;
}
}
{
InvalidCastException_t3927145244 * L_27 = (InvalidCastException_t3927145244 *)il2cpp_codegen_object_new(InvalidCastException_t3927145244_il2cpp_TypeInfo_var);
InvalidCastException__ctor_m318645277(L_27, _stringLiteral2368423739, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_27,Convert_ToType_m2406080310_RuntimeMethod_var);
}
IL_008f:
{
Type_t * L_28 = ___conversionType1;
IL2CPP_RUNTIME_CLASS_INIT(Convert_t2465617642_il2cpp_TypeInfo_var);
TypeU5BU5D_t3940880105* L_29 = ((Convert_t2465617642_StaticFields*)il2cpp_codegen_static_fields_for(Convert_t2465617642_il2cpp_TypeInfo_var))->get_conversionTable_1();
int32_t L_30 = 3;
Type_t * L_31 = (L_29)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_30));
if ((!(((RuntimeObject*)(Type_t *)L_28) == ((RuntimeObject*)(Type_t *)L_31))))
{
goto IL_00a9;
}
}
{
RuntimeObject* L_32 = V_0;
RuntimeObject* L_33 = ___provider2;
bool L_34 = InterfaceFuncInvoker1< bool, RuntimeObject* >::Invoke(0 /* System.Boolean System.IConvertible::ToBoolean(System.IFormatProvider) */, IConvertible_t2977365677_il2cpp_TypeInfo_var, L_32, L_33);
bool L_35 = L_34;
RuntimeObject * L_36 = Box(Boolean_t97287965_il2cpp_TypeInfo_var, &L_35);
return L_36;
}
IL_00a9:
{
Type_t * L_37 = ___conversionType1;
IL2CPP_RUNTIME_CLASS_INIT(Convert_t2465617642_il2cpp_TypeInfo_var);
TypeU5BU5D_t3940880105* L_38 = ((Convert_t2465617642_StaticFields*)il2cpp_codegen_static_fields_for(Convert_t2465617642_il2cpp_TypeInfo_var))->get_conversionTable_1();
int32_t L_39 = 4;
Type_t * L_40 = (L_38)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_39));
if ((!(((RuntimeObject*)(Type_t *)L_37) == ((RuntimeObject*)(Type_t *)L_40))))
{
goto IL_00c3;
}
}
{
RuntimeObject* L_41 = V_0;
RuntimeObject* L_42 = ___provider2;
Il2CppChar L_43 = InterfaceFuncInvoker1< Il2CppChar, RuntimeObject* >::Invoke(2 /* System.Char System.IConvertible::ToChar(System.IFormatProvider) */, IConvertible_t2977365677_il2cpp_TypeInfo_var, L_41, L_42);
Il2CppChar L_44 = L_43;
RuntimeObject * L_45 = Box(Char_t3634460470_il2cpp_TypeInfo_var, &L_44);
return L_45;
}
IL_00c3:
{
Type_t * L_46 = ___conversionType1;
IL2CPP_RUNTIME_CLASS_INIT(Convert_t2465617642_il2cpp_TypeInfo_var);
TypeU5BU5D_t3940880105* L_47 = ((Convert_t2465617642_StaticFields*)il2cpp_codegen_static_fields_for(Convert_t2465617642_il2cpp_TypeInfo_var))->get_conversionTable_1();
int32_t L_48 = 5;
Type_t * L_49 = (L_47)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_48));
if ((!(((RuntimeObject*)(Type_t *)L_46) == ((RuntimeObject*)(Type_t *)L_49))))
{
goto IL_00dd;
}
}
{
RuntimeObject* L_50 = V_0;
RuntimeObject* L_51 = ___provider2;
int8_t L_52 = InterfaceFuncInvoker1< int8_t, RuntimeObject* >::Invoke(9 /* System.SByte System.IConvertible::ToSByte(System.IFormatProvider) */, IConvertible_t2977365677_il2cpp_TypeInfo_var, L_50, L_51);
int8_t L_53 = L_52;
RuntimeObject * L_54 = Box(SByte_t1669577662_il2cpp_TypeInfo_var, &L_53);
return L_54;
}
IL_00dd:
{
Type_t * L_55 = ___conversionType1;
IL2CPP_RUNTIME_CLASS_INIT(Convert_t2465617642_il2cpp_TypeInfo_var);
TypeU5BU5D_t3940880105* L_56 = ((Convert_t2465617642_StaticFields*)il2cpp_codegen_static_fields_for(Convert_t2465617642_il2cpp_TypeInfo_var))->get_conversionTable_1();
int32_t L_57 = 6;
Type_t * L_58 = (L_56)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_57));
if ((!(((RuntimeObject*)(Type_t *)L_55) == ((RuntimeObject*)(Type_t *)L_58))))
{
goto IL_00f7;
}
}
{
RuntimeObject* L_59 = V_0;
RuntimeObject* L_60 = ___provider2;
uint8_t L_61 = InterfaceFuncInvoker1< uint8_t, RuntimeObject* >::Invoke(1 /* System.Byte System.IConvertible::ToByte(System.IFormatProvider) */, IConvertible_t2977365677_il2cpp_TypeInfo_var, L_59, L_60);
uint8_t L_62 = L_61;
RuntimeObject * L_63 = Box(Byte_t1134296376_il2cpp_TypeInfo_var, &L_62);
return L_63;
}
IL_00f7:
{
Type_t * L_64 = ___conversionType1;
IL2CPP_RUNTIME_CLASS_INIT(Convert_t2465617642_il2cpp_TypeInfo_var);
TypeU5BU5D_t3940880105* L_65 = ((Convert_t2465617642_StaticFields*)il2cpp_codegen_static_fields_for(Convert_t2465617642_il2cpp_TypeInfo_var))->get_conversionTable_1();
int32_t L_66 = 7;
Type_t * L_67 = (L_65)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_66));
if ((!(((RuntimeObject*)(Type_t *)L_64) == ((RuntimeObject*)(Type_t *)L_67))))
{
goto IL_0111;
}
}
{
RuntimeObject* L_68 = V_0;
RuntimeObject* L_69 = ___provider2;
int16_t L_70 = InterfaceFuncInvoker1< int16_t, RuntimeObject* >::Invoke(6 /* System.Int16 System.IConvertible::ToInt16(System.IFormatProvider) */, IConvertible_t2977365677_il2cpp_TypeInfo_var, L_68, L_69);
int16_t L_71 = L_70;
RuntimeObject * L_72 = Box(Int16_t2552820387_il2cpp_TypeInfo_var, &L_71);
return L_72;
}
IL_0111:
{
Type_t * L_73 = ___conversionType1;
IL2CPP_RUNTIME_CLASS_INIT(Convert_t2465617642_il2cpp_TypeInfo_var);
TypeU5BU5D_t3940880105* L_74 = ((Convert_t2465617642_StaticFields*)il2cpp_codegen_static_fields_for(Convert_t2465617642_il2cpp_TypeInfo_var))->get_conversionTable_1();
int32_t L_75 = 8;
Type_t * L_76 = (L_74)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_75));
if ((!(((RuntimeObject*)(Type_t *)L_73) == ((RuntimeObject*)(Type_t *)L_76))))
{
goto IL_012b;
}
}
{
RuntimeObject* L_77 = V_0;
RuntimeObject* L_78 = ___provider2;
uint16_t L_79 = InterfaceFuncInvoker1< uint16_t, RuntimeObject* >::Invoke(13 /* System.UInt16 System.IConvertible::ToUInt16(System.IFormatProvider) */, IConvertible_t2977365677_il2cpp_TypeInfo_var, L_77, L_78);
uint16_t L_80 = L_79;
RuntimeObject * L_81 = Box(UInt16_t2177724958_il2cpp_TypeInfo_var, &L_80);
return L_81;
}
IL_012b:
{
Type_t * L_82 = ___conversionType1;
IL2CPP_RUNTIME_CLASS_INIT(Convert_t2465617642_il2cpp_TypeInfo_var);
TypeU5BU5D_t3940880105* L_83 = ((Convert_t2465617642_StaticFields*)il2cpp_codegen_static_fields_for(Convert_t2465617642_il2cpp_TypeInfo_var))->get_conversionTable_1();
int32_t L_84 = ((int32_t)9);
Type_t * L_85 = (L_83)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_84));
if ((!(((RuntimeObject*)(Type_t *)L_82) == ((RuntimeObject*)(Type_t *)L_85))))
{
goto IL_0146;
}
}
{
RuntimeObject* L_86 = V_0;
RuntimeObject* L_87 = ___provider2;
int32_t L_88 = InterfaceFuncInvoker1< int32_t, RuntimeObject* >::Invoke(7 /* System.Int32 System.IConvertible::ToInt32(System.IFormatProvider) */, IConvertible_t2977365677_il2cpp_TypeInfo_var, L_86, L_87);
int32_t L_89 = L_88;
RuntimeObject * L_90 = Box(Int32_t2950945753_il2cpp_TypeInfo_var, &L_89);
return L_90;
}
IL_0146:
{
Type_t * L_91 = ___conversionType1;
IL2CPP_RUNTIME_CLASS_INIT(Convert_t2465617642_il2cpp_TypeInfo_var);
TypeU5BU5D_t3940880105* L_92 = ((Convert_t2465617642_StaticFields*)il2cpp_codegen_static_fields_for(Convert_t2465617642_il2cpp_TypeInfo_var))->get_conversionTable_1();
int32_t L_93 = ((int32_t)10);
Type_t * L_94 = (L_92)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_93));
if ((!(((RuntimeObject*)(Type_t *)L_91) == ((RuntimeObject*)(Type_t *)L_94))))
{
goto IL_0161;
}
}
{
RuntimeObject* L_95 = V_0;
RuntimeObject* L_96 = ___provider2;
uint32_t L_97 = InterfaceFuncInvoker1< uint32_t, RuntimeObject* >::Invoke(14 /* System.UInt32 System.IConvertible::ToUInt32(System.IFormatProvider) */, IConvertible_t2977365677_il2cpp_TypeInfo_var, L_95, L_96);
uint32_t L_98 = L_97;
RuntimeObject * L_99 = Box(UInt32_t2560061978_il2cpp_TypeInfo_var, &L_98);
return L_99;
}
IL_0161:
{
Type_t * L_100 = ___conversionType1;
IL2CPP_RUNTIME_CLASS_INIT(Convert_t2465617642_il2cpp_TypeInfo_var);
TypeU5BU5D_t3940880105* L_101 = ((Convert_t2465617642_StaticFields*)il2cpp_codegen_static_fields_for(Convert_t2465617642_il2cpp_TypeInfo_var))->get_conversionTable_1();
int32_t L_102 = ((int32_t)11);
Type_t * L_103 = (L_101)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_102));
if ((!(((RuntimeObject*)(Type_t *)L_100) == ((RuntimeObject*)(Type_t *)L_103))))
{
goto IL_017c;
}
}
{
RuntimeObject* L_104 = V_0;
RuntimeObject* L_105 = ___provider2;
int64_t L_106 = InterfaceFuncInvoker1< int64_t, RuntimeObject* >::Invoke(8 /* System.Int64 System.IConvertible::ToInt64(System.IFormatProvider) */, IConvertible_t2977365677_il2cpp_TypeInfo_var, L_104, L_105);
int64_t L_107 = L_106;
RuntimeObject * L_108 = Box(Int64_t3736567304_il2cpp_TypeInfo_var, &L_107);
return L_108;
}
IL_017c:
{
Type_t * L_109 = ___conversionType1;
IL2CPP_RUNTIME_CLASS_INIT(Convert_t2465617642_il2cpp_TypeInfo_var);
TypeU5BU5D_t3940880105* L_110 = ((Convert_t2465617642_StaticFields*)il2cpp_codegen_static_fields_for(Convert_t2465617642_il2cpp_TypeInfo_var))->get_conversionTable_1();
int32_t L_111 = ((int32_t)12);
Type_t * L_112 = (L_110)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_111));
if ((!(((RuntimeObject*)(Type_t *)L_109) == ((RuntimeObject*)(Type_t *)L_112))))
{
goto IL_0197;
}
}
{
RuntimeObject* L_113 = V_0;
RuntimeObject* L_114 = ___provider2;
uint64_t L_115 = InterfaceFuncInvoker1< uint64_t, RuntimeObject* >::Invoke(15 /* System.UInt64 System.IConvertible::ToUInt64(System.IFormatProvider) */, IConvertible_t2977365677_il2cpp_TypeInfo_var, L_113, L_114);
uint64_t L_116 = L_115;
RuntimeObject * L_117 = Box(UInt64_t4134040092_il2cpp_TypeInfo_var, &L_116);
return L_117;
}
IL_0197:
{
Type_t * L_118 = ___conversionType1;
IL2CPP_RUNTIME_CLASS_INIT(Convert_t2465617642_il2cpp_TypeInfo_var);
TypeU5BU5D_t3940880105* L_119 = ((Convert_t2465617642_StaticFields*)il2cpp_codegen_static_fields_for(Convert_t2465617642_il2cpp_TypeInfo_var))->get_conversionTable_1();
int32_t L_120 = ((int32_t)13);
Type_t * L_121 = (L_119)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_120));
if ((!(((RuntimeObject*)(Type_t *)L_118) == ((RuntimeObject*)(Type_t *)L_121))))
{
goto IL_01b2;
}
}
{
RuntimeObject* L_122 = V_0;
RuntimeObject* L_123 = ___provider2;
float L_124 = InterfaceFuncInvoker1< float, RuntimeObject* >::Invoke(10 /* System.Single System.IConvertible::ToSingle(System.IFormatProvider) */, IConvertible_t2977365677_il2cpp_TypeInfo_var, L_122, L_123);
float L_125 = L_124;
RuntimeObject * L_126 = Box(Single_t1397266774_il2cpp_TypeInfo_var, &L_125);
return L_126;
}
IL_01b2:
{
Type_t * L_127 = ___conversionType1;
IL2CPP_RUNTIME_CLASS_INIT(Convert_t2465617642_il2cpp_TypeInfo_var);
TypeU5BU5D_t3940880105* L_128 = ((Convert_t2465617642_StaticFields*)il2cpp_codegen_static_fields_for(Convert_t2465617642_il2cpp_TypeInfo_var))->get_conversionTable_1();
int32_t L_129 = ((int32_t)14);
Type_t * L_130 = (L_128)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_129));
if ((!(((RuntimeObject*)(Type_t *)L_127) == ((RuntimeObject*)(Type_t *)L_130))))
{
goto IL_01cd;
}
}
{
RuntimeObject* L_131 = V_0;
RuntimeObject* L_132 = ___provider2;
double L_133 = InterfaceFuncInvoker1< double, RuntimeObject* >::Invoke(5 /* System.Double System.IConvertible::ToDouble(System.IFormatProvider) */, IConvertible_t2977365677_il2cpp_TypeInfo_var, L_131, L_132);
double L_134 = L_133;
RuntimeObject * L_135 = Box(Double_t594665363_il2cpp_TypeInfo_var, &L_134);
return L_135;
}
IL_01cd:
{
Type_t * L_136 = ___conversionType1;
IL2CPP_RUNTIME_CLASS_INIT(Convert_t2465617642_il2cpp_TypeInfo_var);
TypeU5BU5D_t3940880105* L_137 = ((Convert_t2465617642_StaticFields*)il2cpp_codegen_static_fields_for(Convert_t2465617642_il2cpp_TypeInfo_var))->get_conversionTable_1();
int32_t L_138 = ((int32_t)15);
Type_t * L_139 = (L_137)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_138));
if ((!(((RuntimeObject*)(Type_t *)L_136) == ((RuntimeObject*)(Type_t *)L_139))))
{
goto IL_01e8;
}
}
{
RuntimeObject* L_140 = V_0;
RuntimeObject* L_141 = ___provider2;
Decimal_t2948259380 L_142 = InterfaceFuncInvoker1< Decimal_t2948259380 , RuntimeObject* >::Invoke(4 /* System.Decimal System.IConvertible::ToDecimal(System.IFormatProvider) */, IConvertible_t2977365677_il2cpp_TypeInfo_var, L_140, L_141);
Decimal_t2948259380 L_143 = L_142;
RuntimeObject * L_144 = Box(Decimal_t2948259380_il2cpp_TypeInfo_var, &L_143);
return L_144;
}
IL_01e8:
{
Type_t * L_145 = ___conversionType1;
IL2CPP_RUNTIME_CLASS_INIT(Convert_t2465617642_il2cpp_TypeInfo_var);
TypeU5BU5D_t3940880105* L_146 = ((Convert_t2465617642_StaticFields*)il2cpp_codegen_static_fields_for(Convert_t2465617642_il2cpp_TypeInfo_var))->get_conversionTable_1();
int32_t L_147 = ((int32_t)16);
Type_t * L_148 = (L_146)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_147));
if ((!(((RuntimeObject*)(Type_t *)L_145) == ((RuntimeObject*)(Type_t *)L_148))))
{
goto IL_0203;
}
}
{
RuntimeObject* L_149 = V_0;
RuntimeObject* L_150 = ___provider2;
DateTime_t3738529785 L_151 = InterfaceFuncInvoker1< DateTime_t3738529785 , RuntimeObject* >::Invoke(3 /* System.DateTime System.IConvertible::ToDateTime(System.IFormatProvider) */, IConvertible_t2977365677_il2cpp_TypeInfo_var, L_149, L_150);
DateTime_t3738529785 L_152 = L_151;
RuntimeObject * L_153 = Box(DateTime_t3738529785_il2cpp_TypeInfo_var, &L_152);
return L_153;
}
IL_0203:
{
Type_t * L_154 = ___conversionType1;
IL2CPP_RUNTIME_CLASS_INIT(Convert_t2465617642_il2cpp_TypeInfo_var);
TypeU5BU5D_t3940880105* L_155 = ((Convert_t2465617642_StaticFields*)il2cpp_codegen_static_fields_for(Convert_t2465617642_il2cpp_TypeInfo_var))->get_conversionTable_1();
int32_t L_156 = ((int32_t)18);
Type_t * L_157 = (L_155)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(L_156));
if ((!(((RuntimeObject*)(Type_t *)L_154) == ((RuntimeObject*)(Type_t *)L_157))))
{
goto IL_0219;
}
}
{
RuntimeObject* L_158 = V_0;
RuntimeObject* L_159 = ___provider2;
String_t* L_160 = InterfaceFuncInvoker1< String_t*, RuntimeObject* >::Invoke(11 /* System.String System.IConvertible::ToString(System.IFormatProvider) */, IConvertible_t2977365677_il2cpp_TypeInfo_var, L_158, L_159);
return L_160;
}
IL_0219:
{
bool L_161 = ___try_target_to_type3;
if (!L_161)
{
goto IL_0228;
}
}
{
RuntimeObject* L_162 = V_0;
Type_t * L_163 = ___conversionType1;
RuntimeObject* L_164 = ___provider2;
RuntimeObject * L_165 = InterfaceFuncInvoker2< RuntimeObject *, Type_t *, RuntimeObject* >::Invoke(12 /* System.Object System.IConvertible::ToType(System.Type,System.IFormatProvider) */, IConvertible_t2977365677_il2cpp_TypeInfo_var, L_162, L_163, L_164);
return L_165;
}
IL_0228:
{
RuntimeObject * L_166 = ___value0;
Type_t * L_167 = Object_GetType_m88164663(L_166, /*hidden argument*/NULL);
String_t* L_168 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Type::ToString() */, L_167);
Type_t * L_169 = ___conversionType1;
String_t* L_170 = VirtFuncInvoker0< String_t* >::Invoke(18 /* System.String System.Type::get_FullName() */, L_169);
IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
String_t* L_171 = String_Concat_m2163913788(NULL /*static, unused*/, _stringLiteral559265016, L_168, _stringLiteral684852591, L_170, /*hidden argument*/NULL);
String_t* L_172 = Locale_GetText_m3374010885(NULL /*static, unused*/, L_171, /*hidden argument*/NULL);
InvalidCastException_t3927145244 * L_173 = (InvalidCastException_t3927145244 *)il2cpp_codegen_object_new(InvalidCastException_t3927145244_il2cpp_TypeInfo_var);
InvalidCastException__ctor_m318645277(L_173, L_172, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_173,Convert_ToType_m2406080310_RuntimeMethod_var);
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
| [
"pierucci.robert@gmail.com"
] | pierucci.robert@gmail.com |
90245b085f6d367c244199a16d1a72541493cf6c | e0860ba0e482209b5d2a0da0c8fbcbfa989526dd | /main_parser.cpp | 343034b98c79d21dd8fe60717c5485f6f14e6285 | [] | no_license | Shofuuu/Instrumentasi-Kendali-Proses-Industri-Parsing-dan-Merging | 5f511c15aa36d5673556ae22329f92f5113ec087 | 67d0cf05ae422aa89569774d3058ea582ef0930a | refs/heads/master | 2021-02-27T15:09:35.608257 | 2020-04-14T17:03:47 | 2020-04-14T17:03:47 | 245,614,247 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 437 | cpp | /**********************
Trainer KMDEI (Parser)
***********************/
#ifndef F_CPU
#define F_CPU 16000000UL
#endif
#include <Arduino.h>
#include "lib/parse_merger.h"
void setup(){Serial.begin(9600);}
void loop(){
if(Serial.available() > 0){
data = Serial.readString();
parse_string();
Serial.println("Total Data [" + String(get_data_total()) + "] --> [0] " + DATA_STR(0) + "; [1] " + DATA_STR(1));
clear_str();
}
}
| [
"noreply@github.com"
] | noreply@github.com |
8ddcda4da3ab7596985d8c989612c90bb688c0ca | 4f9e6f9df7015768b6db6d9961bbfdc0df1285df | /PlikZAdresatami.cpp | 7f2c7312506db17e13ae4ee8aa1b83f66a6f891a | [
"Unlicense"
] | permissive | Damian-Nykiel/KsiazkaAdresowaObiektowo | a026db99a6f26d9004b3815ad2724c8cb4890977 | 279a3a2b8f0e278197fdbf960ebe9dff087d7877 | refs/heads/master | 2022-10-18T06:20:27.472284 | 2020-06-11T11:18:19 | 2020-06-11T11:18:19 | 268,454,517 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 8,717 | cpp | #include "PlikZAdresatami.h"
bool PlikZAdresatami::dopiszAdresataDoPliku(Adresat adresat)
{
string liniaZDanymiAdresata = "";
fstream plikTekstowy;
plikTekstowy.open(pobierzNazwePliku().c_str(), ios::out | ios::app);
if (plikTekstowy.good() == true)
{
liniaZDanymiAdresata = zamienDaneAdresataNaLinieZDanymiOddzielonymiPionowymiKreskami(adresat);
if (czyPlikJestPusty() == true)
{
plikTekstowy << liniaZDanymiAdresata;
}
else
{
plikTekstowy << endl << liniaZDanymiAdresata ;
}
idOstatniegoAdresata++;
plikTekstowy.close();
return true;
}
return false;
}
string PlikZAdresatami::zamienDaneAdresataNaLinieZDanymiOddzielonymiPionowymiKreskami(Adresat adresat)
{
string liniaZDanymiAdresata = "";
liniaZDanymiAdresata += MetodyPomocnicze::konwerjsaIntNaString(adresat.pobierzId()) + '|';
liniaZDanymiAdresata += MetodyPomocnicze::konwerjsaIntNaString(adresat.pobierzIdUzytkownika()) + '|';
liniaZDanymiAdresata += adresat.pobierzImie() + '|';
liniaZDanymiAdresata += adresat.pobierzNazwisko() + '|';
liniaZDanymiAdresata += adresat.pobierzNumerTelefonu() + '|';
liniaZDanymiAdresata += adresat.pobierzEmail() + '|';
liniaZDanymiAdresata += adresat.pobierzAdres() + '|';
return liniaZDanymiAdresata;
}
vector <Adresat> PlikZAdresatami::wczytajAdresatowZalogowanegoUzytkownikaZPliku(int idZalogowanegoUzytkownika)
{
vector <Adresat> adresaci;
Adresat adresat;
string daneJednegoAdresataOddzielonePionowymiKreskami = "";
string daneOstaniegoAdresataWPliku = "";
fstream plikTekstowy;
plikTekstowy.open(pobierzNazwePliku().c_str(), ios::in);
if (plikTekstowy.good() == true)
{
while (getline(plikTekstowy, daneJednegoAdresataOddzielonePionowymiKreskami))
{
if(idZalogowanegoUzytkownika == pobierzIdUzytkownikaZDanychOddzielonychPionowymiKreskami(daneJednegoAdresataOddzielonePionowymiKreskami))
{
adresat = pobierzDaneAdresata(daneJednegoAdresataOddzielonePionowymiKreskami);
adresaci.push_back(adresat);
}
}
daneOstaniegoAdresataWPliku = daneJednegoAdresataOddzielonePionowymiKreskami;
plikTekstowy.close();
}
if (daneOstaniegoAdresataWPliku != "")
{
idOstatniegoAdresata = pobierzIdAdresataZDanychOddzielonychPionowymiKreskami(daneOstaniegoAdresataWPliku);
}
return adresaci;
}
int PlikZAdresatami::pobierzIdUzytkownikaZDanychOddzielonychPionowymiKreskami(string daneJednegoAdresataOddzielonePionowymiKreskami)
{
int pozycjaRozpoczeciaIdUzytkownika = daneJednegoAdresataOddzielonePionowymiKreskami.find_first_of('|') + 1;
int idUzytkownika = MetodyPomocnicze::konwersjaStringNaInt(MetodyPomocnicze::pobierzLiczbe(daneJednegoAdresataOddzielonePionowymiKreskami, pozycjaRozpoczeciaIdUzytkownika));
return idUzytkownika;
}
int PlikZAdresatami::pobierzIdAdresataZDanychOddzielonychPionowymiKreskami(string daneJednegoAdresataOddzielonePionowymiKreskami)
{
int pozycjaRozpoczeciaIdAdresata = 0;
int idAdresata = MetodyPomocnicze::konwersjaStringNaInt(MetodyPomocnicze::pobierzLiczbe(daneJednegoAdresataOddzielonePionowymiKreskami, pozycjaRozpoczeciaIdAdresata));
return idAdresata;
}
Adresat PlikZAdresatami::pobierzDaneAdresata(string daneAdresataOddzielonePionowymiKreskami)
{
Adresat adresat;
string pojedynczaDanaAdresata = "";
int numerPojedynczejDanejAdresata = 1;
for (int pozycjaZnaku = 0; pozycjaZnaku < daneAdresataOddzielonePionowymiKreskami.length(); pozycjaZnaku++)
{
if (daneAdresataOddzielonePionowymiKreskami[pozycjaZnaku] != '|')
{
pojedynczaDanaAdresata += daneAdresataOddzielonePionowymiKreskami[pozycjaZnaku];
}
else
{
switch(numerPojedynczejDanejAdresata)
{
case 1:
adresat.ustawId(atoi(pojedynczaDanaAdresata.c_str()));
break;
case 2:
adresat.ustawIdUzytkownika(atoi(pojedynczaDanaAdresata.c_str()));
break;
case 3:
adresat.ustawImie(pojedynczaDanaAdresata);
break;
case 4:
adresat.ustawNazwisko(pojedynczaDanaAdresata);
break;
case 5:
adresat.ustawNumerTelefonu(pojedynczaDanaAdresata);
break;
case 6:
adresat.ustawEmail(pojedynczaDanaAdresata);
break;
case 7:
adresat.ustawAdres(pojedynczaDanaAdresata);
break;
}
pojedynczaDanaAdresata = "";
numerPojedynczejDanejAdresata++;
}
}
return adresat;
}
int PlikZAdresatami::pobierzIdOstatniegoAdresata()
{
return idOstatniegoAdresata;
}
void PlikZAdresatami::usunWybranegoAdresataZPliku(int idUsuwanegoAdresata, int ID_ZALOGOWANEGO_UZYTKOWNIKA)
{
int numerWczytanejLinii = 1;
fstream odczytywanyPlikTekstowy, tymczasowyPlikTekstowy;
string nazwaTymczasowegoPlikuZAdresatami = "Adresaci_tymczasowo.txt";
string daneJednegoAdresataOddzielonePionowymiKreskami = "";
odczytywanyPlikTekstowy.open(pobierzNazwePliku().c_str(), ios::in);
tymczasowyPlikTekstowy.open(nazwaTymczasowegoPlikuZAdresatami.c_str(), ios::out | ios::app);
if (odczytywanyPlikTekstowy.good() == true)
{
while(getline(odczytywanyPlikTekstowy, daneJednegoAdresataOddzielonePionowymiKreskami))
{
if(idUsuwanegoAdresata == pobierzIdAdresataZDanychOddzielonychPionowymiKreskami(daneJednegoAdresataOddzielonePionowymiKreskami)){}
else if (numerWczytanejLinii == 1)
tymczasowyPlikTekstowy << daneJednegoAdresataOddzielonePionowymiKreskami;
else if (numerWczytanejLinii > 1)
tymczasowyPlikTekstowy << endl << daneJednegoAdresataOddzielonePionowymiKreskami;
numerWczytanejLinii++;
}
odczytywanyPlikTekstowy.close();
tymczasowyPlikTekstowy.close();
usunPlik(pobierzNazwePliku());
zmienNazwePliku(nazwaTymczasowegoPlikuZAdresatami, pobierzNazwePliku());
wczytajAdresatowZalogowanegoUzytkownikaZPliku(ID_ZALOGOWANEGO_UZYTKOWNIKA);
}
}
void PlikZAdresatami::zaktualizujDaneWybranegoAdresataWPliku(Adresat adresat)
{
fstream odczytywanyPlikTekstowy, tymczasowyPlikTekstowy;
string daneJednegoAdresataOddzielonePionowymiKreskami = "";
string nazwaTymczasowegoPlikuZAdresatami = "Adresaci_tymczasowo.txt";
int numerWczytanejLinii = 1;
odczytywanyPlikTekstowy.open(pobierzNazwePliku().c_str(), ios::in);
tymczasowyPlikTekstowy.open(nazwaTymczasowegoPlikuZAdresatami.c_str(), ios::out | ios::app);
if (odczytywanyPlikTekstowy.good() == true)
{
while (getline(odczytywanyPlikTekstowy, daneJednegoAdresataOddzielonePionowymiKreskami))
{
if (adresat.pobierzId() == pobierzIdAdresataZDanychOddzielonychPionowymiKreskami(daneJednegoAdresataOddzielonePionowymiKreskami))
{
daneJednegoAdresataOddzielonePionowymiKreskami = zamienDaneAdresataNaLinieZDanymiOddzielonymiPionowymiKreskami(adresat);
if (numerWczytanejLinii == 1)
tymczasowyPlikTekstowy << daneJednegoAdresataOddzielonePionowymiKreskami;
else if (numerWczytanejLinii > 1)
tymczasowyPlikTekstowy << endl << daneJednegoAdresataOddzielonePionowymiKreskami;
}
else
{
if (numerWczytanejLinii == 1)
tymczasowyPlikTekstowy << daneJednegoAdresataOddzielonePionowymiKreskami;
else if (numerWczytanejLinii > 1)
tymczasowyPlikTekstowy << endl << daneJednegoAdresataOddzielonePionowymiKreskami;
}
numerWczytanejLinii++;
}
odczytywanyPlikTekstowy.close();
tymczasowyPlikTekstowy.close();
usunPlik(pobierzNazwePliku());
zmienNazwePliku(nazwaTymczasowegoPlikuZAdresatami, pobierzNazwePliku());
}
cout << endl << "Dane zostaly zaktualizowane." << endl << endl;
}
void PlikZAdresatami::usunPlik(string nazwaPlikuZRozszerzeniem)
{
if (remove(nazwaPlikuZRozszerzeniem.c_str()) == 0) {}
else
cout << "Nie udalo sie usunac pliku " << nazwaPlikuZRozszerzeniem << endl;
}
void PlikZAdresatami::zmienNazwePliku(string staraNazwa, string nowaNazwa)
{
if (rename(staraNazwa.c_str(), nowaNazwa.c_str()) == 0) {}
else
cout << "Nazwa pliku nie zostala zmieniona." << staraNazwa << endl;
}
| [
"nykiel.damian@gmail.com"
] | nykiel.damian@gmail.com |
7db47332c4bd1ea44fafc7c7fd69547dc758eb6e | 4f91cb25e5bce06baeac70d0236e408a05608e5c | /C++/MP_V6/Application de gestion de réservation du vol/ui_mainwindow.h | d48833d56ace9db16acf8583cd2bbc33e50ae69e | [] | no_license | sabri97/ShareWorks | 6987f768f77dbffabe0af7be484e7ef76573abbe | f5023957e02f2ecaaef652852f14822fcd36aa7a | refs/heads/main | 2023-04-04T00:42:02.625791 | 2021-04-11T14:50:10 | 2021-04-11T14:50:10 | 348,349,126 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 9,486 | h | /********************************************************************************
** Form generated from reading UI file 'mainwindow.ui'
**
** Created by: Qt User Interface Compiler version 5.2.0
**
** WARNING! All changes made in this file will be lost when recompiling UI file!
********************************************************************************/
#ifndef UI_MAINWINDOW_H
#define UI_MAINWINDOW_H
#include <QtCore/QVariant>
#include <QtWidgets/QAction>
#include <QtWidgets/QApplication>
#include <QtWidgets/QButtonGroup>
#include <QtWidgets/QGroupBox>
#include <QtWidgets/QHBoxLayout>
#include <QtWidgets/QHeaderView>
#include <QtWidgets/QLabel>
#include <QtWidgets/QLineEdit>
#include <QtWidgets/QMainWindow>
#include <QtWidgets/QMenuBar>
#include <QtWidgets/QPushButton>
#include <QtWidgets/QRadioButton>
#include <QtWidgets/QStatusBar>
#include <QtWidgets/QToolBar>
#include <QtWidgets/QVBoxLayout>
#include <QtWidgets/QWidget>
QT_BEGIN_NAMESPACE
class Ui_MainWindow
{
public:
QWidget *centralWidget;
QGroupBox *groupBox_2;
QGroupBox *groupBox;
QWidget *layoutWidget;
QVBoxLayout *verticalLayout;
QHBoxLayout *horizontalLayout_2;
QLabel *label;
QLineEdit *lineEdit_username;
QHBoxLayout *horizontalLayout;
QLabel *label_2;
QLineEdit *lineEdit_password;
QHBoxLayout *horizontalLayout_3;
QRadioButton *radioButton;
QRadioButton *radioButton_2;
QPushButton *pushButton_login;
QLabel *label_pic;
QLabel *label_background;
QLabel *label_3;
QMenuBar *menuBar;
QToolBar *mainToolBar;
QStatusBar *statusBar;
void setupUi(QMainWindow *MainWindow)
{
if (MainWindow->objectName().isEmpty())
MainWindow->setObjectName(QStringLiteral("MainWindow"));
MainWindow->resize(320, 603);
MainWindow->setTabShape(QTabWidget::Rounded);
centralWidget = new QWidget(MainWindow);
centralWidget->setObjectName(QStringLiteral("centralWidget"));
groupBox_2 = new QGroupBox(centralWidget);
groupBox_2->setObjectName(QStringLiteral("groupBox_2"));
groupBox_2->setGeometry(QRect(10, 80, 301, 451));
groupBox = new QGroupBox(groupBox_2);
groupBox->setObjectName(QStringLiteral("groupBox"));
groupBox->setGeometry(QRect(10, 230, 281, 211));
QPalette palette;
QBrush brush(QColor(255, 255, 255, 255));
brush.setStyle(Qt::SolidPattern);
palette.setBrush(QPalette::Active, QPalette::WindowText, brush);
palette.setBrush(QPalette::Inactive, QPalette::WindowText, brush);
QBrush brush1(QColor(120, 120, 120, 255));
brush1.setStyle(Qt::SolidPattern);
palette.setBrush(QPalette::Disabled, QPalette::WindowText, brush1);
groupBox->setPalette(palette);
QFont font;
font.setFamily(QStringLiteral("Goudy Old Style"));
font.setPointSize(16);
font.setBold(true);
font.setWeight(75);
groupBox->setFont(font);
groupBox->setFlat(false);
groupBox->setCheckable(false);
layoutWidget = new QWidget(groupBox);
layoutWidget->setObjectName(QStringLiteral("layoutWidget"));
layoutWidget->setGeometry(QRect(10, 30, 261, 171));
verticalLayout = new QVBoxLayout(layoutWidget);
verticalLayout->setSpacing(6);
verticalLayout->setContentsMargins(11, 11, 11, 11);
verticalLayout->setObjectName(QStringLiteral("verticalLayout"));
verticalLayout->setContentsMargins(0, 0, 0, 0);
horizontalLayout_2 = new QHBoxLayout();
horizontalLayout_2->setSpacing(6);
horizontalLayout_2->setObjectName(QStringLiteral("horizontalLayout_2"));
label = new QLabel(layoutWidget);
label->setObjectName(QStringLiteral("label"));
QFont font1;
font1.setPointSize(14);
font1.setBold(false);
font1.setWeight(50);
label->setFont(font1);
horizontalLayout_2->addWidget(label);
lineEdit_username = new QLineEdit(layoutWidget);
lineEdit_username->setObjectName(QStringLiteral("lineEdit_username"));
lineEdit_username->setAutoFillBackground(false);
lineEdit_username->setFrame(true);
horizontalLayout_2->addWidget(lineEdit_username);
verticalLayout->addLayout(horizontalLayout_2);
horizontalLayout = new QHBoxLayout();
horizontalLayout->setSpacing(6);
horizontalLayout->setObjectName(QStringLiteral("horizontalLayout"));
label_2 = new QLabel(layoutWidget);
label_2->setObjectName(QStringLiteral("label_2"));
label_2->setFont(font1);
horizontalLayout->addWidget(label_2);
lineEdit_password = new QLineEdit(layoutWidget);
lineEdit_password->setObjectName(QStringLiteral("lineEdit_password"));
lineEdit_password->setEchoMode(QLineEdit::Password);
horizontalLayout->addWidget(lineEdit_password);
verticalLayout->addLayout(horizontalLayout);
horizontalLayout_3 = new QHBoxLayout();
horizontalLayout_3->setSpacing(6);
horizontalLayout_3->setObjectName(QStringLiteral("horizontalLayout_3"));
radioButton = new QRadioButton(layoutWidget);
radioButton->setObjectName(QStringLiteral("radioButton"));
radioButton->setFont(font1);
radioButton->setChecked(false);
horizontalLayout_3->addWidget(radioButton);
radioButton_2 = new QRadioButton(layoutWidget);
radioButton_2->setObjectName(QStringLiteral("radioButton_2"));
radioButton_2->setFont(font1);
radioButton_2->setChecked(true);
horizontalLayout_3->addWidget(radioButton_2);
verticalLayout->addLayout(horizontalLayout_3);
pushButton_login = new QPushButton(layoutWidget);
pushButton_login->setObjectName(QStringLiteral("pushButton_login"));
QFont font2;
font2.setPointSize(16);
pushButton_login->setFont(font2);
QIcon icon;
icon.addFile(QStringLiteral("Data/Pictures/272456.png"), QSize(), QIcon::Normal, QIcon::Off);
pushButton_login->setIcon(icon);
pushButton_login->setIconSize(QSize(40, 45));
verticalLayout->addWidget(pushButton_login);
label_pic = new QLabel(groupBox_2);
label_pic->setObjectName(QStringLiteral("label_pic"));
label_pic->setGeometry(QRect(10, 20, 281, 191));
QFont font3;
font3.setStyleStrategy(QFont::PreferAntialias);
label_pic->setFont(font3);
label_pic->setAlignment(Qt::AlignCenter);
label_pic->raise();
groupBox->raise();
label_background = new QLabel(centralWidget);
label_background->setObjectName(QStringLiteral("label_background"));
label_background->setGeometry(QRect(0, -10, 481, 571));
label_3 = new QLabel(centralWidget);
label_3->setObjectName(QStringLiteral("label_3"));
label_3->setGeometry(QRect(0, 20, 321, 41));
QPalette palette1;
palette1.setBrush(QPalette::Active, QPalette::WindowText, brush);
palette1.setBrush(QPalette::Inactive, QPalette::WindowText, brush);
palette1.setBrush(QPalette::Disabled, QPalette::WindowText, brush1);
label_3->setPalette(palette1);
QFont font4;
font4.setFamily(QStringLiteral("Segoe UI Light"));
font4.setPointSize(14);
font4.setBold(false);
font4.setItalic(false);
font4.setUnderline(false);
font4.setWeight(50);
font4.setStrikeOut(false);
font4.setKerning(true);
label_3->setFont(font4);
label_3->setAlignment(Qt::AlignCenter);
MainWindow->setCentralWidget(centralWidget);
label_background->raise();
groupBox_2->raise();
label_3->raise();
menuBar = new QMenuBar(MainWindow);
menuBar->setObjectName(QStringLiteral("menuBar"));
menuBar->setGeometry(QRect(0, 0, 320, 21));
MainWindow->setMenuBar(menuBar);
mainToolBar = new QToolBar(MainWindow);
mainToolBar->setObjectName(QStringLiteral("mainToolBar"));
MainWindow->addToolBar(Qt::TopToolBarArea, mainToolBar);
statusBar = new QStatusBar(MainWindow);
statusBar->setObjectName(QStringLiteral("statusBar"));
MainWindow->setStatusBar(statusBar);
retranslateUi(MainWindow);
QMetaObject::connectSlotsByName(MainWindow);
} // setupUi
void retranslateUi(QMainWindow *MainWindow)
{
MainWindow->setWindowTitle(QApplication::translate("MainWindow", "MainWindow", 0));
groupBox_2->setTitle(QString());
groupBox->setTitle(QApplication::translate("MainWindow", "SingIn", 0));
label->setText(QApplication::translate("MainWindow", "Username", 0));
label_2->setText(QApplication::translate("MainWindow", "Password ", 0));
radioButton->setText(QApplication::translate("MainWindow", "Admin", 0));
radioButton_2->setText(QApplication::translate("MainWindow", "User", 0));
pushButton_login->setText(QApplication::translate("MainWindow", " Login", 0));
label_pic->setText(QString());
label_background->setText(QString());
label_3->setText(QApplication::translate("MainWindow", "Application de gestion de r\303\251servation\n"
"du vol", 0));
} // retranslateUi
};
namespace Ui {
class MainWindow: public Ui_MainWindow {};
} // namespace Ui
QT_END_NAMESPACE
#endif // UI_MAINWINDOW_H
| [
"65515091+louaykaddoudi@users.noreply.github.com"
] | 65515091+louaykaddoudi@users.noreply.github.com |
3b56e69a02a0d2986cc26d37c5b38564201b0250 | 877ca805c7486c07240b532c5eaabbfc641b729e | /libmtd/Thread.cpp | 12bf627eea610ede45c426f12d197a15e9f37abf | [] | no_license | reaper2012/wdget | b7d1c35c94ca62e43d5550bc779e2d9053e5cc37 | 1bf9f92b5a0d5e84dac02bec145ebd22db13eb11 | refs/heads/master | 2021-01-22T23:53:45.268161 | 2015-05-14T09:31:06 | 2015-05-14T09:31:06 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,957 | cpp | #define USE_THREAD_H
#include "matrix.h"
namespace matrix {
/*************** class TMutex Object Impl ***************/
TMutex::TMutex(void)
{
pthread_mutex_init( &m_mutex, NULL );
}
TMutex::~TMutex(void)
{
pthread_mutex_destroy( &m_mutex );
}
void TMutex::Lock(void)
{
pthread_mutex_lock( &m_mutex );
}
void TMutex::Unlock(void)
{
pthread_mutex_unlock( &m_mutex );
}
/************** class TSemaphore Object Impl ***************/
TSemaphore::TSemaphore( UINT nCount )
{
pthread_mutex_init( &m_mutex, NULL );
pthread_cond_init( &m_cond, NULL );
m_count = nCount;
}
TSemaphore::~TSemaphore( void )
{
pthread_cond_destroy( &m_cond );
pthread_mutex_destroy( &m_mutex );
}
void TSemaphore::Lock( void )
{
pthread_mutex_lock( &m_mutex );
while( m_count == 0 )
{
pthread_cond_wait( &m_cond, &m_mutex );
}
m_count--;
pthread_mutex_unlock( &m_mutex );
}
void TSemaphore::Unlock( void )
{
pthread_mutex_lock( &m_mutex );
m_count++;
pthread_mutex_unlock( &m_mutex );
pthread_cond_signal( &m_cond );
}
/************** class TThread Object Impl ***************/
pthread_key_t g_keyself;
void* thread_start( void* pvoid )
{
TThread* pth;
pthread_setspecific( g_keyself, pvoid );
pth = (TThread*)pvoid;
if( pth->Init() )
{
pth->Run();
}
pth->m_retval = pth->Exit();
return NULL;
}
TThread::TThread( void )
{
//
}
TThread::~TThread( void )
{
//
}
void TThread::Create( void )
{
pthread_create( &m_thread, NULL, thread_start, this );
}
bool TThread::Init( void )
{
return false;
}
int TThread::Exit( void )
{
return 0;
}
void TThread::Run( void )
{
//
}
void TThread :: Suspend( void )
{
pthread_cancel(m_thread);
}
void TThread :: JoinSelf(void)
{
pthread_join(m_thread, NULL);
}
void TThread :: Resume( void )
{
//Empty
}
TThread* TThread::This( void )
{
return (TThread*)pthread_getspecific( g_keyself );
}
}
| [
"yunlong.lee@msn.com"
] | yunlong.lee@msn.com |
e58605a8c92710c961a3cffe6a78d25a346f71ad | 0d653408de7c08f1bef4dfba5c43431897097a4a | /cmajor/cmtrace/TraceNode.cpp | 36ab9110c3f63c0b2f332c807c2c8db96d037598 | [] | no_license | slaakko/cmajorm | 948268634b8dd3e00f86a5b5415bee894867b17c | 1f123fc367d14d3ef793eefab56ad98849ee0f25 | refs/heads/master | 2023-08-31T14:05:46.897333 | 2023-08-11T11:40:44 | 2023-08-11T11:40:44 | 166,633,055 | 7 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 795 | cpp | // =================================
// Copyright (c) 2022 Seppo Laakko
// Distributed under the MIT license
// =================================
#include <cmajor/cmtrace/TraceNode.hpp>
namespace cmtrace {
TraceNode::TraceNode() : parent(nullptr)
{
}
TraceNode::~TraceNode()
{
}
ContainerNode::ContainerNode()
{
}
void ContainerNode::AddChildNode(TraceNode* childNode)
{
childNodes.push_back(std::unique_ptr<TraceNode>(childNode));
childNode->SetParent(this);
}
FunctionNode::FunctionNode(int64_t time_, int32_t level_, const std::string& thread_, const std::string& name_) : time(time_), level(level_), thread(thread_), name(name_), duration(0), included(false)
{
}
void FunctionNode::SetMessage(const std::string& message_)
{
message = message_;
}
} // namespace cmtrace
| [
"slaakko@gmail.com"
] | slaakko@gmail.com |
3efb225fe78ac695e87afeb5c8255a3018c07b1d | a1a8e3a296ca2ddbcff8b48b328aae60009f8f64 | /CommonIncludes.h | cf449a46e172fd306ac5f194b937b9bae3ebe35f | [] | no_license | gmachiraju/TumorKinetics | db65260a2940b355db0d93780e6cef575772a943 | 4c927419be8c602c9b25fb495b965f7ca01ff1c9 | refs/heads/master | 2021-01-11T00:32:31.237411 | 2016-10-26T23:56:41 | 2016-10-26T23:56:41 | 70,516,948 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 492 | h | #pragma once
#include <algorithm>
#include <assert.h>
#include <fstream>
#include <stdlib.h>
#include <stdio.h>
#include <iostream>
#include <string>
#include <sstream>
#include <GL/glew.h>
#include <GL/freeglut.h>
#include <glm/glm.hpp>
typedef glm::ivec2 Vector2i;
typedef glm::ivec3 Vector3i;
typedef glm::mediump_vec3 Vector3f;
typedef glm::mediump_vec4 Vector4f;
typedef glm::tvec4<unsigned char> Vector4c;
#include <cuda_runtime.h>
#include <cuda_gl_interop.h>
| [
"gmachiraju@gmail.com"
] | gmachiraju@gmail.com |
ead72637dc1df07728f3848fe818e64bd42cee29 | 441b3c51fd905b888e0aa9de5d909d5de236c4d6 | /reading_log/renderarea.h | 9e918d2f35ad0fe45670e5787c0d9e0076df50cc | [] | no_license | abhinavagarwalla/reading_log | f4c95e19cbf3712827e427d1356df30bae319585 | 7fd72258422d31c9a29768bb98807d6af52f7d2c | refs/heads/master | 2020-12-24T13:52:45.308021 | 2014-08-13T15:18:11 | 2014-08-13T15:18:11 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 857 | h | #ifndef RENDERAREA_H
#define RENDERAREA_H
#include <QWidget>
#include "pose.h"
#include <QMutex>
class RenderArea : public QWidget
{
Q_OBJECT
Pose pose; // pose of the robot to be drawn
public:
explicit RenderArea(QWidget *parent = 0);
void changePose(Pose p) {pose = p; update();}
Pose getStartPose();
Pose getEndPose();
void setStartPose(Pose p);
void setEndPose(Pose p);
protected:
void paintEvent(QPaintEvent *);
void drawField(QPainter &painter);
void drawBot(QPainter &painter);
void drawPose(QPainter &painter, int index); //index is 0 or 1, for start or end pose respectively.
bool scribbling;
int x[7], y[7]; //
double theta[7]; // All in QWidget coordinate system. Needs to be converted to our coordinates.
int idx;
signals:
public slots:
};
#endif // RENDERAREA_H
| [
"navabhi174.gmail.com"
] | navabhi174.gmail.com |
688167aa8a4c6945fbc0cde49d1d8c9da62af2ee | 41388e75e9e198744c1d782ab0eba466589c5c01 | /chatProject/include/server/friendmodel.hpp | c8250a19cd6c2007d60d31d61a68a621b5e60bdc | [] | no_license | jony-xue/chat | 30f5759b0dcf48fd36205287484d2fdf4fd351ed | d3f8f4f1d6774a3e5cb5b2faed0bc1cc6c6bb15d | refs/heads/main | 2023-06-24T20:21:21.011915 | 2021-07-24T02:58:54 | 2021-07-24T02:58:54 | 388,066,542 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 319 | hpp | #ifndef FRIENDMODEL_H
#define FRIENDMODEL_H
#include"user.hpp"
#include<vector>
using namespace std;
//提供好友信息的操作接口方法
class FriendModel{
public:
//添加好友关系
void insert(int userid,int frinedid);
//返回用户好友列表
vector<User> query(int userid);
};
#endif | [
"noreply@github.com"
] | noreply@github.com |
28ec6ca6318747b308008a866d15d687d98e179c | d220641796d2ba46e1b275f09e9713bcce51f906 | /NG661DesignerSimulator/projets/ap2i_factory/include/representationparser.h | 26f6201c2acafb3f389046cc6eddccae807874ab | [] | no_license | AxelRICHARD/ng661designer | c0f98ed76dc77a2dac55d2caa424bba911de4960 | 410b70ab38035e528b7a40ac5e86e5fb0fbc58f7 | refs/heads/master | 2021-05-05T14:30:18.103534 | 2018-02-21T16:21:35 | 2018-02-21T16:21:35 | 118,460,308 | 0 | 0 | null | 2018-01-22T13:24:32 | 2018-01-22T13:24:32 | null | UTF-8 | C++ | false | false | 1,469 | h | /*******************************************************************************
* Copyright (c) 2015, 2016 Thales.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
* Contributors:
* Thales Avionics - initial design and implementation
*******************************************************************************/
#ifndef REPRESENTATIONPARSER_H
#define REPRESENTATIONPARSER_H
#include <QDomElement>
#include <QStack>
#include <QPair>
#include "abstractdigesthandler.h"
#include "domparser.h"
namespace AP2I
{
class BasicObject;
class Component;
class ParsingContext;
class ComponentFactory;
class RepresentationParser : public AbstractDigestHandler,
public DomParser
{
public:
explicit RepresentationParser(ParsingContext &pContext);
virtual ~RepresentationParser() = default;
RepresentationParser() = delete;
RepresentationParser(const RepresentationParser&) = delete;
void digest(QDomElement &pElement);
bool startElement(QDomElement &pElement);
void endElement(QDomElement &pElement);
private:
ParsingContext &mContext;
QStack<QPair<BasicObject *, QDomElement> > mParents;
};
} /* namespace AP2I */
#endif // REPRESENTATIONPARSER_H
| [
"maxime.dechatre@gmail.com"
] | maxime.dechatre@gmail.com |
b0ae0aaa2b4a337b294b9d643091c29930141ad4 | 77d715499eea2f1f01ad11f5eb0a35d5ee4b68de | /barista.h | 0fed997153783df8bae76850d28129e895330774 | [] | no_license | gibson-compsci/Barista_Drinks_cpp | 0b459c40b02ed779a5c58aeb83dc84c87098ac36 | 99f4627a78c90d168efae3b6cd5fedc095266b8a | refs/heads/master | 2021-01-10T20:57:06.702413 | 2015-02-17T16:04:44 | 2015-02-17T16:04:44 | 30,923,741 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,375 | h | /*
* File: barista.h
* Author: Cameron Gibson and John Zaidel
* gibso103 zaideljo
*
* header file for all classes related to project 2 of CSE335
*
* Created on January 29, 2015, 4:46 PM
*/
#ifndef BARISTA_H
#define BARISTA_H
#include<string>
using std::string;
#include<vector>
using std::vector;
#include<algorithm>
using std::swap;
#include<iostream>
using std::cout;
#include "drink.h"
/****************************** OrderList *************************************/
class OrderList{
public:
OrderList();
OrderList(const OrderList &OL);
OrderList& operator=(const OrderList &OL);
virtual ~OrderList();
virtual Drink* get_drink(int pos)=0;
virtual int get_size()=0;
virtual void swap_drinks(int d1,int d2, OrderList* OL)=0;
private:
int sz;
};
/**************************** OrderList End ***********************************/
/**************************** BubbleTeaList ***********************************/
class BubbleTeaList:public OrderList{
public:
BubbleTeaList(vector<BubbleTea*> &vec);
BubbleTeaList(const BubbleTeaList &OL);
BubbleTeaList& operator=(const BubbleTeaList &OL);
virtual ~BubbleTeaList();
virtual BubbleTea* get_drink(int pos);
virtual int get_size();
virtual void swap_drinks(int d1, int d2, OrderList* OL);
private:
vector<BubbleTea*> ls;
};
/************************** BubbleTeaList End *********************************/
/************************ OrangeJuiceOrderList ********************************/
class OrangeJuiceOrderList:public OrderList{
public:
OrangeJuiceOrderList(vector<OrangeJuice*> &vec);
OrangeJuiceOrderList(const OrangeJuiceOrderList &OL);
OrangeJuiceOrderList& operator=(const OrangeJuiceOrderList &OL);
virtual ~OrangeJuiceOrderList();
virtual OrangeJuice* get_drink(int pos);
virtual int get_size();
virtual void swap_drinks(int d1, int d2, OrderList* OL);
private:
vector<OrangeJuice*> ls;
};
/********************** OrangeJuiceOrderList End ******************************/
/******************************** Barista *************************************/
class Barista{
public:
Barista();
Barista(const Barista &barista);
Barista& operator=(const Barista &barista);
virtual ~Barista();
virtual void deliverDrinks(OrderList* OL);
};
/***************************** Barista End ************************************/
/***************************** CoolBarista ************************************/
//CoolBarista sorts the Drinks by the name of the customer
class CoolBarista:public Barista{
public:
CoolBarista();
CoolBarista(const CoolBarista &barista);
CoolBarista& operator=(const CoolBarista &barista);
virtual ~CoolBarista();
virtual void deliverDrinks(OrderList* OL);
};
/*************************** CoolBarista End **********************************/
/**************************** NewbieBarista ***********************************/
//NewbieBarista sorts the Drinks by the size of the drink
class NewbieBarista:public Barista{
public:
NewbieBarista();
NewbieBarista(const NewbieBarista &barista);
NewbieBarista& operator=(const NewbieBarista &barista);
virtual ~NewbieBarista();
virtual void deliverDrinks(OrderList* OL);
};
/************************** NewbieBarista End *********************************/
#endif /* BARISTA_H */
| [
"gibson.compsci@gmail.com"
] | gibson.compsci@gmail.com |
df17a75717bf98869bdfdd512f4bd0caa308c5ba | c20fe6a9a08bd833aa43c78cf64b72ad0e09ace6 | /cc1.cpp | 91233633e6f60cda0c8ec3195f6ca74091a99faf | [] | no_license | mithlesh4257/C-Programs | 50a144b127f0560bd6903fdadeaacaa88576f461 | 9f09d9b37c29b5a80361441c05e7c67f67fb6564 | refs/heads/master | 2021-01-21T21:14:59.409810 | 2017-06-19T15:56:42 | 2017-06-19T15:56:42 | 94,793,714 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,921 | cpp | #include<iostream>
#include<cstdlib>
#include<cstring>
using namespace std;
int check_string_seq(char stack[]);
int co(char str[]);
int check_reports(char str[]);
int co(char str[]){
int c=0;
int k=strlen(str);
for(int i=0;i<k;i++){
if(str[i] == '.'){
c = c+1;
}
}
return k-c;
}
int check_reports(char str[]){
int i,k,l,len=strlen(str);
int count=0,signal=0,sig=0;
for(int j=0;j<len;j++){
if(str[j] == 'H'){
signal = 1;
break;
}
}
int c=0;
char stack[len];
if(signal ==1){
for(i=0;i<len;i++){
if(str[i] == 'H'){
if(c>0){
if(stack[c-1] == 'T'){
stack[c++] = 'H';
count++;
}
}
else if(c==0){
stack[c++] = 'H';
count++;
}
}
if(str[i] == 'T'){
if(c>0){
if(stack[c-1] == 'H'){
stack[c++] = 'T';
count++;
}
}
}
}
}
if(strlen(stack) == co(str)){
if(strlen(stack)%2 == 0){
if(check_string_seq(stack)){
return 1;
}
else{
return 0;
}
}
else {
return 0;
}
}
else {
return 0;
}
}
int check_string_seq(char stack[]){
int i,count=0,ld=strlen(stack);
for(i=0;i<ld;i++){
if(stack[i] == 'H' && stack[i+1] == 'T'){
count++;
}
}
if(count*2 ==ld){
return 1;
}
else {
return 0;
}
}
int main(){
int r;
cin>>r;
int re[r];
int ll;
if(r>=1 && r<=500){
for(ll=0;ll<r;ll++){
int l;
cin>>l;
if(l>=1 && l<=500){
char str[l];
for(int kd=0;kd<l;kd++){
cin>>str[kd];
}
re[ll] = check_reports(str);
}
}
}
for(int t=0;t<r;t++){
re[t] == 1?cout<<"Valid"<<endl:cout<<"Invalid"<<endl;
}
return 0;
}
| [
"noreply@github.com"
] | noreply@github.com |
966d2fc465e22d18d62b76b220243d429d676620 | 036484cc21e143ec53f389da649f63b7ea9a9d6c | /Canfield.h | 6ca350c9fb5c2f53c8ff712ca17f99de4d3ea109 | [] | no_license | xCSxXenon/Canfield | a07d6429ba29d8e75db3026a0b7aff2f48ed8f3f | 8bf36f7ef0c9f345136b6ea1d88c922d7741db3a | refs/heads/master | 2020-08-01T11:56:47.832102 | 2019-09-26T03:19:32 | 2019-09-26T03:19:32 | 210,989,429 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,220 | h | /*********************************************************************
Author: Dana Vrajitoru, IUSB, CS
Class: C243 Data Structures
File name: canfield.h
Last updated: September 2018
Description: Implementation of the card game of Canfield using
stacks and queues.
**********************************************************************/
#ifndef CANFIELD_H
#define CANFIELD_H
#include "Queue.h"
#include "Stack.h"
const int NUM_CARDS = 52, NUM_SUITS = 4, NUM_RANKS = 13;
class Canfield
{
private:
Queue deck;
Stack reserve;
Stack foundation[NUM_SUITS],
tableau[NUM_SUITS];
int waste;
bool quit;
char from,
to;
int fromId,
toId,
score;
public:
// Default constructor
Canfield();
// Destructor
~Canfield();
// The main loop of the game.
void play();
private:
// Empty all the data structures
void emptyAll();
// Starting a new game. It must reset all the data structures,
// generate a new set of 52 random cards and place them in the
// appropriate places in the game.
void newGame();
// creates a new pack of cards and shuffles them
void newShuffledPack(int *newDeck);
// Prints the choices of actions for the player.
void printMenu();
// Performs an action based on the user's choice.
void performAction(char answer);
// Displays the entire content of the game.
void printGame();
// Deals one card from the deck.
void deal();
// Performs one move.
void move();
// Determines what card is to be moved. Accessor method.
int getCard();
// Checks if the requested movement is possible. Accessor method.
bool checkMove(int card);
// Removes the card to be moved. Mutator method.
void removeCard();
// Adds the card or the entire tableau to its new destination.
// Mutator method.
void addCard(int card);
// Repeats previous move.
void repeatMove();
// Prints winning message
void printWin();
// Add to score
void addScore();
// Check if won
void checkWin();
// Get score
int getScore();
};
#endif
| [
"jordantaylorlewis@gmail.com"
] | jordantaylorlewis@gmail.com |
70cf8e3b609a184b37803329d58af797c8ee3f5c | 0f7da6410704d3682de7e4e2968355911ba0bd80 | /AVR/AVR/Trampoline.cpp | 7890723e2082b17879e0ee7e6652824486e3cf55 | [] | no_license | modulolabs/firmware | 21c95b2995dfd1e8a8a2662ed287bced5c65495e | 1f5bf96faac5b894de3654d3c7c86894703cc52b | refs/heads/master | 2020-04-09T10:11:23.956729 | 2015-12-06T23:38:31 | 2015-12-06T23:38:31 | 21,027,607 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 225 | cpp | /*
* Trampoline.cpp
*
* Created: 11/2/2015 12:08:58 PM
* Author: ekt
*/
void startApplication() __attribute__((section (".trampoline"))) __attribute__((naked));
void startApplication() {
asm("rjmp __ctors_start");
}
| [
"erin@rgba.net"
] | erin@rgba.net |
8e63745a6234781e24d6f3247c69cb09a6238450 | e9556f4bdce1d0f356d5085528f57b088500ee45 | /Stage 3/1. Looping statements/Factorial of a number.cpp | 168bd3a887d0c519a4d7c134f30956f177ad1563 | [] | no_license | anshulsisodia/Face-Prep-FACE-360-capsule | 3485cb46933a65fc5e358886ec140be098830c34 | 16079a1ba324b7e5a0b85578e3d3c16791cfe789 | refs/heads/main | 2023-07-13T02:02:44.978907 | 2021-08-15T16:50:22 | 2021-08-15T16:50:22 | 395,075,018 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 111 | cpp | #include<iostream>
int main()
{
int i,n,f=1;
std::cin>>n;
for(i=1;i<=n;i++)
f=f*i;
std::cout<<f;
}
| [
"noreply@github.com"
] | noreply@github.com |
7528f57bbedebdf26238585cccd9adc82a2210b8 | 29f2549998b45a046930f3b1c5e3024791b1be16 | /lib/System/Win32/DynamicLibrary.inc | 10e64aa990c95f281120fe26efe9675d028dfa00 | [
"NCSA"
] | permissive | fanfuqiang/iec-61131_new | eda210bd30a6a32e3d14c3d3e87f51b179124c72 | fde56fdefd60e33facaa07661e388ed6c916c763 | refs/heads/master | 2016-09-05T14:59:12.678870 | 2015-02-06T23:55:09 | 2015-02-06T23:55:09 | 30,048,552 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 6,260 | inc | //===- Win32/DynamicLibrary.cpp - Win32 DL Implementation -------*- C++ -*-===//
//
// The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
//
// This file provides the Win32 specific implementation of DynamicLibrary.
//
//===----------------------------------------------------------------------===//
#include "Win32.h"
#ifdef __MINGW32__
#include <imagehlp.h>
#else
#include <dbghelp.h>
#endif
#ifdef _MSC_VER
#include <ntverp.h>
#endif
#ifdef __MINGW32__
#if (HAVE_LIBIMAGEHLP != 1)
#error "libimagehlp.a should be present"
#endif
#else
#pragma comment(lib, "dbghelp.lib")
#endif
namespace llvm {
using namespace sys;
//===----------------------------------------------------------------------===//
//=== WARNING: Implementation here must contain only Win32 specific code
//=== and must not be UNIX code.
//===----------------------------------------------------------------------===//
static std::vector<HMODULE> OpenedHandles;
#ifdef _WIN64
typedef DWORD64 ModuleBaseType;
#else
typedef ULONG ModuleBaseType;
#endif
extern "C" {
// Use old callback if:
// - Not using Visual Studio
// - Visual Studio 2005 or earlier but only if we are not using the Windows SDK
// or Windows SDK version is older than 6.0
// Use new callback if:
// - Newer Visual Studio (comes with newer SDK).
// - Visual Studio 2005 with Windows SDK 6.0+
#if !defined(_MSC_VER) || _MSC_VER < 1500 && (!defined(VER_PRODUCTBUILD) || VER_PRODUCTBUILD < 6000)
static BOOL CALLBACK ELM_Callback(PSTR ModuleName,
ModuleBaseType ModuleBase,
ULONG ModuleSize,
PVOID UserContext)
#else
static BOOL CALLBACK ELM_Callback(PCSTR ModuleName,
ModuleBaseType ModuleBase,
ULONG ModuleSize,
PVOID UserContext)
#endif
{
// Ignore VC++ runtimes prior to 7.1. Somehow some of them get loaded
// into the process.
if (stricmp(ModuleName, "msvci70") != 0 &&
stricmp(ModuleName, "msvcirt") != 0 &&
stricmp(ModuleName, "msvcp50") != 0 &&
stricmp(ModuleName, "msvcp60") != 0 &&
stricmp(ModuleName, "msvcp70") != 0 &&
stricmp(ModuleName, "msvcr70") != 0 &&
#ifndef __MINGW32__
// Mingw32 uses msvcrt.dll by default. Don't ignore it.
// Otherwise, user should be aware, what he's doing :)
stricmp(ModuleName, "msvcrt") != 0 &&
#endif
stricmp(ModuleName, "msvcrt20") != 0 &&
stricmp(ModuleName, "msvcrt40") != 0) {
OpenedHandles.push_back((HMODULE)ModuleBase);
}
return TRUE;
}
}
bool DynamicLibrary::LoadLibraryPermanently(const char *filename,
std::string *ErrMsg) {
if (filename) {
HMODULE a_handle = LoadLibrary(filename);
if (a_handle == 0)
return MakeErrMsg(ErrMsg, std::string(filename) + ": Can't open : ");
OpenedHandles.push_back(a_handle);
} else {
// When no file is specified, enumerate all DLLs and EXEs in the
// process.
EnumerateLoadedModules(GetCurrentProcess(), ELM_Callback, 0);
}
// Because we don't remember the handle, we will never free it; hence,
// it is loaded permanently.
return false;
}
// Stack probing routines are in the support library (e.g. libgcc), but we don't
// have dynamic linking on windows. Provide a hook.
#if defined(__MINGW32__) || defined (_MSC_VER)
#define EXPLICIT_SYMBOL(SYM) \
if (!strcmp(symbolName, #SYM)) return (void*)&SYM
#define EXPLICIT_SYMBOL2(SYMFROM, SYMTO) \
if (!strcmp(symbolName, #SYMFROM)) return (void*)&SYMTO
#define EXPLICIT_SYMBOL_DEF(SYM) \
extern "C" { extern void *SYM; }
#if defined(__MINGW32__)
EXPLICIT_SYMBOL_DEF(_alloca);
EXPLICIT_SYMBOL_DEF(__main);
EXPLICIT_SYMBOL_DEF(__ashldi3);
EXPLICIT_SYMBOL_DEF(__ashrdi3);
EXPLICIT_SYMBOL_DEF(__cmpdi2);
EXPLICIT_SYMBOL_DEF(__divdi3);
EXPLICIT_SYMBOL_DEF(__fixdfdi);
EXPLICIT_SYMBOL_DEF(__fixsfdi);
EXPLICIT_SYMBOL_DEF(__fixunsdfdi);
EXPLICIT_SYMBOL_DEF(__fixunssfdi);
EXPLICIT_SYMBOL_DEF(__floatdidf);
EXPLICIT_SYMBOL_DEF(__floatdisf);
EXPLICIT_SYMBOL_DEF(__lshrdi3);
EXPLICIT_SYMBOL_DEF(__moddi3);
EXPLICIT_SYMBOL_DEF(__udivdi3);
EXPLICIT_SYMBOL_DEF(__umoddi3);
#elif defined(_MSC_VER)
EXPLICIT_SYMBOL_DEF(_alloca_probe);
#endif
#endif
void* DynamicLibrary::SearchForAddressOfSymbol(const char* symbolName) {
// First check symbols added via AddSymbol().
if (ExplicitSymbols) {
std::map<std::string, void *>::iterator I =
ExplicitSymbols->find(symbolName);
std::map<std::string, void *>::iterator E = ExplicitSymbols->end();
if (I != E)
return I->second;
}
// Now search the libraries.
for (std::vector<HMODULE>::iterator I = OpenedHandles.begin(),
E = OpenedHandles.end(); I != E; ++I) {
FARPROC ptr = GetProcAddress((HMODULE)*I, symbolName);
if (ptr) {
return (void *) ptr;
}
}
#if defined(__MINGW32__)
{
EXPLICIT_SYMBOL(_alloca);
EXPLICIT_SYMBOL(__main);
EXPLICIT_SYMBOL(__ashldi3);
EXPLICIT_SYMBOL(__ashrdi3);
EXPLICIT_SYMBOL(__cmpdi2);
EXPLICIT_SYMBOL(__divdi3);
EXPLICIT_SYMBOL(__fixdfdi);
EXPLICIT_SYMBOL(__fixsfdi);
EXPLICIT_SYMBOL(__fixunsdfdi);
EXPLICIT_SYMBOL(__fixunssfdi);
EXPLICIT_SYMBOL(__floatdidf);
EXPLICIT_SYMBOL(__floatdisf);
EXPLICIT_SYMBOL(__lshrdi3);
EXPLICIT_SYMBOL(__moddi3);
EXPLICIT_SYMBOL(__udivdi3);
EXPLICIT_SYMBOL(__umoddi3);
EXPLICIT_SYMBOL2(alloca, _alloca);
#undef EXPLICIT_SYMBOL
#undef EXPLICIT_SYMBOL2
#undef EXPLICIT_SYMBOL_DEF
}
#elif defined(_MSC_VER)
{
EXPLICIT_SYMBOL2(alloca, _alloca_probe);
EXPLICIT_SYMBOL2(_alloca, _alloca_probe);
#undef EXPLICIT_SYMBOL
#undef EXPLICIT_SYMBOL2
#undef EXPLICIT_SYMBOL_DEF
}
#endif
return 0;
}
}
| [
"feqin1023@gmail.com"
] | feqin1023@gmail.com |
546f61336ced4bc27effad396f30e3811b37c322 | cddbc68d18191f59c705918c635aa91fde2a7171 | /lab-3/main.cpp | 2db2f9ce8a48fa7b67ba7ba9eaa07d29d307b42c | [] | no_license | EarlOld/Practice | b1698530050596e3cae8d74ce8c2aae4c27358b3 | ad402312d3d1b60f5e9bbefbf0c0bdbb90e3482f | refs/heads/master | 2021-01-13T05:17:19.740191 | 2017-03-06T05:23:14 | 2017-03-06T05:23:14 | 81,321,650 | 2 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 338 | cpp | #include <iostream>
using namespace std;
int main()
{
system("color f0");
int a, b, c;
cout << "Enter the numbers(3):";
cin >> a >> b >> c;
int min = a;
if (b < min) {
min = b;
}
if (c < min) {
min = c;
}
cout << "Min: " << min << endl;
system("pause");
return 0;
} | [
"dimonsuper010@gmail.com"
] | dimonsuper010@gmail.com |
1c0315a4292be06d18ecc5c06ddc5a650a87face | a2f710cd235be3355359250f088798106d85a856 | /src/Nn/NeuralNetwork.hh | a857ca935dae610605578f46b2af8c1d71518d23 | [
"AFL-2.1",
"LicenseRef-scancode-unknown-license-reference",
"AFL-3.0"
] | permissive | jizhihang/squirrel | 7b3a9ee44eecad8fc18be9e01926631d1515d641 | cfbca81423d234cad9f4468d3326a391628c264a | refs/heads/master | 2020-07-18T21:38:58.131368 | 2016-05-11T15:15:53 | 2016-05-11T15:15:53 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,179 | hh | /*
* Copyright 2016 Alexander Richard
*
* This file is part of Squirrel.
*
* Licensed under the Academic Free License 3.0 (the "License").
* You may not use this file except in compliance with the License.
* You should have received a copy of the License along with Squirrel.
* If not, see <https://opensource.org/licenses/AFL-3.0>.
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
*/
#ifndef NN_NEURALNETWORK_HH_
#define NN_NEURALNETWORK_HH_
#include <vector>
#include <Core/CommonHeaders.hh>
#include "Types.hh"
#include "Layer.hh"
#include "Connection.hh"
namespace Nn {
class NeuralNetwork
{
private:
static const Core::ParameterStringList paramConnections_;
static const Core::ParameterInt paramInputDimension_;
private:
u32 inputDimension_;
u32 nLayer_;
InputLayer inputLayer_; // connects input to the network
std::vector<Layer*> layer_;
std::vector<Connection*> connections_;
std::map<std::string, u32> layerNameToIndex_;
bool isRecurrent_;
bool isInitialized_;
bool isComputing_;
bool layerExists(std::string& layerName);
void addLayer(std::string& layerName);
void addConnection(Connection* connection, bool needsWeightsFileSuffix);
void buildNetwork();
bool containsLayer(BaseLayer* layer, std::vector<BaseLayer*> v);
void sortTopologically();
void logTopology();
public:
NeuralNetwork();
virtual ~NeuralNetwork();
/*
* @param minibatchSize the size of a mini batch
* @param maxMemory the number of time frames memorized in the activations/error signal container
*/
void initialize(u32 maxMemory = 1);
/*
* add a connection to the network
* @param connectionName the name of the connection
* @param sourceLayer, destLayer the source and destination of the connection
* @param sourcePort, destPort the ports to tie the connection to in source and destination layer
* @param needsWeigthsFileSuffix if true, the port numbers will be added to the weights filename automatically
*/
// public because it is used in Layer::addInternalConnections
void addConnection(std::string& connectionName, BaseLayer* sourceLayer, BaseLayer* destLayer,
u32 sourcePort, u32 destPort, bool needsWeightsFileSuffix = false);
bool isRecurrent() const { return isRecurrent_; }
// index of the last recurrent layer (0 if no such layer exists)
u32 lastRecurrentLayerIndex() const;
/*
* @param batchSize the number of feature vectors in a minibatch
*/
void setMinibatchSize(u32 batchSize);
/*
* @param maxMemory the maximal amount of timeframes that are memorized for recurrent neural networks
*/
void setMaximalMemory(u32 maxMemory);
u32 nLayer() const { return nLayer_; }
u32 nConnections() const { return connections_.size(); }
/*
* @return reference to the layer at the given index
*/
Layer& layer(u32 layerIndex) const;
/*
* @return reference to the last layer in the network
*/
Layer& outputLayer() const { return layer(nLayer_ - 1); }
/*
* @return reference to the connection with the given index
*/
Connection& connection(u32 connectionIndex) const;
u32 inputDimension() const { return inputDimension_; }
u32 outputDimension() const { return outputLayer().nUnits(); }
// forward the given mini batch up to layer maxLayerIndex (default: forward to the output layer)
void forward(Matrix& minibatch, u32 maxLayerIndex = Types::max<u32>());
void forwardTimeframe(MatrixContainer& batchedSequence, u32 t, bool greedyForwarding = true);
void forwardSequence(MatrixContainer& batchedSequence);
void reset();
// in training mode, backpropagation is done
void setTrainingMode(bool trainingMode, u32 firstTrainableLayerIndex = 0);
// save the network parameters (optionally with a suffix for each weight and bias file)
void saveNeuralNetworkParameters();
void saveNeuralNetworkParameters(const std::string& suffix);
bool isComputing() const { return isComputing_; }
void initComputation(bool sync = true);
void finishComputation(bool sync = true);
};
} // namespace
#endif /* NN_NEURALNETWORK_HH_ */
| [
"richard@iai.uni-bonn.de"
] | richard@iai.uni-bonn.de |
6e59e65fb5ec6d21bf00bb2f37eb541732e68a22 | 1ccddf3237a936de25715a9b3912e2d176f6e162 | /april/cmd/modules/amodactuator.h | 13e1620f71c87112168113a75d7187f68024325d | [
"BSD-3-Clause"
] | permissive | TNick/april | 7080fdc343d806bdedc7777f1ef18a0bd42a817a | 59f35adf4ffba8f5e59839add5e61f96bf42594e | refs/heads/master | 2016-09-11T02:46:12.070676 | 2013-06-12T13:24:18 | 2013-06-12T13:24:18 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,081 | h | /* ========================================================================= */
/* ------------------------------------------------------------------------- */
/*!
\file amodactuator.h
\date Apr 2013
\author TNick
\brief Contains the definition for AModActuator class
*//*
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Please read COPYING and README files in root folder
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
*/
/* ------------------------------------------------------------------------- */
/* ========================================================================= */
#ifndef __AMODACTUATOR_INC__
#define __AMODACTUATOR_INC__
//
//
//
//
/* INCLUDES ------------------------------------------------------------ */
#include <april/april.h>
#include <april/cmd/aprilmodule.h>
/* INCLUDES ============================================================ */
//
//
//
//
/* DEFINITIONS --------------------------------------------------------- */
namespace april {
/* DEFINITIONS ========================================================= */
//
//
//
//
/* CLASS --------------------------------------------------------------- */
/**
* @brief Module that provides commands related to Actuators
*/
class
APRILSHARED_EXPORT
AModActuator : public AprilModule {
BBM_TRACK( AModActuator );
//
//
//
//
/* DEFINITIONS ----------------------------------------------------- */
/* DEFINITIONS ===================================================== */
//
//
//
//
/* DATA ------------------------------------------------------------ */
private:
/* DATA ============================================================ */
//
//
//
//
/* FUNCTIONS ------------------------------------------------------- */
public:
//! constructor
AModActuator ( CommandMap * cmd_map );
protected:
//! destructor;
virtual ~AModActuator ( void );
//! insert all commands
virtual void insertCommands ( CommandMap * cm );
//! remove all commands
virtual void removeCommands ( CommandMap * cm );
//! tell your name
virtual QString name ( void );
private:
//! create a new component
static bool newActuator (
const QString & s_cmd,
const AaTkString & atks,
QString & s_err
);
//! list existing components
static bool listActuator (
const QString & s_cmd,
const AaTkString & atks,
QString & s_err
);
//! list available components
static bool kindsActuator (
const QString & s_cmd,
const AaTkString & atks,
QString & s_err
);
/* FUNCTIONS ======================================================= */
//
//
//
//
}; /* class AModActuator */
/* CLASS =============================================================== */
//
//
//
//
} // namespace april
#endif // __AMODACTUATOR_INC__
/* ------------------------------------------------------------------------- */
/* ========================================================================= */
| [
"nicu.tofan@gmail.com"
] | nicu.tofan@gmail.com |
0ff3afac51e9136aceaa156d6d8b5f79a66e62ca | 393119ca8d67880a284b9b22909c3f2bb837f498 | /src/akari/core/nodes/python.h | dc88b0126e1f27e77a7cc171428f101f563bc269 | [] | no_license | Hengle/AkariRender-1 | e8c81aa1dc0e65d552841b43af689149661264c7 | 7082efdbe6585c5bb2fce2f9fcc04e24e1ca6e15 | refs/heads/master | 2023-01-01T13:47:56.813889 | 2020-10-18T23:34:38 | 2020-10-18T23:34:38 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,683 | h | // MIT License
//
// Copyright (c) 2020 椎名深雪
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
// copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in all
// copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
// SOFTWARE.
#pragma once
#ifdef AKR_ENABLE_PYTHON
# include <akari/common/math.h>
# include <akari/core/logger.h>
# ifdef AKR_ENABLE_PYTHON
# include <pybind11/pybind11.h>
# include <pybind11/pybind11.h>
# include <pybind11/embed.h>
# endif
namespace akari {
namespace py = pybind11;
AKR_VARIANT
struct RegisterMathFunction {
static void register_math_functions(py::module &m);
};
void register_utility(py::module &m);
AKR_EXPORT void register_module_akari(py::module &m);
} // namespace akari
#endif | [
"xiaochun.tong@mail.utoronto.ca"
] | xiaochun.tong@mail.utoronto.ca |
3ee38598fbf0540c17c727a85378c04aa8e8e92e | 653cd5ce4c7b3a84f502018b8ca79f5b7dee6db6 | /gui/src/main_gui/fsguiapp.cpp | 3ca61ca6ae9129a2dbcc08c060a055a05f4cbbd1 | [
"BSD-3-Clause",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | krismuad/TOWNSEMU | dab4660c010aa170e607ff02e103415c33427912 | 49c098ecb4686a506a208e01271ed135c0c3c482 | refs/heads/master | 2023-02-17T01:08:23.329009 | 2021-01-18T09:04:24 | 2021-01-18T09:04:24 | 317,481,141 | 0 | 0 | BSD-3-Clause | 2020-12-01T08:54:48 | 2020-12-01T08:54:47 | null | UTF-8 | C++ | false | false | 35,990 | cpp | /* ////////////////////////////////////////////////////////////
File Name: fsguiapp.cpp
Copyright (c) 2017 Soji Yamakawa. All rights reserved.
http://www.ysflight.com
Redistribution and use in source and binary forms, with or without modification,
are permitted provided that the following conditions are met:
1. Redistributions of source code must retain the above copyright notice,
this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright notice,
this list of conditions and the following disclaimer in the documentation
and/or other materials provided with the distribution.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS
BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
//////////////////////////////////////////////////////////// */
#include <iostream>
#include <ysclass.h>
#include <ysport.h>
#include <yscompilerwarning.h>
#include <ysgl.h>
#include "fsguiapp.h"
#include "cpputil.h"
#include "d77.h"
#include "diskimg.h"
// If you want to use fixed-function pipeline of OpenGL 1.x,
// (1) comment out the following line, and
// (2) change linking libraries in CMakeLists.txt from:
// fsguilib_gl2 fsgui3d_gl2
// to
// fsguilib_gl1 fsgui3d_gl1
//#define DONT_USE_FIXED_FUNCTION_PIPELINE
static FsGuiMainCanvas *appMainCanvas;
////////////////////////////////////////////////////////////
FsGuiMainCanvas::FsGuiMainCanvas()
{
appMustTerminate=YSFALSE;
mainMenu=nullptr;
profileDlg=new ProfileDialog(this);
}
FsGuiMainCanvas::~FsGuiMainCanvas()
{
// The following two lines ensure that all self-destructive dialogs are cleaned. 2015/03/18
RemoveDialogAll();
PerformScheduledDeletion();
delete profileDlg;
subproc.TerminateSubprocess();
DeleteMainMenu();
}
void FsGuiMainCanvas::Initialize(int argc,char *argv[])
{
MakeMainMenu();
profileDlg->Make();
LoadProfile(GetDefaultProfileFileName());
AddDialog(profileDlg);
YsDisregardVariable(argc);
YsDisregardVariable(argv);
YsGLSLCreateSharedRenderer();
}
void FsGuiMainCanvas::MakeMainMenu(void)
{
mainMenu=new FsGuiPopUpMenu;
mainMenu->Initialize();
mainMenu->SetIsPullDownMenu(YSTRUE);
{
auto *subMenu=mainMenu->AddTextItem(0,FSKEY_F,L"File")->GetSubMenu();
subMenu->AddTextItem(0,FSKEY_O,L"Open Profile")->BindCallBack(&THISCLASS::File_OpenProfile,this);
subMenu->AddTextItem(0,FSKEY_S,L"Save Profile")->BindCallBack(&THISCLASS::File_SaveProfile,this);
subMenu->AddTextItem(0,FSKEY_A,L"Save Profile As")->BindCallBack(&THISCLASS::File_SaveProfileAs,this);
subMenu->AddTextItem(0,FSKEY_NULL,L"Save as Default")->BindCallBack(&THISCLASS::File_SaveDefaultProfile,this);
subMenu->AddTextItem(0,FSKEY_NULL,L"Reload Default")->BindCallBack(&THISCLASS::File_ReloadDefaultProfile,this);
{
auto subSubMenu=subMenu->AddTextItem(0,FSKEY_N,L"New")->AddSubMenu();
subSubMenu->AddTextItem(0,FSKEY_NULL,L"1232KB Floppy Disk Image")->BindCallBack(&THISCLASS::File_New_1232KB,this);
subSubMenu->AddTextItem(0,FSKEY_NULL,L"1440KB Floppy Disk Image")->BindCallBack(&THISCLASS::File_New_1440KB,this);
subSubMenu->AddTextItem(0,FSKEY_NULL,L"640KB Floppy Disk Image")->BindCallBack(&THISCLASS::File_New_640KB,this);
subSubMenu->AddTextItem(0,FSKEY_NULL,L"720KB Floppy Disk Image")->BindCallBack(&THISCLASS::File_New_720KB,this);
subSubMenu->AddTextItem(0,FSKEY_NULL,L"Hard-Disk Image")->BindCallBack(&THISCLASS::File_New_HDD,this);
}
subMenu->AddTextItem(0,FSKEY_X,L"Exit")->BindCallBack(&THISCLASS::File_Exit,this);
}
{
auto *subMenu=mainMenu->AddTextItem(0,FSKEY_T,L"FM TOWNS")->GetSubMenu();
subMenu->AddTextItem(0,FSKEY_S,L"Start Virtual Machine")->BindCallBack(&THISCLASS::VM_Start,this);
subMenu->AddTextItem(0,FSKEY_NULL,L"Start and Close GUI")->BindCallBack(&THISCLASS::VM_StartAndCloseGUI,this);
subMenu->AddTextItem(0,FSKEY_NULL,L"Reset Virtual Machine")->BindCallBack(&THISCLASS::VM_Reset,this);
subMenu->AddTextItem(0,FSKEY_Q,L"Power Off")->BindCallBack(&THISCLASS::VM_PowerOff,this);
subMenu->AddTextItem(0,FSKEY_P,L"Pause")->BindCallBack(&THISCLASS::VM_Pause,this);
subMenu->AddTextItem(0,FSKEY_R,L"Resume")->BindCallBack(&THISCLASS::VM_Resume,this);
{
auto *freqSubMenu=subMenu->AddTextItem(0,FSKEY_F,L"CPU Frequency")->AddSubMenu();
freqSubMenu->AddTextItem(0,FSKEY_1,L"1MHz")->BindCallBack(&THISCLASS::VM_1MHz,this);
freqSubMenu->AddTextItem(0,FSKEY_4,L"4MHz")->BindCallBack(&THISCLASS::VM_4MHz,this);
freqSubMenu->AddTextItem(0,FSKEY_8,L"8MHz")->BindCallBack(&THISCLASS::VM_8MHz,this);
freqSubMenu->AddTextItem(0,FSKEY_2,L"12MHz")->BindCallBack(&THISCLASS::VM_12MHz,this);
freqSubMenu->AddTextItem(0,FSKEY_6,L"16MHz")->BindCallBack(&THISCLASS::VM_16MHz,this);
freqSubMenu->AddTextItem(0,FSKEY_5,L"25MHz")->BindCallBack(&THISCLASS::VM_25MHz,this);
}
{
auto *keyboardSubMenu=subMenu->AddTextItem(0,FSKEY_K,L"Keyboard Mode")->AddSubMenu();
keyboardSubMenu->AddTextItem(0,FSKEY_D,L"Direct (for Gaming)")->BindCallBack(&THISCLASS::VM_Keyboard_Direct,this);
keyboardSubMenu->AddTextItem(0,FSKEY_T,L"Translation1 (for Typing, ESC->ESC+BREAK)")->BindCallBack(&THISCLASS::VM_Keyboard_Translation1,this);
keyboardSubMenu->AddTextItem(0,FSKEY_2,L"Translation2 (for Typing, ESC->ESC)")->BindCallBack(&THISCLASS::VM_Keyboard_Translation2,this);
keyboardSubMenu->AddTextItem(0,FSKEY_3,L"Translation3 (for Typing, ESC->BREAK)")->BindCallBack(&THISCLASS::VM_Keyboard_Translation3,this);
}
subMenu->AddTextItem(0,FSKEY_NULL,L"Save Screenshot")->BindCallBack(&THISCLASS::VM_SaveScreenshot,this);
}
{
auto *subMenu=mainMenu->AddTextItem(0,FSKEY_C,L"CD-ROM")->GetSubMenu();
subMenu->AddTextItem(0,FSKEY_S,L"Select CD Image")->BindCallBack(&THISCLASS::CD_SelectImageFile,this);
subMenu->AddTextItem(0,FSKEY_C,L"Open and Close CD drive")->BindCallBack(&THISCLASS::CD_OpenClose,this);
subMenu->AddTextItem(0,FSKEY_B,L"Stop CDDA")->BindCallBack(&THISCLASS::CD_CDDAStop,this);
}
{
auto *subMenu=mainMenu->AddTextItem(0,FSKEY_0,L"FD0")->GetSubMenu();
subMenu->AddTextItem(0,FSKEY_S,L"Select FD Image")->BindCallBack(&THISCLASS::FD0_SelectImageFile,this);
FD0_writeProtectMenu=subMenu->AddTextItem(0,FSKEY_P,L"Write Protect");
FD0_writeProtectMenu->BindCallBack(&THISCLASS::FD0_WriteProtect,this);
FD0_writeUnprotectMenu=subMenu->AddTextItem(0,FSKEY_U,L"Write Unprotect");
FD0_writeUnprotectMenu->BindCallBack(&THISCLASS::FD0_WriteUnprotect,this);
subMenu->AddTextItem(0,FSKEY_J,L"Eject")->BindCallBack(&THISCLASS::FD0_Eject,this);
}
{
auto *subMenu=mainMenu->AddTextItem(0,FSKEY_1,L"FD1")->GetSubMenu();
subMenu->AddTextItem(0,FSKEY_S,L"Select FD Image")->BindCallBack(&THISCLASS::FD1_SelectImageFile,this);
FD1_writeProtectMenu=subMenu->AddTextItem(0,FSKEY_P,L"Write Protect");
FD1_writeProtectMenu->BindCallBack(&THISCLASS::FD1_WriteProtect,this);
FD1_writeUnprotectMenu=subMenu->AddTextItem(0,FSKEY_U,L"Write Unprotect");
FD1_writeUnprotectMenu->BindCallBack(&THISCLASS::FD1_WriteUnprotect,this);
subMenu->AddTextItem(0,FSKEY_J,L"Eject")->BindCallBack(&THISCLASS::FD1_Eject,this);
}
{
auto *subMenu=mainMenu->AddTextItem(0,FSKEY_H,L"Help")->GetSubMenu();
subMenu->AddTextItem(0,FSKEY_H,L"Help")->BindCallBack(&THISCLASS::Help_Help,this);
subMenu->AddTextItem(0,FSKEY_A,L"About")->BindCallBack(&THISCLASS::Help_About,this);
}
SetMainMenu(mainMenu);
}
void FsGuiMainCanvas::DeleteMainMenu(void)
{
delete mainMenu;
mainMenu=nullptr;
}
void FsGuiMainCanvas::OnInterval(void)
{
FsGuiCanvas::Interval();
if(true==subproc.SubprocRunning())
{
for(;;)
{
std::string str;
if(true==subproc.Receive(str))
{
VMLog.push_back(str);
std::cout << "VM:" << str;
}
else
{
break;
}
}
}
{
int key;
while(FSKEY_NULL!=(key=FsInkey()))
{
this->KeyIn(key,(YSBOOL)FsGetKeyState(FSKEY_SHIFT),(YSBOOL)FsGetKeyState(FSKEY_CTRL),(YSBOOL)FsGetKeyState(FSKEY_ALT));
}
}
{
int charCode;
while(0!=(charCode=FsInkeyChar()))
{
this->CharIn(charCode);
}
}
{
int lb,mb,rb,mx,my;
while(FSMOUSEEVENT_NONE!=FsGetMouseEvent(lb,mb,rb,mx,my))
{
if(YSOK!=this->SetMouseState((YSBOOL)lb,(YSBOOL)mb,(YSBOOL)rb,mx,my))
{
}
}
}
{
auto nTouch=FsGetNumCurrentTouch();
auto touch=FsGetCurrentTouch();
if(YSOK!=this->SetTouchState(nTouch,touch))
{
}
}
int winWid,winHei;
FsGetWindowSize(winWid,winHei);
this->SetWindowSize(winWid,winHei,/*autoArrangeDialog=*/YSTRUE);
if(0!=FsCheckWindowExposure())
{
SetNeedRedraw(YSTRUE);
}
}
void FsGuiMainCanvas::Draw(void)
{
// Do this at the beginning of Draw funtion. This will allow one of the elements set SetNeedRedraw(YSTRUE)
// within drawing function so that Draw function will be called again in the next iteragion. >>
SetNeedRedraw(YSFALSE);
// <<
glUseProgram(0);
glEnable(GL_BLEND);
glBlendFunc(GL_SRC_ALPHA,GL_ONE_MINUS_SRC_ALPHA);
glEnable(GL_DEPTH_TEST);
int wid,hei;
FsGetWindowSize(wid,hei);
glViewport(0,0,wid,hei);
glClear(GL_COLOR_BUFFER_BIT|GL_DEPTH_BUFFER_BIT);
// 2D Drawing
#ifndef DONT_USE_FIXED_FUNCTION_PIPELINE
glMatrixMode(GL_PROJECTION);
glLoadIdentity();
glOrtho(0.0,(double)wid,(double)hei,0.0,-1.0,1.0);
glMatrixMode(GL_MODELVIEW);
glLoadIdentity();
#endif
YsGLSLUsePlain2DRenderer(YsGLSLSharedPlain2DRenderer());
YsGLSLUseWindowCoordinateInPlain2DDrawing(YsGLSLSharedPlain2DRenderer(),YSTRUE);
YsGLSLEndUsePlain2DRenderer(YsGLSLSharedPlain2DRenderer());
glDisable(GL_DEPTH_TEST);
glUseProgram(0);
FsGuiCanvas::Show();
FsSwapBuffers();
}
void FsGuiMainCanvas::Run(void)
{
// Warn if the VM is already running.
ReallyRun();
}
bool FsGuiMainCanvas::ReallyRun(bool usePipe)
{
if(subproc.SubprocRunning())
{
VM_Already_Running_Error();
return false;
}
auto missing=CheckMissingROMFiles();
if(0<missing.size())
{
YsWString msg;
msg=L"Missing ROM files:";
for(auto fName : missing)
{
msg+=L" ";
msg+=fName;
}
auto msgDlg=FsGuiDialog::CreateSelfDestructiveDialog <FsGuiMessageBoxDialog>();
msgDlg->Make(L"Error",msg,L"OK",nullptr);
AttachModalDialog(msgDlg);
return false;
}
auto profile=profileDlg->GetProfile();
auto argv=profile.MakeArgv();
argv[0]=FindTsugaruCUI();
argv.push_back("-CMOS");
argv.push_back(GetCMOSFileName());
for(auto &arg : argv)
{
YsWString utf16;
utf16.SetUTF8String(arg.c_str());
YsString sysEncode;
YsUnicodeToSystemEncoding(sysEncode,utf16);
arg=sysEncode.c_str();
}
for(auto arg : argv)
{
std::cout << arg << std::endl;
}
if(0==argv[0].size())
{
auto msgDlg=FsGuiDialog::CreateSelfDestructiveDialog <FsGuiMessageBoxDialog>();
msgDlg->Make(
L"Error",
L"Cannot find Tsugaru CUI module.\n"
L"Tsugaru CUI module must be in the same directory\n"
L"as the GUI module.",
L"OK",nullptr);
AttachModalDialog(msgDlg);
return false;
}
else if(true!=subproc.StartProc(argv,usePipe))
{
YsWString msg;
msg.SetUTF8String(subproc.errMsg.c_str());
auto msgDlg=FsGuiDialog::CreateSelfDestructiveDialog <FsGuiMessageBoxDialog>();
msgDlg->Make(L"Error",msg,L"OK",nullptr);
AttachModalDialog(msgDlg);
return false;
}
return true;
}
std::string FsGuiMainCanvas::FindTsugaruCUI(void) const
{
YsWString exeFile(L"Tsugaru_CUI");
#ifdef _WIN32
exeFile.Append(L".exe");
#endif
YsWString exePath=YsSpecialPath::GetProgramBaseDirW();
YsWString ful;
ful.MakeFullPathName(exePath,exeFile);
if(YSTRUE==YsFileIO::CheckFileExist(ful))
{
YsString utf8;
utf8.EncodeUTF8(ful.data());
return utf8.c_str();
}
YsWString pth,fil;
YsSpecialPath::GetProgramFileNameW().SeparatePathFile(pth,fil);
ful.MakeFullPathName(pth,exeFile);
if(YSTRUE==YsFileIO::CheckFileExist(ful))
{
YsString utf8;
utf8.EncodeUTF8(ful.data());
return utf8.c_str();
}
return "";
}
std::string FsGuiMainCanvas::GetCMOSFileName(void) const
{
YsWString ful;
ful.MakeFullPathName(GetTsugaruProfileDir(),L"CMOS.DAT");
YsString utf8;
utf8.EncodeUTF8(ful.data());
return utf8.c_str();
}
std::vector <YsWString> FsGuiMainCanvas::CheckMissingROMFiles(void) const
{
std::vector <YsWString> missing;
const YsWString ROMFName[]=
{
L"FMT_DIC.ROM",
L"FMT_DOS.ROM",
L"FMT_F20.ROM",
L"FMT_FNT.ROM",
L"FMT_SYS.ROM",
};
YsWString path=profileDlg->ROMDirTxt->GetWString();
for(auto file : ROMFName)
{
YsWString ful;
ful.MakeFullPathName(path,file);
if(YSTRUE!=YsFileIO::CheckFileExist(ful))
{
missing.push_back(file);
}
}
return missing;
}
////////////////////////////////////////////////////////////
void FsGuiMainCanvas::VM_Not_Running_Error(void)
{
auto dlg=FsGuiDialog::CreateSelfDestructiveDialog <FsGuiMessageBoxDialog>();
dlg->Make(L"Error!",L"Virtual Machine is not runnnig.",L"OK",nullptr);
AttachModalDialog(dlg);
}
void FsGuiMainCanvas::VM_Already_Running_Error(void)
{
auto dlg=FsGuiDialog::CreateSelfDestructiveDialog <FsGuiMessageBoxDialog>();
dlg->Make(
L"Error!",
L"Virtual Machine is already runnnig.\n"
L"Close the Virtual Machine before starting a new session.",
L"OK",nullptr);
AttachModalDialog(dlg);
}
////////////////////////////////////////////////////////////
void FsGuiMainCanvas::File_SaveDefaultProfile(FsGuiPopUpMenuItem *)
{
auto dlg=FsGuiDialog::CreateSelfDestructiveDialog <FsGuiMessageBoxDialogWithPayload<YsWString> >();
dlg->payload=L""; // Not used.
dlg->Make(L"Overwrite Default",L"Are you sure?",L"Yes",L"No");
dlg->BindCloseModalCallBack(&FsGuiMainCanvas::File_SaveDefaultConfirm,this);
AttachModalDialog(dlg);
}
void FsGuiMainCanvas::File_SaveDefaultConfirm(FsGuiDialog *dlg,int returnCode)
{
auto fdlg=dynamic_cast <FsGuiMessageBoxDialogWithPayload<YsWString> *>(dlg);
if(nullptr!=fdlg && (int)YSOK==returnCode)
{
SaveProfile(GetDefaultProfileFileName());
}
}
void FsGuiMainCanvas::File_ReloadDefaultProfile(FsGuiPopUpMenuItem *)
{
LoadProfile(GetDefaultProfileFileName());
}
void FsGuiMainCanvas::File_SaveProfile(FsGuiPopUpMenuItem *)
{
auto fName=profileDlg->profileFNameTxt->GetWText();
if(fName==GetDefaultProfileFileName())
{
File_SaveDefaultProfile(nullptr);
}
else
{
SaveProfile(fName);
}
}
void FsGuiMainCanvas::File_OpenProfile(FsGuiPopUpMenuItem *)
{
auto fdlg=FsGuiDialog::CreateSelfDestructiveDialog<FsGuiFileDialog>();
fdlg->Initialize();
fdlg->mode=FsGuiFileDialog::MODE_OPEN;
fdlg->multiSelect=YSFALSE;
fdlg->title.Set(L"Open Profile");
fdlg->fileExtensionArray.Append(L".Tsugaru");
fdlg->defaultFileName=profileDlg->profileFNameTxt->GetWText();
fdlg->BindCloseModalCallBack(&THISCLASS::File_OpenProfile_FileSelected,this);
AttachModalDialog(fdlg);
}
void FsGuiMainCanvas::File_OpenProfile_FileSelected(FsGuiDialog *dlg,int returnCode)
{
auto fdlg=dynamic_cast <FsGuiFileDialog *>(dlg);
if(nullptr!=fdlg && (int)YSOK==returnCode)
{
profileDlg->profileFNameTxt->SetText(fdlg->selectedFileArray[0]);
LoadProfile(fdlg->selectedFileArray[0]);
}
}
void FsGuiMainCanvas::File_SaveProfileAs(FsGuiPopUpMenuItem *)
{
auto fdlg=FsGuiDialog::CreateSelfDestructiveDialog<FsGuiFileDialog>();
fdlg->Initialize();
fdlg->mode=FsGuiFileDialog::MODE_SAVE;
fdlg->multiSelect=YSFALSE;
fdlg->title.Set(L"Save Profile As");
fdlg->fileExtensionArray.Append(L".Tsugaru");
fdlg->defaultFileName=profileDlg->profileFNameTxt->GetWText();
fdlg->BindCloseModalCallBack(&THISCLASS::File_SaveProfileAs_FileSelected,this);
AttachModalDialog(fdlg);
}
void FsGuiMainCanvas::File_SaveProfileAs_FileSelected(FsGuiDialog *dlg,int returnCode)
{
auto fdlg=dynamic_cast <FsGuiFileDialog *>(dlg);
if(nullptr!=fdlg && (int)YSOK==returnCode)
{
auto fName=fdlg->selectedFileArray[0];
if(YSTRUE==YsFileIO::CheckFileExist(fName))
{
auto dlg=FsGuiDialog::CreateSelfDestructiveDialog <FsGuiMessageBoxDialogWithPayload<YsWString> >();
dlg->payload=fName;
dlg->Make(L"Overwrite Default",L"Are you sure?",L"Yes",L"No");
dlg->BindCloseModalCallBack(&FsGuiMainCanvas::File_SaveProfileAs_OverwriteConfirm,this);
AttachModalDialog(dlg);
}
else
{
profileDlg->profileFNameTxt->SetText(fdlg->selectedFileArray[0]);
SaveProfile(fName);
}
}
}
void FsGuiMainCanvas::File_SaveProfileAs_OverwriteConfirm(FsGuiDialog *dlgIn,int returnCode)
{
auto dlg=dynamic_cast <FsGuiMessageBoxDialogWithPayload<YsWString> *>(dlgIn);
if(nullptr!=dlg && (int)YSOK==returnCode)
{
profileDlg->profileFNameTxt->SetText(dlg->payload);
SaveProfile(dlg->payload);
}
}
void FsGuiMainCanvas::SaveProfile(YsWString fName) const
{
auto profile=profileDlg->GetProfile();
YsFileIO::File fp(fName,"w");
auto outStream=fp.OutStream();
for(auto str : profile.Serialize())
{
outStream.Printf("%s\n",str.c_str());
}
fp.Fclose();
}
void FsGuiMainCanvas::LoadProfile(YsWString fName)
{
std::vector <std::string> text;
profileDlg->profileFNameTxt->SetText(fName);
YsFileIO::File fp(fName,"r");
if(fp!=nullptr)
{
auto inStream=fp.InStream();
YsString str;
while(YSTRUE!=inStream.EndOfFile())
{
text.push_back(inStream.Fgets().c_str());
}
TownsProfile profile;
if(true==profile.Deserialize(text))
{
profileDlg->SetProfile(profile);
if(true==profile.autoStart)
{
VM_Start(nullptr);
}
}
else
{
auto dlg=FsGuiDialog::CreateSelfDestructiveDialog <FsGuiMessageBoxDialog>();
YsWString errMsg;
errMsg.SetUTF8String(profile.errorMsg.c_str());
dlg->Make(L"Profile Load Error",errMsg,L"OK",nullptr);
AttachModalDialog(dlg);
}
}
}
YsWString FsGuiMainCanvas::GetDefaultProfileFileName(void) const
{
YsWString ful;
ful.MakeFullPathName(GetTsugaruProfileDir(),L"Tsugaru_Default.Tsugaru");
return ful;
}
YsWString FsGuiMainCanvas::GetTsugaruProfileDir(void) const
{
YsWString path;
path.MakeFullPathName(YsSpecialPath::GetUserDocDirW(),L"Tsugaru_TOWNS");
YsFileIO::MkDir(path);
return path;
}
////////////////////////////////////////////////////////////
void FsGuiMainCanvas::File_Exit(FsGuiPopUpMenuItem *)
{
auto msgDlg=FsGuiDialog::CreateSelfDestructiveDialog <FsGuiMessageBoxDialog>();
msgDlg->Make(L"Confirm Exit?",L"Confirm Exit?",L"Yes",L"No");
msgDlg->BindCloseModalCallBack(&THISCLASS::File_Exit_ConfirmExitCallBack,this);
AttachModalDialog(msgDlg);
}
void FsGuiMainCanvas::File_Exit_ConfirmExitCallBack(FsGuiDialog *,int returnValue)
{
if(YSOK==(YSRESULT)returnValue)
{
File_Exit_ReallyExit();
}
}
void FsGuiMainCanvas::File_Exit_ReallyExit(void)
{
this->appMustTerminate=YSTRUE;
}
void FsGuiMainCanvas::File_New_1232KB(FsGuiPopUpMenuItem *)
{
genFloppyDisk=true;
genDiskSize=1232;
auto fdlg=FsGuiDialog::CreateSelfDestructiveDialog<FsGuiFileDialog>();
fdlg->Initialize();
fdlg->mode=FsGuiFileDialog::MODE_SAVE;
fdlg->multiSelect=YSFALSE;
fdlg->title.Set(L"Create 1232KB Disk Image");
fdlg->fileExtensionArray.Append(L".BIN");
fdlg->fileExtensionArray.Append(L".D77");
fdlg->fileExtensionArray.Append(L".D88");
fdlg->fileExtensionArray.Append(L".XDF");
fdlg->defaultFileName=profileDlg->profileFNameTxt->GetWText();
fdlg->BindCloseModalCallBack(&THISCLASS::File_New_FileSelected,this);
AttachModalDialog(fdlg);
}
void FsGuiMainCanvas::File_New_1440KB(FsGuiPopUpMenuItem *)
{
genFloppyDisk=true;
genDiskSize=1440;
auto fdlg=FsGuiDialog::CreateSelfDestructiveDialog<FsGuiFileDialog>();
fdlg->Initialize();
fdlg->mode=FsGuiFileDialog::MODE_SAVE;
fdlg->multiSelect=YSFALSE;
fdlg->title.Set(L"Create 1440KB Disk Image");
fdlg->fileExtensionArray.Append(L".BIN");
fdlg->fileExtensionArray.Append(L".D77");
fdlg->fileExtensionArray.Append(L".D88");
fdlg->fileExtensionArray.Append(L".XDF");
fdlg->defaultFileName=profileDlg->profileFNameTxt->GetWText();
fdlg->BindCloseModalCallBack(&THISCLASS::File_New_FileSelected,this);
AttachModalDialog(fdlg);
}
void FsGuiMainCanvas::File_New_720KB(FsGuiPopUpMenuItem *)
{
genFloppyDisk=true;
genDiskSize=720;
auto fdlg=FsGuiDialog::CreateSelfDestructiveDialog<FsGuiFileDialog>();
fdlg->Initialize();
fdlg->mode=FsGuiFileDialog::MODE_SAVE;
fdlg->multiSelect=YSFALSE;
fdlg->title.Set(L"Create 720KB Disk Image");
fdlg->fileExtensionArray.Append(L".BIN");
fdlg->fileExtensionArray.Append(L".D77");
fdlg->fileExtensionArray.Append(L".D88");
fdlg->fileExtensionArray.Append(L".XDF");
fdlg->defaultFileName=profileDlg->profileFNameTxt->GetWText();
fdlg->BindCloseModalCallBack(&THISCLASS::File_New_FileSelected,this);
AttachModalDialog(fdlg);
}
void FsGuiMainCanvas::File_New_640KB(FsGuiPopUpMenuItem *)
{
genFloppyDisk=true;
genDiskSize=640;
auto fdlg=FsGuiDialog::CreateSelfDestructiveDialog<FsGuiFileDialog>();
fdlg->Initialize();
fdlg->mode=FsGuiFileDialog::MODE_SAVE;
fdlg->multiSelect=YSFALSE;
fdlg->title.Set(L"Create 640KB Disk Image");
fdlg->fileExtensionArray.Append(L".BIN");
fdlg->fileExtensionArray.Append(L".D77");
fdlg->fileExtensionArray.Append(L".D88");
fdlg->fileExtensionArray.Append(L".XDF");
fdlg->defaultFileName=profileDlg->profileFNameTxt->GetWText();
fdlg->BindCloseModalCallBack(&THISCLASS::File_New_FileSelected,this);
AttachModalDialog(fdlg);
}
void FsGuiMainCanvas::File_New_HDD(FsGuiPopUpMenuItem *)
{
genFloppyDisk=false;
auto dlg=FsGuiDialog::CreateSelfDestructiveDialog<FsGuiInputNumberDialog>();
dlg->Make(
20.0,0,
L"Create HDD Image",L"Specify Size in MB",L"",
L"OK",L"Cancel");
dlg->BindCloseModalCallBack(&THISCLASS::File_New_HDD_SizeSelected,this);
AttachModalDialog(dlg);
}
void FsGuiMainCanvas::File_New_HDD_SizeSelected(FsGuiDialog *dlg,int returnCode)
{
auto numDlg=dynamic_cast <FsGuiInputNumberDialog *>(dlg);
if(nullptr!=numDlg && (int)YSOK==returnCode)
{
int MB=(int)numDlg->GetNumber();
if(MB<1 || 1024<MB)
{
auto dlg=FsGuiDialog::CreateSelfDestructiveDialog <FsGuiMessageBoxDialog>();
dlg->Make(L"Error",L"The number needs to be between 1 and 1024.",L"OK",nullptr);
AttachModalDialog(dlg);
}
else
{
genDiskSize=MB;
auto fdlg=FsGuiDialog::CreateSelfDestructiveDialog<FsGuiFileDialog>();
fdlg->Initialize();
fdlg->mode=FsGuiFileDialog::MODE_SAVE;
fdlg->multiSelect=YSFALSE;
fdlg->title.Set(L"Create Hard Disk Image");
fdlg->fileExtensionArray.Append(L".HD");
fdlg->fileExtensionArray.Append(L".HDI");
fdlg->fileExtensionArray.Append(L".HDM");
fdlg->fileExtensionArray.Append(L".H0");
fdlg->fileExtensionArray.Append(L".H1");
fdlg->fileExtensionArray.Append(L".H2");
fdlg->fileExtensionArray.Append(L".H3");
fdlg->defaultFileName=profileDlg->profileFNameTxt->GetWText();
fdlg->BindCloseModalCallBack(&THISCLASS::File_New_FileSelected,this);
AttachModalDialog(fdlg);
}
}
}
void FsGuiMainCanvas::File_New_FileSelected(FsGuiDialog *dlg,int returnCode)
{
auto fdlg=dynamic_cast <FsGuiFileDialog *>(dlg);
if(nullptr!=fdlg && (int)YSOK==returnCode)
{
auto fName=fdlg->selectedFileArray[0];
if(YSTRUE==YsFileIO::CheckFileExist(fName))
{
auto dlg=FsGuiDialog::CreateSelfDestructiveDialog <FsGuiMessageBoxDialog>();
dlg->Make(L"File Already Exists",L"File Already Exists. It does not overwrite a file.",L"OK",nullptr);
AttachModalDialog(dlg);
}
else
{
if(true==genFloppyDisk)
{
std::vector <unsigned char> img;
switch(genDiskSize)
{
case 1232:
img=Get1232KBFloppyDiskImage();
break;
case 1440:
img=Get1440KBFloppyDiskImage();
break;
case 720:
img=Get720KBFloppyDiskImage();
break;
case 640:
img=Get640KBFloppyDiskImage();
break;
}
auto ext=fName.GetExtension();
if(0==ext.STRCMP(L".D77") || 0==ext.STRCMP(L".D88"))
{
D77File d77;
d77.SetRawBinary(img);
img=d77.MakeD77Image();
}
bool result=false;
YsFileIO::File ofp(fName,"wb");
if(nullptr!=ofp.Fp())
{
auto wroteSize=fwrite(img.data(),1,img.size(),ofp.Fp());
if(wroteSize==img.size())
{
result=true;
}
ofp.Fclose();
}
if(true!=result)
{
auto dlg=FsGuiDialog::CreateSelfDestructiveDialog <FsGuiMessageBoxDialog>();
dlg->Make(L"Error",L"Failed to write file.",L"OK",nullptr);
AttachModalDialog(dlg);
}
else
{
auto dlg=FsGuiDialog::CreateSelfDestructiveDialog <FsGuiMessageBoxDialog>();
dlg->Make(L"Success.",L"Created a floppy disk image.",L"OK",nullptr);
AttachModalDialog(dlg);
}
}
else
{
bool result=false;
YsFileIO::File ofp(fName,"wb");
if(nullptr!=ofp.Fp())
{
long long int wroteSize=0;
std::vector <unsigned char> zero;
zero.resize(1024*1024);
for(auto &z : zero)
{
z=0;
}
for(unsigned int i=0; i<genDiskSize; ++i)
{
wroteSize+=fwrite(zero.data(),1,zero.size(),ofp.Fp());
}
if(wroteSize==1024*1024*genDiskSize)
{
result=true;
}
ofp.Fclose();
}
if(true!=result)
{
auto dlg=FsGuiDialog::CreateSelfDestructiveDialog <FsGuiMessageBoxDialog>();
dlg->Make(L"Error",L"Failed to write file.",L"OK",nullptr);
AttachModalDialog(dlg);
}
else
{
auto dlg=FsGuiDialog::CreateSelfDestructiveDialog <FsGuiMessageBoxDialog>();
dlg->Make(L"Success.",L"Created a hard disk image.",L"OK",nullptr);
AttachModalDialog(dlg);
}
}
}
}
}
////////////////////////////////////////////////////////////
void FsGuiMainCanvas::VM_Start(FsGuiPopUpMenuItem *)
{
Run();
}
void FsGuiMainCanvas::VM_StartAndCloseGUI(FsGuiPopUpMenuItem *)
{
if(true==ReallyRun())
{
exit(1);
}
}
void FsGuiMainCanvas::VM_PowerOff(FsGuiPopUpMenuItem *)
{
if(true==subproc.SubprocRunning())
{
auto msgDlg=FsGuiDialog::CreateSelfDestructiveDialog <FsGuiMessageBoxDialog>();
msgDlg->Make(L"Confirm Power Off?",L"Power Off?",L"Yes",L"No");
msgDlg->BindCloseModalCallBack(&THISCLASS::VM_PowerOffConfirm,this);
AttachModalDialog(msgDlg);
}
else
{
VM_Not_Running_Error();
}
}
void FsGuiMainCanvas::VM_PowerOffConfirm(FsGuiDialog *dlg,int returnCode)
{
if((int)YSOK==returnCode)
{
subproc.Send("Q\n");
}
}
void FsGuiMainCanvas::VM_Reset(FsGuiPopUpMenuItem *)
{
if(true==subproc.SubprocRunning())
{
subproc.Send("RESET\n");
}
else
{
VM_Not_Running_Error();
}
}
void FsGuiMainCanvas::VM_Pause(FsGuiPopUpMenuItem *)
{
if(true==subproc.SubprocRunning())
{
subproc.Send("PAU\n");
}
else
{
VM_Not_Running_Error();
}
}
void FsGuiMainCanvas::VM_Resume(FsGuiPopUpMenuItem *)
{
if(true==subproc.SubprocRunning())
{
subproc.Send("RUN\n");
}
else
{
VM_Not_Running_Error();
}
}
void FsGuiMainCanvas::VM_1MHz(FsGuiPopUpMenuItem *)
{
if(true==subproc.SubprocRunning())
{
subproc.Send("FREQ 1\n");
}
else
{
VM_Not_Running_Error();
}
}
void FsGuiMainCanvas::VM_4MHz(FsGuiPopUpMenuItem *)
{
if(true==subproc.SubprocRunning())
{
subproc.Send("FREQ 4\n");
}
else
{
VM_Not_Running_Error();
}
}
void FsGuiMainCanvas::VM_8MHz(FsGuiPopUpMenuItem *)
{
if(true==subproc.SubprocRunning())
{
subproc.Send("FREQ 8\n");
}
else
{
VM_Not_Running_Error();
}
}
void FsGuiMainCanvas::VM_12MHz(FsGuiPopUpMenuItem *)
{
if(true==subproc.SubprocRunning())
{
subproc.Send("FREQ 12\n");
}
else
{
VM_Not_Running_Error();
}
}
void FsGuiMainCanvas::VM_16MHz(FsGuiPopUpMenuItem *)
{
if(true==subproc.SubprocRunning())
{
subproc.Send("FREQ 16\n");
}
else
{
VM_Not_Running_Error();
}
}
void FsGuiMainCanvas::VM_25MHz(FsGuiPopUpMenuItem *)
{
if(true==subproc.SubprocRunning())
{
subproc.Send("FREQ 25\n");
}
else
{
VM_Not_Running_Error();
}
}
void FsGuiMainCanvas::VM_Keyboard_Direct(FsGuiPopUpMenuItem *)
{
if(true==subproc.SubprocRunning())
{
subproc.Send("KEYBOARD DIRECT\n");
}
else
{
VM_Not_Running_Error();
}
}
void FsGuiMainCanvas::VM_Keyboard_Translation1(FsGuiPopUpMenuItem *)
{
if(true==subproc.SubprocRunning())
{
subproc.Send("KEYBOARD TRANS1\n");
}
else
{
VM_Not_Running_Error();
}
}
void FsGuiMainCanvas::VM_Keyboard_Translation2(FsGuiPopUpMenuItem *)
{
if(true==subproc.SubprocRunning())
{
subproc.Send("KEYBOARD TRANS2\n");
}
else
{
VM_Not_Running_Error();
}
}
void FsGuiMainCanvas::VM_Keyboard_Translation3(FsGuiPopUpMenuItem *)
{
if(true==subproc.SubprocRunning())
{
subproc.Send("KEYBOARD TRANS3\n");
}
else
{
VM_Not_Running_Error();
}
}
void FsGuiMainCanvas::VM_SaveScreenshot(FsGuiPopUpMenuItem *)
{
if(true==subproc.SubprocRunning())
{
YsWString path,file;
profileDlg->profileFNameTxt->GetWText().SeparatePathFile(path,file);
auto fdlg=FsGuiDialog::CreateSelfDestructiveDialog<FsGuiFileDialog>();
fdlg->Initialize();
fdlg->mode=FsGuiFileDialog::MODE_SAVE;
fdlg->multiSelect=YSFALSE;
fdlg->title.Set(L"Save Screenshot");
fdlg->fileExtensionArray.Append(L".PNG");
fdlg->defaultFileName=path;
fdlg->BindCloseModalCallBack(&THISCLASS::VM_SaveScreenshot_FileSelected,this);
AttachModalDialog(fdlg);
}
else
{
VM_Not_Running_Error();
}
}
void FsGuiMainCanvas::VM_SaveScreenshot_FileSelected(FsGuiDialog *dlg,int returnCode)
{
auto fdlg=dynamic_cast <FsGuiFileDialog *>(dlg);
if(nullptr!=fdlg && (int)YSOK==returnCode)
{
YsWString fName=fdlg->selectedFileArray[0];
YsString utf8;
YsUnicodeToSystemEncoding(utf8,fName);
std::string cmd="SS ";
cmd.push_back('\"');
cmd+=utf8.c_str();
cmd.push_back('\"');
cmd.push_back('\n');
subproc.Send(cmd);
}
}
////////////////////////////////////////////////////////////
void FsGuiMainCanvas::CD_SelectImageFile(FsGuiPopUpMenuItem *)
{
if(true==subproc.SubprocRunning())
{
auto fdlg=FsGuiDialog::CreateSelfDestructiveDialog<FsGuiFileDialog>();
fdlg->Initialize();
fdlg->mode=FsGuiFileDialog::MODE_OPEN;
fdlg->multiSelect=YSFALSE;
fdlg->title.Set(L"Open CD Image");
fdlg->fileExtensionArray.Append(L".CUE");
fdlg->fileExtensionArray.Append(L".ISO");
fdlg->defaultFileName=profileDlg->CDImgTxt->GetWString();
fdlg->BindCloseModalCallBack(&THISCLASS::CD_ImageFileSelected,this);
AttachModalDialog(fdlg);
}
else
{
VM_Not_Running_Error();
}
}
void FsGuiMainCanvas::CD_ImageFileSelected(FsGuiDialog *dlg,int returnCode)
{
auto fdlg=dynamic_cast <FsGuiFileDialog *>(dlg);
if(nullptr!=fdlg && (int)YSOK==returnCode)
{
YsWString fName=fdlg->selectedFileArray[0];
YsString utf8;
YsUnicodeToSystemEncoding(utf8,fName);
std::string cmd="CDLOAD ";
cmd.push_back('\"');
cmd+=utf8.c_str();
cmd.push_back('\"');
cmd.push_back('\n');
subproc.Send(cmd);
}
}
void FsGuiMainCanvas::CD_Eject(FsGuiPopUpMenuItem *)
{
if(true==subproc.SubprocRunning())
{
}
else
{
VM_Not_Running_Error();
}
}
void FsGuiMainCanvas::CD_OpenClose(FsGuiPopUpMenuItem *)
{
if(true==subproc.SubprocRunning())
{
subproc.Send("CDOPENCLOSE\n");
}
else
{
VM_Not_Running_Error();
}
}
void FsGuiMainCanvas::CD_CDDAStop(FsGuiPopUpMenuItem *)
{
if(true==subproc.SubprocRunning())
{
subproc.Send("CDDASTOP\n");
}
else
{
VM_Not_Running_Error();
}
}
void FsGuiMainCanvas::FD0_SelectImageFile(FsGuiPopUpMenuItem *)
{
if(true==subproc.SubprocRunning())
{
auto fdlg=FsGuiDialog::CreateSelfDestructiveDialog<FsGuiFileDialog>();
fdlg->Initialize();
fdlg->mode=FsGuiFileDialog::MODE_OPEN;
fdlg->multiSelect=YSFALSE;
fdlg->title.Set(L"Open FD0 Image");
fdlg->fileExtensionArray.Append(L".BIN");
fdlg->fileExtensionArray.Append(L".D77");
fdlg->fileExtensionArray.Append(L".D88");
fdlg->fileExtensionArray.Append(L".XDF");
fdlg->defaultFileName=profileDlg->FDImgTxt[0][0]->GetWString();
fdlg->BindCloseModalCallBack(&THISCLASS::FD0_ImageFileSelected,this);
AttachModalDialog(fdlg);
}
else
{
VM_Not_Running_Error();
}
}
void FsGuiMainCanvas::FD0_ImageFileSelected(FsGuiDialog *dlg,int returnCode)
{
auto fdlg=dynamic_cast <FsGuiFileDialog *>(dlg);
if(nullptr!=fdlg && (int)YSOK==returnCode)
{
auto fName=fdlg->selectedFileArray[0];
YsString utf8;
YsUnicodeToSystemEncoding(utf8,fName);
std::string cmd="FD0LOAD ";
cmd.push_back('\"');
cmd+=utf8.c_str();
cmd.push_back('\"');
cmd.push_back('\n');
subproc.Send(cmd);
FD0_writeProtectMenu->SetCheck(YSFALSE);
FD0_writeUnprotectMenu->SetCheck(YSTRUE);
}
}
void FsGuiMainCanvas::FD0_WriteProtect(FsGuiPopUpMenuItem *)
{
if(true==subproc.SubprocRunning())
{
subproc.Send("FD0WP\n");
FD0_writeProtectMenu->SetCheck(YSTRUE);
FD0_writeUnprotectMenu->SetCheck(YSFALSE);
}
else
{
VM_Not_Running_Error();
}
}
void FsGuiMainCanvas::FD0_WriteUnprotect(FsGuiPopUpMenuItem *)
{
if(true==subproc.SubprocRunning())
{
subproc.Send("FD0UP\n");
FD0_writeProtectMenu->SetCheck(YSFALSE);
FD0_writeUnprotectMenu->SetCheck(YSTRUE);
}
else
{
VM_Not_Running_Error();
}
}
void FsGuiMainCanvas::FD0_Eject(FsGuiPopUpMenuItem *)
{
if(true==subproc.SubprocRunning())
{
subproc.Send("FD0EJECT\n");
FD0_writeProtectMenu->SetCheck(YSFALSE);
FD0_writeUnprotectMenu->SetCheck(YSTRUE);
}
else
{
VM_Not_Running_Error();
}
}
void FsGuiMainCanvas::FD1_SelectImageFile(FsGuiPopUpMenuItem *)
{
if(true==subproc.SubprocRunning())
{
auto fdlg=FsGuiDialog::CreateSelfDestructiveDialog<FsGuiFileDialog>();
fdlg->Initialize();
fdlg->mode=FsGuiFileDialog::MODE_OPEN;
fdlg->multiSelect=YSFALSE;
fdlg->title.Set(L"Open FD1 Image");
fdlg->fileExtensionArray.Append(L".BIN");
fdlg->fileExtensionArray.Append(L".D77");
fdlg->fileExtensionArray.Append(L".D88");
fdlg->fileExtensionArray.Append(L".XDF");
fdlg->defaultFileName=profileDlg->FDImgTxt[1][0]->GetWString();
fdlg->BindCloseModalCallBack(&THISCLASS::FD1_ImageFileSelected,this);
AttachModalDialog(fdlg);
}
else
{
VM_Not_Running_Error();
}
}
void FsGuiMainCanvas::FD1_ImageFileSelected(FsGuiDialog *dlg,int returnCode)
{
auto fdlg=dynamic_cast <FsGuiFileDialog *>(dlg);
if(nullptr!=fdlg && (int)YSOK==returnCode)
{
auto fName=fdlg->selectedFileArray[0];
YsString utf8;
YsUnicodeToSystemEncoding(utf8,fName);
std::string cmd="FD1LOAD ";
cmd.push_back('\"');
cmd+=utf8.c_str();
cmd.push_back('\"');
cmd.push_back('\n');
subproc.Send(cmd);
FD1_writeProtectMenu->SetCheck(YSFALSE);
FD1_writeUnprotectMenu->SetCheck(YSTRUE);
}
}
void FsGuiMainCanvas::FD1_WriteProtect(FsGuiPopUpMenuItem *)
{
if(true==subproc.SubprocRunning())
{
subproc.Send("FD1WP\n");
FD1_writeProtectMenu->SetCheck(YSTRUE);
FD1_writeUnprotectMenu->SetCheck(YSFALSE);
}
else
{
VM_Not_Running_Error();
}
}
void FsGuiMainCanvas::FD1_WriteUnprotect(FsGuiPopUpMenuItem *)
{
if(true==subproc.SubprocRunning())
{
subproc.Send("FD1UP\n");
FD1_writeProtectMenu->SetCheck(YSFALSE);
FD1_writeUnprotectMenu->SetCheck(YSTRUE);
}
else
{
VM_Not_Running_Error();
}
}
void FsGuiMainCanvas::FD1_Eject(FsGuiPopUpMenuItem *)
{
if(true==subproc.SubprocRunning())
{
subproc.Send("FD1EJECT\n");
FD1_writeProtectMenu->SetCheck(YSFALSE);
FD1_writeUnprotectMenu->SetCheck(YSTRUE);
}
else
{
VM_Not_Running_Error();
}
}
void FsGuiMainCanvas::Help_About(FsGuiPopUpMenuItem *)
{
auto msgDlg=FsGuiDialog::CreateSelfDestructiveDialog <FsGuiMessageBoxDialog>();
const wchar_t *msg=
L"FM TOWNS Emulator Tsugaru\n"
L"Developed by CaptainYS\n"
L"http://www.ysflight.com\n"
L"PEB01130@nifty.com\n"
L"\n";
msgDlg->Make(L"About Tsugaru",msg,L"OK",nullptr);
AttachModalDialog(msgDlg);
}
void FsGuiMainCanvas::Help_Help(FsGuiPopUpMenuItem *)
{
auto msgDlg=FsGuiDialog::CreateSelfDestructiveDialog <FsGuiMessageBoxDialog>();
msgDlg->Make(
L"HELP",
L"(To be written)",
L"OK",nullptr);
AttachModalDialog(msgDlg);
}
| [
"PEB01130@nifty.com"
] | PEB01130@nifty.com |
a3bfc8e081cc72243155a5a7d6be680ef8e5c31a | 21831e62f72d5040c21c277ce14ce6688587a19a | /src/AsyncWaitMsg.cpp | ff507e6d26ac0a16ebe4a87724c344dbb71434f7 | [] | no_license | jjzhang166/MessageWait | b964a0857dc26e7e06c804a4960809ca03f467af | 178b68cbe6603a9e98eec3ba0332481514d6bc50 | refs/heads/master | 2021-06-25T10:39:47.642932 | 2015-06-19T11:44:36 | 2015-06-19T11:44:36 | 103,227,133 | 0 | 0 | null | null | null | null | GB18030 | C++ | false | false | 9,644 | cpp | #include "AsyncWaitMsg.h"
#include "Poco/Timestamp.h"
#include "Poco/Timer.h"
#include "Poco/Event.h"
#include "Poco/Mutex.h"
#include <iostream>
#include <assert.h>
#include <algorithm>
using Poco::Timestamp;
using Poco::Timer;
using Poco::TimerCallback;
using Poco::FastMutex;
using namespace std;
namespace
{
Poco::Timer s_timeoutTimer(0, 200);
bool s_TimerStarted = false;
bool s_waitEvent = false;
Poco::Event s_event;
Poco::FastMutex s_mutex;
}
AsyncWaitMsg::AsyncWaitMsg()
{
}
bool AsyncWaitMsg::AddListener(int msg, boost::shared_ptr<CallbackItemBase> pSrcItem)
{
assert(pSrcItem);
FastMutex::ScopedLock lock(s_mutex);
if (_callbackMap.find(msg) != _callbackMap.end())
{
CallbackItemVec& callbackItemVec = _callbackMap[msg];
bool find = false;
for (CallbackItemVec::iterator it = callbackItemVec.begin(); it != callbackItemVec.end(); ++it)
{
if ((*it) == pSrcItem)
{
find = true;
break;
}
}
// add if not exist.
if (!find)
{
_callbackMap[msg].push_back(pSrcItem);
}
}
else
{
CallbackItemVec newItemVec;
newItemVec.push_back(pSrcItem);
_callbackMap.insert(CallbackMap::value_type(msg, newItemVec));
}
return true;
}
bool AsyncWaitMsg::AddListener(boost::shared_ptr<NormalCallbackItem> pSrcItem)
{
assert(pSrcItem);
s_mutex.lock();
for (TimeOutCallbackItemList::iterator it = _timeoutCallbackList.begin();
it != _timeoutCallbackList.end(); ++it)
{
boost::shared_ptr<NormalCallbackItem> pNormalCallbackItem = boost::dynamic_pointer_cast<NormalCallbackItem>(*it);
if (pNormalCallbackItem)
{
if (pNormalCallbackItem->_msg == pSrcItem->_msg
&& pNormalCallbackItem->_callback.target<MsgCallback>() == pSrcItem->_callback.target<MsgCallback>()
&& pNormalCallbackItem->_timeOutCallback.target<MsgTimeOutCallback>() == pSrcItem->_timeOutCallback.target<MsgTimeOutCallback>())
{
return false; // Already exist,but _timeout may not equal.
}
}
else
{
continue;
}
}
s_mutex.unlock();
bool succress = AddListener(pSrcItem->_msg, pSrcItem);
if (succress && pSrcItem->_timeout != Infinity)
{
if (pSrcItem->_timeOutCallback != NULL)
{
RegMsgTimeOutCallback(pSrcItem->_msg, pSrcItem);
}
}
else
{
return false;
}
return true;
}
bool AsyncWaitMsg::AddListener(boost::shared_ptr<MutiCallbackItem> pSrcItem)
{
assert(pSrcItem);
if (pSrcItem->_msgVec.empty())
return false;
s_mutex.lock();
for (TimeOutCallbackItemList::iterator it = _timeoutCallbackList.begin();
it != _timeoutCallbackList.end(); ++it)
{
boost::shared_ptr<MutiCallbackItem> pMutiCallbackItem = boost::dynamic_pointer_cast<MutiCallbackItem>(*it);
if (pMutiCallbackItem)
{
if (pMutiCallbackItem->_msgVec == pSrcItem->_msgVec
&& pMutiCallbackItem->_callback.target<MsgCallback>() == pSrcItem->_callback.target<MsgCallback>()
&& pMutiCallbackItem->_timeOutCallback.target<MsgTimeOutCallback>() == pSrcItem->_timeOutCallback.target<MsgTimeOutCallback>())
{
return false; // Already exist,but _timeout may not equal.
}
}
else
{
continue;
}
}
s_mutex.unlock();
bool success = false;
for (vector<int>::iterator it = pSrcItem->_msgVec.begin();
it != pSrcItem->_msgVec.end(); ++it)
{
success = AddListener(*it, pSrcItem);
if (!success)
{
cout << "Failed to add at least one" << endl;
return false;
}
}
if (success && pSrcItem->_timeout != Infinity)
{
if (pSrcItem->_timeOutCallback != NULL)
{
RegMsgTimeOutCallback(pSrcItem->_msgVec[0], pSrcItem);
}
}
return true;
}
bool AsyncWaitMsg::RemoveListener(int msg, boost::shared_ptr<CallbackItemBase> pCallbackItem)
{
FastMutex::ScopedLock lock(s_mutex);
if (_callbackMap.find(msg) != _callbackMap.end())
{
CallbackItemVec& callbackItemVec= _callbackMap[msg];
CallbackItemVec::iterator result =
find(callbackItemVec.begin(), callbackItemVec.end(), pCallbackItem);
if (result != callbackItemVec.end())
{
callbackItemVec.erase(result);
return true;
}
}
return false;
}
// From small to large
void AsyncWaitMsg::RegMsgTimeOutCallback(int msg, boost::shared_ptr<CallbackItemBase> pCallbackItem)
{
assert(pCallbackItem);
pCallbackItem->_timeout *= 1000;
Timestamp now;
pCallbackItem->_timeout += (signed long)now.epochMicroseconds(); // XXX
FastMutex::ScopedLock lock(s_mutex);
bool find = false;
TimeOutCallbackItemList::iterator it = _timeoutCallbackList.begin();
while (it != _timeoutCallbackList.end())
{
if ((*it)->_timeout > pCallbackItem->_timeout)
{
find = true;
}
++it;
}
if (find)
{
_timeoutCallbackList.insert(it, pCallbackItem);
}
else
{
_timeoutCallbackList.push_back(pCallbackItem);
}
if (!_timeoutCallbackList.empty())
{
if (!s_TimerStarted)
{
// open timer
TimerCallback<AsyncWaitMsg> tc(*this, &AsyncWaitMsg::MsgTimeOutChecking);
s_timeoutTimer.start(tc);
s_TimerStarted = true;
cout << "_timeoutTimer.start" << endl;
}
else if (s_waitEvent)
{
s_event.set();
cout << "_event.set()" << endl;
s_waitEvent = false;
}
}
}
void AsyncWaitMsg::Dispatch(int msg, int param1, int param2)
{
FastMutex::ScopedLock lock(s_mutex);
// Erase the relational items of the message from the _timeoutCallbackList.
for (TimeOutCallbackItemList::iterator it = _timeoutCallbackList.begin(); it != _timeoutCallbackList.end(); ++it)
{
boost::shared_ptr<NormalCallbackItem> pCallbackItem = boost::dynamic_pointer_cast<NormalCallbackItem>(*it);
if (pCallbackItem)
{
if (pCallbackItem->_msg == msg)
{
_timeoutCallbackList.erase(it);
break;
}
}
else
{
boost::shared_ptr<MutiCallbackItem> pCallbackItem = boost::dynamic_pointer_cast<MutiCallbackItem>(*it);
if (pCallbackItem)
{
vector<int>::iterator result =
find(pCallbackItem->_msgVec.begin(), pCallbackItem->_msgVec.end(), msg);
if (result != pCallbackItem->_msgVec.end())
{
_timeoutCallbackList.erase(it);
break;
}
}
}
}
// Call back.And, erase the message from callbacklist if the callback vector of the message is empty.
if (_callbackMap.find(msg) != _callbackMap.end())
{
CallbackItemVec& callbackItemVec = _callbackMap[msg];
for (CallbackItemVec::iterator it = callbackItemVec.begin(); it != callbackItemVec.end();)
{
boost::shared_ptr<NormalCallbackItem> pCallbackItem = boost::dynamic_pointer_cast<NormalCallbackItem>(*it);
if (pCallbackItem)
{
if (pCallbackItem->_callback != NULL)
{
pCallbackItem->_callback(msg, param1, param2);
}
if (pCallbackItem->_type == Once)
{
it = callbackItemVec.erase(it);
}
else
{
++it;
}
}
else
{
boost::shared_ptr<MutiCallbackItem> pCallbackItem = boost::dynamic_pointer_cast<MutiCallbackItem>(*it);
if (pCallbackItem)
{
if (pCallbackItem->_callback != NULL)
{
pCallbackItem->_callback(msg, param1, param2);
}
it = callbackItemVec.erase(it);
// Since one of the messages in pCallbackItem->_msgVec is come,
// we should erase other messages in pCallbackItem->_msgVec
for (vector<int>::iterator it2 = pCallbackItem->_msgVec.begin();
it2 != pCallbackItem->_msgVec.end(); ++it2)
{
if (_callbackMap.find(*it2) != _callbackMap.end() && msg != *it2)
{
CallbackItemVec& itemVec = _callbackMap[*it2];
CallbackItemVec::iterator result =
find(itemVec.begin(), itemVec.end(), pCallbackItem);
if (result != itemVec.end())
{
itemVec.erase(result);
// erase the message from callbacklist if the callback vector of the message is empty.
if (itemVec.empty())
{
_callbackMap.erase(*it2);
}
continue;
}
}
}
}
}
}
// erase the message from callbacklist if the callback vector of the message is empty.
if (callbackItemVec.empty())
{
_callbackMap.erase(msg);
}
}
}
void AsyncWaitMsg::MsgTimeOutChecking(Poco::Timer& timer)
{
FastMutex::ScopedLock lock(s_mutex);
// stop timer if _timeoutCallbackList is empty
if (_timeoutCallbackList.empty())
{
cout << "_event.wait()" << endl;
s_waitEvent = true;
s_mutex.unlock();
s_event.wait();
}
Timestamp now;
signed long currentTicks = (signed long)now.epochMicroseconds(); // XXX System.DateTime.Now.Ticks;
for (TimeOutCallbackItemList::iterator it =_timeoutCallbackList.begin(); it != _timeoutCallbackList.end();)
{
if ((*it)->_timeout <= currentTicks) // time out
{
if ((*it)->_timeOutCallback != NULL)
{
boost::shared_ptr<NormalCallbackItem> pCallbackItem = boost::dynamic_pointer_cast<NormalCallbackItem>(*it);
if (pCallbackItem)
{
pCallbackItem->_timeOutCallback(pCallbackItem->_msg);
RemoveListener(pCallbackItem->_msg, *it);
}
else
{
boost::shared_ptr<MutiCallbackItem> pCallbackItem = boost::dynamic_pointer_cast<MutiCallbackItem>(*it);
if (pCallbackItem)
{
pCallbackItem->_timeOutCallback(pCallbackItem->_msgVec[0]);
for (vector<int>::iterator itvec = pCallbackItem->_msgVec.begin();
itvec != pCallbackItem->_msgVec.end(); ++itvec)
{
RemoveListener(*itvec, *it);
}
}
}
}
it = _timeoutCallbackList.erase(it);
}
else
{
//已按小到大排序
break;
}
}
}
void AsyncWaitMsg::Reset()
{
s_event.reset();
s_waitEvent = true;
s_timeoutTimer.restart();
FastMutex::ScopedLock lock(s_mutex);
_callbackMap.clear();
_timeoutCallbackList.clear();
}
void AsyncWaitMsg::Stop()
{
s_event.set();
s_timeoutTimer.stop();
} | [
"stallion5632@163.com"
] | stallion5632@163.com |
fa94a2cb0eb46b23d1f4eb2cdaa006a4b486cbf3 | 777a75e6ed0934c193aece9de4421f8d8db01aac | /src/Providers/UNIXProviders/IndicationService/UNIX_IndicationService_ZOS.hxx | 21c01d0172273c2b68f7f309b4bc73753012433d | [
"MIT"
] | permissive | brunolauze/openpegasus-providers-old | 20fc13958016e35dc4d87f93d1999db0eae9010a | b00f1aad575bae144b8538bf57ba5fd5582a4ec7 | refs/heads/master | 2021-01-01T20:05:44.559362 | 2014-04-30T17:50:06 | 2014-04-30T17:50:06 | 19,132,738 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 128 | hxx | #ifdef PEGASUS_OS_ZOS
#ifndef __UNIX_INDICATIONSERVICE_PRIVATE_H
#define __UNIX_INDICATIONSERVICE_PRIVATE_H
#endif
#endif
| [
"brunolauze@msn.com"
] | brunolauze@msn.com |
350aa5f86db8d00ff9c78d71e14ab8578edf2b1f | 3d8410e944606b861ce4d1862d2adbfb89b760c5 | /Backjoon/11053_가장긴증가하는부분수열/main.cpp | ea59d48412b68af4f38f12ae18b8f89c703aa18a | [] | no_license | YoungHo-Jo/algo | 3a743bcc92815c14f7146374e8abd067c592de7e | 47c1073703d3908971aaa583c29d0eb41c23600f | refs/heads/master | 2020-07-20T23:54:08.177615 | 2019-10-22T04:14:39 | 2019-10-22T04:14:39 | 206,727,550 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,664 | cpp | #include <iostream>
#include <vector>
#include <algorithm>
#include <functional>
using namespace std;
#define DEBUG
#ifdef DEBUG
#define D(x) x
#else
#define D(x)
#endif
int main(void) {
ios::sync_with_stdio(false);
int N;
cin >> N;
const int MAX = 1001;
vector<vector<int>> dp(MAX, vector<int>(2, 0));
vector<int> nums(N, 0);
for(int i = 0; i < N; i++) {
int tmp;
cin >> tmp;
nums[i] = tmp;
}
function<int(int)> solve = [&](int idx) {
D(cout << "idx: " << idx << endl;)
if(idx >= N) return 0;
if(idx == N - 1) {
dp[idx][0] = 1;
dp[idx][1] = nums[idx];
D(cout << "Bound" << endl;)
return dp[idx][0];
}
if(dp[idx][0] != -1) {
D(cout << "HI: " << dp[idx][0] << endl;)
return dp[idx][0];
}
if(nums[idx + 1] > nums[idx]) {
D(cout << "Bigger than me: " << nums[idx + 1] << " " << nums[idx] << endl;)
dp[idx][0] = solve(idx + 1) + 1;
dp[idx][1] = nums[];
} else if(nums[idx + 1] < nums[idx]) {
D(cout << "Smaller than me " << nums[idx + 1] << " " << nums[idx] << endl;)
int newIdx = idx + 1;
while(nums[idx] >= nums[newIdx] && newIdx < N) newIdx++;
D(cout << "new idx: " << newIdx << endl;)
dp[idx][0] = newIdx == N - 1 ? 1 : solve(newIdx) + 1;
dp[idx][1] = nums[newIdx];
solve(idx + 1);
} else {
D(cout << "Same with me " << nums[idx + 1] << " " << nums[idx] << endl;)
dp[idx] = solve(idx + 1);
}
return dp[idx];
};
solve(0);
int ans = -1;
for(auto& d: dp) {
D(cout << d << " ";)
ans = max(ans, d);
}
D(cout << endl;)
cout << ans << endl;
return 0;
} | [
"zeroho.jo@gmail.com"
] | zeroho.jo@gmail.com |
cb3dc6b66355735f8ce3e04a475e08deb6787219 | 2cf2d55fdb4f3efa3b00bd05f4a4d4de620dc0a7 | /ServerSolution/LowLib/ProcessObject.h | c20d60c8042385f5564832043c9a859337a7aec3 | [] | no_license | jinsoojeong/ServerFrameworkProject1 | feb02b5a930e68909d6ab25a2cf43c7f45fdbdfc | 6f2cf29e5da5bf15fc2bc9156178b2f0dfa90a1e | refs/heads/master | 2022-03-14T15:42:05.390707 | 2019-11-12T10:50:28 | 2019-11-12T10:50:28 | 91,250,796 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 488 | h | #pragma once
class ProcessObject
{
public:
ProcessObject() : alloc_thread_count_(0) {};
virtual ~ProcessObject() {};
virtual bool Init() = 0;
virtual void DoWork(void* param) = 0;
virtual void EndWork() = 0;
void SetAllocThreadCount(DWORD thread_count)
{
DWORD& alloc_thread_count = const_cast<DWORD&>(alloc_thread_count_);
alloc_thread_count = thread_count;
};
DWORD GetAllocThreadCount() { return alloc_thread_count_; };
private:
const DWORD alloc_thread_count_;
}; | [
"man3273@daum.net"
] | man3273@daum.net |
1ec7677cd8195429bcc4c74de8e3d7516ea821ef | 1105f2b5f4fa0b37411738cd5d653ccc6617f9bb | /src/core/config.h | 1d150ecc8a24141ce58e8997165d0322f7f5b20f | [] | no_license | roc2/lgmx | 43f77702e9c519dc5b9f7f64b785a9ca034b07aa | 627893aeeabcd59f9c028c96f2886fec0d0cb53e | refs/heads/master | 2020-04-18T10:58:48.730984 | 2013-09-05T12:46:33 | 2013-09-05T12:46:33 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 254 | h | #ifndef CONFIG_H
#define CONFIG_H
#include <QString>
#define CONF_FILE "/.lgmxconfig"
class Config
{
private:
Config(const Config&);
Config& operator=(const Config&);
public:
Config();
~Config();
private:
QString conf_file;
};
#endif
| [
"lgmariano@gmail.com"
] | lgmariano@gmail.com |
d90fcec162b1017b678a079649450ea41b1c8e34 | 9a1b5f458d1bf9efdfa2cc61494ddecec14d4eff | /Sources/Uis/Inputs/UiInputGrabber.hpp | 3b43c1ae6cfa8d93a53ddd2d1c65ed7f17719c14 | [
"MIT"
] | permissive | LukePrzyb/Acid | ba36ef9839731a4a581800e89c79985374f38406 | ba7da3ffcc08791f047ec0f15317b3e0ba971850 | refs/heads/master | 2020-09-08T09:01:35.336741 | 2019-11-16T00:40:24 | 2019-11-16T00:40:24 | 221,086,385 | 0 | 0 | MIT | 2019-11-11T23:08:03 | 2019-11-11T23:08:02 | null | UTF-8 | C++ | false | false | 2,759 | hpp | #pragma once
#include "Devices/Joysticks.hpp"
#include "Devices/Keyboard.hpp"
#include "Devices/Mouse.hpp"
#include "Fonts/Text.hpp"
#include "Guis/Gui.hpp"
#include "Uis/UiObject.hpp"
#include "UiInputButton.hpp"
namespace acid {
class ACID_EXPORT UiInputGrabber : public UiObject {
public:
UiInputGrabber(UiObject *parent, const std::string &title, const UiTransform &transform);
void UpdateObject() override;
const std::string &GetTitle() const { return m_textTitle.GetString(); }
void SetTitle(const std::string &title) { m_textTitle.SetString(title); }
protected:
virtual std::string GetTextString() const = 0;
void SetUpdating(bool updating);
void UpdateValue();
Gui m_background;
Text m_textTitle;
Text m_textValue;
int32_t m_lastKey = 0;
bool m_updating = false;
bool m_mouseOver = false;
};
class ACID_EXPORT UiGrabberJoystick : public UiInputGrabber {
public:
UiGrabberJoystick(UiObject *parent, const std::string &title, uint32_t port, uint32_t value,
const UiTransform &transform = {UiInputButton::Size});
uint32_t GetPort() const { return m_port; }
void SetPort(uint32_t port) { m_port = port; }
uint32_t GetValue() const { return m_value; }
void SetValue(uint32_t value);
/**
* Called when this value of the input changes.
* @return The delegate.
*/
Delegate<void(uint32_t, uint32_t)> &OnValue() { return m_onValue; }
protected:
std::string GetTextString() const override {
return String::To(m_value);
}
private:
uint32_t m_port;
uint32_t m_value;
Delegate<void(uint32_t, uint32_t)> m_onValue;
};
class ACID_EXPORT UiGrabberKeyboard : public UiInputGrabber {
public:
UiGrabberKeyboard(UiObject *parent, const std::string &title, Key value,
const UiTransform &transform = {UiInputButton::Size});
Key GetValue() const { return m_value; }
void SetValue(Key value);
/**
* Called when this value of the input changes.
* @return The delegate.
*/
Delegate<void(Key)> &OnValue() { return m_onValue; }
protected:
std::string GetTextString() const override {
return Keyboard::ToString(m_value);
}
private:
Key m_value;
Delegate<void(Key)> m_onValue;
};
class ACID_EXPORT UiGrabberMouse : public UiInputGrabber {
public:
UiGrabberMouse(UiObject *parent, const std::string &title, MouseButton value,
const UiTransform &transform = {UiInputButton::Size});
MouseButton GetValue() const { return m_value; }
void SetValue(MouseButton value);
/**
* Called when this value of the input changes.
* @return The delegate.
*/
Delegate<void(MouseButton)> &OnValue() { return m_onValue; }
protected:
std::string GetTextString() const override {
return String::To(static_cast<int32_t>(m_value));
}
private:
MouseButton m_value;
Delegate<void(MouseButton)> m_onValue;
};
}
| [
"mattparks5855@gmail.com"
] | mattparks5855@gmail.com |
57db9133467f9642892169e7142d3562e9e91ab2 | dd949f215d968f2ee69bf85571fd63e4f085a869 | /subarchitectures/default.sa/branches/avs-iros11/src/c++/def/components/ChainGraphInferencer/ChainGraphInferencer.h | 92d45f9171d5bd63ddcf9cf8d3686f83b43eebc5 | [] | no_license | marc-hanheide/cogx | a3fd395805f1b0ad7d713a05b9256312757b37a9 | cb9a9c9cdfeba02afac6a83d03b7c6bb778edb95 | refs/heads/master | 2022-03-16T23:36:21.951317 | 2013-12-10T23:49:07 | 2013-12-10T23:49:07 | 219,460,352 | 1 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 5,417 | h | /**
* @author Andrzej Pronobis
*
* Declaration of the conceptual::ChainGraphInferencer class.
*/
#ifndef DEFAULT_CHAINGRAPHINFERENCER_H
#define DEFAULT_CHAINGRAPHINFERENCER_H
#include <cast/architecture/ManagedComponent.hpp>
#include "VariableNameGenerator.h"
#include <DefaultData.hpp>
#include <ComaData.hpp>
#include <SpatialData.hpp>
namespace def
{
/**
* @author Andrzej Pronobis
*
* Main query handler for the Default.SA
*/
class ChainGraphInferencer: public cast::ManagedComponent
{
class Server: public DefaultData::ChainGraphInferencerServerInterface
{
public:
/** Constructor. */
Server(ChainGraphInferencer *chainGraphInferencer) : _chainGraphInferencer(chainGraphInferencer)
{}
virtual DefaultData::StringSeq getObjectPropertyVariables(const Ice::Current &);
virtual DefaultData::StringSeq getObjectCategories(const Ice::Current &);
virtual DefaultData::StringSeq getRoomCategories(const Ice::Current &);
virtual DefaultData::StringSeq getShapes(const Ice::Current &);
virtual DefaultData::StringSeq getSizes(const Ice::Current &);
virtual DefaultData::StringSeq getAppearances(const Ice::Current &);
virtual SpatialProbabilities::ProbabilityDistribution
getFactor(const std::string &factorStr, const Ice::Current &);
private:
/** Pointer to the owner of the server. */
ChainGraphInferencer *_chainGraphInferencer;
};
enum LoadObjectsFrom
{LOF_HFC, LOF_DEFAULTPROB};
public:
/** Constructor. */
ChainGraphInferencer();
/** Destructor. */
virtual ~ChainGraphInferencer();
protected:
/** Called by the framework to configure the component. */
virtual void configure(const std::map<std::string,std::string> & _config);
/** Called by the framework after configuration, before run loop. */
virtual void start();
/** The main run loop. */
virtual void runComponent();
/** Called by the framework after the run loop finishes. */
virtual void stop();
private:
/** Change event. */
void inferenceQueryAdded(const cast::cdl::WorkingMemoryChange &wmChange);
/** Loads the avs default knowledge file (defaultprob.txt) */
void loadAvsDefaultKnowledge();
private:
struct Query
{
DefaultData::InferenceQueryPtr queryPtr;
cast::cdl::WorkingMemoryAddress wmAddress;
};
/** Recently received queries. */
std::list<Query> _receivedQueries;
pthread_cond_t _inferenceQueryAddedSignalCond;
pthread_mutex_t _inferenceQueryAddedSignalMutex;
/** Id of the forward chainer server component. */
std::string _hfcServerName;
/** ICE proxy to the forward chainer server interface. */
comadata::HFCInterfacePrx _hfcInterfacePrx;
/** Results of the query for the default knowledge sent to HFC. */
comadata::QueryResults _hfcQueryResults;
struct ObjectPropertyGivenRoomCategory
{
std::string roomCategory;
std::string objectCategory;
std::string supportObjectCategory;
SpatialData::SpatialRelation relation;
double probability;
};
/** Converted knowledge from the HFC. */
std::list<ObjectPropertyGivenRoomCategory> _objectPropertyGivenRoomCategory;
double _defaultRoomCategoryConnectivityPotential;
double _defaultObjectExistenceProbability;
struct RoomCategoryConnectivity
{
std::string roomCategory1;
std::string roomCategory2;
double potential;
};
/** Room connectivity information as read from the config file. */
std::list<RoomCategoryConnectivity> _roomCategoryConnectivity;
/** List of all object categories. */
std::vector<std::string> _objectCategories;
/** List of all object property variable names. */
std::vector<std::string> _objectPropertyVariables;
/** List of all the room categories. */
std::vector<std::string> _roomCategories;
/** List of all the shapes. */
std::vector<std::string> _shapes;
/** List of all the sizes. */
std::vector<std::string> _sizes;
/** List of all the appearances. */
std::vector<std::string> _appearances;
struct ShapePropertyGivenRoomCategory
{
std::string roomCategory1;
std::string shapeProperty;
double probability;
};
std::list<ShapePropertyGivenRoomCategory> _shapePropertyGivenRoomCategory;
struct DefaultShapePropertyGivenRoomCategory
{
std::string shapeProperty;
double probability;
};
std::list<DefaultShapePropertyGivenRoomCategory> _defaultShapePropertyGivenRoomCategory;
struct SizePropertyGivenRoomCategory
{
std::string roomCategory1;
std::string sizeProperty;
double probability;
};
std::list<SizePropertyGivenRoomCategory> _sizePropertyGivenRoomCategory;
struct DefaultSizePropertyGivenRoomCategory
{
std::string sizeProperty;
double probability;
};
std::list<DefaultSizePropertyGivenRoomCategory> _defaultSizePropertyGivenRoomCategory;
struct AppearancePropertyGivenRoomCategory
{
std::string roomCategory1;
std::string appearanceProperty;
double probability;
};
std::list<AppearancePropertyGivenRoomCategory> _appearancePropertyGivenRoomCategory;
struct DefaultAppearancePropertyGivenRoomCategory
{
std::string appearanceProperty;
double probability;
};
std::list<DefaultAppearancePropertyGivenRoomCategory> _defaultAppearancePropertyGivenRoomCategory;
/** Determines from where the object information should be loaded. */
LoadObjectsFrom _loadObjectsFrom;
/** Path to the file with object info. */
std::string _objectsFileName;
}; // class ChainGraphInferencer
} // namespace def
#endif // DEFAULT_CHAINGRAPHINFERENCER_H
| [
"pronobis@9dca7cc1-ec4f-0410-aedc-c33437d64837"
] | pronobis@9dca7cc1-ec4f-0410-aedc-c33437d64837 |
e3a70b48d6a204898c2715e32433ea9d1ec77fc1 | 93b24e6296dade8306b88395648377e1b2a7bc8c | /client/wxWidgets/wx/gtk/dcmemory.h | a04635bcd600ec42cd5dda46a54512820a9ad695 | [] | no_license | dahahua/pap_wclinet | 79c5ac068cd93cbacca5b3d0b92e6c9cba11a893 | d0cde48be4d63df4c4072d4fde2e3ded28c5040f | refs/heads/master | 2022-01-19T21:41:22.000190 | 2013-10-12T04:27:59 | 2013-10-12T04:27:59 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,839 | h | /////////////////////////////////////////////////////////////////////////////
// Name: dcmemory.h
// Purpose:
// Author: Robert Roebling
// RCS-ID: $Id: dcmemory.h,v 1.16 2004/05/23 20:50:53 JS Exp $
// Copyright: (c) 1998 Robert Roebling
// Licence: wxWindows licence
/////////////////////////////////////////////////////////////////////////////
#ifndef __GTKDCMEMORYH__
#define __GTKDCMEMORYH__
#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
#pragma interface
#endif
#include "wx/defs.h"
#include "wx/dcclient.h"
//-----------------------------------------------------------------------------
// classes
//-----------------------------------------------------------------------------
class wxMemoryDC;
//-----------------------------------------------------------------------------
// wxMemoryDC
//-----------------------------------------------------------------------------
class wxMemoryDC : public wxWindowDC
{
public:
wxMemoryDC();
wxMemoryDC( wxDC *dc ); // Create compatible DC
~wxMemoryDC();
virtual void SelectObject( const wxBitmap& bitmap );
void DoGetSize( int *width, int *height ) const;
// these get reimplemented for mono-bitmaps to behave
// more like their Win32 couterparts. They now interpret
// wxWHITE, wxWHITE_BRUSH and wxWHITE_PEN as drawing 0
// and everything else as drawing 1.
virtual void SetPen( const wxPen &pen );
virtual void SetBrush( const wxBrush &brush );
virtual void SetBackground( const wxBrush &brush );
virtual void SetTextForeground( const wxColour &col );
virtual void SetTextBackground( const wxColour &col );
// implementation
wxBitmap m_selected;
private:
DECLARE_DYNAMIC_CLASS(wxMemoryDC)
};
#endif
// __GTKDCMEMORYH__
| [
"viticm@126.com"
] | viticm@126.com |
57b201cc4b066a21768c522f84604ad1903a4078 | 49250c0ef62660f04fadb71ea06cdddb1a82c727 | /tests/server.test.cpp | 940f21dd6b262c78a5d1c01d05fd567dea83333d | [
"BSD-2-Clause",
"MIT",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | derofim/boost_server_example | fb22f29c1c306e403c759386cd3dfc14052068a9 | b524adbf842faa75fd5f5d46486dff605b96bfde | refs/heads/master | 2020-04-18T03:17:59.766866 | 2019-01-28T12:34:19 | 2019-01-28T12:34:19 | 167,193,719 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,507 | cpp | /*
* Copyright (c) 2019 Denis Trofimov (den.a.trofimov@yandex.ru)
* Distributed under the MIT License.
* See accompanying file LICENSE.md or copy at http://opensource.org/licenses/MIT
*/
#include "algo/CSV.hpp"
#include "algo/NetworkOperation.hpp"
#include "algo/StringUtils.hpp"
#include <algorithm>
#include <boost/asio.hpp>
#include <boost/beast/http.hpp>
#include <boost/beast/websocket.hpp>
#include <boost/format.hpp>
#include <boost/lexical_cast.hpp>
#include <chrono>
#include <cmath>
#include <cstddef>
#include <cstdlib>
#include <ctime>
#include <filesystem>
#include <fstream>
#include <functional>
#include <iomanip>
#include <iostream>
#include <random>
#include <sstream>
#include <streambuf>
#include <string>
#include <vector>
#include "testsCommon.h"
SCENARIO("loadCSV", "[CSV]") {
using boostander::algo::CSV;
CSV csv;
csv.loadFromMemory("1,2,3,4,5\n"
"2,4,6,8,10\n"
"3,6,9,12,15\n"
"4,8,12,16,20\n"
"5,10,15,20,25\n"
"6,12,18,24,30\n"
"7,14,21,28,35\n"
"8,16,24,32,40\n"
"9,18,27,36,45\n"
"10,20,30,40,50\n");
CHECK(csv.getRowsCount() == 10);
CHECK(csv.getColsCount() == 5);
CHECK(csv.getRow(0).at(0) == "1");
CHECK(csv.getRow(0).at(1) == "2");
CHECK(csv.getRow(0).at(2) == "3");
CHECK(csv.getRow(0).at(3) == "4");
CHECK(csv.getRow(0).at(4) == "5");
CHECK(csv.getAt(0, 0) == "1");
CHECK(csv.getAt(1, 1) == "4");
CHECK(csv.getAt(0, 4) == "5");
CHECK(csv.getAt(9, 0) == "10");
CHECK(csv.getAt(9, 4) == "50");
CHECK(csv.setAt(9, 0, "G") == "G");
CHECK(csv.setAt(9, 4, "ABRA") == "ABRA");
CHECK(csv.getAt(9, 0) == "G");
CHECK(csv.getAt(9, 1) == "20");
CHECK(csv.getAt(9, 2) == "30");
CHECK(csv.getAt(9, 3) == "40");
CHECK(csv.getAt(9, 4) == "ABRA");
csv.appendRow(std::vector<std::string>{"9", "8", "7", "6", "5\n"});
CHECK(csv.getRowsCount() == 11);
CHECK(csv.getAt(10, 0) == "9");
CHECK(csv.getAt(10, 1) == "8");
CHECK(csv.getAt(10, 2) == "7");
CHECK(csv.getAt(10, 3) == "6");
CHECK(csv.getAt(10, 4) == "5\n");
}
SCENARIO("chrono", "[stringUtils]") {
using namespace boostander::algo;
CHECK(dateToStr(dateTimeFromStr("20.10.1995 22:15:14")) == "20.10.1995 22:15:14");
{
auto start_time = dateTimeFromStr("20.10.1995 22:15:14");
auto end_time = dateTimeFromStr("20.10.1995 22:15:15");
CHECK(chrono::duration_cast<chrono::milliseconds>(end_time - start_time).count() == 1000);
CHECK(end_time > start_time);
end_time += std::chrono::hours(5);
CHECK(chrono::duration_cast<chrono::hours>(end_time - start_time).count() == 5);
}
}
SCENARIO("Opcodes", "[Opcodes]") {
using namespace boostander::algo;
using namespace std;
CHECK(Opcodes::opcodeToStr(WS_OPCODE::PING) == "0");
CHECK(Opcodes::wsOpcodeFromStr("0") == WS_OPCODE::PING);
CHECK(Opcodes::opcodeToStr(WS_OPCODE::CSV_ANALIZE) == "1");
CHECK(Opcodes::wsOpcodeFromStr("1") == WS_OPCODE::CSV_ANALIZE);
CHECK(Opcodes::opcodeToStr(WS_OPCODE::CSV_ANSWER) == "2");
CHECK(Opcodes::wsOpcodeFromStr("2") == WS_OPCODE::CSV_ANSWER);
}
SCENARIO("randomCSV", "[CSV]") {
using namespace boostander::algo;
using namespace std;
using namespace Catch;
using namespace Catch::literals;
std::locale::global(std::locale::classic()); // https://stackoverflow.com/a/18981514/10904212
CSV csv;
csv.setRowNum(0);
csv.setColNum(3);
mt19937 randomGenerator(time(0));
uniform_int_distribution<int> iRoll(1, 1000);
uniform_real_distribution<double> dRoll(1, 1000);
uniform_int_distribution<int> nRoll(1, 100);
const auto rowNum = nRoll(randomGenerator);
auto now = std::chrono::system_clock::now();
for (int i = 0; i < rowNum; i++) {
now += std::chrono::hours(iRoll(randomGenerator));
double r0 = dRoll(randomGenerator);
double r1 = dRoll(randomGenerator);
auto d0 = boost::str(boost::format("%.9f") % r0);
auto d1 = boost::str(boost::format("%.9f") % r1);
CHECK(boost::lexical_cast<double>(d0) == Approx(r0));
CHECK(boost::lexical_cast<double>(d1) == Approx(r1));
CHECK(dateToStr(now) == dateToStr(dateTimeFromStr(dateToStr(now))));
csv.appendRow(std::vector<std::string>{dateToStr(now), d0, d1 + "\n"});
}
// may be used to generate test .csv files
// format: test_data_28.01.2019 01:21:58
// csv.saveToFile("test_data_" + currentDateTime("%d_%m_%Y") + ".csv");
}
| [
"derofim@yandex.ru"
] | derofim@yandex.ru |
962c41f20685b1bf250612e2586d46831c523a9f | c98496a81097f5234fbd76c972c7fba32a4f2284 | /QtCamera.h | 2cd71063662c5d4dcb7d021e1999e2f8ae09a5de | [
"MIT"
] | permissive | tsec/QtCamera | 7090b8ad80ad87227e8aefa0c19102013096a425 | cea13a419c77f40071a7168b5df6d21b54fd1a71 | refs/heads/master | 2020-11-26T21:42:49.386944 | 2019-08-08T05:58:26 | 2019-08-08T05:58:26 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,127 | h | /**********************************************************
Author: Qt君
微信公众号: Qt君(首发)
QQ群: 732271126
Email: 2088201923@qq.com
LICENSE: MIT
**********************************************************/
#ifndef QT_CAMERA_H
#define QT_CAMERA_H
#include <QCamera>
#include <QCameraInfo>
#include <QVideoWidget>
#include <QTimer>
class QtCamera : public QObject
{
Q_OBJECT
public:
QtCamera(QVideoWidget *widget);
~QtCamera();
bool start();
bool stop();
bool isStarted();
bool selectDevice(const QCameraInfo &cameraInfo);
signals:
void deviceListChanged();
void deviceStatusChanged();
private slots:
void autoRestore();
void autoSelectDevice();
void checkDeviceList();
private:
bool deviceExist(const QCameraInfo &cameraInfo) const;
private:
bool m_isStarted;
QTimer m_checkDeviceListTimer;
QVideoWidget *m_videoWidget;
QCamera *m_camera;
QCameraInfo m_curCameraInfo;
QList<QCameraInfo> m_curCameraInfoList;
QList<QCameraInfo> m_preCameraInfoList;
};
#endif // QT_CAMERA_H
| [
"982381240@qq.com"
] | 982381240@qq.com |
1307ccbbcd1cec317206627e465ccd218006362b | 903855cbeb65affd6620ded59191c8a8b8d1df45 | /khusnutdinova/checkpoint/Stack/main.cpp | 048a4e015610a327d70c920cc3a9a2e8df6e2b92 | [
"MIT"
] | permissive | soomrack/MR2020 | 260b2ff093ab39c48d3cfa18e0c1c0b3859bd1e0 | 2de7289665dcdac4a436eb512f283780aa78cb76 | refs/heads/master | 2023-04-26T15:11:08.607185 | 2021-05-24T11:02:34 | 2021-05-24T11:02:34 | 293,246,956 | 4 | 0 | MIT | 2021-02-21T10:29:12 | 2020-09-06T09:50:17 | C++ | UTF-8 | C++ | false | false | 849 | cpp | #include <iostream>
const int ERR0R = 2147483647;
class Stack {
public:
int pop();
void push(const int value);
public:
Stack();
~Stack();
};
struct element {
int value;
struct element *next;
};
struct element *top;
int Stack::pop(){
if (top == nullptr){return ERROR;}
int temp = top -> value;
element *pointer = top;
top = top -> next;
delete pointer;
pointer = nullptr;
return temp;
};
void Stuck::push(const int value){
element *pointer = nullptr;
pointer = new element;
pointer -> value = value;
pointer -> next = top;
top = poiner;
};
Stack::Stack(){
top = nullptr;
};
Stack::~Stack(){
while (top != nullptr){
element *pointer = top;
top = top -> next;
delete pointer;
}
};
int main() {
std::cout << "The end." << std::endl;
} | [
"noreply@github.com"
] | noreply@github.com |
758784ca5e28c51e443caf4a0336c862cfada6ca | 1b97819a1a0b9e86ebca451b0589747f712096c3 | /leetcode/Word Ladder/Word Ladder/Solution.cpp | 88f96054ea7ff18ad16953bbcaf14f9a7da11421 | [] | no_license | icespeech/Practices | e6d8219048df7abbac327cb335bffb9c9d009019 | db6f531a0059dc527d79ddbe7d8c22cc56ef6401 | refs/heads/master | 2021-01-25T10:05:53.066064 | 2015-11-03T08:54:43 | 2015-11-03T08:54:43 | 37,235,851 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,966 | cpp | #include <unordered_map>
#include <vector>
#include <set>
#include "Solution.h"
using std::string;
using std::set;
bool stringAdj(const string& a, const string& b)
{
for (int i = 0, differ = 0; i < a.size(); ++i)
if (a[i] != b[i] && ++differ > 1) return false;
return true;
}
int Solution::ladderLength(string beginWord, string endWord, std::unordered_set<string>& wordDict)
{
if (beginWord.size() == 0 || endWord.size() == 0 || beginWord.size() != endWord.size()) return 0;
if (beginWord.compare(endWord) == 0) return 1;
if (stringAdj(beginWord, endWord)) return 2;
std::unordered_map<string, std::vector<string>> graph;
for (const string& s : wordDict)
{
for (int i = 0; i < s.size(); ++i)
{
string tmp = s;
tmp[i] = '*';
graph[tmp].push_back(s);
}
}
std::unordered_set<string> visited;
set<string> layerSetFromStart;
set<string> layerSetFromEnd;
set<string> tmpLayerSetFromStart;
set<string> tmpLayerSetFromEnd;
layerSetFromStart.insert(beginWord);
layerSetFromEnd.insert(endWord);
int startDepth = 1, endDepth = 0;
while (layerSetFromStart.size() > 0 || layerSetFromEnd.size() > 0)
{
/*
* start side
*/
for (const string& curStart : layerSetFromStart)
{
visited.insert(curStart);
for (int i = 0; i < curStart.size(); ++i)
{
string tmpS = curStart;
tmpS[i] = '*';
for (const string& s : graph[tmpS])
{
if (visited.find(s) != visited.end())
continue;
// there is this node, and this node is in the leaf layer of the end side => found
if (layerSetFromEnd.find(s) != layerSetFromEnd.end())
return startDepth + endDepth + 1;
tmpLayerSetFromStart.insert(s);
}
}
}
startDepth++;
layerSetFromStart = tmpLayerSetFromStart;
tmpLayerSetFromStart.clear();
/*
* end side
*/
for (const string& curEnd : layerSetFromEnd)
{
visited.insert(curEnd);
for (int i = 0; i < curEnd.size(); ++i)
{
string tmpE = curEnd;
tmpE[i] = '*';
for (const string& s : graph[tmpE])
{
if (visited.find(s) != visited.end())
continue;
if (layerSetFromStart.find(s) != layerSetFromStart.end())
return startDepth + endDepth + 1;
tmpLayerSetFromEnd.insert(s);
}
}
}
endDepth++;
layerSetFromEnd = tmpLayerSetFromEnd;
tmpLayerSetFromEnd.clear();
}
return 0;
} | [
"icespeech@gmail.com"
] | icespeech@gmail.com |
7b9d5984d14c39db26a7f9b9804dbc07eb571fcf | 3869e42b5f0355d5ce01e2f8945705ebe625f833 | /source/downloads/code/program.cpp | 52b24e295e7152b1d29a639d47742fa7449ca92f | [
"MIT"
] | permissive | navi7/blog | 6ce15bc374b25f0a93dad4e6d1af463763431024 | 4ffbe383a1cec53bc7833a88d0b7f3c41b8fe7a1 | refs/heads/master | 2020-05-26T19:33:22.161299 | 2013-03-03T22:03:36 | 2013-03-03T22:03:36 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 110 | cpp | #include <iostream>
int main() {
std::cout << "Hello from zombie programmer!\n";
return 0;
}
| [
"ivan.mesic@simplesource.hr"
] | ivan.mesic@simplesource.hr |
dee099474e904b32c86b69b8f59dc333734531f3 | a33aac97878b2cb15677be26e308cbc46e2862d2 | /program_data/PKU_raw/35/1.c | d811ad4ef42ec83fb51885646b21524c2eb88775 | [] | no_license | GabeOchieng/ggnn.tensorflow | f5d7d0bca52258336fc12c9de6ae38223f28f786 | 7c62c0e8427bea6c8bec2cebf157b6f1ea70a213 | refs/heads/master | 2022-05-30T11:17:42.278048 | 2020-05-02T11:33:31 | 2020-05-02T11:33:31 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 595 | c |
main()
{
int m,n,k,i,j;
int num[10][10],line[10],column[10];
scanf("%d,%d",&m,&n);
for(i=0;i<m;++i)
for(j=0;j<n;++j)
scanf("%d",&num[i][j]);
for(i=0;i<m;++i)
{
k=num[i][0];
line[i]=0;
for(j=0;j<n;++j)
if(num[i][j]>k)
{
k=num[i][j];
line[i]=j;
}
}
for(i=0;i<n;++i)
{
k=num[0][i];
column[i]=0;
for(j=0;j<m;++j)
if(num[j][i]<k)
{
k=num[j][i];
column[i]=j;
}
}
k=0;
for(i=0;i<m;++i)
{
j=line[i];
if(column[j]==i)
{
printf("%d+%d",i,j);
k=1;
}
}
if(k==0)
printf("No");
}
| [
"bdqnghi@gmail.com"
] | bdqnghi@gmail.com |
f0966801c641caa4881905ec72c87af89810a293 | 32a202cd54d58360337511fca6e9458ca63f92ab | /OpenGLStudy/src/opengl/factory/PositionColorGraphicComponentsFactory.cpp | dc795d348e6e7afeca28eda9d8eb5a1d3487ec30 | [] | no_license | jolotan416/OpenGLStudy | 3e937a39812f3ffdd44c8a0903a4deafdc739d01 | 5cd38dc92f682c468e450397a5bbd1382c179cde | refs/heads/master | 2023-07-12T17:11:22.132211 | 2021-08-08T10:44:02 | 2021-08-08T10:44:02 | 387,830,327 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 689 | cpp | #include <opengl/factory/PositionColorGraphicComponentsFactory.h>
namespace opengl {
namespace factory {
const std::string PositionColorGraphicComponentsFactory::VERTEX_SHADER_FILENAME = "res/shaders/position_color_vertex.shader";
const std::string PositionColorGraphicComponentsFactory::FRAGMENT_SHADER_FILENAME = "res/shaders/position_color_fragment.shader";
shader::ShaderProgram PositionColorGraphicComponentsFactory::getShaderProgram() {
return shader::ShaderProgram(VERTEX_SHADER_FILENAME, FRAGMENT_SHADER_FILENAME);
}
vertex::VAOBuilder PositionColorGraphicComponentsFactory::getVAOBuilder() {
return vertex::VAOBuilder(vertex::VAOType::POSITION_COLOR);
}
}
} | [
"jolo.tan@dealgrocer.com"
] | jolo.tan@dealgrocer.com |
325a2d912df569d74b43653aae711ed526f8ee9a | 6507f58274314602b2d27b108632c6259f93f65e | /src/Kernel/System/Particle_Interaction_System/SimulationData_CudaSystem.cpp | b4f663c5daf266f8066ea7176f26bbbdf2c682fd | [] | no_license | edarles/PSB_Project | 51550181e24776b02653e78bd161e329e6cc744f | e9582476aba10763e374b0e48642bd7b3a1330c3 | refs/heads/master | 2021-06-21T20:44:38.340749 | 2013-05-28T14:37:08 | 2013-05-28T14:37:08 | 10,194,874 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,013 | cpp | #include "SimulationData_CudaSystem.h"
/**********************************************************************************/
/**********************************************************************************/
SimulationData_CudaSystem::SimulationData_CudaSystem():SimulationData_SimpleSystem()
{
}
/**********************************************************************************/
SimulationData_CudaSystem::SimulationData_CudaSystem(float particleRadius, float mass, Vector3 color,
float interactionRadius, float spring, float damping, float shear, float attraction)
:SimulationData_SimpleSystem(particleRadius,mass, color)
{
this->interactionRadius = interactionRadius;
this->spring = spring;
this->damping = damping;
this->shear = shear;
this->attraction = attraction;
}
/**********************************************************************************/
SimulationData_CudaSystem::SimulationData_CudaSystem(const SimulationData_CudaSystem& S)
:SimulationData_SimpleSystem(S)
{
}
/**********************************************************************************/
SimulationData_CudaSystem::~SimulationData_CudaSystem()
{
}
/**********************************************************************************/
/**********************************************************************************/
float SimulationData_CudaSystem::getInteractionRadius()
{
return interactionRadius;
}
/**********************************************************************************/
float SimulationData_CudaSystem::getSpring()
{
return spring;
}
/**********************************************************************************/
float SimulationData_CudaSystem::getDamping()
{
return damping;
}
/**********************************************************************************/
float SimulationData_CudaSystem::getShear()
{
return shear;
}
/**********************************************************************************/
float SimulationData_CudaSystem::getAttraction()
{
return attraction;
}
/**********************************************************************************/
/**********************************************************************************/
void SimulationData_CudaSystem::setInteractionRadius(float interactionRadius)
{
this->interactionRadius = interactionRadius;
}
/**********************************************************************************/
void SimulationData_CudaSystem::setSpring(float spring)
{
this->spring = spring;
}
/**********************************************************************************/
void SimulationData_CudaSystem::setDamping(float damping)
{
this->damping = damping;
}
/**********************************************************************************/
void SimulationData_CudaSystem::setShear(float shear)
{
this->shear = shear;
}
/**********************************************************************************/
void SimulationData_CudaSystem::setAttraction(float attraction)
{
this->attraction = attraction;
}
/**********************************************************************************/
/**********************************************************************************/
bool SimulationData_CudaSystem::loadConfiguration(const char* filename)
{
TiXmlDocument doc(filename);
if (doc.LoadFile()){
TiXmlHandle hDoc(&doc);
TiXmlElement* elem;
TiXmlElement* hRoot = doc.FirstChildElement( "Cuda_System_Material" );
elem=hDoc.FirstChildElement().Element();
hRoot->QueryFloatAttribute("visualizationRadius",&this->particleRadius);
hRoot->QueryFloatAttribute("particle_mass",&this->particleMass);
hRoot->QueryFloatAttribute("interactionRadius",&this->interactionRadius);
hRoot->QueryFloatAttribute("spring",&this->spring);
hRoot->QueryFloatAttribute("damping",&this->damping);
hRoot->QueryFloatAttribute("shear",&this->shear);
hRoot->QueryFloatAttribute("attraction",&this->attraction);
return true;
}
else
return false;
}
/**********************************************************************************/
bool SimulationData_CudaSystem::saveConfiguration(const char* filename)
{
TiXmlDocument doc;
TiXmlDeclaration * decl = new TiXmlDeclaration( "1.0", "", "" );
doc.LinkEndChild( decl );
TiXmlElement * elmt = new TiXmlElement( "Cuda_System_Material" );
doc.LinkEndChild(elmt);
elmt->SetAttribute("name","Cuda_System_Material");
elmt->SetDoubleAttribute("visualizationRadius",this->particleRadius);
elmt->SetDoubleAttribute("particle_mass",this->particleMass);
elmt->SetDoubleAttribute("interactionRadius",this->interactionRadius);
elmt->SetDoubleAttribute("spring",this->spring);
elmt->SetDoubleAttribute("damping",this->damping);
elmt->SetDoubleAttribute("shear",this->shear);
elmt->SetDoubleAttribute("attraction",this->attraction);
doc.SaveFile(filename);
return true;
}
/**********************************************************************************/
/**********************************************************************************/
| [
"emmanuelle.darles@univ-poitiers.fr"
] | emmanuelle.darles@univ-poitiers.fr |
215864857362f1e1eeb3e50af30e24b966e87688 | 1922196adcf662c5f6fb93666bac8862d70afd18 | /src/net.h | 8eb4a6448ea9c7a7450bc9219902c9f896562606 | [
"MIT"
] | permissive | ezehy/ebuxcore | 4559e035178cd945721eea37589812bbc4df196c | 9892cb6b496698fa33e44e660c409a486f7df581 | refs/heads/master | 2020-03-27T21:29:47.172757 | 2018-09-07T12:30:13 | 2018-09-07T12:30:13 | 147,149,238 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 21,093 | h | // Copyright (c) 2009-2010 Satoshi Nakamoto
// Copyright (c) 2009-2014 The Bitcoin developers
// Copyright (c) 2015-2017 The PIVX developers
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#ifndef BITCOIN_NET_H
#define BITCOIN_NET_H
#include "bloom.h"
#include "compat.h"
#include "hash.h"
#include "limitedmap.h"
#include "mruset.h"
#include "netbase.h"
#include "protocol.h"
#include "random.h"
#include "streams.h"
#include "sync.h"
#include "uint256.h"
#include "utilstrencodings.h"
#include <deque>
#include <stdint.h>
#ifndef WIN32
#include <arpa/inet.h>
#endif
#include <boost/filesystem/path.hpp>
#include <boost/foreach.hpp>
#include <boost/signals2/signal.hpp>
class CAddrMan;
class CBlockIndex;
class CNode;
namespace boost
{
class thread_group;
} // namespace boost
/** Time between pings automatically sent out for latency probing and keepalive (in seconds). */
static const int PING_INTERVAL = 2 * 60;
/** Time after which to disconnect, after waiting for a ping response (or inactivity). */
static const int TIMEOUT_INTERVAL = 20 * 60;
/** The maximum number of entries in an 'inv' protocol message */
static const unsigned int MAX_INV_SZ = 50000;
/** The maximum number of new addresses to accumulate before announcing. */
static const unsigned int MAX_ADDR_TO_SEND = 1000;
/** Maximum length of incoming protocol messages (no message over 2 MiB is currently acceptable). */
static const unsigned int MAX_PROTOCOL_MESSAGE_LENGTH = 2 * 1024 * 1024;
/** -listen default */
static const bool DEFAULT_LISTEN = true;
/** -upnp default */
#ifdef USE_UPNP
static const bool DEFAULT_UPNP = USE_UPNP;
#else
static const bool DEFAULT_UPNP = false;
#endif
/** The maximum number of entries in mapAskFor */
static const size_t MAPASKFOR_MAX_SZ = MAX_INV_SZ;
unsigned int ReceiveFloodSize();
unsigned int SendBufferSize();
void AddOneShot(std::string strDest);
bool RecvLine(SOCKET hSocket, std::string& strLine);
void AddressCurrentlyConnected(const CService& addr);
CNode* FindNode(const CNetAddr& ip);
CNode* FindNode(const std::string& addrName);
CNode* FindNode(const CService& ip);
CNode* ConnectNode(CAddress addrConnect, const char* pszDest = NULL, bool obfuScationMaster = false);
bool OpenNetworkConnection(const CAddress& addrConnect, CSemaphoreGrant* grantOutbound = NULL, const char* strDest = NULL, bool fOneShot = false);
void MapPort(bool fUseUPnP);
unsigned short GetListenPort();
bool BindListenPort(const CService& bindAddr, std::string& strError, bool fWhitelisted = false);
void StartNode(boost::thread_group& threadGroup);
bool StopNode();
void SocketSendData(CNode* pnode);
typedef int NodeId;
// Signals for message handling
struct CNodeSignals {
boost::signals2::signal<int()> GetHeight;
boost::signals2::signal<bool(CNode*)> ProcessMessages;
boost::signals2::signal<bool(CNode*, bool)> SendMessages;
boost::signals2::signal<void(NodeId, const CNode*)> InitializeNode;
boost::signals2::signal<void(NodeId)> FinalizeNode;
};
CNodeSignals& GetNodeSignals();
enum {
LOCAL_NONE, // unknown
LOCAL_IF, // address a local interface listens on
LOCAL_BIND, // address explicit bound to
LOCAL_UPNP, // address reported by UPnP
LOCAL_MANUAL, // address explicitly specified (-externalip=)
LOCAL_MAX
};
bool IsPeerAddrLocalGood(CNode* pnode);
void AdvertizeLocal(CNode* pnode);
void SetLimited(enum Network net, bool fLimited = true);
bool IsLimited(enum Network net);
bool IsLimited(const CNetAddr& addr);
bool AddLocal(const CService& addr, int nScore = LOCAL_NONE);
bool AddLocal(const CNetAddr& addr, int nScore = LOCAL_NONE);
bool RemoveLocal(const CService& addr);
bool SeenLocal(const CService& addr);
bool IsLocal(const CService& addr);
bool GetLocal(CService& addr, const CNetAddr* paddrPeer = NULL);
bool IsReachable(enum Network net);
bool IsReachable(const CNetAddr& addr);
void SetReachable(enum Network net, bool fFlag = true);
CAddress GetLocalAddress(const CNetAddr* paddrPeer = NULL);
extern bool fDiscover;
extern bool fListen;
extern uint64_t nLocalServices;
extern uint64_t nLocalHostNonce;
extern CAddrMan addrman;
extern int nMaxConnections;
extern std::vector<CNode*> vNodes;
extern CCriticalSection cs_vNodes;
extern std::map<CInv, CDataStream> mapRelay;
extern std::deque<std::pair<int64_t, CInv> > vRelayExpiration;
extern CCriticalSection cs_mapRelay;
extern limitedmap<CInv, int64_t> mapAlreadyAskedFor;
extern std::vector<std::string> vAddedNodes;
extern CCriticalSection cs_vAddedNodes;
extern NodeId nLastNodeId;
extern CCriticalSection cs_nLastNodeId;
struct LocalServiceInfo {
int nScore;
int nPort;
};
extern CCriticalSection cs_mapLocalHost;
extern std::map<CNetAddr, LocalServiceInfo> mapLocalHost;
class CNodeStats
{
public:
NodeId nodeid;
uint64_t nServices;
int64_t nLastSend;
int64_t nLastRecv;
int64_t nTimeConnected;
std::string addrName;
int nVersion;
std::string cleanSubVer;
bool fInbound;
int nStartingHeight;
uint64_t nSendBytes;
uint64_t nRecvBytes;
bool fWhitelisted;
double dPingTime;
double dPingWait;
std::string addrLocal;
};
class CNetMessage
{
public:
bool in_data; // parsing header (false) or data (true)
CDataStream hdrbuf; // partially received header
CMessageHeader hdr; // complete header
unsigned int nHdrPos;
CDataStream vRecv; // received message data
unsigned int nDataPos;
int64_t nTime; // time (in microseconds) of message receipt.
CNetMessage(int nTypeIn, int nVersionIn) : hdrbuf(nTypeIn, nVersionIn), vRecv(nTypeIn, nVersionIn)
{
hdrbuf.resize(24);
in_data = false;
nHdrPos = 0;
nDataPos = 0;
nTime = 0;
}
bool complete() const
{
if (!in_data)
return false;
return (hdr.nMessageSize == nDataPos);
}
void SetVersion(int nVersionIn)
{
hdrbuf.SetVersion(nVersionIn);
vRecv.SetVersion(nVersionIn);
}
int readHeader(const char* pch, unsigned int nBytes);
int readData(const char* pch, unsigned int nBytes);
};
/** Information about a peer */
class CNode
{
public:
// socket
uint64_t nServices;
SOCKET hSocket;
CDataStream ssSend;
size_t nSendSize; // total size of all vSendMsg entries
size_t nSendOffset; // offset inside the first vSendMsg already sent
uint64_t nSendBytes;
std::deque<CSerializeData> vSendMsg;
CCriticalSection cs_vSend;
std::deque<CInv> vRecvGetData;
std::deque<CNetMessage> vRecvMsg;
CCriticalSection cs_vRecvMsg;
uint64_t nRecvBytes;
int nRecvVersion;
int64_t nLastSend;
int64_t nLastRecv;
int64_t nTimeConnected;
CAddress addr;
std::string addrName;
CService addrLocal;
int nVersion;
// strSubVer is whatever byte array we read from the ebux. However, this field is intended
// to be printed out, displayed to humans in various forms and so on. So we sanitize it and
// store the sanitized version in cleanSubVer. The original should be used when dealing with
// the network or ebux types and the cleaned string used when displayed or logged.
std::string strSubVer, cleanSubVer;
bool fWhitelisted; // This peer can bypass DoS banning.
bool fOneShot;
bool fClient;
bool fInbound;
bool fNetworkNode;
bool fSuccessfullyConnected;
bool fDisconnect;
// We use fRelayTxes for two purposes -
// a) it allows us to not relay tx invs before receiving the peer's version message
// b) the peer may tell us in their version message that we should not relay tx invs
// until they have initialized their bloom filter.
bool fRelayTxes;
// Should be 'true' only if we connected to this node to actually mix funds.
// In this case node will be released automatically via CMasternodeMan::ProcessMasternodeConnections().
// Connecting to verify connectability/status or connecting for sending/relaying single message
// (even if it's relative to mixing e.g. for blinding) should NOT set this to 'true'.
// For such cases node should be released manually (preferably right after corresponding code).
bool fObfuScationMaster;
CSemaphoreGrant grantOutbound;
CCriticalSection cs_filter;
CBloomFilter* pfilter;
int nRefCount;
NodeId id;
protected:
// Denial-of-service detection/prevention
// Key is IP address, value is banned-until-time
static std::map<CNetAddr, int64_t> setBanned;
static CCriticalSection cs_setBanned;
std::vector<std::string> vecRequestsFulfilled; //keep track of what client has asked for
// Whitelisted ranges. Any node connecting from these is automatically
// whitelisted (as well as those connecting to whitelisted binds).
static std::vector<CSubNet> vWhitelistedRange;
static CCriticalSection cs_vWhitelistedRange;
// Basic fuzz-testing
void Fuzz(int nChance); // modifies ssSend
public:
uint256 hashContinue;
int nStartingHeight;
// flood relay
std::vector<CAddress> vAddrToSend;
mruset<CAddress> setAddrKnown;
bool fGetAddr;
std::set<uint256> setKnown;
// inventory based relay
mruset<CInv> setInventoryKnown;
std::vector<CInv> vInventoryToSend;
CCriticalSection cs_inventory;
std::multimap<int64_t, CInv> mapAskFor;
std::vector<uint256> vBlockRequested;
// Ping time measurement:
// The pong reply we're expecting, or 0 if no pong expected.
uint64_t nPingNonceSent;
// Time (in usec) the last ping was sent, or 0 if no ping was ever sent.
int64_t nPingUsecStart;
// Last measured round-trip time.
int64_t nPingUsecTime;
// Whether a ping is requested.
bool fPingQueued;
CNode(SOCKET hSocketIn, CAddress addrIn, std::string addrNameIn = "", bool fInboundIn = false);
~CNode();
private:
// Network usage totals
static CCriticalSection cs_totalBytesRecv;
static CCriticalSection cs_totalBytesSent;
static uint64_t nTotalBytesRecv;
static uint64_t nTotalBytesSent;
CNode(const CNode&);
void operator=(const CNode&);
public:
NodeId GetId() const
{
return id;
}
int GetRefCount()
{
assert(nRefCount >= 0);
return nRefCount;
}
// requires LOCK(cs_vRecvMsg)
unsigned int GetTotalRecvSize()
{
unsigned int total = 0;
BOOST_FOREACH (const CNetMessage& msg, vRecvMsg)
total += msg.vRecv.size() + 24;
return total;
}
// requires LOCK(cs_vRecvMsg)
bool ReceiveMsgBytes(const char* pch, unsigned int nBytes);
// requires LOCK(cs_vRecvMsg)
void SetRecvVersion(int nVersionIn)
{
nRecvVersion = nVersionIn;
BOOST_FOREACH (CNetMessage& msg, vRecvMsg)
msg.SetVersion(nVersionIn);
}
CNode* AddRef()
{
nRefCount++;
return this;
}
void Release()
{
nRefCount--;
}
void AddAddressKnown(const CAddress& addr)
{
setAddrKnown.insert(addr);
}
void PushAddress(const CAddress& addr)
{
// Known checking here is only to save space from duplicates.
// SendMessages will filter it again for knowns that were added
// after addresses were pushed.
if (addr.IsValid() && !setAddrKnown.count(addr)) {
if (vAddrToSend.size() >= MAX_ADDR_TO_SEND) {
vAddrToSend[insecure_rand() % vAddrToSend.size()] = addr;
} else {
vAddrToSend.push_back(addr);
}
}
}
void AddInventoryKnown(const CInv& inv)
{
{
LOCK(cs_inventory);
setInventoryKnown.insert(inv);
}
}
void PushInventory(const CInv& inv)
{
{
LOCK(cs_inventory);
if (!setInventoryKnown.count(inv))
vInventoryToSend.push_back(inv);
}
}
void AskFor(const CInv& inv);
// TODO: Document the postcondition of this function. Is cs_vSend locked?
void BeginMessage(const char* pszCommand) EXCLUSIVE_LOCK_FUNCTION(cs_vSend);
// TODO: Document the precondition of this function. Is cs_vSend locked?
void AbortMessage() UNLOCK_FUNCTION(cs_vSend);
// TODO: Document the precondition of this function. Is cs_vSend locked?
void EndMessage() UNLOCK_FUNCTION(cs_vSend);
void PushVersion();
void PushMessage(const char* pszCommand)
{
try {
BeginMessage(pszCommand);
EndMessage();
} catch (...) {
AbortMessage();
throw;
}
}
template <typename T1>
void PushMessage(const char* pszCommand, const T1& a1)
{
try {
BeginMessage(pszCommand);
ssSend << a1;
EndMessage();
} catch (...) {
AbortMessage();
throw;
}
}
template <typename T1, typename T2>
void PushMessage(const char* pszCommand, const T1& a1, const T2& a2)
{
try {
BeginMessage(pszCommand);
ssSend << a1 << a2;
EndMessage();
} catch (...) {
AbortMessage();
throw;
}
}
template <typename T1, typename T2, typename T3>
void PushMessage(const char* pszCommand, const T1& a1, const T2& a2, const T3& a3)
{
try {
BeginMessage(pszCommand);
ssSend << a1 << a2 << a3;
EndMessage();
} catch (...) {
AbortMessage();
throw;
}
}
template <typename T1, typename T2, typename T3, typename T4>
void PushMessage(const char* pszCommand, const T1& a1, const T2& a2, const T3& a3, const T4& a4)
{
try {
BeginMessage(pszCommand);
ssSend << a1 << a2 << a3 << a4;
EndMessage();
} catch (...) {
AbortMessage();
throw;
}
}
template <typename T1, typename T2, typename T3, typename T4, typename T5>
void PushMessage(const char* pszCommand, const T1& a1, const T2& a2, const T3& a3, const T4& a4, const T5& a5)
{
try {
BeginMessage(pszCommand);
ssSend << a1 << a2 << a3 << a4 << a5;
EndMessage();
} catch (...) {
AbortMessage();
throw;
}
}
template <typename T1, typename T2, typename T3, typename T4, typename T5, typename T6>
void PushMessage(const char* pszCommand, const T1& a1, const T2& a2, const T3& a3, const T4& a4, const T5& a5, const T6& a6)
{
try {
BeginMessage(pszCommand);
ssSend << a1 << a2 << a3 << a4 << a5 << a6;
EndMessage();
} catch (...) {
AbortMessage();
throw;
}
}
template <typename T1, typename T2, typename T3, typename T4, typename T5, typename T6, typename T7>
void PushMessage(const char* pszCommand, const T1& a1, const T2& a2, const T3& a3, const T4& a4, const T5& a5, const T6& a6, const T7& a7)
{
try {
BeginMessage(pszCommand);
ssSend << a1 << a2 << a3 << a4 << a5 << a6 << a7;
EndMessage();
} catch (...) {
AbortMessage();
throw;
}
}
template <typename T1, typename T2, typename T3, typename T4, typename T5, typename T6, typename T7, typename T8>
void PushMessage(const char* pszCommand, const T1& a1, const T2& a2, const T3& a3, const T4& a4, const T5& a5, const T6& a6, const T7& a7, const T8& a8)
{
try {
BeginMessage(pszCommand);
ssSend << a1 << a2 << a3 << a4 << a5 << a6 << a7 << a8;
EndMessage();
} catch (...) {
AbortMessage();
throw;
}
}
template <typename T1, typename T2, typename T3, typename T4, typename T5, typename T6, typename T7, typename T8, typename T9>
void PushMessage(const char* pszCommand, const T1& a1, const T2& a2, const T3& a3, const T4& a4, const T5& a5, const T6& a6, const T7& a7, const T8& a8, const T9& a9)
{
try {
BeginMessage(pszCommand);
ssSend << a1 << a2 << a3 << a4 << a5 << a6 << a7 << a8 << a9;
EndMessage();
} catch (...) {
AbortMessage();
throw;
}
}
template <typename T1, typename T2, typename T3, typename T4, typename T5, typename T6, typename T7, typename T8, typename T9, typename T10>
void PushMessage(const char* pszCommand, const T1& a1, const T2& a2, const T3& a3, const T4& a4, const T5& a5, const T6& a6, const T7& a7, const T8& a8, const T9& a9, const T10& a10)
{
try {
BeginMessage(pszCommand);
ssSend << a1 << a2 << a3 << a4 << a5 << a6 << a7 << a8 << a9 << a10;
EndMessage();
} catch (...) {
AbortMessage();
throw;
}
}
template <typename T1, typename T2, typename T3, typename T4, typename T5, typename T6, typename T7, typename T8, typename T9, typename T10, typename T11>
void PushMessage(const char* pszCommand, const T1& a1, const T2& a2, const T3& a3, const T4& a4, const T5& a5, const T6& a6, const T7& a7, const T8& a8, const T9& a9, const T10& a10, const T11& a11)
{
try {
BeginMessage(pszCommand);
ssSend << a1 << a2 << a3 << a4 << a5 << a6 << a7 << a8 << a9 << a10 << a11;
EndMessage();
} catch (...) {
AbortMessage();
throw;
}
}
template <typename T1, typename T2, typename T3, typename T4, typename T5, typename T6, typename T7, typename T8, typename T9, typename T10, typename T11, typename T12>
void PushMessage(const char* pszCommand, const T1& a1, const T2& a2, const T3& a3, const T4& a4, const T5& a5, const T6& a6, const T7& a7, const T8& a8, const T9& a9, const T10& a10, const T11& a11, const T12& a12)
{
try {
BeginMessage(pszCommand);
ssSend << a1 << a2 << a3 << a4 << a5 << a6 << a7 << a8 << a9 << a10 << a11 << a12;
EndMessage();
} catch (...) {
AbortMessage();
throw;
}
}
bool HasFulfilledRequest(std::string strRequest)
{
BOOST_FOREACH (std::string& type, vecRequestsFulfilled) {
if (type == strRequest) return true;
}
return false;
}
void ClearFulfilledRequest(std::string strRequest)
{
std::vector<std::string>::iterator it = vecRequestsFulfilled.begin();
while (it != vecRequestsFulfilled.end()) {
if ((*it) == strRequest) {
vecRequestsFulfilled.erase(it);
return;
}
++it;
}
}
void FulfilledRequest(std::string strRequest)
{
if (HasFulfilledRequest(strRequest)) return;
vecRequestsFulfilled.push_back(strRequest);
}
bool IsSubscribed(unsigned int nChannel);
void Subscribe(unsigned int nChannel, unsigned int nHops = 0);
void CancelSubscribe(unsigned int nChannel);
void CloseSocketDisconnect();
bool DisconnectOldProtocol(int nVersionRequired, std::string strLastCommand = "");
// Denial-of-service detection/prevention
// The idea is to detect peers that are behaving
// badly and disconnect/ban them, but do it in a
// one-coding-mistake-won't-shatter-the-entire-network
// way.
// IMPORTANT: There should be nothing I can give a
// node that it will forward on that will make that
// node's peers drop it. If there is, an attacker
// can isolate a node and/or try to split the network.
// Dropping a node for sending stuff that is invalid
// now but might be valid in a later version is also
// dangerous, because it can cause a network split
// between nodes running old code and nodes running
// new code.
static void ClearBanned(); // needed for unit testing
static bool IsBanned(CNetAddr ip);
static bool Ban(const CNetAddr& ip);
void copyStats(CNodeStats& stats);
static bool IsWhitelistedRange(const CNetAddr& ip);
static void AddWhitelistedRange(const CSubNet& subnet);
// Network stats
static void RecordBytesRecv(uint64_t bytes);
static void RecordBytesSent(uint64_t bytes);
static uint64_t GetTotalBytesRecv();
static uint64_t GetTotalBytesSent();
};
class CExplicitNetCleanup
{
public:
static void callCleanup();
};
class CTransaction;
void RelayTransaction(const CTransaction& tx);
void RelayTransaction(const CTransaction& tx, const CDataStream& ss);
void RelayTransactionLockReq(const CTransaction& tx, bool relayToAll = false);
void RelayInv(CInv& inv);
/** Access to the (IP) address database (peers.dat) */
class CAddrDB
{
private:
boost::filesystem::path pathAddr;
public:
CAddrDB();
bool Write(const CAddrMan& addr);
bool Read(CAddrMan& addr);
};
#endif // BITCOIN_NET_H
| [
"noreply@github.com"
] | noreply@github.com |
43ad02c9c8ab91bde33597ad93b9183948f612fb | 2bca0b5ff6dbc80dd86df5e2c5e96474e8f8d123 | /Engine/Sources/resources/cResources.h | efa92b08f91a77b3497cd6c143dd4167888d37a8 | [] | no_license | Draver93/dx9Project | 3ed7bb35b795a44acda95bfd56f3ba0a066ce4de | 838ba2b6b1173634c5cd21e91c6059ee150dba91 | refs/heads/master | 2021-01-01T19:43:53.354952 | 2017-12-02T08:58:42 | 2017-12-02T08:58:42 | 98,660,686 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,124 | h | #ifndef C_RESOURCES_H
#define C_RESOURCES_H
#include <string>
#include <vector>
#include "../headers/directx.h"
//Обьект данного класса хранит все ресурсы связанные с указанным графическим окном
enum ResMemory { RT_DINAMIC, RT_STATIC };
class cVirtualResource
{
public:
virtual HRESULT release() = 0;
virtual HRESULT recreate() = 0;
virtual ResMemory getMemoryType() = 0;
};
class cVirtualInterface
{
public:
virtual HRESULT onLostDevice() = 0;
virtual HRESULT onResetDevice() = 0;
};
class cResources
{
private:
//Буфферы и ресурсы девайса
LPDIRECT3DDEVICE9 pResDevice;
std::vector<cVirtualInterface*> pInterfaces;
std::vector<cVirtualResource*> pResources;
public:
cResources(LPDIRECT3DDEVICE9 pDevice);
~cResources();
HRESULT addResource(cVirtualResource* pRes);
HRESULT removeResource(cVirtualResource* pRes);
HRESULT addInterface(cVirtualInterface* pInterface);
HRESULT removeInterface(cVirtualInterface* pInterface);
LPDIRECT3DDEVICE9 getDevice() { return pResDevice; }
};
#endif // !C_RESOURCES_H
| [
"draver39@gmail.com"
] | draver39@gmail.com |
213663ea98cebc21650bc842693d6b6f479cbc81 | e6559df51c2a14256962c3757073a491ea66de7c | /URI/1851 - Como Treinar Seu Dragão.cpp | 209fa2f7afe6e1dd10644a81a834bdfa1ba1d45a | [] | no_license | Maycon708/Maratona | c30eaedc3ee39d69582b0ed1a60f31ad8d666d43 | b6d07582544c230e67c23a20e1a1be99d4b47576 | refs/heads/master | 2020-04-25T23:37:53.992330 | 2019-02-28T17:10:25 | 2019-02-28T17:10:25 | 143,191,679 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,825 | cpp | #include <bits/stdc++.h>
#define INF 0x3F3F3F3F
#define rep(i, a, b) for ( i = int(a); i < int(b); i++)
#define pb push_back
#define pi 3.1415926535897932384626433832795028841971
#define debug(x) cout << #x << " = " << x << endl;
#define debug2(x,y) cout << #x << " = " << x << " --- " << #y << " " << y << "\n";
#define debugM( x, l, c ) { rep( i, 0, l ){ rep( j, 0, c ) printf("%d ", x[i][j]); printf("\n");}}
#define all(S) (S).begin(), (S).end()
#define MAXV 1010000
#define MAXN 110
#define F first
#define S second
#define EPS 1e-9
#define mk make_pair
using namespace std;
typedef unsigned long long int ll;
typedef pair <ll, ll> ii;
ll readInt();
struct D{
ll a, b, c;
D( ll a = 0, ll b = 0, ll c = 0 ) : a(a), b(b), c(c) {}
bool operator < ( D s ) const { if( a * s.b == b * s.a ) return c < s.c; else return a*s.b > b * s.a; };
};
int main(){
ll t, f;
vector < ii > v;
while( cin >> t >> f ){
if( !t && !f ) break;
v.pb( ii( t, f ) );
}
priority_queue < D > pq;
pq.push( D( v[0].F, v[0].S, 0 ) );
ll i = 0, total = 0, dia = 0, k = v.size();
while( !pq.empty() ){
ll d = pq.top().c;
f = pq.top().b;
t = pq.top().a;
total += (( dia - d ) * f );
dia += t;
pq.pop();
if( i < v.size() ){
for( ; i < min( k, dia+1 ); i++ ){
if( i ) pq.push( D( v[i].F, v[i].S, i ) );
}
}
}
cout << total << "\n";
}
ll readInt () {
bool minus = false;
ll result = 0; char ch;
ch = getchar();
while (true) {
if (ch == '-')
break;
if (ch >= '0' && ch <= '9') break;
ch = getchar();
}
if (ch == '-') minus = true;
else result = ch-'0';
while (true) {
ch = getchar();
if (ch < '0' || ch > '9') break;
result = result*10 + (ch-'0');
}
if (minus) return -result;
else return result;
}
| [
"mayconalves@gea.inatel.br"
] | mayconalves@gea.inatel.br |
47a6b6e99c5830a5d9e0c454ad500cec30eee78a | 04b1803adb6653ecb7cb827c4f4aa616afacf629 | /ui/accelerated_widget_mac/accelerated_widget_mac.h | 44b1dfc6c720c254b267d4fe25a5015afbeefd08 | [
"BSD-3-Clause"
] | permissive | Samsung/Castanets | 240d9338e097b75b3f669604315b06f7cf129d64 | 4896f732fc747dfdcfcbac3d442f2d2d42df264a | refs/heads/castanets_76_dev | 2023-08-31T09:01:04.744346 | 2021-07-30T04:56:25 | 2021-08-11T05:45:21 | 125,484,161 | 58 | 49 | BSD-3-Clause | 2022-10-16T19:31:26 | 2018-03-16T08:07:37 | null | UTF-8 | C++ | false | false | 3,287 | h | // Copyright 2014 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef UI_ACCELERATED_WIDGET_MAC_ACCELERATED_WIDGET_MAC_H_
#define UI_ACCELERATED_WIDGET_MAC_ACCELERATED_WIDGET_MAC_H_
#include <vector>
#include "ui/accelerated_widget_mac/accelerated_widget_mac_export.h"
#include "ui/accelerated_widget_mac/ca_layer_frame_sink.h"
#include "ui/gfx/geometry/size.h"
#include "ui/gfx/native_widget_types.h"
namespace ui {
// A class through which an AcceleratedWidget may be bound to draw the contents
// of an NSView. An AcceleratedWidget may be bound to multiple different views
// throughout its lifetime (one at a time, though).
class AcceleratedWidgetMacNSView {
public:
// Called when the AcceleratedWidgetMac's CALayerFrameSink interface's
// UpdateCALayerTree method is called. This is used to update background
// colors and to suppressing drawing of blank windows until content is
// available.
virtual void AcceleratedWidgetCALayerParamsUpdated() = 0;
};
// AcceleratedWidgetMac owns a tree of CALayers. The widget may be passed
// to a ui::Compositor, which will, through its output surface, call the
// CALayerFrameSink interface. The CALayers may be installed in an NSView
// by setting the AcceleratedWidgetMacNSView for the helper.
class ACCELERATED_WIDGET_MAC_EXPORT AcceleratedWidgetMac
: public CALayerFrameSink {
public:
AcceleratedWidgetMac();
~AcceleratedWidgetMac() override;
gfx::AcceleratedWidget accelerated_widget() { return native_widget_; }
void SetNSView(AcceleratedWidgetMacNSView* view);
void ResetNSView();
// Returns the CALayer parameters most recently sent to the CALayerFrameSink
// interface, or nullptr if none are available.
const gfx::CALayerParams* GetCALayerParams() const;
// Return true if the last frame swapped has a size in DIP of |dip_size|.
bool HasFrameOfSize(const gfx::Size& dip_size) const;
// If |suspended| is true, then ignore all new frames that come in until
// a call is made with |suspended| as false.
void SetSuspended(bool suspended);
private:
// For CALayerFrameSink::FromAcceleratedWidget to access Get.
friend class CALayerFrameSink;
// Translate from a gfx::AcceleratedWidget handle to the underlying
// AcceleratedWidgetMac (used by other gfx::AcceleratedWidget translation
// functions).
static AcceleratedWidgetMac* Get(gfx::AcceleratedWidget widget);
// gfx::CALayerFrameSink implementation:
void UpdateCALayerTree(const gfx::CALayerParams& ca_layer_params) override;
// The AcceleratedWidgetMacNSView that is using this as its internals.
AcceleratedWidgetMacNSView* view_ = nullptr;
// A phony NSView handle used to identify this.
gfx::AcceleratedWidget native_widget_ = gfx::kNullAcceleratedWidget;
// If the output surface is suspended, then updates to the layer parameters
// will be ignored.
bool is_suspended_ = false;
// The last CALayer parameter update from the CALayerFrameSink interface.
bool last_ca_layer_params_valid_ = false;
gfx::CALayerParams last_ca_layer_params_;
DISALLOW_COPY_AND_ASSIGN(AcceleratedWidgetMac);
};
} // namespace ui
#endif // UI_ACCELERATED_WIDGET_MAC_ACCELERATED_WIDGET_MAC_H_
| [
"sunny.nam@samsung.com"
] | sunny.nam@samsung.com |
200323dc0daf7949deb965f32cf027f90467ca52 | 38c10c01007624cd2056884f25e0d6ab85442194 | /chrome/browser/ui/webui/chromeos/imageburner/imageburner_ui.cc | 5340f4c5b98a9a3a1a9eef09cf4ac91765131de6 | [
"BSD-3-Clause"
] | permissive | zenoalbisser/chromium | 6ecf37b6c030c84f1b26282bc4ef95769c62a9b2 | e71f21b9b4b9b839f5093301974a45545dad2691 | refs/heads/master | 2022-12-25T14:23:18.568575 | 2016-07-14T21:49:52 | 2016-07-23T08:02:51 | 63,980,627 | 0 | 2 | BSD-3-Clause | 2022-12-12T12:43:41 | 2016-07-22T20:14:04 | null | UTF-8 | C++ | false | false | 909 | cc | // Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
//
// TODO(crbug.com/427785): Remove this file, and related strings and
// constants after 2015-10-31.
#include "chrome/browser/ui/webui/chromeos/imageburner/imageburner_ui.h"
#include "chrome/browser/profiles/profile.h"
#include "chrome/common/url_constants.h"
#include "content/public/browser/web_ui.h"
#include "content/public/browser/web_ui_data_source.h"
#include "grit/browser_resources.h"
ImageBurnUI::ImageBurnUI(content::WebUI* web_ui) : WebUIController(web_ui) {
Profile* profile = Profile::FromWebUI(web_ui);
content::WebUIDataSource* source =
content::WebUIDataSource::Create(chrome::kChromeUIImageBurnerHost);
source->SetDefaultResource(IDR_IMAGEBURNER_HTML);
content::WebUIDataSource::Add(profile, source);
}
| [
"zeno.albisser@hemispherian.com"
] | zeno.albisser@hemispherian.com |
cc9b58a3e490f0ee2e46c134b206ef7dc3ff388d | b6a501107657652e0f297f7c02b9e862f3ad2e1b | /Test/Expect/test077.h | 1fa01aa545580496126d02b714926337b7e74c41 | [
"SunPro",
"BSD-3-Clause",
"LicenseRef-scancode-fatfs",
"MIT",
"LicenseRef-scancode-public-domain"
] | permissive | totalspectrum/spin2cpp | 73a85b982c2c7296ad68a2b7b896c3577c8dd68e | 32944f77a140b01ac4444cf390debd44ad3a5f2c | refs/heads/master | 2023-09-01T02:19:09.982232 | 2023-08-31T00:56:02 | 2023-08-31T00:56:02 | 22,721,276 | 41 | 23 | NOASSERTION | 2023-09-12T18:38:31 | 2014-08-07T12:56:19 | C | UTF-8 | C++ | false | false | 338 | h | #ifndef test077_Class_Defined__
#define test077_Class_Defined__
#include <stdint.h>
class test077 {
public:
static const int Twof = 0x40000000;
static const int Onef = 0x3f800000;
static const int Threef = 0x40400000;
static const int Rootf = 0x3fb504f3;
static char dat[];
static int32_t * Dummy(void);
private:
};
#endif
| [
"ersmith@totalspectrum.ca"
] | ersmith@totalspectrum.ca |
842ee10a2cacaee5480c26118d345306444608f1 | 5456502f97627278cbd6e16d002d50f1de3da7bb | /headless/lib/headless_devtools_client_browsertest.cc | 984fd3524772c48439db44ab7ecc085377f0e238 | [
"BSD-3-Clause"
] | permissive | TrellixVulnTeam/Chromium_7C66 | 72d108a413909eb3bd36c73a6c2f98de1573b6e5 | c8649ab2a0f5a747369ed50351209a42f59672ee | refs/heads/master | 2023-03-16T12:51:40.231959 | 2017-12-20T10:38:26 | 2017-12-20T10:38:26 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 25,332 | cc | // Copyright 2016 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include <memory>
#include "base/json/json_reader.h"
#include "content/public/browser/render_widget_host_view.h"
#include "content/public/browser/web_contents.h"
#include "content/public/test/browser_test.h"
#include "headless/lib/browser/headless_web_contents_impl.h"
#include "headless/public/devtools/domains/emulation.h"
#include "headless/public/devtools/domains/network.h"
#include "headless/public/devtools/domains/page.h"
#include "headless/public/devtools/domains/runtime.h"
#include "headless/public/devtools/domains/target.h"
#include "headless/public/headless_browser.h"
#include "headless/public/headless_devtools_client.h"
#include "headless/public/headless_devtools_target.h"
#include "headless/test/headless_browser_test.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "url/gurl.h"
#define EXPECT_SIZE_EQ(expected, actual) \
do { \
EXPECT_EQ((expected).width(), (actual).width()); \
EXPECT_EQ((expected).height(), (actual).height()); \
} while (false)
namespace headless {
namespace {
std::vector<HeadlessWebContents*> GetAllWebContents(HeadlessBrowser* browser) {
std::vector<HeadlessWebContents*> result;
for (HeadlessBrowserContext* browser_context :
browser->GetAllBrowserContexts()) {
std::vector<HeadlessWebContents*> web_contents =
browser_context->GetAllWebContents();
result.insert(result.end(), web_contents.begin(), web_contents.end());
}
return result;
}
} // namespace
class HeadlessDevToolsClientNavigationTest
: public HeadlessAsyncDevTooledBrowserTest,
page::ExperimentalObserver {
public:
void RunDevTooledTest() override {
EXPECT_TRUE(embedded_test_server()->Start());
std::unique_ptr<page::NavigateParams> params =
page::NavigateParams::Builder()
.SetUrl(embedded_test_server()->GetURL("/hello.html").spec())
.Build();
devtools_client_->GetPage()->GetExperimental()->AddObserver(this);
devtools_client_->GetPage()->Enable();
devtools_client_->GetPage()->Navigate(std::move(params));
}
void OnLoadEventFired(const page::LoadEventFiredParams& params) override {
devtools_client_->GetPage()->GetExperimental()->RemoveObserver(this);
FinishAsynchronousTest();
}
// Check that events with no parameters still get a parameters object.
void OnFrameResized(const page::FrameResizedParams& params) override {}
};
HEADLESS_ASYNC_DEVTOOLED_TEST_F(HeadlessDevToolsClientNavigationTest);
class HeadlessDevToolsClientEvalTest
: public HeadlessAsyncDevTooledBrowserTest {
public:
void RunDevTooledTest() override {
std::unique_ptr<runtime::EvaluateParams> params =
runtime::EvaluateParams::Builder().SetExpression("1 + 2").Build();
devtools_client_->GetRuntime()->Evaluate(
std::move(params),
base::Bind(&HeadlessDevToolsClientEvalTest::OnFirstResult,
base::Unretained(this)));
// Test the convenience overload which only takes the required command
// parameters.
devtools_client_->GetRuntime()->Evaluate(
"24 * 7", base::Bind(&HeadlessDevToolsClientEvalTest::OnSecondResult,
base::Unretained(this)));
}
void OnFirstResult(std::unique_ptr<runtime::EvaluateResult> result) {
int value;
EXPECT_TRUE(result->GetResult()->HasValue());
EXPECT_TRUE(result->GetResult()->GetValue()->GetAsInteger(&value));
EXPECT_EQ(3, value);
}
void OnSecondResult(std::unique_ptr<runtime::EvaluateResult> result) {
int value;
EXPECT_TRUE(result->GetResult()->HasValue());
EXPECT_TRUE(result->GetResult()->GetValue()->GetAsInteger(&value));
EXPECT_EQ(168, value);
FinishAsynchronousTest();
}
};
HEADLESS_ASYNC_DEVTOOLED_TEST_F(HeadlessDevToolsClientEvalTest);
class HeadlessDevToolsClientCallbackTest
: public HeadlessAsyncDevTooledBrowserTest {
public:
HeadlessDevToolsClientCallbackTest() : first_result_received_(false) {}
void RunDevTooledTest() override {
// Null callback without parameters.
devtools_client_->GetPage()->Enable();
// Null callback with parameters.
devtools_client_->GetRuntime()->Evaluate("true");
// Non-null callback without parameters.
devtools_client_->GetPage()->Disable(
base::Bind(&HeadlessDevToolsClientCallbackTest::OnFirstResult,
base::Unretained(this)));
// Non-null callback with parameters.
devtools_client_->GetRuntime()->Evaluate(
"true", base::Bind(&HeadlessDevToolsClientCallbackTest::OnSecondResult,
base::Unretained(this)));
}
void OnFirstResult() {
EXPECT_FALSE(first_result_received_);
first_result_received_ = true;
}
void OnSecondResult(std::unique_ptr<runtime::EvaluateResult> result) {
EXPECT_TRUE(first_result_received_);
FinishAsynchronousTest();
}
private:
bool first_result_received_;
};
HEADLESS_ASYNC_DEVTOOLED_TEST_F(HeadlessDevToolsClientCallbackTest);
class HeadlessDevToolsClientObserverTest
: public HeadlessAsyncDevTooledBrowserTest,
network::Observer {
public:
void RunDevTooledTest() override {
EXPECT_TRUE(embedded_test_server()->Start());
devtools_client_->GetNetwork()->AddObserver(this);
devtools_client_->GetNetwork()->Enable();
devtools_client_->GetPage()->Navigate(
embedded_test_server()->GetURL("/hello.html").spec());
}
void OnRequestWillBeSent(
const network::RequestWillBeSentParams& params) override {
EXPECT_EQ("GET", params.GetRequest()->GetMethod());
EXPECT_EQ(embedded_test_server()->GetURL("/hello.html").spec(),
params.GetRequest()->GetUrl());
}
void OnResponseReceived(
const network::ResponseReceivedParams& params) override {
EXPECT_EQ(200, params.GetResponse()->GetStatus());
EXPECT_EQ("OK", params.GetResponse()->GetStatusText());
std::string content_type;
EXPECT_TRUE(params.GetResponse()->GetHeaders()->GetString("Content-Type",
&content_type));
EXPECT_EQ("text/html", content_type);
devtools_client_->GetNetwork()->RemoveObserver(this);
FinishAsynchronousTest();
}
};
HEADLESS_ASYNC_DEVTOOLED_TEST_F(HeadlessDevToolsClientObserverTest);
class HeadlessDevToolsClientExperimentalTest
: public HeadlessAsyncDevTooledBrowserTest,
page::ExperimentalObserver {
public:
void RunDevTooledTest() override {
EXPECT_TRUE(embedded_test_server()->Start());
// Check that experimental commands require parameter objects.
devtools_client_->GetRuntime()
->GetExperimental()
->SetCustomObjectFormatterEnabled(
runtime::SetCustomObjectFormatterEnabledParams::Builder()
.SetEnabled(false)
.Build());
// Check that a previously experimental command which takes no parameters
// still works by giving it a parameter object.
devtools_client_->GetRuntime()->GetExperimental()->RunIfWaitingForDebugger(
runtime::RunIfWaitingForDebuggerParams::Builder().Build());
devtools_client_->GetPage()->GetExperimental()->AddObserver(this);
devtools_client_->GetPage()->Enable();
devtools_client_->GetPage()->Navigate(
embedded_test_server()->GetURL("/hello.html").spec());
}
void OnFrameStoppedLoading(
const page::FrameStoppedLoadingParams& params) override {
// Check that a non-experimental command which has no return value can be
// called with a void() callback.
devtools_client_->GetPage()->Reload(
page::ReloadParams::Builder().Build(),
base::Bind(&HeadlessDevToolsClientExperimentalTest::OnReloadStarted,
base::Unretained(this)));
}
void OnReloadStarted() { FinishAsynchronousTest(); }
};
HEADLESS_ASYNC_DEVTOOLED_TEST_F(HeadlessDevToolsClientExperimentalTest);
class TargetDomainCreateAndDeletePageTest
: public HeadlessAsyncDevTooledBrowserTest {
void RunDevTooledTest() override {
EXPECT_TRUE(embedded_test_server()->Start());
EXPECT_EQ(1u, GetAllWebContents(browser()).size());
devtools_client_->GetTarget()->GetExperimental()->CreateTarget(
target::CreateTargetParams::Builder()
.SetUrl(embedded_test_server()->GetURL("/hello.html").spec())
.SetWidth(1)
.SetHeight(1)
.Build(),
base::Bind(&TargetDomainCreateAndDeletePageTest::OnCreateTargetResult,
base::Unretained(this)));
}
void OnCreateTargetResult(
std::unique_ptr<target::CreateTargetResult> result) {
EXPECT_EQ(2u, GetAllWebContents(browser()).size());
HeadlessWebContentsImpl* contents = HeadlessWebContentsImpl::From(
browser()->GetWebContentsForDevToolsAgentHostId(result->GetTargetId()));
EXPECT_SIZE_EQ(gfx::Size(1, 1), contents->web_contents()
->GetRenderWidgetHostView()
->GetViewBounds()
.size());
devtools_client_->GetTarget()->GetExperimental()->CloseTarget(
target::CloseTargetParams::Builder()
.SetTargetId(result->GetTargetId())
.Build(),
base::Bind(&TargetDomainCreateAndDeletePageTest::OnCloseTargetResult,
base::Unretained(this)));
}
void OnCloseTargetResult(std::unique_ptr<target::CloseTargetResult> result) {
EXPECT_TRUE(result->GetSuccess());
EXPECT_EQ(1u, GetAllWebContents(browser()).size());
FinishAsynchronousTest();
}
};
HEADLESS_ASYNC_DEVTOOLED_TEST_F(TargetDomainCreateAndDeletePageTest);
class TargetDomainCreateAndDeleteBrowserContextTest
: public HeadlessAsyncDevTooledBrowserTest {
void RunDevTooledTest() override {
EXPECT_TRUE(embedded_test_server()->Start());
EXPECT_EQ(1u, GetAllWebContents(browser()).size());
devtools_client_->GetTarget()->GetExperimental()->CreateBrowserContext(
target::CreateBrowserContextParams::Builder().Build(),
base::Bind(&TargetDomainCreateAndDeleteBrowserContextTest::
OnCreateContextResult,
base::Unretained(this)));
}
void OnCreateContextResult(
std::unique_ptr<target::CreateBrowserContextResult> result) {
browser_context_id_ = result->GetBrowserContextId();
devtools_client_->GetTarget()->GetExperimental()->CreateTarget(
target::CreateTargetParams::Builder()
.SetUrl(embedded_test_server()->GetURL("/hello.html").spec())
.SetBrowserContextId(result->GetBrowserContextId())
.SetWidth(1)
.SetHeight(1)
.Build(),
base::Bind(&TargetDomainCreateAndDeleteBrowserContextTest::
OnCreateTargetResult,
base::Unretained(this)));
}
void OnCreateTargetResult(
std::unique_ptr<target::CreateTargetResult> result) {
EXPECT_EQ(2u, GetAllWebContents(browser()).size());
devtools_client_->GetTarget()->GetExperimental()->CloseTarget(
target::CloseTargetParams::Builder()
.SetTargetId(result->GetTargetId())
.Build(),
base::Bind(&TargetDomainCreateAndDeleteBrowserContextTest::
OnCloseTargetResult,
base::Unretained(this)));
}
void OnCloseTargetResult(std::unique_ptr<target::CloseTargetResult> result) {
EXPECT_EQ(1u, GetAllWebContents(browser()).size());
EXPECT_TRUE(result->GetSuccess());
devtools_client_->GetTarget()->GetExperimental()->DisposeBrowserContext(
target::DisposeBrowserContextParams::Builder()
.SetBrowserContextId(browser_context_id_)
.Build(),
base::Bind(&TargetDomainCreateAndDeleteBrowserContextTest::
OnDisposeBrowserContextResult,
base::Unretained(this)));
}
void OnDisposeBrowserContextResult(
std::unique_ptr<target::DisposeBrowserContextResult> result) {
EXPECT_TRUE(result->GetSuccess());
FinishAsynchronousTest();
}
private:
std::string browser_context_id_;
};
HEADLESS_ASYNC_DEVTOOLED_TEST_F(TargetDomainCreateAndDeleteBrowserContextTest);
class TargetDomainDisposeContextFailsIfInUse
: public HeadlessAsyncDevTooledBrowserTest {
void RunDevTooledTest() override {
EXPECT_TRUE(embedded_test_server()->Start());
EXPECT_EQ(1u, GetAllWebContents(browser()).size());
devtools_client_->GetTarget()->GetExperimental()->CreateBrowserContext(
target::CreateBrowserContextParams::Builder().Build(),
base::Bind(&TargetDomainDisposeContextFailsIfInUse::OnContextCreated,
base::Unretained(this)));
}
void OnContextCreated(
std::unique_ptr<target::CreateBrowserContextResult> result) {
context_id_ = result->GetBrowserContextId();
devtools_client_->GetTarget()->GetExperimental()->CreateTarget(
target::CreateTargetParams::Builder()
.SetUrl(embedded_test_server()->GetURL("/hello.html").spec())
.SetBrowserContextId(context_id_)
.Build(),
base::Bind(
&TargetDomainDisposeContextFailsIfInUse::OnCreateTargetResult,
base::Unretained(this)));
}
void OnCreateTargetResult(
std::unique_ptr<target::CreateTargetResult> result) {
page_id_ = result->GetTargetId();
devtools_client_->GetTarget()->GetExperimental()->DisposeBrowserContext(
target::DisposeBrowserContextParams::Builder()
.SetBrowserContextId(context_id_)
.Build(),
base::Bind(&TargetDomainDisposeContextFailsIfInUse::
OnDisposeBrowserContextResult,
base::Unretained(this)));
}
void OnDisposeBrowserContextResult(
std::unique_ptr<target::DisposeBrowserContextResult> result) {
EXPECT_FALSE(result->GetSuccess());
// Close the page and try again.
devtools_client_->GetTarget()->GetExperimental()->CloseTarget(
target::CloseTargetParams::Builder().SetTargetId(page_id_).Build(),
base::Bind(
&TargetDomainDisposeContextFailsIfInUse::OnCloseTargetResult,
base::Unretained(this)));
}
void OnCloseTargetResult(std::unique_ptr<target::CloseTargetResult> result) {
EXPECT_TRUE(result->GetSuccess());
devtools_client_->GetTarget()->GetExperimental()->DisposeBrowserContext(
target::DisposeBrowserContextParams::Builder()
.SetBrowserContextId(context_id_)
.Build(),
base::Bind(&TargetDomainDisposeContextFailsIfInUse::
OnDisposeBrowserContextResult2,
base::Unretained(this)));
}
void OnDisposeBrowserContextResult2(
std::unique_ptr<target::DisposeBrowserContextResult> result) {
EXPECT_TRUE(result->GetSuccess());
FinishAsynchronousTest();
}
private:
std::string context_id_;
std::string page_id_;
};
HEADLESS_ASYNC_DEVTOOLED_TEST_F(TargetDomainDisposeContextFailsIfInUse);
class TargetDomainCreateTwoContexts : public HeadlessAsyncDevTooledBrowserTest,
public target::ExperimentalObserver {
public:
void RunDevTooledTest() override {
EXPECT_TRUE(embedded_test_server()->Start());
devtools_client_->GetTarget()->GetExperimental()->AddObserver(this);
devtools_client_->GetTarget()->GetExperimental()->CreateBrowserContext(
target::CreateBrowserContextParams::Builder().Build(),
base::Bind(&TargetDomainCreateTwoContexts::OnContextOneCreated,
base::Unretained(this)));
devtools_client_->GetTarget()->GetExperimental()->CreateBrowserContext(
target::CreateBrowserContextParams::Builder().Build(),
base::Bind(&TargetDomainCreateTwoContexts::OnContextTwoCreated,
base::Unretained(this)));
}
void OnContextOneCreated(
std::unique_ptr<target::CreateBrowserContextResult> result) {
context_id_one_ = result->GetBrowserContextId();
MaybeCreatePages();
}
void OnContextTwoCreated(
std::unique_ptr<target::CreateBrowserContextResult> result) {
context_id_two_ = result->GetBrowserContextId();
MaybeCreatePages();
}
void MaybeCreatePages() {
if (context_id_one_.empty() || context_id_two_.empty())
return;
devtools_client_->GetTarget()->GetExperimental()->CreateTarget(
target::CreateTargetParams::Builder()
.SetUrl(embedded_test_server()->GetURL("/hello.html").spec())
.SetBrowserContextId(context_id_one_)
.Build(),
base::Bind(&TargetDomainCreateTwoContexts::OnCreateTargetOneResult,
base::Unretained(this)));
devtools_client_->GetTarget()->GetExperimental()->CreateTarget(
target::CreateTargetParams::Builder()
.SetUrl(embedded_test_server()->GetURL("/hello.html").spec())
.SetBrowserContextId(context_id_two_)
.Build(),
base::Bind(&TargetDomainCreateTwoContexts::OnCreateTargetTwoResult,
base::Unretained(this)));
}
void OnCreateTargetOneResult(
std::unique_ptr<target::CreateTargetResult> result) {
page_id_one_ = result->GetTargetId();
MaybeTestIsolation();
}
void OnCreateTargetTwoResult(
std::unique_ptr<target::CreateTargetResult> result) {
page_id_two_ = result->GetTargetId();
MaybeTestIsolation();
}
void MaybeTestIsolation() {
if (page_id_one_.empty() || page_id_two_.empty())
return;
devtools_client_->GetTarget()->GetExperimental()->AttachToTarget(
target::AttachToTargetParams::Builder()
.SetTargetId(page_id_one_)
.Build(),
base::Bind(&TargetDomainCreateTwoContexts::OnAttachedToTargetOne,
base::Unretained(this)));
devtools_client_->GetTarget()->GetExperimental()->AttachToTarget(
target::AttachToTargetParams::Builder()
.SetTargetId(page_id_two_)
.Build(),
base::Bind(&TargetDomainCreateTwoContexts::OnAttachedToTargetTwo,
base::Unretained(this)));
}
void OnAttachedToTargetOne(
std::unique_ptr<target::AttachToTargetResult> result) {
devtools_client_->GetTarget()->GetExperimental()->SendMessageToTarget(
target::SendMessageToTargetParams::Builder()
.SetTargetId(page_id_one_)
.SetMessage("{\"id\":101, \"method\": \"Page.enable\"}")
.Build());
}
void OnAttachedToTargetTwo(
std::unique_ptr<target::AttachToTargetResult> result) {
devtools_client_->GetTarget()->GetExperimental()->SendMessageToTarget(
target::SendMessageToTargetParams::Builder()
.SetTargetId(page_id_two_)
.SetMessage("{\"id\":102, \"method\": \"Page.enable\"}")
.Build());
}
void MaybeSetCookieOnPageOne() {
if (!page_one_loaded_ || !page_two_loaded_)
return;
devtools_client_->GetTarget()->GetExperimental()->SendMessageToTarget(
target::SendMessageToTargetParams::Builder()
.SetTargetId(page_id_one_)
.SetMessage("{\"id\":201, \"method\": \"Runtime.evaluate\", "
"\"params\": {\"expression\": "
"\"document.cookie = 'foo=bar';\"}}")
.Build());
}
void OnReceivedMessageFromTarget(
const target::ReceivedMessageFromTargetParams& params) override {
std::unique_ptr<base::Value> message =
base::JSONReader::Read(params.GetMessage(), base::JSON_PARSE_RFC);
const base::DictionaryValue* message_dict;
if (!message || !message->GetAsDictionary(&message_dict)) {
return;
}
std::string method;
if (message_dict->GetString("method", &method) &&
method == "Page.loadEventFired") {
if (params.GetTargetId() == page_id_one_) {
page_one_loaded_ = true;
} else if (params.GetTargetId() == page_id_two_) {
page_two_loaded_ = true;
}
MaybeSetCookieOnPageOne();
return;
}
const base::DictionaryValue* result_dict;
if (message_dict->GetDictionary("result", &result_dict)) {
// There's a nested result. We want the inner one.
if (!result_dict->GetDictionary("result", &result_dict))
return;
std::string value;
if (params.GetTargetId() == page_id_one_) {
// TODO(alexclarke): Make some better bindings
// for Target.SendMessageToTarget.
devtools_client_->GetTarget()->GetExperimental()->SendMessageToTarget(
target::SendMessageToTargetParams::Builder()
.SetTargetId(page_id_two_)
.SetMessage("{\"id\":202, \"method\": \"Runtime.evaluate\", "
"\"params\": {\"expression\": "
"\"document.cookie;\"}}")
.Build());
} else if (params.GetTargetId() == page_id_two_ &&
result_dict->GetString("value", &value)) {
EXPECT_EQ("", value) << "Page 2 should not share cookies from page one";
devtools_client_->GetTarget()->GetExperimental()->CloseTarget(
target::CloseTargetParams::Builder()
.SetTargetId(page_id_one_)
.Build(),
base::Bind(&TargetDomainCreateTwoContexts::OnCloseTarget,
base::Unretained(this)));
devtools_client_->GetTarget()->GetExperimental()->CloseTarget(
target::CloseTargetParams::Builder()
.SetTargetId(page_id_two_)
.Build(),
base::Bind(&TargetDomainCreateTwoContexts::OnCloseTarget,
base::Unretained(this)));
devtools_client_->GetTarget()->GetExperimental()->RemoveObserver(this);
}
}
}
void OnCloseTarget(std::unique_ptr<target::CloseTargetResult> result) {
page_close_count_++;
if (page_close_count_ < 2)
return;
devtools_client_->GetTarget()->GetExperimental()->DisposeBrowserContext(
target::DisposeBrowserContextParams::Builder()
.SetBrowserContextId(context_id_one_)
.Build(),
base::Bind(&TargetDomainCreateTwoContexts::OnCloseContext,
base::Unretained(this)));
devtools_client_->GetTarget()->GetExperimental()->DisposeBrowserContext(
target::DisposeBrowserContextParams::Builder()
.SetBrowserContextId(context_id_two_)
.Build(),
base::Bind(&TargetDomainCreateTwoContexts::OnCloseContext,
base::Unretained(this)));
}
void OnCloseContext(
std::unique_ptr<target::DisposeBrowserContextResult> result) {
EXPECT_TRUE(result->GetSuccess());
if (++context_closed_count_ < 2)
return;
FinishAsynchronousTest();
}
private:
std::string context_id_one_;
std::string context_id_two_;
std::string page_id_one_;
std::string page_id_two_;
bool page_one_loaded_ = false;
bool page_two_loaded_ = false;
int page_close_count_ = 0;
int context_closed_count_ = 0;
};
HEADLESS_ASYNC_DEVTOOLED_TEST_F(TargetDomainCreateTwoContexts);
class HeadlessDevToolsNavigationControlTest
: public HeadlessAsyncDevTooledBrowserTest,
page::ExperimentalObserver {
public:
void RunDevTooledTest() override {
EXPECT_TRUE(embedded_test_server()->Start());
devtools_client_->GetPage()->GetExperimental()->AddObserver(this);
devtools_client_->GetPage()->Enable();
devtools_client_->GetPage()->GetExperimental()->SetControlNavigations(
headless::page::SetControlNavigationsParams::Builder()
.SetEnabled(true)
.Build());
devtools_client_->GetPage()->Navigate(
embedded_test_server()->GetURL("/hello.html").spec());
}
void OnNavigationRequested(
const headless::page::NavigationRequestedParams& params) override {
navigation_requested_ = true;
// Allow the navigation to proceed.
devtools_client_->GetPage()->GetExperimental()->ProcessNavigation(
headless::page::ProcessNavigationParams::Builder()
.SetNavigationId(params.GetNavigationId())
.SetResponse(headless::page::NavigationResponse::PROCEED)
.Build());
}
void OnFrameStoppedLoading(
const page::FrameStoppedLoadingParams& params) override {
EXPECT_TRUE(navigation_requested_);
FinishAsynchronousTest();
}
private:
bool navigation_requested_ = false;
};
HEADLESS_ASYNC_DEVTOOLED_TEST_F(HeadlessDevToolsNavigationControlTest);
} // namespace headless
| [
"lixiaodonglove7@aliyun.com"
] | lixiaodonglove7@aliyun.com |
14af5537a6a4d4bfda51162cf117a4ebac4b690f | 291401bb1fa7f07e906f5d3551585101afbd848a | /Parser_if.h | e46dba44e1783f22026e4797ada3f9586ade5707 | [] | no_license | ljmotta/2019_2022_GenESyS | 65c1dad3ab077bcfa1f4f2ac92203362cf4b5841 | 2d3331ec1998c9ac0cd88b2a826472fcff48e795 | refs/heads/master | 2023-04-12T14:41:39.638474 | 2021-04-24T12:34:32 | 2021-04-24T12:34:32 | 350,146,492 | 1 | 0 | null | 2021-04-09T17:39:11 | 2021-03-21T23:28:32 | C++ | UTF-8 | C++ | false | false | 848 | h | /*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
/*
* File: Parser_if.h
* Author: rafael.luiz.cancian
*
* Created on 23 de Agosto de 2018, 15:57
*/
#ifndef PARSER_IF_H
#define PARSER_IF_H
#include <string>
#include "Sampler_if.h"
class Parser_if {
public:
virtual double parse(const std::string expression) = 0; // may throw exception
virtual double parse(const std::string expression, bool* success, std::string* errorMessage) = 0; // does not throw exceptions
virtual std::string* getErrorMessage() = 0; // to get error message in the case of thrown exception
virtual void setSampler(Sampler_if* sampler) = 0;
virtual Sampler_if* sampler() const = 0;
// ...?
};
#endif /* PARSER_IF_H */
| [
"cancian@lisha.ufsc.br"
] | cancian@lisha.ufsc.br |
a4a854f526b63f3bf2b98d761a05a5a008cff0b6 | 16697450d50f66674643f957576259c52b3abac2 | /LeetCode/224/main.cpp | c596ff9c2d60e23b29d04adeb4bb88ab39d6e88c | [] | no_license | z1908144712/ExamCode | 1ae0e0ffe600ca23ad1a20e6a1f1bc8fd05707e7 | f9de7a2c5f9a91e3066f7b7d3716230ad49be45d | refs/heads/master | 2023-01-21T13:21:25.771074 | 2020-12-01T09:10:40 | 2020-12-01T09:10:40 | 295,437,393 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,153 | cpp | #include <iostream>
#include <vector>
using namespace std;
class Solution {
public:
int calculate(string s) {
if (s.size() == 0) {
return 0;
}
vector<char> ops;
vector<int> nums;
long num = -1, e = 1;
for (int i = s.size() - 1; i >= 0; i--) {
if (s[i] == ' ') {
continue;
}
if (s[i] >= '0' && s[i] <= '9') {
if (num == -1) {
num = (s[i] - '0');
} else {
num += (s[i] - '0') * e;
}
e *= 10;
continue;
} else if (num != -1) {
nums.push_back(num);
num = -1;
e = 1;
}
if (s[i] == '(') {
for (int i = ops.size() - 1; ops[i] != ')'; i--) {
int a, b;
a = nums.back();
nums.pop_back();
b = nums.back();
nums.pop_back();
if (ops[i] == '+') {
nums.push_back(a + b);
}
if (ops[i] == '-') {
nums.push_back(a - b);
}
ops.pop_back();
}
ops.pop_back();
} else {
ops.push_back(s[i]);
}
}
if (num != -1) {
nums.push_back(num);
}
for (int i = ops.size() - 1; i >= 0; i--) {
int a, b;
a = nums.back();
nums.pop_back();
b = nums.back();
nums.pop_back();
if (ops[i] == '+') {
nums.push_back(a + b);
}
if (ops[i] == '-') {
nums.push_back(a - b);
}
ops.pop_back();
}
return nums.back();
}
};
int main() {
Solution sol;
string s = "2147483647";
//string s = " 2-1 + 2 ";
//string s = "1 + 1";
//string s = "(1+(4+5+2)-3)+(6+8)";
cout << sol.calculate(s) << endl;
return 0;
} | [
"z1908144712@163.com"
] | z1908144712@163.com |
856c11f328e592b73983a2b58065de7e2943cc4f | 638021514a26991089a9f0ba0dcc2560426bb650 | /Zadanie2.cpp | 9d8fc3bda6e58b225efdbfdc9972ca6b2add21fc | [] | no_license | ntlone/Lab3 | b19d35493812d15088912c5706842b737d2d693e | 6eb59e95ea1f253e43d151d39d9dca9c74c752f6 | refs/heads/master | 2021-01-20T18:24:20.458676 | 2016-06-05T01:05:46 | 2016-06-05T01:05:46 | 60,437,110 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 23,192 | cpp | #include "stdafx.h"
#include <GL\glut.h>
#include <iostream>
// tekstura "tęcza" o szerokości 512 tekseli
unsigned char spectrum_512[512 * 3] =
{
0xff, 0x3a, 0x01, 0xff, 0x3b, 0x01, 0xff, 0x3c, 0x01, 0xff, 0x3d, 0x01,
0xff, 0x3e, 0x01, 0xff, 0x3f, 0x01, 0xff, 0x40, 0x01, 0xfe, 0x42, 0x01,
0xfe, 0x43, 0x01, 0xfe, 0x43, 0x01, 0xfe, 0x45, 0x01, 0xfe, 0x46, 0x01,
0xfe, 0x47, 0x01, 0xfe, 0x48, 0x01, 0xfe, 0x49, 0x01, 0xfe, 0x4b, 0x01,
0xfe, 0x4c, 0x01, 0xfe, 0x4d, 0x01, 0xfe, 0x4e, 0x01, 0xfe, 0x4f, 0x01,
0xfe, 0x4f, 0x01, 0xfe, 0x51, 0x01, 0xfe, 0x52, 0x01, 0xfe, 0x53, 0x01,
0xfe, 0x54, 0x01, 0xfe, 0x55, 0x01, 0xfe, 0x57, 0x01, 0xfe, 0x58, 0x01,
0xfe, 0x59, 0x01, 0xfd, 0x5a, 0x01, 0xfd, 0x5b, 0x01, 0xfd, 0x5c, 0x01,
0xfd, 0x5d, 0x01, 0xfd, 0x5e, 0x01, 0xfd, 0x5f, 0x01, 0xfd, 0x60, 0x01,
0xfd, 0x61, 0x01, 0xfd, 0x62, 0x01, 0xfd, 0x64, 0x01, 0xfd, 0x65, 0x01,
0xfd, 0x66, 0x01, 0xfd, 0x67, 0x01, 0xfd, 0x68, 0x01, 0xfd, 0x69, 0x01,
0xfd, 0x6a, 0x01, 0xfd, 0x6b, 0x01, 0xfd, 0x6d, 0x01, 0xfd, 0x6e, 0x01,
0xfd, 0x6f, 0x01, 0xfd, 0x70, 0x01, 0xfd, 0x71, 0x01, 0xfd, 0x73, 0x01,
0xfd, 0x73, 0x01, 0xfc, 0x74, 0x01, 0xfd, 0x76, 0x01, 0xfd, 0x77, 0x01,
0xfc, 0x78, 0x01, 0xfc, 0x79, 0x01, 0xfc, 0x7a, 0x01, 0xfc, 0x7b, 0x01,
0xfc, 0x7c, 0x01, 0xfc, 0x7e, 0x01, 0xfc, 0x7e, 0x01, 0xfc, 0x80, 0x01,
0xfc, 0x81, 0x01, 0xfc, 0x82, 0x01, 0xfc, 0x83, 0x01, 0xfc, 0x84, 0x01,
0xfc, 0x86, 0x01, 0xfc, 0x87, 0x01, 0xfc, 0x87, 0x01, 0xfc, 0x89, 0x01,
0xfc, 0x8a, 0x01, 0xfc, 0x8a, 0x01, 0xfc, 0x8c, 0x01, 0xfc, 0x8d, 0x01,
0xfc, 0x8e, 0x01, 0xfc, 0x8f, 0x01, 0xfb, 0x90, 0x01, 0xfb, 0x92, 0x01,
0xfb, 0x92, 0x01, 0xfb, 0x93, 0x01, 0xfb, 0x95, 0x01, 0xfb, 0x96, 0x01,
0xfb, 0x97, 0x01, 0xfb, 0x98, 0x01, 0xfb, 0x99, 0x01, 0xfb, 0x9a, 0x01,
0xfb, 0x9c, 0x01, 0xfb, 0x9d, 0x00, 0xfb, 0x9e, 0x01, 0xfb, 0x9f, 0x01,
0xfb, 0xa0, 0x01, 0xfb, 0xa1, 0x01, 0xfb, 0xa2, 0x01, 0xfb, 0xa3, 0x01,
0xfb, 0xa4, 0x01, 0xfa, 0xa5, 0x01, 0xfa, 0xa6, 0x01, 0xfa, 0xa8, 0x01,
0xfa, 0xa9, 0x01, 0xfa, 0xaa, 0x01, 0xfa, 0xab, 0x01, 0xfa, 0xac, 0x01,
0xfa, 0xad, 0x01, 0xfa, 0xae, 0x01, 0xfa, 0xaf, 0x01, 0xfa, 0xb1, 0x01,
0xfa, 0xb2, 0x01, 0xfa, 0xb3, 0x01, 0xfa, 0xb4, 0x01, 0xfa, 0xb5, 0x01,
0xfa, 0xb6, 0x01, 0xfa, 0xb7, 0x01, 0xfa, 0xb8, 0x01, 0xfa, 0xba, 0x01,
0xfa, 0xba, 0x01, 0xfa, 0xbb, 0x01, 0xfa, 0xbd, 0x01, 0xfa, 0xbe, 0x01,
0xfa, 0xbf, 0x01, 0xfa, 0xc0, 0x01, 0xf9, 0xc1, 0x01, 0xf9, 0xc2, 0x01,
0xfa, 0xc4, 0x01, 0xf9, 0xc5, 0x01, 0xf9, 0xc6, 0x01, 0xf9, 0xc7, 0x01,
0xf9, 0xc8, 0x01, 0xf9, 0xca, 0x01, 0xf9, 0xca, 0x01, 0xf9, 0xcb, 0x01,
0xf9, 0xcd, 0x01, 0xf9, 0xce, 0x01, 0xf9, 0xce, 0x01, 0xf9, 0xd0, 0x01,
0xf9, 0xd1, 0x01, 0xf9, 0xd2, 0x01, 0xf9, 0xd3, 0x01, 0xf8, 0xd4, 0x01,
0xf9, 0xd5, 0x01, 0xf9, 0xd6, 0x01, 0xf9, 0xd8, 0x01, 0xf9, 0xd9, 0x01,
0xf8, 0xda, 0x01, 0xf8, 0xdb, 0x01, 0xf8, 0xdc, 0x01, 0xf8, 0xdd, 0x01,
0xf8, 0xde, 0x01, 0xf8, 0xdf, 0x01, 0xf8, 0xe0, 0x01, 0xf8, 0xe2, 0x01,
0xf8, 0xe3, 0x01, 0xf8, 0xe4, 0x01, 0xf8, 0xe5, 0x01, 0xf8, 0xe6, 0x01,
0xf8, 0xe7, 0x01, 0xf8, 0xe8, 0x01, 0xf8, 0xe9, 0x01, 0xf8, 0xea, 0x01,
0xf8, 0xeb, 0x01, 0xf8, 0xed, 0x01, 0xf8, 0xed, 0x01, 0xf8, 0xef, 0x01,
0xf8, 0xf0, 0x01, 0xf8, 0xf1, 0x01, 0xf8, 0xf2, 0x01, 0xf7, 0xf3, 0x01,
0xf7, 0xf4, 0x01, 0xf7, 0xf5, 0x01, 0xf7, 0xf6, 0x01, 0xf7, 0xf8, 0x01,
0xf7, 0xf9, 0x01, 0xf7, 0xfa, 0x01, 0xf7, 0xfb, 0x01, 0xf7, 0xfc, 0x01,
0xf7, 0xfd, 0x01, 0xf6, 0xfe, 0x01, 0xf6, 0xfe, 0x01, 0xf5, 0xfe, 0x02,
0xf4, 0xfd, 0x03, 0xf3, 0xfd, 0x03, 0xf1, 0xfc, 0x04, 0xf0, 0xfb, 0x05,
0xef, 0xfa, 0x05, 0xee, 0xfa, 0x06, 0xec, 0xf9, 0x07, 0xeb, 0xf8, 0x07,
0xea, 0xf7, 0x08, 0xe8, 0xf7, 0x08, 0xe7, 0xf6, 0x09, 0xe6, 0xf5, 0x09,
0xe4, 0xf5, 0x0a, 0xe3, 0xf4, 0x0b, 0xe2, 0xf3, 0x0b, 0xe1, 0xf2, 0x0c,
0xdf, 0xf1, 0x0c, 0xde, 0xf1, 0x0d, 0xdd, 0xf0, 0x0e, 0xdc, 0xef, 0x0e,
0xda, 0xee, 0x0f, 0xd8, 0xee, 0x10, 0xd8, 0xed, 0x10, 0xd6, 0xec, 0x11,
0xd5, 0xec, 0x11, 0xd4, 0xeb, 0x12, 0xd3, 0xea, 0x12, 0xd1, 0xea, 0x13,
0xd0, 0xe9, 0x14, 0xcf, 0xe8, 0x14, 0xce, 0xe8, 0x15, 0xcc, 0xe7, 0x16,
0xcb, 0xe6, 0x16, 0xca, 0xe5, 0x17, 0xc8, 0xe5, 0x18, 0xc7, 0xe4, 0x18,
0xc6, 0xe3, 0x19, 0xc5, 0xe2, 0x19, 0xc3, 0xe2, 0x1a, 0xc2, 0xe1, 0x1a,
0xc1, 0xe0, 0x1b, 0xc0, 0xdf, 0x1c, 0xbe, 0xdf, 0x1d, 0xbd, 0xde, 0x1d,
0xbc, 0xdd, 0x1e, 0xbb, 0xdd, 0x1e, 0xb9, 0xdc, 0x1f, 0xb8, 0xdb, 0x20,
0xb7, 0xda, 0x20, 0xb5, 0xda, 0x21, 0xb4, 0xd9, 0x22, 0xb3, 0xd8, 0x22,
0xb1, 0xd8, 0x23, 0xb0, 0xd7, 0x24, 0xaf, 0xd6, 0x24, 0xae, 0xd5, 0x25,
0xad, 0xd5, 0x25, 0xac, 0xd4, 0x26, 0xaa, 0xd3, 0x27, 0xa9, 0xd3, 0x27,
0xa7, 0xd2, 0x28, 0xa6, 0xd1, 0x29, 0xa5, 0xd1, 0x29, 0xa3, 0xd0, 0x2a,
0xa2, 0xcf, 0x2a, 0xa1, 0xce, 0x2b, 0xa0, 0xce, 0x2c, 0x9f, 0xcd, 0x2c,
0x9e, 0xcc, 0x2d, 0x9c, 0xcb, 0x2d, 0x9b, 0xcb, 0x2e, 0x9a, 0xca, 0x2f,
0x99, 0xc9, 0x30, 0x97, 0xc8, 0x30, 0x96, 0xc8, 0x31, 0x95, 0xc7, 0x32,
0x94, 0xc6, 0x32, 0x92, 0xc6, 0x33, 0x91, 0xc5, 0x34, 0x90, 0xc4, 0x34,
0x8e, 0xc3, 0x35, 0x8d, 0xc3, 0x35, 0x8c, 0xc2, 0x36, 0x8b, 0xc1, 0x36,
0x8a, 0xc1, 0x37, 0x88, 0xc0, 0x38, 0x87, 0xbf, 0x38, 0x85, 0xbe, 0x39,
0x84, 0xbe, 0x3a, 0x83, 0xbd, 0x3a, 0x82, 0xbc, 0x3b, 0x80, 0xbc, 0x3b,
0x7f, 0xbb, 0x3c, 0x7e, 0xba, 0x3d, 0x7d, 0xba, 0x3d, 0x7b, 0xb9, 0x3e,
0x7a, 0xb8, 0x3f, 0x79, 0xb7, 0x3f, 0x77, 0xb7, 0x40, 0x76, 0xb6, 0x40,
0x75, 0xb5, 0x41, 0x74, 0xb4, 0x41, 0x72, 0xb4, 0x42, 0x71, 0xb3, 0x43,
0x70, 0xb2, 0x43, 0x6e, 0xb1, 0x44, 0x6d, 0xb1, 0x45, 0x6c, 0xb0, 0x45,
0x6b, 0xaf, 0x46, 0x6a, 0xae, 0x46, 0x68, 0xae, 0x47, 0x67, 0xad, 0x48,
0x66, 0xac, 0x48, 0x64, 0xab, 0x49, 0x63, 0xab, 0x49, 0x62, 0xaa, 0x4a,
0x60, 0xa9, 0x4b, 0x5f, 0xa8, 0x4b, 0x5e, 0xa8, 0x4c, 0x5c, 0xa7, 0x4d,
0x5b, 0xa6, 0x4d, 0x5a, 0xa5, 0x4e, 0x59, 0xa5, 0x4e, 0x58, 0xa4, 0x4f,
0x56, 0xa3, 0x50, 0x55, 0xa3, 0x50, 0x54, 0xa2, 0x51, 0x52, 0xa1, 0x52,
0x51, 0xa1, 0x52, 0x51, 0xa0, 0x53, 0x50, 0x9f, 0x54, 0x4f, 0x9e, 0x54,
0x4f, 0x9d, 0x55, 0x4f, 0x9c, 0x56, 0x4e, 0x9b, 0x57, 0x4e, 0x9a, 0x58,
0x4e, 0x99, 0x58, 0x4d, 0x99, 0x59, 0x4d, 0x97, 0x5a, 0x4d, 0x97, 0x5a,
0x4c, 0x96, 0x5b, 0x4c, 0x95, 0x5c, 0x4c, 0x94, 0x5c, 0x4b, 0x93, 0x5d,
0x4b, 0x92, 0x5e, 0x4b, 0x91, 0x5f, 0x4b, 0x90, 0x60, 0x4a, 0x90, 0x60,
0x4a, 0x8f, 0x61, 0x4a, 0x8e, 0x62, 0x49, 0x8d, 0x63, 0x49, 0x8c, 0x63,
0x48, 0x8b, 0x64, 0x48, 0x8a, 0x65, 0x48, 0x89, 0x65, 0x47, 0x88, 0x66,
0x47, 0x87, 0x67, 0x47, 0x86, 0x67, 0x46, 0x85, 0x68, 0x46, 0x84, 0x69,
0x45, 0x83, 0x6a, 0x45, 0x83, 0x6a, 0x45, 0x82, 0x6b, 0x45, 0x81, 0x6c,
0x45, 0x80, 0x6d, 0x44, 0x7f, 0x6d, 0x44, 0x7e, 0x6e, 0x43, 0x7d, 0x6f,
0x43, 0x7d, 0x6f, 0x43, 0x7b, 0x70, 0x42, 0x7b, 0x71, 0x42, 0x7a, 0x72,
0x42, 0x79, 0x72, 0x41, 0x78, 0x73, 0x41, 0x77, 0x74, 0x41, 0x76, 0x75,
0x41, 0x75, 0x75, 0x40, 0x74, 0x76, 0x40, 0x73, 0x77, 0x40, 0x72, 0x77,
0x3f, 0x71, 0x78, 0x3f, 0x70, 0x79, 0x3f, 0x70, 0x7a, 0x3e, 0x6f, 0x7b,
0x3e, 0x6e, 0x7b, 0x3e, 0x6d, 0x7c, 0x3d, 0x6c, 0x7d, 0x3d, 0x6b, 0x7d,
0x3c, 0x6a, 0x7e, 0x3c, 0x69, 0x7f, 0x3c, 0x69, 0x80, 0x3b, 0x67, 0x80,
0x3b, 0x67, 0x81, 0x3b, 0x66, 0x82, 0x3b, 0x65, 0x83, 0x3a, 0x64, 0x83,
0x3a, 0x63, 0x84, 0x3a, 0x62, 0x85, 0x39, 0x61, 0x86, 0x39, 0x60, 0x86,
0x39, 0x5f, 0x87, 0x38, 0x5e, 0x88, 0x38, 0x5d, 0x89, 0x38, 0x5c, 0x89,
0x37, 0x5c, 0x8a, 0x37, 0x5a, 0x8b, 0x37, 0x5a, 0x8b, 0x37, 0x59, 0x8c,
0x36, 0x58, 0x8d, 0x36, 0x57, 0x8d, 0x36, 0x56, 0x8e, 0x35, 0x55, 0x8f,
0x35, 0x54, 0x90, 0x35, 0x53, 0x90, 0x34, 0x53, 0x91, 0x34, 0x52, 0x92,
0x33, 0x51, 0x93, 0x33, 0x50, 0x93, 0x33, 0x4f, 0x94, 0x32, 0x4e, 0x95,
0x32, 0x4d, 0x95, 0x32, 0x4c, 0x96, 0x31, 0x4b, 0x97, 0x31, 0x4a, 0x98,
0x31, 0x49, 0x99, 0x30, 0x48, 0x99, 0x30, 0x47, 0x9a, 0x30, 0x46, 0x9b,
0x30, 0x45, 0x9b, 0x2f, 0x45, 0x9c, 0x2f, 0x44, 0x9d, 0x2f, 0x43, 0x9e,
0x2e, 0x42, 0x9e, 0x2e, 0x41, 0x9f, 0x2d, 0x40, 0xa0, 0x2d, 0x3f, 0xa1,
0x2d, 0x3e, 0xa1, 0x2d, 0x3d, 0xa2, 0x2c, 0x3c, 0xa3, 0x2c, 0x3b, 0xa3,
0x2c, 0x3a, 0xa4, 0x2c, 0x39, 0xa5, 0x2b, 0x39, 0xa6, 0x2b, 0x38, 0xa6,
0x2a, 0x37, 0xa7, 0x2a, 0x36, 0xa8, 0x2a, 0x35, 0xa8, 0x29, 0x34, 0xa9,
0x29, 0x33, 0xaa, 0x28, 0x32, 0xab, 0x28, 0x32, 0xab, 0x27, 0x31, 0xac,
0x27, 0x2f, 0xad, 0x27, 0x2f, 0xae, 0x26, 0x2e, 0xae, 0x26, 0x2d, 0xaf,
0x26, 0x2c, 0xb0, 0x26, 0x2b, 0xb0, 0x26, 0x2a, 0xb1, 0x25, 0x29, 0xb2,
0x25, 0x28, 0xb3, 0x25, 0x28, 0xb3, 0x24, 0x26, 0xb4, 0x24, 0x25, 0xb5,
0x24, 0x25, 0xb5, 0x24, 0x24, 0xb6, 0x24, 0x23, 0xb5, 0x24, 0x23, 0xb5,
0x24, 0x23, 0xb5, 0x25, 0x23, 0xb4, 0x25, 0x23, 0xb3, 0x25, 0x23, 0xb3,
0x26, 0x23, 0xb1, 0x26, 0x23, 0xb0, 0x27, 0x23, 0xaf, 0x27, 0x23, 0xae,
0x27, 0x24, 0xae, 0x28, 0x24, 0xad, 0x28, 0x24, 0xac, 0x29, 0x24, 0xab,
0x29, 0x24, 0xaa, 0x2a, 0x24, 0xa9, 0x2a, 0x24, 0xa8, 0x2b, 0x24, 0xa7,
0x2b, 0x24, 0xa6, 0x2c, 0x24, 0xa5, 0x2c, 0x24, 0xa5, 0x2d, 0x24, 0xa4,
0x2d, 0x24, 0xa3, 0x2e, 0x24, 0xa2, 0x2e, 0x24, 0xa1, 0x2e, 0x24, 0xa0,
0x2f, 0x24, 0x9f, 0x2f, 0x25, 0x9f, 0x2f, 0x25, 0x9e, 0x30, 0x25, 0x9d,
0x30, 0x25, 0x9c, 0x31, 0x25, 0x9a, 0x31, 0x25, 0x9a, 0x32, 0x25, 0x98,
0x32, 0x25, 0x98, 0x33, 0x25, 0x97, 0x33, 0x25, 0x96, 0x33, 0x25, 0x95,
0x34, 0x25, 0x95, 0x34, 0x25, 0x93, 0x35, 0x25, 0x92, 0x35, 0x25, 0x92,
0x36, 0x25, 0x91, 0x36, 0x25, 0x90, 0x37, 0x25, 0x8f, 0x37, 0x25, 0x8e,
0x37, 0x25, 0x8e, 0x38, 0x26, 0x8c, 0x38, 0x26, 0x8b, 0x39, 0x26, 0x8b,
0x39, 0x26, 0x8a, 0x3a, 0x26, 0x89, 0x3a, 0x26, 0x88, 0x3b, 0x26, 0x87,
0x3b, 0x26, 0x86, 0x3c, 0x26, 0x86, 0x3c, 0x26, 0x84, 0x3d, 0x26, 0x83,
0x3d, 0x26, 0x82, 0x3e, 0x26, 0x82, 0x3e, 0x26, 0x81, 0x3f, 0x26, 0x80,
0x3f, 0x26, 0x7f, 0x3f, 0x27, 0x7e, 0x40, 0x27, 0x7d, 0x40, 0x27, 0x7c
};
// tekstura "tęcza" o szerokości 256 tekseli
unsigned char spectrum_256[256 * 3] =
{
0xff, 0x3b, 0x01, 0xff, 0x3d, 0x01, 0xff, 0x3f, 0x01, 0xff, 0x41, 0x01,
0xfe, 0x43, 0x01, 0xfe, 0x46, 0x01, 0xfe, 0x48, 0x01, 0xfe, 0x4a, 0x01,
0xfe, 0x4d, 0x01, 0xfe, 0x4f, 0x01, 0xfe, 0x50, 0x01, 0xfe, 0x53, 0x01,
0xfe, 0x55, 0x01, 0xfe, 0x58, 0x01, 0xfe, 0x5a, 0x01, 0xfd, 0x5c, 0x01,
0xfd, 0x5e, 0x01, 0xfd, 0x60, 0x01, 0xfd, 0x62, 0x01, 0xfd, 0x65, 0x01,
0xfd, 0x67, 0x01, 0xfd, 0x69, 0x01, 0xfd, 0x6b, 0x01, 0xfd, 0x6e, 0x01,
0xfd, 0x70, 0x01, 0xfd, 0x72, 0x01, 0xfd, 0x74, 0x01, 0xfd, 0x77, 0x01,
0xfc, 0x79, 0x01, 0xfc, 0x7b, 0x01, 0xfc, 0x7d, 0x01, 0xfc, 0x7f, 0x01,
0xfc, 0x82, 0x01, 0xfc, 0x84, 0x01, 0xfc, 0x87, 0x01, 0xfc, 0x88, 0x01,
0xfc, 0x8a, 0x01, 0xfc, 0x8d, 0x01, 0xfc, 0x8f, 0x01, 0xfb, 0x91, 0x01,
0xfb, 0x93, 0x01, 0xfb, 0x96, 0x01, 0xfb, 0x98, 0x01, 0xfb, 0x9a, 0x01,
0xfb, 0x9d, 0x01, 0xfb, 0x9f, 0x01, 0xfb, 0xa1, 0x01, 0xfb, 0xa3, 0x01,
0xfb, 0xa5, 0x01, 0xfa, 0xa7, 0x01, 0xfa, 0xaa, 0x01, 0xfa, 0xac, 0x01,
0xfa, 0xae, 0x01, 0xfa, 0xb0, 0x01, 0xfa, 0xb3, 0x01, 0xfa, 0xb5, 0x01,
0xfa, 0xb7, 0x01, 0xfa, 0xb9, 0x01, 0xfa, 0xbb, 0x01, 0xfa, 0xbe, 0x01,
0xfa, 0xc0, 0x01, 0xf9, 0xc2, 0x01, 0xfa, 0xc5, 0x01, 0xf9, 0xc7, 0x01,
0xf9, 0xc9, 0x01, 0xf9, 0xcb, 0x01, 0xf9, 0xce, 0x01, 0xf9, 0xcf, 0x01,
0xf9, 0xd2, 0x01, 0xf9, 0xd4, 0x01, 0xf9, 0xd6, 0x01, 0xf9, 0xd9, 0x01,
0xf8, 0xdb, 0x01, 0xf8, 0xdd, 0x01, 0xf8, 0xdf, 0x01, 0xf8, 0xe1, 0x01,
0xf8, 0xe4, 0x01, 0xf8, 0xe6, 0x01, 0xf8, 0xe8, 0x01, 0xf8, 0xea, 0x01,
0xf8, 0xec, 0x01, 0xf8, 0xee, 0x01, 0xf8, 0xf1, 0x01, 0xf8, 0xf3, 0x01,
0xf7, 0xf5, 0x01, 0xf7, 0xf7, 0x01, 0xf7, 0xfa, 0x01, 0xf7, 0xfc, 0x01,
0xf7, 0xfe, 0x01, 0xf6, 0xfe, 0x02, 0xf4, 0xfd, 0x03, 0xf1, 0xfc, 0x05,
0xef, 0xfa, 0x06, 0xec, 0xf9, 0x07, 0xe9, 0xf7, 0x08, 0xe7, 0xf6, 0x09,
0xe4, 0xf5, 0x0b, 0xe2, 0xf3, 0x0c, 0xdf, 0xf1, 0x0d, 0xdd, 0xf0, 0x0e,
0xd9, 0xee, 0x10, 0xd7, 0xed, 0x11, 0xd5, 0xec, 0x12, 0xd2, 0xea, 0x13,
0xd0, 0xe9, 0x14, 0xcd, 0xe8, 0x16, 0xcb, 0xe6, 0x17, 0xc8, 0xe5, 0x18,
0xc6, 0xe3, 0x19, 0xc3, 0xe2, 0x1a, 0xc1, 0xe0, 0x1c, 0xbe, 0xdf, 0x1d,
0xbc, 0xdd, 0x1e, 0xb9, 0xdc, 0x20, 0xb6, 0xda, 0x21, 0xb4, 0xd9, 0x22,
0xb1, 0xd8, 0x24, 0xaf, 0xd6, 0x25, 0xad, 0xd5, 0x26, 0xaa, 0xd3, 0x27,
0xa7, 0xd2, 0x29, 0xa4, 0xd1, 0x2a, 0xa2, 0xcf, 0x2b, 0xa0, 0xce, 0x2c,
0x9d, 0xcc, 0x2d, 0x9b, 0xcb, 0x2f, 0x98, 0xc9, 0x30, 0x96, 0xc8, 0x32,
0x93, 0xc6, 0x33, 0x91, 0xc5, 0x34, 0x8e, 0xc3, 0x35, 0x8c, 0xc2, 0x36,
0x89, 0xc1, 0x38, 0x86, 0xbf, 0x39, 0x84, 0xbe, 0x3a, 0x81, 0xbc, 0x3b,
0x7f, 0xbb, 0x3d, 0x7c, 0xba, 0x3e, 0x7a, 0xb8, 0x3f, 0x77, 0xb7, 0x40,
0x75, 0xb5, 0x41, 0x72, 0xb4, 0x43, 0x6f, 0xb2, 0x44, 0x6d, 0xb1, 0x45,
0x6b, 0xaf, 0x46, 0x68, 0xae, 0x48, 0x65, 0xac, 0x49, 0x63, 0xab, 0x4a,
0x60, 0xa9, 0x4b, 0x5d, 0xa8, 0x4d, 0x5b, 0xa6, 0x4e, 0x59, 0xa5, 0x4f,
0x56, 0xa3, 0x50, 0x53, 0xa2, 0x52, 0x51, 0xa1, 0x53, 0x50, 0x9f, 0x54,
0x4f, 0x9d, 0x56, 0x4e, 0x9b, 0x58, 0x4e, 0x99, 0x59, 0x4d, 0x97, 0x5a,
0x4c, 0x96, 0x5c, 0x4c, 0x94, 0x5d, 0x4b, 0x92, 0x5f, 0x4b, 0x90, 0x60,
0x4a, 0x8f, 0x62, 0x49, 0x8d, 0x63, 0x48, 0x8b, 0x65, 0x48, 0x89, 0x66,
0x47, 0x87, 0x67, 0x46, 0x85, 0x69, 0x45, 0x83, 0x6a, 0x45, 0x82, 0x6c,
0x45, 0x80, 0x6d, 0x44, 0x7e, 0x6f, 0x43, 0x7c, 0x70, 0x42, 0x7b, 0x72,
0x42, 0x79, 0x73, 0x41, 0x77, 0x75, 0x41, 0x75, 0x76, 0x40, 0x73, 0x77,
0x3f, 0x71, 0x79, 0x3f, 0x70, 0x7b, 0x3e, 0x6e, 0x7c, 0x3d, 0x6c, 0x7d,
0x3c, 0x6a, 0x7f, 0x3c, 0x68, 0x80, 0x3b, 0x67, 0x82, 0x3b, 0x65, 0x83,
0x3a, 0x63, 0x85, 0x39, 0x61, 0x86, 0x39, 0x5f, 0x88, 0x38, 0x5d, 0x89,
0x37, 0x5b, 0x8b, 0x37, 0x5a, 0x8c, 0x36, 0x58, 0x8d, 0x36, 0x56, 0x8f,
0x35, 0x54, 0x90, 0x34, 0x53, 0x92, 0x33, 0x51, 0x93, 0x33, 0x4f, 0x95,
0x32, 0x4d, 0x96, 0x31, 0x4b, 0x98, 0x31, 0x49, 0x99, 0x30, 0x47, 0x9b,
0x30, 0x45, 0x9c, 0x2f, 0x44, 0x9e, 0x2e, 0x42, 0x9f, 0x2d, 0x40, 0xa1,
0x2d, 0x3e, 0xa2, 0x2c, 0x3c, 0xa3, 0x2c, 0x3a, 0xa5, 0x2b, 0x39, 0xa6,
0x2a, 0x37, 0xa8, 0x2a, 0x35, 0xa9, 0x29, 0x33, 0xab, 0x28, 0x32, 0xac,
0x27, 0x2f, 0xae, 0x26, 0x2e, 0xaf, 0x26, 0x2c, 0xb0, 0x26, 0x2a, 0xb2,
0x25, 0x28, 0xb3, 0x24, 0x26, 0xb5, 0x24, 0x25, 0xb6, 0x24, 0x23, 0xb5,
0x25, 0x23, 0xb5, 0x25, 0x23, 0xb3, 0x26, 0x23, 0xb1, 0x27, 0x23, 0xaf,
0x28, 0x24, 0xae, 0x29, 0x24, 0xac, 0x2a, 0x24, 0xaa, 0x2b, 0x24, 0xa8,
0x2c, 0x24, 0xa6, 0x2d, 0x24, 0xa5, 0x2e, 0x24, 0xa3, 0x2e, 0x24, 0xa1,
0x2f, 0x25, 0x9f, 0x30, 0x25, 0x9e, 0x31, 0x25, 0x9b, 0x32, 0x25, 0x99,
0x33, 0x25, 0x98, 0x33, 0x25, 0x96, 0x34, 0x25, 0x94, 0x35, 0x25, 0x92,
0x36, 0x25, 0x91, 0x37, 0x25, 0x8f, 0x38, 0x26, 0x8d, 0x39, 0x26, 0x8b,
0x3a, 0x26, 0x8a, 0x3b, 0x26, 0x88, 0x3c, 0x26, 0x86, 0x3d, 0x26, 0x84,
0x3e, 0x26, 0x82, 0x3f, 0x26, 0x81, 0x3f, 0x27, 0x7f, 0x40, 0x27, 0x7d
};
// tekstura "tęcza" o szerokości 128 tekseli
unsigned char spectrum_128[128 * 3] =
{
0xff, 0x3c, 0x01, 0xff, 0x40, 0x01, 0xfe, 0x44, 0x01, 0xfe, 0x49, 0x01,
0xfe, 0x4e, 0x01, 0xfe, 0x51, 0x01, 0xfe, 0x56, 0x01, 0xfd, 0x5b, 0x01,
0xfd, 0x5f, 0x01, 0xfd, 0x63, 0x01, 0xfd, 0x68, 0x01, 0xfd, 0x6c, 0x01,
0xfd, 0x71, 0x01, 0xfd, 0x75, 0x01, 0xfc, 0x7a, 0x01, 0xfc, 0x7e, 0x01,
0xfc, 0x83, 0x01, 0xfc, 0x87, 0x01, 0xfc, 0x8b, 0x01, 0xfc, 0x90, 0x01,
0xfb, 0x94, 0x01, 0xfb, 0x99, 0x01, 0xfb, 0x9e, 0x01, 0xfb, 0xa2, 0x01,
0xfa, 0xa6, 0x01, 0xfa, 0xab, 0x01, 0xfa, 0xaf, 0x01, 0xfa, 0xb4, 0x01,
0xfa, 0xb8, 0x01, 0xfa, 0xbc, 0x01, 0xfa, 0xc1, 0x01, 0xf9, 0xc6, 0x01,
0xf9, 0xca, 0x01, 0xf9, 0xce, 0x01, 0xf9, 0xd3, 0x01, 0xf9, 0xd7, 0x01,
0xf8, 0xdc, 0x01, 0xf8, 0xe0, 0x01, 0xf8, 0xe5, 0x01, 0xf8, 0xe9, 0x01,
0xf8, 0xed, 0x01, 0xf8, 0xf2, 0x01, 0xf7, 0xf6, 0x01, 0xf7, 0xfb, 0x01,
0xf6, 0xfe, 0x01, 0xf2, 0xfc, 0x04, 0xed, 0xf9, 0x06, 0xe8, 0xf6, 0x09,
0xe3, 0xf4, 0x0b, 0xde, 0xf0, 0x0d, 0xd8, 0xed, 0x10, 0xd3, 0xeb, 0x12,
0xce, 0xe8, 0x15, 0xc9, 0xe5, 0x17, 0xc4, 0xe2, 0x1a, 0xbf, 0xdf, 0x1c,
0xba, 0xdc, 0x1f, 0xb5, 0xd9, 0x21, 0xb0, 0xd7, 0x24, 0xab, 0xd4, 0x26,
0xa5, 0xd1, 0x29, 0xa1, 0xce, 0x2b, 0x9c, 0xcb, 0x2e, 0x97, 0xc8, 0x31,
0x92, 0xc5, 0x33, 0x8d, 0xc2, 0x36, 0x88, 0xc0, 0x38, 0x82, 0xbd, 0x3b,
0x7d, 0xba, 0x3d, 0x78, 0xb7, 0x40, 0x73, 0xb4, 0x42, 0x6e, 0xb1, 0x44,
0x69, 0xae, 0x47, 0x64, 0xab, 0x49, 0x5e, 0xa8, 0x4c, 0x5a, 0xa5, 0x4e,
0x54, 0xa2, 0x51, 0x50, 0xa0, 0x53, 0x4f, 0x9c, 0x57, 0x4d, 0x98, 0x59,
0x4c, 0x95, 0x5c, 0x4b, 0x91, 0x5f, 0x4a, 0x8e, 0x62, 0x48, 0x8a, 0x65,
0x47, 0x86, 0x68, 0x45, 0x82, 0x6b, 0x44, 0x7f, 0x6e, 0x43, 0x7b, 0x71,
0x41, 0x78, 0x74, 0x40, 0x74, 0x76, 0x3f, 0x70, 0x7a, 0x3e, 0x6d, 0x7c,
0x3c, 0x69, 0x7f, 0x3b, 0x66, 0x82, 0x3a, 0x62, 0x85, 0x38, 0x5e, 0x88,
0x37, 0x5a, 0x8b, 0x36, 0x57, 0x8e, 0x35, 0x53, 0x91, 0x33, 0x50, 0x94,
0x32, 0x4c, 0x97, 0x30, 0x48, 0x9a, 0x2f, 0x44, 0x9d, 0x2e, 0x41, 0xa0,
0x2d, 0x3d, 0xa2, 0x2c, 0x39, 0xa5, 0x2a, 0x36, 0xa8, 0x28, 0x32, 0xab,
0x27, 0x2e, 0xae, 0x26, 0x2b, 0xb1, 0x25, 0x27, 0xb4, 0x24, 0x24, 0xb5,
0x25, 0x23, 0xb4, 0x27, 0x23, 0xb0, 0x28, 0x24, 0xad, 0x2a, 0x24, 0xa9,
0x2c, 0x24, 0xa5, 0x2e, 0x24, 0xa2, 0x2f, 0x25, 0x9e, 0x31, 0x25, 0x9a,
0x33, 0x25, 0x97, 0x35, 0x25, 0x93, 0x37, 0x25, 0x90, 0x38, 0x26, 0x8c,
0x3a, 0x26, 0x89, 0x3c, 0x26, 0x85, 0x3e, 0x26, 0x81, 0x40, 0x27, 0x7e
};
// tekstura "tęcza" o szerokości 64 tekseli
unsigned char spectrum_64[64 * 3] =
{
0xff, 0x3e, 0x01, 0xfe, 0x47, 0x01, 0xfe, 0x4f, 0x01, 0xfe, 0x58, 0x01,
0xfd, 0x61, 0x01, 0xfd, 0x6a, 0x01, 0xfd, 0x73, 0x01, 0xfc, 0x7c, 0x01,
0xfc, 0x85, 0x01, 0xfc, 0x8e, 0x01, 0xfb, 0x96, 0x01, 0xfb, 0xa0, 0x01,
0xfa, 0xa8, 0x01, 0xfa, 0xb1, 0x01, 0xfa, 0xba, 0x01, 0xf9, 0xc3, 0x01,
0xf9, 0xcc, 0x01, 0xf9, 0xd5, 0x01, 0xf8, 0xde, 0x01, 0xf8, 0xe7, 0x01,
0xf8, 0xef, 0x01, 0xf7, 0xf8, 0x01, 0xf4, 0xfd, 0x03, 0xea, 0xf8, 0x07,
0xe0, 0xf2, 0x0c, 0xd6, 0xec, 0x11, 0xcc, 0xe7, 0x16, 0xc2, 0xe1, 0x1b,
0xb7, 0xdb, 0x20, 0xad, 0xd5, 0x25, 0xa3, 0xd0, 0x2a, 0x99, 0xca, 0x2f,
0x8f, 0xc4, 0x34, 0x85, 0xbe, 0x39, 0x7b, 0xb9, 0x3e, 0x70, 0xb3, 0x43,
0x66, 0xad, 0x48, 0x5c, 0xa7, 0x4d, 0x52, 0xa1, 0x52, 0x4e, 0x9a, 0x58,
0x4b, 0x93, 0x5e, 0x49, 0x8c, 0x64, 0x46, 0x84, 0x69, 0x43, 0x7d, 0x6f,
0x41, 0x76, 0x75, 0x3e, 0x6e, 0x7b, 0x3b, 0x67, 0x81, 0x39, 0x60, 0x87,
0x36, 0x58, 0x8c, 0x34, 0x51, 0x92, 0x31, 0x4a, 0x98, 0x2e, 0x42, 0x9e,
0x2c, 0x3b, 0xa4, 0x29, 0x34, 0xaa, 0x26, 0x2c, 0xaf, 0x24, 0x25, 0xb5,
0x26, 0x23, 0xb2, 0x29, 0x24, 0xab, 0x2d, 0x24, 0xa3, 0x30, 0x25, 0x9c,
0x34, 0x25, 0x95, 0x37, 0x25, 0x8e, 0x3b, 0x26, 0x87, 0x3f, 0x26, 0x7f
};
// tekstura "tęcza" o szerokości 32 tekseli
unsigned char spectrum_32[32 * 3] =
{
0xfe, 0x42, 0x01, 0xfe, 0x54, 0x01, 0xfd, 0x65, 0x01, 0xfc, 0x77, 0x01,
0xfc, 0x89, 0x01, 0xfb, 0x9b, 0x01, 0xfa, 0xad, 0x01, 0xfa, 0xbe, 0x01,
0xf9, 0xd0, 0x01, 0xf8, 0xe2, 0x01, 0xf7, 0xf4, 0x01, 0xef, 0xfa, 0x05,
0xdb, 0xef, 0x0f, 0xc7, 0xe4, 0x18, 0xb2, 0xd8, 0x23, 0x9e, 0xcd, 0x2d,
0x8a, 0xc1, 0x37, 0x76, 0xb6, 0x41, 0x61, 0xaa, 0x4a, 0x50, 0x9d, 0x55,
0x4a, 0x8f, 0x61, 0x45, 0x80, 0x6c, 0x3f, 0x72, 0x78, 0x3a, 0x63, 0x84,
0x35, 0x55, 0x8f, 0x30, 0x46, 0x9b, 0x2a, 0x37, 0xa7, 0x25, 0x29, 0xb2,
0x27, 0x24, 0xae, 0x2f, 0x24, 0xa0, 0x35, 0x25, 0x91, 0x3d, 0x26, 0x83
};
// tekstura "tęcza" o szerokości 16 tekseli
unsigned char spectrum_16[16 * 3] =
{
0xfe, 0x4b, 0x01, 0xfd, 0x6e, 0x01, 0xfb, 0x92, 0x01, 0xfa, 0xb6, 0x01,
0xf8, 0xd9, 0x01, 0xf3, 0xf7, 0x03, 0xd1, 0xe9, 0x14, 0xa8, 0xd2, 0x28,
0x80, 0xbb, 0x3c, 0x59, 0xa3, 0x50, 0x47, 0x88, 0x66, 0x3d, 0x6b, 0x7e,
0x32, 0x4d, 0x95, 0x28, 0x30, 0xac, 0x2b, 0x24, 0xa7, 0x39, 0x26, 0x8a
};
// tekstura "tęcza" o szerokości 8 tekseli
unsigned char spectrum_8[8 * 3] =
{
0xfd, 0x5d, 0x01, 0xfb, 0xa4, 0x01, 0xf6, 0xe8, 0x02, 0xbd, 0xde, 0x1e,
0x6c, 0xb0, 0x46, 0x42, 0x7a, 0x72, 0x2d, 0x3f, 0xa1, 0x32, 0x25, 0x99
};
// tekstura "tęcza" o szerokości 4 tekseli
unsigned char spectrum_4[4 * 3] =
{
0xfc, 0x80, 0x01, 0xd9, 0xe3, 0x10, 0x57, 0x94, 0x5c, 0x30, 0x32, 0x9d
};
// tekstura "tęcza" o szerokości 2 tekseli
unsigned char spectrum_2[2 * 3] =
{
0xeb, 0xb2, 0x08, 0x43, 0x63, 0x7c
};
// tekstura "tęcza" o szerokości 1 teksela
unsigned char spectrum_1[1 * 3] =
{
0x97, 0x8a, 0x42
};
GLuint textures[3];
enum{
SWITCH_TO_NEAREST,
SWITCH_TO_LINEAR
};
void Init()
{
glClearColor(0.7f, 0.2f, 0.3f, 1.0f);
glEnable(GL_TEXTURE_1D);
glGenTextures(3, textures);
glBindTexture(GL_TEXTURE_1D, textures[0]);
glTexImage1D(GL_TEXTURE_1D, 0, GL_RGB, 512, 0, GL_RGB, GL_UNSIGNED_BYTE, spectrum_512);
glTexImage1D(GL_TEXTURE_1D, 1, GL_RGB, 256, 0, GL_RGB, GL_UNSIGNED_BYTE, spectrum_256);
glTexImage1D(GL_TEXTURE_1D, 2, GL_RGB, 128, 0, GL_RGB, GL_UNSIGNED_BYTE, spectrum_128);
glTexImage1D(GL_TEXTURE_1D, 3, GL_RGB, 64, 0, GL_RGB, GL_UNSIGNED_BYTE, spectrum_64);
glTexImage1D(GL_TEXTURE_1D, 4, GL_RGB, 32, 0, GL_RGB, GL_UNSIGNED_BYTE, spectrum_32);
glTexImage1D(GL_TEXTURE_1D, 5, GL_RGB, 16, 0, GL_RGB, GL_UNSIGNED_BYTE, spectrum_16);
glTexImage1D(GL_TEXTURE_1D, 6, GL_RGB, 8, 0, GL_RGB, GL_UNSIGNED_BYTE, spectrum_8);
glTexImage1D(GL_TEXTURE_1D, 7, GL_RGB, 4, 0, GL_RGB, GL_UNSIGNED_BYTE, spectrum_4);
glTexImage1D(GL_TEXTURE_1D, 8, GL_RGB, 2, 0, GL_RGB, GL_UNSIGNED_BYTE, spectrum_2);
glTexImage1D(GL_TEXTURE_1D, 9, GL_RGB, 1, 0, GL_RGB, GL_UNSIGNED_BYTE, spectrum_1);
glTexParameteri(GL_TEXTURE_1D, GL_TEXTURE_MIN_FILTER, GL_NEAREST_MIPMAP_NEAREST);
glTexParameteri(GL_TEXTURE_1D, GL_TEXTURE_MAG_FILTER, GL_NEAREST);
glTexParameteri(GL_TEXTURE_1D, GL_TEXTURE_WRAP_S, GL_CLAMP);
glBindTexture(GL_TEXTURE_1D, textures[1]);
gluBuild1DMipmaps(GL_TEXTURE_1D, GL_RGB, 512, GL_RGB, GL_UNSIGNED_BYTE, spectrum_512);
glTexParameteri(GL_TEXTURE_1D, GL_TEXTURE_MIN_FILTER, GL_NEAREST_MIPMAP_NEAREST);
glTexParameteri(GL_TEXTURE_1D, GL_TEXTURE_MAG_FILTER, GL_NEAREST_MIPMAP_NEAREST);
glTexParameteri(GL_TEXTURE_1D, GL_TEXTURE_WRAP_S, GL_CLAMP);
}
void Display()
{
glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);
glBindTexture(GL_TEXTURE_1D, textures[0]);
glBegin(GL_QUADS);
glTexCoord1f(0.0f);
glVertex2f(-1.0f, 0.4f);
glTexCoord1f(0.0f);
glVertex2f(-1.0f, 0.9f);
glTexCoord1f(1.0f);
glVertex2f(1.0f, 0.9f);
glTexCoord1f(1.0f);
glVertex2f(1.0f, 0.4f);
glEnd();
glBindTexture(GL_TEXTURE_1D, textures[1]);
glBegin(GL_QUADS);
glTexCoord1f(0.0f);
glVertex2f(-1.0f, -0.25f);
glTexCoord1f(0.0f);
glVertex2f(-1.0f, 0.25f);
glTexCoord1f(1.0f);
glVertex2f(1.0f, 0.25f);
glTexCoord1f(1.0f);
glVertex2f(1.0f, -0.25f);
glEnd();
glBindTexture(GL_TEXTURE_1D, textures[2]);
glBegin(GL_QUADS);
glTexCoord1f(0.0f);
glVertex2f(-1.0f, -0.9f);
glTexCoord1f(0.0f);
glVertex2f(-1.0f, -0.4f);
glTexCoord1f(1.0f);
glVertex2f(1.0f, -0.4f);
glTexCoord1f(1.0f);
glVertex2f(1.0f, -0.9f);
glEnd();
glutSwapBuffers();
}
void Menu(int value)
{
switch (value)
{
case SWITCH_TO_NEAREST:
for (int i = 0; i < 3; i++)
{
glBindTexture(GL_TEXTURE_1D, textures[i]);
glTexParameteri(GL_TEXTURE_1D, GL_TEXTURE_MIN_FILTER, GL_NEAREST_MIPMAP_NEAREST);
glTexParameteri(GL_TEXTURE_1D, GL_TEXTURE_MAG_FILTER, GL_NEAREST_MIPMAP_NEAREST);
}
break;
case SWITCH_TO_LINEAR:
for (int i = 0; i < 3; i++)
{
glBindTexture(GL_TEXTURE_1D, textures[i]);
glTexParameteri(GL_TEXTURE_1D, GL_TEXTURE_MIN_FILTER, GL_LINEAR_MIPMAP_LINEAR);
glTexParameteri(GL_TEXTURE_1D, GL_TEXTURE_MAG_FILTER, GL_LINEAR_MIPMAP_LINEAR);
}
break;
}
glutPostRedisplay();
}
int main(int argc, char** argv)
{
glutInit(&argc, argv);
glutInitDisplayMode(GLUT_DOUBLE | GLUT_RGBA | GLUT_DEPTH);
glutCreateWindow("Zadanie 2");
Init();
glutCreateMenu(Menu);
glutAddMenuEntry("GL_LINEAR", SWITCH_TO_LINEAR);
glutAddMenuEntry("GL_NEAREST", SWITCH_TO_NEAREST);
glutAttachMenu(GLUT_RIGHT_BUTTON);
glutDisplayFunc(Display);
glutMainLoop();
return 0;
}
| [
"1355ath@gmail.com"
] | 1355ath@gmail.com |
15adea11d67f10c88e8d612654faa5f25701a37a | 0e5295110c7875c2cd2248ead952e2285309b298 | /LearnCplusplus/LearnPointer.cpp | 594fcb6307be40415bbb6a336af82a84f11ebef4 | [] | no_license | weichao-kooboo/LearnCplusplus | c6f7d7cbf521be9029722cd0417d6a4135e4ebe1 | 6866ac8307700384cf20c10d62dfb3bda8ff88d6 | refs/heads/master | 2020-11-23T20:07:40.187649 | 2020-05-11T10:47:27 | 2020-05-11T10:47:27 | 227,802,096 | 0 | 0 | null | null | null | null | GB18030 | C++ | false | false | 191 | cpp | #include "LearnPointer.h"
LearnPointer::LearnPointer()
{
}
LearnPointer::~LearnPointer()
{
}
void LearnPointer::run()
{
//获得原始指针
shared_ptr<PTest> p;
PTest *p1 = p.get();
}
| [
"weichao@kooboo.net"
] | weichao@kooboo.net |
ef09953132336f275cac9d928e915a2d816edb80 | 62ef709a4c64be6082924d876c99652b1c354bf1 | /amigos.cpp | 7e1540b9c796ec5d3eba3dae2ae68cc71cd5916b | [] | no_license | Raquelcuartero/C- | ec5ae276871827f98ab784a86f954680d7ca9343 | e893b2e1be7746a2f896d835cd6a4cb9f5c09816 | refs/heads/master | 2021-03-16T13:57:46.441076 | 2018-02-25T20:09:16 | 2018-02-25T20:09:16 | 111,535,141 | 0 | 0 | null | null | null | null | ISO-8859-10 | C++ | false | false | 546 | cpp | //Este programa trata sobre estructuras
#include<iostream>
using namespace std;
int main(){
//declaro un nuevo tipo de dato
struct persona {
string nombre;
int edad;
char colorPelo;
};
//Declaro una variable tipo persona
persona amigo1;
persona amigo2;
persona amigo3;
cout<<"Como se llama tu amigo?: ";
cin>>amigo1.nombre;
cout<<"Cuantos aņos tiene?: ";
cin>>amigo1.edad;
cout<<"De que color es el pelo?: ";
cin>>amigo1.colorPelo;
}
| [
"noreply@github.com"
] | noreply@github.com |
0c69845db57062c1320023435cba957edfd010ff | 455ecd26f1439cd4a44856c743b01d711e3805b6 | /java/include/android.content.AsyncQueryHandler.hpp | 060ec1f3147395548ae5683a9e301be198842736 | [] | no_license | lbguilherme/duvidovc-app | 00662bf024f82a842c808673109b30fe2b70e727 | f7c86ea812d2ae8dd892918b65ea429e9906531c | refs/heads/master | 2021-03-24T09:17:17.834080 | 2015-09-08T02:32:44 | 2015-09-08T02:32:44 | 33,072,192 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,744 | hpp | #pragma once
#include "../src/java-core.hpp"
#include <jni.h>
#include <cstdint>
#include <memory>
#include <vector>
#include "java.lang.Object.hpp"
#include "android.os.Handler.hpp"
namespace android { namespace content { class ContentResolver; } }
namespace android { namespace content { class ContentValues; } }
namespace android { namespace net { class Uri; } }
namespace android { namespace os { class Message; } }
namespace java { namespace lang { class Object; } }
namespace java { namespace lang { class String; } }
namespace android {
namespace content {
class AsyncQueryHandler : public virtual ::java::lang::Object,
public virtual ::android::os::Handler {
public:
static jclass _class;
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wreorder"
explicit AsyncQueryHandler(jobject _obj) : ::java::lang::Object(_obj), ::android::os::Handler(_obj) {}
#pragma GCC diagnostic pop
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wreorder"
AsyncQueryHandler(const ::android::content::AsyncQueryHandler& x) : ::java::lang::Object((jobject)0), ::android::os::Handler((jobject)0) {obj = x.obj;}
AsyncQueryHandler(::android::content::AsyncQueryHandler&& x) : ::java::lang::Object((jobject)0), ::android::os::Handler((jobject)0) {obj = x.obj; x.obj = JavaObjectHolder((jobject)0);}
#pragma GCC diagnostic pop
::android::content::AsyncQueryHandler& operator=(const ::android::content::AsyncQueryHandler& x) {obj = x.obj; return *this;}
::android::content::AsyncQueryHandler& operator=(::android::content::AsyncQueryHandler&& x) {obj = std::move(x.obj); return *this;}
AsyncQueryHandler(const ::android::content::ContentResolver&);
void startQuery(int32_t, const ::java::lang::Object&, const ::android::net::Uri&, const std::vector< ::java::lang::String>&, const ::java::lang::String&, const std::vector< ::java::lang::String>&, const ::java::lang::String&) const;
void cancelOperation(int32_t) const;
void startInsert(int32_t, const ::java::lang::Object&, const ::android::net::Uri&, const ::android::content::ContentValues&) const;
void startUpdate(int32_t, const ::java::lang::Object&, const ::android::net::Uri&, const ::android::content::ContentValues&, const ::java::lang::String&, const std::vector< ::java::lang::String>&) const;
void startDelete(int32_t, const ::java::lang::Object&, const ::android::net::Uri&, const ::java::lang::String&, const std::vector< ::java::lang::String>&) const;
void handleMessage(const ::android::os::Message&) const;
};
}
}
#include "android.content.AsyncQueryHandler_WorkerArgs.hpp"
#include "android.content.AsyncQueryHandler_WorkerHandler.hpp"
| [
"dev@lbguilherme.com"
] | dev@lbguilherme.com |
355d927c7e528ce164a9d47f532609aa34704634 | ba9322f7db02d797f6984298d892f74768193dcf | /cdn/src/model/SetForceRedirectConfigResult.cc | 9d4c50fe06eaef4f9801b317dd5cbc0325809678 | [
"Apache-2.0"
] | permissive | sdk-team/aliyun-openapi-cpp-sdk | e27f91996b3bad9226c86f74475b5a1a91806861 | a27fc0000a2b061cd10df09cbe4fff9db4a7c707 | refs/heads/master | 2022-08-21T18:25:53.080066 | 2022-07-25T10:01:05 | 2022-07-25T10:01:05 | 183,356,893 | 3 | 0 | null | 2019-04-25T04:34:29 | 2019-04-25T04:34:28 | null | UTF-8 | C++ | false | false | 1,268 | cc | /*
* Copyright 2009-2017 Alibaba Cloud All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include <alibabacloud/cdn/model/SetForceRedirectConfigResult.h>
#include <json/json.h>
using namespace AlibabaCloud::Cdn;
using namespace AlibabaCloud::Cdn::Model;
SetForceRedirectConfigResult::SetForceRedirectConfigResult() :
ServiceResult()
{}
SetForceRedirectConfigResult::SetForceRedirectConfigResult(const std::string &payload) :
ServiceResult()
{
parse(payload);
}
SetForceRedirectConfigResult::~SetForceRedirectConfigResult()
{}
void SetForceRedirectConfigResult::parse(const std::string &payload)
{
Json::Reader reader;
Json::Value value;
reader.parse(payload, value);
setRequestId(value["RequestId"].asString());
}
| [
"wb-flc318515@alibaba-inc.com"
] | wb-flc318515@alibaba-inc.com |
538814415f9a0f73262aa70b3045b9e842e59093 | a786e6c4992335c22aef477810a0db06622f099d | /Documents/[C++]ASCII_Art/functions.cpp | b12f3da180d7e780d83bd60097c01867b2b58ecc | [] | no_license | helbard/myrepo | 712d1ed924dfde2728576c0e9892c0e64c2e0aa8 | 74e7f76a69e07fd46c94d7ec3e3b03ec4ed4bff5 | refs/heads/master | 2021-01-15T18:09:18.323087 | 2014-09-16T12:51:48 | 2014-09-16T12:51:48 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 351 | cpp | #include "Header.h"
void sleep_for(int time)
{
std::chrono::milliseconds dura( time );
std::this_thread::sleep_for( dura );
}
void print_file(char name[])
{
std::ifstream ifs;
ifs.open(name, std::ifstream::in);
char c = ifs.get();
while(ifs.good()) {
std::cout << c;
c = ifs.get();
}
ifs.close();
}
| [
"markus@linux-4psu.site"
] | markus@linux-4psu.site |
9c50ca3d98b4fecb38916384ca4cb21674fa5ddd | c5e166ca30933851582cc58829960b81182a683f | /src/SegmentationToy.cpp | 8abd0d3a5279eaad3c2c30aa6e404cd077deac02 | [] | no_license | millerhooks/springls2d | abef572d49e6cbe6baac4a02705819ffca48f5ca | 2b10601fd3fffec84b46e7fbf1e7dee903153b85 | refs/heads/master | 2021-01-21T21:06:33.684495 | 2017-05-23T17:05:58 | 2017-05-23T17:05:58 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 13,819 | cpp | /*
* Copyright(C) 2017, Blake C. Lucas, Ph.D. (img.science@gmail.com)
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*/
#include <SegmentationToy.h>
#include <TigerPixels.h>
#include "Alloy.h"
#include "AlloyAnisotropicFilter.h"
using namespace aly;
SegmentationToy::SegmentationToy(int example) :
Application(1600, 800, "Image Segmentation Toy", false), showCenters(true),showContours(true),example(example), lastSimTime(-1){
}
bool SegmentationToy::init(Composite& rootNode) {
cache = std::shared_ptr<SpringlCache2D>(new SpringlCache2D());
ImageRGBA down;
transparency = Float(1.0f);
lineWidth = Float(1.0f);
ReadImageFromFile(getFullPath("images/picnic.png"),down);
DownSample(down,img);
if (example == 0) {
simulation = std::shared_ptr<MultiResolutionLevelSet>(new MultiResolutionLevelSet(cache));
simulation->setCurvature(0.3f);
simulation->setPressure(0.5f);
}
else {
return false;
}
simulation->onUpdate = [this](uint64_t iteration, bool lastIteration) {
if (lastIteration || (int)iteration == timelineSlider->getMaxValue().toInteger()) {
stopButton->setVisible(false);
playButton->setVisible(true);
running = false;
}
AlloyApplicationContext()->addDeferredTask([this]() {
timelineSlider->setUpperValue((int)simulation->getSimulationIteration());
timelineSlider->setTimeValue((int)simulation->getSimulationIteration());
});
};
simulation->setReference(img);
simulation->init();
BorderCompositePtr layout = BorderCompositePtr(new BorderComposite("UI Layout", CoordPX(0.0f, 0.0f), CoordPercent(1.0f, 1.0f), false));
ParameterPanePtr controls = ParameterPanePtr(new ParameterPane("Controls", CoordPX(0.0f, 0.0f), CoordPercent(1.0f, 1.0f)));
BorderCompositePtr controlLayout = BorderCompositePtr(new BorderComposite("Control Layout", CoordPX(0.0f, 0.0f), CoordPercent(1.0f, 1.0f), true));
controls->setAlwaysShowVerticalScrollBar(false);
controls->setScrollEnabled(false);
controls->backgroundColor = MakeColor(getContext()->theme.DARKER);
controls->borderColor = MakeColor(getContext()->theme.DARK);
controls->borderWidth = UnitPX(1.0f);
controlLayout->backgroundColor = MakeColor(getContext()->theme.DARKER);
controlLayout->borderWidth = UnitPX(0.0f);
CompositePtr renderRegion = CompositePtr(new Composite("View", CoordPX(0.0f, 0.0f), CoordPercent(1.0f, 1.0f)));
layout->setWest(controlLayout, UnitPX(400.0f));
controlLayout->setCenter(controls);
layout->setCenter(renderRegion);
CompositePtr infoComposite = CompositePtr(new Composite("Info", CoordPX(0.0f, 0.0f), CoordPercent(1.0f, 1.0f)));
infoComposite->backgroundColor = MakeColor(getContext()->theme.DARKER);
infoComposite->borderColor = MakeColor(getContext()->theme.DARK);
infoComposite->borderWidth = UnitPX(0.0f);
playButton = IconButtonPtr(new IconButton(0xf144, CoordPerPX(0.5f, 0.5f, -35.0f, -35.0f), CoordPX(70.0f, 70.0f)));
stopButton = IconButtonPtr(new IconButton(0xf28d, CoordPerPX(0.5f, 0.5f, -35.0f, -35.0f), CoordPX(70.0f, 70.0f)));
playButton->borderWidth = UnitPX(0.0f);
stopButton->borderWidth = UnitPX(0.0f);
playButton->backgroundColor = MakeColor(getContext()->theme.DARKER);
stopButton->backgroundColor = MakeColor(getContext()->theme.DARKER);
playButton->foregroundColor = MakeColor(0, 0, 0, 0);
stopButton->foregroundColor = MakeColor(0, 0, 0, 0);
playButton->iconColor = MakeColor(getContext()->theme.LIGHTER);
stopButton->iconColor = MakeColor(getContext()->theme.LIGHTER);
playButton->borderColor = MakeColor(getContext()->theme.LIGHTEST);
stopButton->borderColor = MakeColor(getContext()->theme.LIGHTEST);
playButton->onMouseDown = [this](AlloyContext* context, const InputEvent& e) {
if (e.button == GLFW_MOUSE_BUTTON_LEFT) {
stopButton->setVisible(true);
playButton->setVisible(false);
cache->clear();
int maxIteration = (int)std::ceil(simulation->getSimulationDuration() / simulation->getTimeStep());
timelineSlider->setTimeValue(0);
timelineSlider->setMaxValue(maxIteration);
timelineSlider->setVisible(true);
context->addDeferredTask([this]() {
simulation->init();
running = true;
});
return true;
}
return false;
};
stopButton->onMouseDown = [this](AlloyContext* context, const InputEvent& e) {
if (e.button == GLFW_MOUSE_BUTTON_LEFT) {
stopButton->setVisible(false);
playButton->setVisible(true);
running = false;
return true;
}
return false;
};
stopButton->setVisible(false);
infoComposite->add(playButton);
infoComposite->add(stopButton);
controlLayout->setSouth(infoComposite, UnitPX(80.0f));
rootNode.add(layout);
controls->addGroup("Simulation", true);
simulation->setup(controls);
controls->addGroup("Visualization", true);
controls->addNumberField("Transparency", transparency, Float(0.0f), Float(1.0f));
controls->addNumberField("Line Width", lineWidth, Float(0.0f), Float(4.0f));
controls->addCheckBox("Show Centers", showCenters);
controls->addCheckBox("Show Contours", showContours);
timelineSlider = TimelineSliderPtr(
new TimelineSlider("Timeline", CoordPerPX(0.0f, 1.0f, 0.0f, -80.0f), CoordPerPX(1.0f, 0.0f, 0.0f, 80.0f), Integer(0), Integer(0), Integer(0)));
CompositePtr viewRegion = CompositePtr(new Composite("View", CoordPX(0.0f, 0.0f), CoordPerPX(1.0f, 1.0f, 0.0f, -80.0f)));
timelineSlider->backgroundColor = MakeColor(AlloyApplicationContext()->theme.DARKER);
timelineSlider->borderColor = MakeColor(AlloyApplicationContext()->theme.DARK);
timelineSlider->borderWidth = UnitPX(0.0f);
timelineSlider->onChangeEvent = [this](const Number& timeValue, const Number& lowerValue, const Number& upperValue) {
};
timelineSlider->setMajorTick(100);
timelineSlider->setMinorTick(10);
timelineSlider->setLowerValue(0);
timelineSlider->setUpperValue(0);
int maxIteration = (int)std::ceil(simulation->getSimulationDuration() / simulation->getTimeStep());
timelineSlider->setMaxValue(maxIteration);
timelineSlider->setVisible(true);
timelineSlider->setModifiable(false);
renderRegion->add(viewRegion);
renderRegion->add(timelineSlider);
float downScale = std::min((getContext()->getScreenWidth() - 350.0f) / img.width, (getContext()->getScreenHeight() - 80.0f) / img.height);
resizeableRegion = AdjustableCompositePtr(
new AdjustableComposite("Image", CoordPerPX(0.5, 0.5, -img.width * downScale * 0.5f, -img.height * downScale * 0.5f),
CoordPX(img.width * downScale, img.height * downScale)));
Application::addListener(resizeableRegion.get());
ImageGlyphPtr imageGlyph = AlloyApplicationContext()->createImageGlyph(img, false);
overlayGlyph = AlloyApplicationContext()->createImageGlyph(simulation->getContour()->overlay, false);
DrawPtr drawContour = DrawPtr(new Draw("Contour Draw", CoordPX(0.0f, 0.0f), CoordPercent(1.0f, 1.0f), [this](AlloyContext* context, const box2px& bounds) {
int currentTime = timelineSlider->getTimeValue().toInteger();
std::shared_ptr<CacheElement> elem = this->cache->get(currentTime);
Manifold2D* contour;
if (elem.get() != nullptr) {
contour = elem->getContour().get();
}
else {
contour = simulation->getContour();
}
if (currentTime != lastSimTime) {
overlayGlyph->set(contour->overlay, context);
lastSimTime = currentTime;
}
NVGcontext* nvg = context->nvgContext;
nvgLineCap(nvg, NVG_ROUND);
nvgLineJoin(nvg,NVG_ROUND);
float scale = bounds.dimensions.x / (float)img.width;
if (0.05f*scale > 0.5f) {
nvgStrokeWidth(nvg, 0.05f*scale);
nvgStrokeColor(nvg, Color(0.4f, 0.4f, 0.4f, 0.5f));
nvgBeginPath(nvg);
for (int i = 0;i < img.width;i++) {
float2 pt = float2(0.5f + i, 0.5f);
pt.x = pt.x / (float)img.width;
pt.y = pt.y / (float)img.height;
pt = pt*bounds.dimensions + bounds.position;
nvgMoveTo(nvg, pt.x, pt.y);
pt = float2(0.5f + i, 0.5f + img.height - 1.0f);
pt.x = pt.x / (float)img.width;
pt.y = pt.y / (float)img.height;
pt = pt*bounds.dimensions + bounds.position;
nvgLineTo(nvg, pt.x, pt.y);
}
for (int j = 0;j < img.height;j++) {
float2 pt = float2(0.5f, 0.5f + j);
pt.x = pt.x / (float)img.width;
pt.y = pt.y / (float)img.height;
pt = pt*bounds.dimensions + bounds.position;
nvgMoveTo(nvg, pt.x, pt.y);
pt = float2(0.5f + img.width - 1.0f, 0.5f + j);
pt.x = pt.x / (float)img.width;
pt.y = pt.y / (float)img.height;
pt = pt*bounds.dimensions + bounds.position;
nvgLineTo(nvg, pt.x, pt.y);
}
nvgStroke(nvg);
}
NVGpaint imgPaint = nvgImagePattern(nvg, bounds.position.x,
bounds.position.y, bounds.dimensions.x, bounds.dimensions.y, 0.f,
overlayGlyph->handle, transparency.toFloat());
nvgBeginPath(nvg);
nvgFillColor(nvg, Color(COLOR_WHITE));
nvgRect(nvg, bounds.position.x, bounds.position.y, bounds.dimensions.x,
bounds.dimensions.y);
nvgFillPaint(nvg, imgPaint);
nvgFill(nvg);
float circlRadius = 1.0f;
nvgStrokeWidth(nvg,1.0f);
nvgStrokeColor(nvg, Color(0.0, 0.0f, 0.0f, 1.0f));
if (showCenters&&circlRadius*scale > 0.5f) {
const Vector2f& centers = contour->clusterCenters;
const Vector3f& colors = contour->clusterColors;
int L = (int)centers.size();
for (int n = 0;n < L;n++) {
float2 pt = centers[n] + float2(0.5f);
pt.x = pt.x / (float)img.width;
pt.y = pt.y / (float)img.height;
pt = pt*bounds.dimensions + bounds.position;
nvgFillColor(nvg, Color(LABAtoRGBA(float4(colors[n],1.0f))));
nvgBeginPath(nvg);
nvgEllipse(nvg, pt.x, pt.y, circlRadius*scale, circlRadius*scale);
nvgFill(nvg);
nvgStroke(nvg);
}
}
if (showContours&&scale*lineWidth.toFloat()>0.5f) {
nvgStrokeWidth(nvg, scale*lineWidth.toFloat());
nvgStrokeColor(nvg, Color(0.0f, 0.0f, 0.0f, 1.0f));
for (int n = 0;n < (int)contour->indexes.size();n++) {
std::list<uint32_t> curve = contour->indexes[n];
nvgPathWinding(nvg, NVG_CW);
nvgBeginPath(nvg);
bool firstTime = true;
for (uint32_t idx : curve) {
float2 pt = contour->vertexes[idx] + float2(0.5f);
pt.x = pt.x / (float)img.width;
pt.y = pt.y / (float)img.height;
pt = pt*bounds.dimensions + bounds.position;
if (firstTime) {
nvgMoveTo(nvg, pt.x, pt.y);
}
else {
nvgLineTo(nvg, pt.x, pt.y);
}
firstTime = false;
}
nvgStroke(nvg);
}
}
}));
GlyphRegionPtr glyphRegion = GlyphRegionPtr(new GlyphRegion("Image Region",imageGlyph, CoordPX(0.0f, 0.0f), CoordPercent(1.0f, 1.0f)));
glyphRegion->setAspectRule(AspectRule::Unspecified);
glyphRegion->foregroundColor = MakeColor(COLOR_NONE);
glyphRegion->backgroundColor = MakeColor(COLOR_NONE);
glyphRegion->borderColor = MakeColor(COLOR_NONE);
drawContour->onScroll = [this](AlloyContext* context, const InputEvent& event)
{
box2px bounds = resizeableRegion->getBounds(false);
pixel scaling = (pixel)(1 - 0.1f*event.scroll.y);
pixel2 newBounds = bounds.dimensions*scaling;
pixel2 cursor = context->cursorPosition;
pixel2 relPos = (cursor - bounds.position) / bounds.dimensions;
pixel2 newPos = cursor - relPos*newBounds;
bounds.position = newPos;
bounds.dimensions = newBounds;
resizeableRegion->setDragOffset(pixel2(0, 0));
resizeableRegion->position = CoordPX(bounds.position - resizeableRegion->parent->getBoundsPosition());
resizeableRegion->dimensions = CoordPX(bounds.dimensions);
float2 dims = float2(img.dimensions());
cursor = aly::clamp(dims*(event.cursor - bounds.position) / bounds.dimensions, float2(0.0f), dims);
context->requestPack();
return true;
};
resizeableRegion->add(glyphRegion);
resizeableRegion->add(drawContour);
resizeableRegion->setAspectRatio(img.width / (float)img.height);
resizeableRegion->setAspectRule(AspectRule::FixedHeight);
resizeableRegion->setDragEnabled(true);
resizeableRegion->setClampDragToParentBounds(false);
resizeableRegion->borderWidth = UnitPX(2.0f);
resizeableRegion->borderColor = MakeColor(AlloyApplicationContext()->theme.LIGHTER);
glyphRegion->onMouseDown = [=](AlloyContext* context, const InputEvent& e) {
if (e.button == GLFW_MOUSE_BUTTON_LEFT) {
//Bring component to top by setting it to be drawn last.
dynamic_cast<Composite*>(resizeableRegion->parent)->putLast(resizeableRegion);
resizeableRegion->borderColor = MakeColor(AlloyApplicationContext()->theme.LIGHTEST);
}
return false;
};
glyphRegion->onMouseUp = [=](AlloyContext* context, const InputEvent& e) {
resizeableRegion->borderColor = MakeColor(AlloyApplicationContext()->theme.LIGHTER);
return false;
};
viewRegion->backgroundColor = MakeColor(getContext()->theme.DARKER);
viewRegion->borderColor = MakeColor(getContext()->theme.DARK);
viewRegion->borderWidth = UnitPX(1.0f);
viewRegion->add(resizeableRegion);
return true;
}
void SegmentationToy::draw(AlloyContext* context) {
if (running) {
if (!simulation->step()) {
running = false;
}
}
}
| [
"blake.c.lucas@intel.com"
] | blake.c.lucas@intel.com |
e7ea6f9a0c53bb33d7d67b0b4eec4f0bedb5a79f | b111b77f2729c030ce78096ea2273691b9b63749 | /perf-native-large/project540/src/component531/cpp/lib1.cpp | ac3ac8c8bf710412d0b0eb8fa43a3a8e26d2e7e6 | [] | no_license | WeilerWebServices/Gradle | a1a55bdb0dd39240787adf9241289e52f593ccc1 | 6ab6192439f891256a10d9b60f3073cab110b2be | refs/heads/master | 2023-01-19T16:48:09.415529 | 2020-11-28T13:28:40 | 2020-11-28T13:28:40 | 256,249,773 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 118 | cpp | #include <stdio.h>
#include <component531/lib1.h>
int component531_1 () {
printf("Hello world!\n");
return 0;
}
| [
"nateweiler84@gmail.com"
] | nateweiler84@gmail.com |
bef86aeb6fbdee93bf474df67346aa384a389abf | 9f2b07eb0e9467e17448de413162a14f8207e5d0 | /tests/manual/2d/powerlaw/init_state_2d.spatialdb | e7b5614fe634080afb9d6f15f494f54e0134112f | [
"MIT"
] | permissive | fjiaqi/pylith | 2aa3f7fdbd18f1205a5023f8c6c4182ff533c195 | 67bfe2e75e0a20bb55c93eb98bef7a9b3694523a | refs/heads/main | 2023-09-04T19:24:51.783273 | 2021-10-19T17:01:41 | 2021-10-19T17:01:41 | 373,739,198 | 0 | 0 | MIT | 2021-06-04T06:12:08 | 2021-06-04T06:12:07 | null | UTF-8 | C++ | false | false | 1,082 | spatialdb | // -*- C++ -*- (tell Emacs to use C++ mode for syntax highlighting)
//
// This spatial database specifies the initial state variables.
//
#SPATIAL.ascii 1
SimpleDB {
num-values = 12
// names of the stress components
value-names = stress-zz-initial total-strain-xx total-strain-yy total-strain-xy viscous-strain-xx viscous-strain-yy viscous-strain-zz viscous-strain-xy stress4-xx stress4-yy stress4-zz stress4-xy
value-units = Pa None None None None None None None Pa Pa Pa Pa
num-locs = 1
data-dim = 0
space-dim = 2
cs-data = cartesian {
to-meters = 1.0
space-dim = 2
}
}
// Columns are
// (1) x coordinate (m)
// (2) y coordinate (m)
// (3) stress-zz-initial (Pa)
// (4) total-strain-xx (None)
// (5) total-strain-yy (None)
// (6) total-strain-xy (None)
// (7) viscous-strain-xx (None)
// (8) viscous-strain-yy (None)
// (9) viscous-strain-zz (None)
// (10) viscous-strain-xy (None)
// (11) stress4-xx (None)
// (12) stress4-yy (None)
// (13) stress4-zz (None)
// (14) stress4-xy (None)
0.0 0.0 -1.5e8 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
| [
"C.Williams at gns.cri.nz"
] | C.Williams at gns.cri.nz |
e3694061c2bb61be034593fe147a2247e58d21c2 | 87125b07caa7e41c986584facc3378052b2fc8dc | /emscripten-fastcomp-1.13.0/build/lib/Target/X86/Release/X86GenDisassemblerTables.inc.tmp | 4374dedca3fe1242c3b06076f6b8889d30269543 | [
"NCSA"
] | permissive | Xoftware-GoodGame/emscripten | 47d2138fc250f436d109e8ed609e6591787a9431 | 2b69aa2bd59fd644d4dd38f405f1c5a08562b9d7 | refs/heads/master | 2020-07-31T00:23:37.906480 | 2016-11-13T09:34:46 | 2016-11-13T09:34:46 | 73,617,319 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,640,561 | tmp | /*===- TableGen'erated file -------------------------------------*- C++ -*-===*\
|* *|
|* * X86 Disassembler *|
|* *|
|* Automatically generated file, do not edit! *|
|* *|
\*===----------------------------------------------------------------------===*/
static const struct OperandSpecifier x86OperandSets[][5] = {
{ /* 0 */
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 1 */
{ ENCODING_IB, TYPE_IMM8 },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 2 */
{ ENCODING_Iv, TYPE_IMMv },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 3 */
{ ENCODING_RM, TYPE_Mv },
{ ENCODING_Iv, TYPE_IMMv },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 4 */
{ ENCODING_RM, TYPE_Mv },
{ ENCODING_IB, TYPE_IMMv },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 5 */
{ ENCODING_RM, TYPE_Mv },
{ ENCODING_REG, TYPE_Rv },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 6 */
{ ENCODING_DUP, TYPE_DUP1 },
{ ENCODING_RM, TYPE_Rv },
{ ENCODING_Iv, TYPE_IMMv },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 7 */
{ ENCODING_DUP, TYPE_DUP1 },
{ ENCODING_RM, TYPE_Rv },
{ ENCODING_IB, TYPE_IMMv },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 8 */
{ ENCODING_DUP, TYPE_DUP1 },
{ ENCODING_REG, TYPE_Rv },
{ ENCODING_RM, TYPE_Mv },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 9 */
{ ENCODING_DUP, TYPE_DUP1 },
{ ENCODING_RM, TYPE_Rv },
{ ENCODING_REG, TYPE_Rv },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 10 */
{ ENCODING_DUP, TYPE_DUP1 },
{ ENCODING_REG, TYPE_Rv },
{ ENCODING_RM, TYPE_Rv },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 11 */
{ ENCODING_RM, TYPE_Mv },
{ ENCODING_IB, TYPE_IMM32 },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 12 */
{ ENCODING_DUP, TYPE_DUP1 },
{ ENCODING_RM, TYPE_Rv },
{ ENCODING_IB, TYPE_IMM32 },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 13 */
{ ENCODING_ID, TYPE_IMM64 },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 14 */
{ ENCODING_RM, TYPE_Mv },
{ ENCODING_ID, TYPE_IMM64 },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 15 */
{ ENCODING_RM, TYPE_Mv },
{ ENCODING_IB, TYPE_IMM64 },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 16 */
{ ENCODING_RM, TYPE_Mv },
{ ENCODING_REG, TYPE_R64 },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 17 */
{ ENCODING_DUP, TYPE_DUP1 },
{ ENCODING_RM, TYPE_R64 },
{ ENCODING_ID, TYPE_IMM64 },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 18 */
{ ENCODING_DUP, TYPE_DUP1 },
{ ENCODING_RM, TYPE_R64 },
{ ENCODING_IB, TYPE_IMM64 },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 19 */
{ ENCODING_DUP, TYPE_DUP1 },
{ ENCODING_REG, TYPE_R64 },
{ ENCODING_RM, TYPE_Mv },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 20 */
{ ENCODING_DUP, TYPE_DUP1 },
{ ENCODING_RM, TYPE_R64 },
{ ENCODING_REG, TYPE_R64 },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 21 */
{ ENCODING_DUP, TYPE_DUP1 },
{ ENCODING_REG, TYPE_R64 },
{ ENCODING_RM, TYPE_R64 },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 22 */
{ ENCODING_RM, TYPE_M8 },
{ ENCODING_IB, TYPE_IMM8 },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 23 */
{ ENCODING_RM, TYPE_M8 },
{ ENCODING_REG, TYPE_R8 },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 24 */
{ ENCODING_DUP, TYPE_DUP1 },
{ ENCODING_RM, TYPE_R8 },
{ ENCODING_IB, TYPE_IMM8 },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 25 */
{ ENCODING_DUP, TYPE_DUP1 },
{ ENCODING_REG, TYPE_R8 },
{ ENCODING_RM, TYPE_M8 },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 26 */
{ ENCODING_DUP, TYPE_DUP1 },
{ ENCODING_RM, TYPE_R8 },
{ ENCODING_REG, TYPE_R8 },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 27 */
{ ENCODING_DUP, TYPE_DUP1 },
{ ENCODING_REG, TYPE_R8 },
{ ENCODING_RM, TYPE_R8 },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 28 */
{ ENCODING_REG, TYPE_R32 },
{ ENCODING_RM, TYPE_Mv },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 29 */
{ ENCODING_REG, TYPE_R32 },
{ ENCODING_RM, TYPE_R32 },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 30 */
{ ENCODING_REG, TYPE_R64 },
{ ENCODING_RM, TYPE_Mv },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 31 */
{ ENCODING_REG, TYPE_R64 },
{ ENCODING_RM, TYPE_R64 },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 32 */
{ ENCODING_DUP, TYPE_DUP1 },
{ ENCODING_REG, TYPE_XMM128 },
{ ENCODING_RM, TYPE_M128 },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 33 */
{ ENCODING_DUP, TYPE_DUP1 },
{ ENCODING_REG, TYPE_XMM128 },
{ ENCODING_RM, TYPE_XMM128 },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 34 */
{ ENCODING_DUP, TYPE_DUP1 },
{ ENCODING_REG, TYPE_XMM64 },
{ ENCODING_RM, TYPE_M64FP },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 35 */
{ ENCODING_DUP, TYPE_DUP1 },
{ ENCODING_REG, TYPE_XMM64 },
{ ENCODING_RM, TYPE_XMM64 },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 36 */
{ ENCODING_DUP, TYPE_DUP1 },
{ ENCODING_REG, TYPE_XMM32 },
{ ENCODING_RM, TYPE_M32FP },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 37 */
{ ENCODING_DUP, TYPE_DUP1 },
{ ENCODING_REG, TYPE_XMM32 },
{ ENCODING_RM, TYPE_XMM32 },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 38 */
{ ENCODING_RM, TYPE_M32FP },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 39 */
{ ENCODING_RM, TYPE_M64FP },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 40 */
{ ENCODING_RM, TYPE_Mv },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 41 */
{ ENCODING_I, TYPE_ST },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 42 */
{ ENCODING_REG, TYPE_Rv },
{ ENCODING_RM, TYPE_Mv },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 43 */
{ ENCODING_REG, TYPE_Rv },
{ ENCODING_RM, TYPE_Rv },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 44 */
{ ENCODING_REG, TYPE_XMM128 },
{ ENCODING_RM, TYPE_M128 },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 45 */
{ ENCODING_REG, TYPE_XMM128 },
{ ENCODING_RM, TYPE_XMM128 },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 46 */
{ ENCODING_REG, TYPE_XMM128 },
{ ENCODING_RM, TYPE_M128 },
{ ENCODING_IB, TYPE_IMM8 },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 47 */
{ ENCODING_REG, TYPE_XMM128 },
{ ENCODING_RM, TYPE_XMM128 },
{ ENCODING_IB, TYPE_IMM8 },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 48 */
{ ENCODING_REG, TYPE_Rv },
{ ENCODING_VVVV, TYPE_Rv },
{ ENCODING_RM, TYPE_Mv },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 49 */
{ ENCODING_REG, TYPE_Rv },
{ ENCODING_VVVV, TYPE_Rv },
{ ENCODING_RM, TYPE_Rv },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 50 */
{ ENCODING_REG, TYPE_R64 },
{ ENCODING_VVVV, TYPE_R64 },
{ ENCODING_RM, TYPE_Mv },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 51 */
{ ENCODING_REG, TYPE_R64 },
{ ENCODING_VVVV, TYPE_R64 },
{ ENCODING_RM, TYPE_R64 },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 52 */
{ ENCODING_RM, TYPE_Mv },
{ ENCODING_REG, TYPE_R16 },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 53 */
{ ENCODING_RM, TYPE_R16 },
{ ENCODING_REG, TYPE_R16 },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 54 */
{ ENCODING_REG, TYPE_Rv },
{ ENCODING_RM, TYPE_Mv },
{ ENCODING_VVVV, TYPE_Rv },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 55 */
{ ENCODING_REG, TYPE_Rv },
{ ENCODING_RM, TYPE_Rv },
{ ENCODING_VVVV, TYPE_Rv },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 56 */
{ ENCODING_REG, TYPE_R64 },
{ ENCODING_RM, TYPE_Mv },
{ ENCODING_VVVV, TYPE_R64 },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 57 */
{ ENCODING_REG, TYPE_R64 },
{ ENCODING_RM, TYPE_R64 },
{ ENCODING_VVVV, TYPE_R64 },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 58 */
{ ENCODING_DUP, TYPE_DUP1 },
{ ENCODING_REG, TYPE_XMM128 },
{ ENCODING_RM, TYPE_M128 },
{ ENCODING_IB, TYPE_IMM32 },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 59 */
{ ENCODING_DUP, TYPE_DUP1 },
{ ENCODING_REG, TYPE_XMM128 },
{ ENCODING_RM, TYPE_XMM128 },
{ ENCODING_IB, TYPE_IMM32 },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 60 */
{ ENCODING_VVVV, TYPE_Rv },
{ ENCODING_RM, TYPE_Mv },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 61 */
{ ENCODING_VVVV, TYPE_Rv },
{ ENCODING_RM, TYPE_Rv },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 62 */
{ ENCODING_VVVV, TYPE_R64 },
{ ENCODING_RM, TYPE_Mv },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 63 */
{ ENCODING_VVVV, TYPE_R64 },
{ ENCODING_RM, TYPE_R64 },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 64 */
{ ENCODING_DUP, TYPE_DUP1 },
{ ENCODING_Rv, TYPE_Rv },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 65 */
{ ENCODING_DUP, TYPE_DUP1 },
{ ENCODING_RO, TYPE_R64 },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 66 */
{ ENCODING_RM, TYPE_Rv },
{ ENCODING_IB, TYPE_IMMv },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 67 */
{ ENCODING_RM, TYPE_Rv },
{ ENCODING_REG, TYPE_Rv },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 68 */
{ ENCODING_RM, TYPE_Rv },
{ ENCODING_IB, TYPE_IMM32 },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 69 */
{ ENCODING_RM, TYPE_R64 },
{ ENCODING_IB, TYPE_IMM64 },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 70 */
{ ENCODING_RM, TYPE_R64 },
{ ENCODING_REG, TYPE_R64 },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 71 */
{ ENCODING_RM, TYPE_Rv },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 72 */
{ ENCODING_ID, TYPE_REL64 },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 73 */
{ ENCODING_RM, TYPE_R64 },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 74 */
{ ENCODING_ID, TYPE_REL32 },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 75 */
{ ENCODING_RM, TYPE_M8 },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 76 */
{ ENCODING_RM, TYPE_Rv },
{ ENCODING_Iv, TYPE_IMMv },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 77 */
{ ENCODING_RM, TYPE_R64 },
{ ENCODING_ID, TYPE_IMM64 },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 78 */
{ ENCODING_RM, TYPE_R8 },
{ ENCODING_IB, TYPE_IMM8 },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 79 */
{ ENCODING_REG, TYPE_R8 },
{ ENCODING_RM, TYPE_M8 },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 80 */
{ ENCODING_RM, TYPE_R8 },
{ ENCODING_REG, TYPE_R8 },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 81 */
{ ENCODING_REG, TYPE_R8 },
{ ENCODING_RM, TYPE_R8 },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 82 */
{ ENCODING_DUP, TYPE_DUP1 },
{ ENCODING_REG, TYPE_XMM128 },
{ ENCODING_RM, TYPE_M128 },
{ ENCODING_IB, TYPE_IMM3 },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 83 */
{ ENCODING_DUP, TYPE_DUP1 },
{ ENCODING_REG, TYPE_XMM128 },
{ ENCODING_RM, TYPE_M128 },
{ ENCODING_IB, TYPE_IMM8 },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 84 */
{ ENCODING_DUP, TYPE_DUP1 },
{ ENCODING_REG, TYPE_XMM128 },
{ ENCODING_RM, TYPE_XMM128 },
{ ENCODING_IB, TYPE_IMM3 },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 85 */
{ ENCODING_DUP, TYPE_DUP1 },
{ ENCODING_REG, TYPE_XMM128 },
{ ENCODING_RM, TYPE_XMM128 },
{ ENCODING_IB, TYPE_IMM8 },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 86 */
{ ENCODING_DUP, TYPE_DUP1 },
{ ENCODING_REG, TYPE_XMM64 },
{ ENCODING_RM, TYPE_M64FP },
{ ENCODING_IB, TYPE_IMM3 },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 87 */
{ ENCODING_DUP, TYPE_DUP1 },
{ ENCODING_REG, TYPE_XMM64 },
{ ENCODING_RM, TYPE_M64FP },
{ ENCODING_IB, TYPE_IMM8 },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 88 */
{ ENCODING_DUP, TYPE_DUP1 },
{ ENCODING_REG, TYPE_XMM64 },
{ ENCODING_RM, TYPE_XMM64 },
{ ENCODING_IB, TYPE_IMM3 },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 89 */
{ ENCODING_DUP, TYPE_DUP1 },
{ ENCODING_REG, TYPE_XMM64 },
{ ENCODING_RM, TYPE_XMM64 },
{ ENCODING_IB, TYPE_IMM8 },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 90 */
{ ENCODING_DUP, TYPE_DUP1 },
{ ENCODING_REG, TYPE_XMM32 },
{ ENCODING_RM, TYPE_M32FP },
{ ENCODING_IB, TYPE_IMM3 },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 91 */
{ ENCODING_DUP, TYPE_DUP1 },
{ ENCODING_REG, TYPE_XMM32 },
{ ENCODING_RM, TYPE_M32FP },
{ ENCODING_IB, TYPE_IMM8 },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 92 */
{ ENCODING_DUP, TYPE_DUP1 },
{ ENCODING_REG, TYPE_XMM32 },
{ ENCODING_RM, TYPE_XMM32 },
{ ENCODING_IB, TYPE_IMM3 },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 93 */
{ ENCODING_DUP, TYPE_DUP1 },
{ ENCODING_REG, TYPE_XMM32 },
{ ENCODING_RM, TYPE_XMM32 },
{ ENCODING_IB, TYPE_IMM8 },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 94 */
{ ENCODING_RM, TYPE_M128 },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 95 */
{ ENCODING_DUP, TYPE_DUP1 },
{ ENCODING_REG, TYPE_R32 },
{ ENCODING_RM, TYPE_Mv },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 96 */
{ ENCODING_DUP, TYPE_DUP1 },
{ ENCODING_REG, TYPE_R32 },
{ ENCODING_RM, TYPE_M8 },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 97 */
{ ENCODING_DUP, TYPE_DUP1 },
{ ENCODING_REG, TYPE_R32 },
{ ENCODING_RM, TYPE_R16 },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 98 */
{ ENCODING_DUP, TYPE_DUP1 },
{ ENCODING_REG, TYPE_R32 },
{ ENCODING_RM, TYPE_R32 },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 99 */
{ ENCODING_DUP, TYPE_DUP1 },
{ ENCODING_REG, TYPE_R32 },
{ ENCODING_RM, TYPE_R8 },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 100 */
{ ENCODING_DUP, TYPE_DUP1 },
{ ENCODING_REG, TYPE_R64 },
{ ENCODING_RM, TYPE_M8 },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 101 */
{ ENCODING_DUP, TYPE_DUP1 },
{ ENCODING_REG, TYPE_R64 },
{ ENCODING_RM, TYPE_R8 },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 102 */
{ ENCODING_REG, TYPE_XMM128 },
{ ENCODING_RM, TYPE_Mv },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 103 */
{ ENCODING_REG, TYPE_XMM128 },
{ ENCODING_RM, TYPE_M64FP },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 104 */
{ ENCODING_REG, TYPE_R64 },
{ ENCODING_RM, TYPE_M64FP },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 105 */
{ ENCODING_REG, TYPE_R64 },
{ ENCODING_RM, TYPE_XMM128 },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 106 */
{ ENCODING_REG, TYPE_Rv },
{ ENCODING_RM, TYPE_M64FP },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 107 */
{ ENCODING_REG, TYPE_Rv },
{ ENCODING_RM, TYPE_XMM128 },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 108 */
{ ENCODING_REG, TYPE_XMM32 },
{ ENCODING_RM, TYPE_M64FP },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 109 */
{ ENCODING_REG, TYPE_XMM32 },
{ ENCODING_RM, TYPE_XMM64 },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 110 */
{ ENCODING_REG, TYPE_XMM64 },
{ ENCODING_RM, TYPE_Mv },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 111 */
{ ENCODING_REG, TYPE_XMM64 },
{ ENCODING_RM, TYPE_R64 },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 112 */
{ ENCODING_REG, TYPE_XMM64 },
{ ENCODING_RM, TYPE_Rv },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 113 */
{ ENCODING_REG, TYPE_XMM32 },
{ ENCODING_RM, TYPE_Mv },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 114 */
{ ENCODING_REG, TYPE_XMM32 },
{ ENCODING_RM, TYPE_R64 },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 115 */
{ ENCODING_REG, TYPE_XMM32 },
{ ENCODING_RM, TYPE_Rv },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 116 */
{ ENCODING_REG, TYPE_XMM64 },
{ ENCODING_RM, TYPE_M32FP },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 117 */
{ ENCODING_REG, TYPE_XMM64 },
{ ENCODING_RM, TYPE_XMM32 },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 118 */
{ ENCODING_REG, TYPE_R64 },
{ ENCODING_RM, TYPE_M32FP },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 119 */
{ ENCODING_REG, TYPE_Rv },
{ ENCODING_RM, TYPE_M32FP },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 120 */
{ ENCODING_REG, TYPE_R64 },
{ ENCODING_RM, TYPE_XMM64 },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 121 */
{ ENCODING_REG, TYPE_Rv },
{ ENCODING_RM, TYPE_XMM64 },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 122 */
{ ENCODING_REG, TYPE_R64 },
{ ENCODING_RM, TYPE_XMM32 },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 123 */
{ ENCODING_REG, TYPE_Rv },
{ ENCODING_RM, TYPE_XMM32 },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 124 */
{ ENCODING_DUP, TYPE_DUP1 },
{ ENCODING_RM, TYPE_Rv },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 125 */
{ ENCODING_DUP, TYPE_DUP1 },
{ ENCODING_RM, TYPE_R64 },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 126 */
{ ENCODING_DUP, TYPE_DUP1 },
{ ENCODING_RM, TYPE_R8 },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 127 */
{ ENCODING_RM, TYPE_R8 },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 128 */
{ ENCODING_IW, TYPE_IMM16 },
{ ENCODING_IB, TYPE_IMM8 },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 129 */
{ ENCODING_RM, TYPE_M32FP },
{ ENCODING_REG, TYPE_XMM128 },
{ ENCODING_IB, TYPE_IMM32 },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 130 */
{ ENCODING_RM, TYPE_R32 },
{ ENCODING_REG, TYPE_XMM128 },
{ ENCODING_IB, TYPE_IMM32 },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 131 */
{ ENCODING_DUP, TYPE_DUP1 },
{ ENCODING_RM, TYPE_XMM128 },
{ ENCODING_IB, TYPE_IMM8 },
{ ENCODING_IB, TYPE_IMM8 },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 132 */
{ ENCODING_Iv, TYPE_IMMv },
{ ENCODING_Iv, TYPE_IMMv },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 133 */
{ ENCODING_RM, TYPE_M1616 },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 134 */
{ ENCODING_Iv, TYPE_IMMv },
{ ENCODING_IW, TYPE_IMM16 },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 135 */
{ ENCODING_RM, TYPE_M1632 },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 136 */
{ ENCODING_RM, TYPE_M1664 },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 137 */
{ ENCODING_RM, TYPE_M512 },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 138 */
{ ENCODING_DUP, TYPE_DUP1 },
{ ENCODING_REG, TYPE_XMM64 },
{ ENCODING_RM, TYPE_M128 },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 139 */
{ ENCODING_DUP, TYPE_DUP1 },
{ ENCODING_REG, TYPE_XMM32 },
{ ENCODING_RM, TYPE_M128 },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 140 */
{ ENCODING_REG, TYPE_XMM64 },
{ ENCODING_RM, TYPE_M128 },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 141 */
{ ENCODING_REG, TYPE_XMM64 },
{ ENCODING_RM, TYPE_XMM64 },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 142 */
{ ENCODING_REG, TYPE_XMM32 },
{ ENCODING_RM, TYPE_M128 },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 143 */
{ ENCODING_REG, TYPE_XMM32 },
{ ENCODING_RM, TYPE_XMM32 },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 144 */
{ ENCODING_REG, TYPE_Rv },
{ ENCODING_RM, TYPE_Mv },
{ ENCODING_Iv, TYPE_IMMv },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 145 */
{ ENCODING_REG, TYPE_Rv },
{ ENCODING_RM, TYPE_Mv },
{ ENCODING_IB, TYPE_IMMv },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 146 */
{ ENCODING_REG, TYPE_Rv },
{ ENCODING_RM, TYPE_Rv },
{ ENCODING_Iv, TYPE_IMMv },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 147 */
{ ENCODING_REG, TYPE_Rv },
{ ENCODING_RM, TYPE_Rv },
{ ENCODING_IB, TYPE_IMMv },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 148 */
{ ENCODING_REG, TYPE_Rv },
{ ENCODING_RM, TYPE_Mv },
{ ENCODING_IB, TYPE_IMM32 },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 149 */
{ ENCODING_REG, TYPE_Rv },
{ ENCODING_RM, TYPE_Rv },
{ ENCODING_IB, TYPE_IMM32 },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 150 */
{ ENCODING_REG, TYPE_R64 },
{ ENCODING_RM, TYPE_Mv },
{ ENCODING_ID, TYPE_IMM64 },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 151 */
{ ENCODING_REG, TYPE_R64 },
{ ENCODING_RM, TYPE_Mv },
{ ENCODING_IB, TYPE_IMM64 },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 152 */
{ ENCODING_REG, TYPE_R64 },
{ ENCODING_RM, TYPE_R64 },
{ ENCODING_ID, TYPE_IMM64 },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 153 */
{ ENCODING_REG, TYPE_R64 },
{ ENCODING_RM, TYPE_R64 },
{ ENCODING_IB, TYPE_IMM64 },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 154 */
{ ENCODING_DUP, TYPE_DUP1 },
{ ENCODING_REG, TYPE_XMM128 },
{ ENCODING_RM, TYPE_M32FP },
{ ENCODING_IB, TYPE_IMM32 },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 155 */
{ ENCODING_DUP, TYPE_DUP1 },
{ ENCODING_REG, TYPE_XMM128 },
{ ENCODING_RM, TYPE_XMM128 },
{ ENCODING_IB, TYPE_IMM8 },
{ ENCODING_IB, TYPE_IMM8 },
},
{ /* 156 */
{ ENCODING_REG, TYPE_R32 },
{ ENCODING_RM, TYPE_M128 },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 157 */
{ ENCODING_REG, TYPE_R64 },
{ ENCODING_RM, TYPE_M128 },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 158 */
{ ENCODING_IB, TYPE_REL8 },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 159 */
{ ENCODING_Iv, TYPE_RELv },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 160 */
{ ENCODING_REG, TYPE_R64 },
{ ENCODING_RM, TYPE_R32 },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 161 */
{ ENCODING_REG, TYPE_Rv },
{ ENCODING_RM, TYPE_M1616 },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 162 */
{ ENCODING_REG, TYPE_Rv },
{ ENCODING_RM, TYPE_M1632 },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 163 */
{ ENCODING_RM, TYPE_M80FP },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 164 */
{ ENCODING_REG, TYPE_Rv },
{ ENCODING_RM, TYPE_LEA },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 165 */
{ ENCODING_REG, TYPE_R64 },
{ ENCODING_RM, TYPE_LEA },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 166 */
{ ENCODING_REG, TYPE_R64 },
{ ENCODING_RM, TYPE_M1664 },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 167 */
{ ENCODING_RM, TYPE_R16 },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 168 */
{ ENCODING_IW, TYPE_IMM16 },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 169 */
{ ENCODING_REG, TYPE_MM64 },
{ ENCODING_RM, TYPE_M128 },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 170 */
{ ENCODING_REG, TYPE_MM64 },
{ ENCODING_RM, TYPE_XMM128 },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 171 */
{ ENCODING_REG, TYPE_XMM128 },
{ ENCODING_RM, TYPE_MM64 },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 172 */
{ ENCODING_DUP, TYPE_DUP1 },
{ ENCODING_REG, TYPE_XMM128 },
{ ENCODING_RM, TYPE_Mv },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 173 */
{ ENCODING_DUP, TYPE_DUP1 },
{ ENCODING_REG, TYPE_XMM128 },
{ ENCODING_RM, TYPE_MM64 },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 174 */
{ ENCODING_REG, TYPE_MM64 },
{ ENCODING_RM, TYPE_M64FP },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 175 */
{ ENCODING_REG, TYPE_MM64 },
{ ENCODING_RM, TYPE_MM64 },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 176 */
{ ENCODING_RM, TYPE_R64 },
{ ENCODING_REG, TYPE_MM64 },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 177 */
{ ENCODING_RM, TYPE_Rv },
{ ENCODING_REG, TYPE_MM64 },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 178 */
{ ENCODING_RM, TYPE_Mv },
{ ENCODING_REG, TYPE_MM64 },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 179 */
{ ENCODING_REG, TYPE_MM64 },
{ ENCODING_RM, TYPE_Mv },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 180 */
{ ENCODING_REG, TYPE_MM64 },
{ ENCODING_RM, TYPE_Rv },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 181 */
{ ENCODING_REG, TYPE_MM64 },
{ ENCODING_RM, TYPE_R64 },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 182 */
{ ENCODING_DUP, TYPE_DUP1 },
{ ENCODING_REG, TYPE_MM64 },
{ ENCODING_RM, TYPE_Mv },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 183 */
{ ENCODING_DUP, TYPE_DUP1 },
{ ENCODING_REG, TYPE_MM64 },
{ ENCODING_RM, TYPE_MM64 },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 184 */
{ ENCODING_DUP, TYPE_DUP1 },
{ ENCODING_REG, TYPE_MM64 },
{ ENCODING_RM, TYPE_Mv },
{ ENCODING_IB, TYPE_IMM8 },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 185 */
{ ENCODING_DUP, TYPE_DUP1 },
{ ENCODING_REG, TYPE_MM64 },
{ ENCODING_RM, TYPE_MM64 },
{ ENCODING_IB, TYPE_IMM8 },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 186 */
{ ENCODING_REG, TYPE_Rv },
{ ENCODING_RM, TYPE_MM64 },
{ ENCODING_IB, TYPE_IMM32 },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 187 */
{ ENCODING_DUP, TYPE_DUP1 },
{ ENCODING_REG, TYPE_MM64 },
{ ENCODING_RM, TYPE_Mv },
{ ENCODING_IB, TYPE_IMM32 },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 188 */
{ ENCODING_DUP, TYPE_DUP1 },
{ ENCODING_REG, TYPE_MM64 },
{ ENCODING_RM, TYPE_Rv },
{ ENCODING_IB, TYPE_IMM32 },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 189 */
{ ENCODING_REG, TYPE_Rv },
{ ENCODING_RM, TYPE_MM64 },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 190 */
{ ENCODING_REG, TYPE_MM64 },
{ ENCODING_RM, TYPE_Mv },
{ ENCODING_IB, TYPE_IMM8 },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 191 */
{ ENCODING_REG, TYPE_MM64 },
{ ENCODING_RM, TYPE_MM64 },
{ ENCODING_IB, TYPE_IMM8 },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 192 */
{ ENCODING_DUP, TYPE_DUP1 },
{ ENCODING_RM, TYPE_MM64 },
{ ENCODING_IB, TYPE_IMM32 },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 193 */
{ ENCODING_Ia, TYPE_MOFFS16 },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 194 */
{ ENCODING_RM, TYPE_Mv },
{ ENCODING_REG, TYPE_SEGMENTREG },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 195 */
{ ENCODING_Rv, TYPE_Rv },
{ ENCODING_Iv, TYPE_IMMv },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 196 */
{ ENCODING_RM, TYPE_Rv },
{ ENCODING_REG, TYPE_SEGMENTREG },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 197 */
{ ENCODING_REG, TYPE_SEGMENTREG },
{ ENCODING_RM, TYPE_Mv },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 198 */
{ ENCODING_REG, TYPE_SEGMENTREG },
{ ENCODING_RM, TYPE_Rv },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 199 */
{ ENCODING_Ia, TYPE_MOFFS32 },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 200 */
{ ENCODING_REG, TYPE_CONTROLREG },
{ ENCODING_RM, TYPE_Rv },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 201 */
{ ENCODING_REG, TYPE_DEBUGREG },
{ ENCODING_RM, TYPE_Rv },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 202 */
{ ENCODING_RM, TYPE_Rv },
{ ENCODING_REG, TYPE_CONTROLREG },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 203 */
{ ENCODING_RM, TYPE_Rv },
{ ENCODING_REG, TYPE_DEBUGREG },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 204 */
{ ENCODING_REG, TYPE_CONTROLREG },
{ ENCODING_RM, TYPE_R64 },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 205 */
{ ENCODING_REG, TYPE_DEBUGREG },
{ ENCODING_RM, TYPE_R64 },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 206 */
{ ENCODING_RM, TYPE_R64 },
{ ENCODING_REG, TYPE_CONTROLREG },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 207 */
{ ENCODING_RM, TYPE_R64 },
{ ENCODING_REG, TYPE_DEBUGREG },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 208 */
{ ENCODING_RO, TYPE_R64 },
{ ENCODING_IO, TYPE_IMMv },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 209 */
{ ENCODING_RM, TYPE_R64 },
{ ENCODING_REG, TYPE_SEGMENTREG },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 210 */
{ ENCODING_REG, TYPE_SEGMENTREG },
{ ENCODING_RM, TYPE_R64 },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 211 */
{ ENCODING_REG, TYPE_XMM128 },
{ ENCODING_RM, TYPE_R64 },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 212 */
{ ENCODING_Ia, TYPE_MOFFS8 },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 213 */
{ ENCODING_RB, TYPE_R8 },
{ ENCODING_IB, TYPE_IMM8 },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 214 */
{ ENCODING_RM, TYPE_M128 },
{ ENCODING_REG, TYPE_XMM128 },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 215 */
{ ENCODING_RM, TYPE_XMM128 },
{ ENCODING_REG, TYPE_XMM128 },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 216 */
{ ENCODING_REG, TYPE_XMM128 },
{ ENCODING_RM, TYPE_R32 },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 217 */
{ ENCODING_RM, TYPE_M64FP },
{ ENCODING_REG, TYPE_XMM128 },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 218 */
{ ENCODING_DUP, TYPE_DUP1 },
{ ENCODING_REG, TYPE_XMM128 },
{ ENCODING_RM, TYPE_M64FP },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 219 */
{ ENCODING_RM, TYPE_Mv },
{ ENCODING_REG, TYPE_XMM128 },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 220 */
{ ENCODING_REG, TYPE_R32 },
{ ENCODING_RM, TYPE_XMM128 },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 221 */
{ ENCODING_RM, TYPE_M32FP },
{ ENCODING_REG, TYPE_XMM128 },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 222 */
{ ENCODING_RM, TYPE_R32 },
{ ENCODING_REG, TYPE_XMM128 },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 223 */
{ ENCODING_RM, TYPE_R64 },
{ ENCODING_REG, TYPE_XMM128 },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 224 */
{ ENCODING_RM, TYPE_M64FP },
{ ENCODING_REG, TYPE_XMM64 },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 225 */
{ ENCODING_REG, TYPE_XMM64 },
{ ENCODING_RM, TYPE_M64FP },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 226 */
{ ENCODING_DUP, TYPE_DUP1 },
{ ENCODING_REG, TYPE_XMM128 },
{ ENCODING_RM, TYPE_XMM64 },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 227 */
{ ENCODING_DUP, TYPE_DUP1 },
{ ENCODING_RM, TYPE_XMM128 },
{ ENCODING_REG, TYPE_XMM64 },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 228 */
{ ENCODING_RM, TYPE_M32FP },
{ ENCODING_REG, TYPE_XMM32 },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 229 */
{ ENCODING_REG, TYPE_XMM32 },
{ ENCODING_RM, TYPE_M32FP },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 230 */
{ ENCODING_DUP, TYPE_DUP1 },
{ ENCODING_REG, TYPE_XMM128 },
{ ENCODING_RM, TYPE_XMM32 },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 231 */
{ ENCODING_DUP, TYPE_DUP1 },
{ ENCODING_RM, TYPE_XMM128 },
{ ENCODING_REG, TYPE_XMM32 },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 232 */
{ ENCODING_REG, TYPE_Rv },
{ ENCODING_RM, TYPE_M8 },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 233 */
{ ENCODING_REG, TYPE_Rv },
{ ENCODING_RM, TYPE_R8 },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 234 */
{ ENCODING_REG, TYPE_Rv },
{ ENCODING_RM, TYPE_R16 },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 235 */
{ ENCODING_REG, TYPE_R64 },
{ ENCODING_RM, TYPE_M8 },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 236 */
{ ENCODING_REG, TYPE_R64 },
{ ENCODING_RM, TYPE_R16 },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 237 */
{ ENCODING_REG, TYPE_R64 },
{ ENCODING_RM, TYPE_R8 },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 238 */
{ ENCODING_RM, TYPE_M8 },
{ ENCODING_REG, TYPE_XMM128 },
{ ENCODING_IB, TYPE_IMM32 },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 239 */
{ ENCODING_RM, TYPE_Mv },
{ ENCODING_REG, TYPE_XMM128 },
{ ENCODING_IB, TYPE_IMM32 },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 240 */
{ ENCODING_RM, TYPE_R64 },
{ ENCODING_REG, TYPE_XMM128 },
{ ENCODING_IB, TYPE_IMM32 },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 241 */
{ ENCODING_REG, TYPE_R32 },
{ ENCODING_RM, TYPE_XMM128 },
{ ENCODING_IB, TYPE_IMM32 },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 242 */
{ ENCODING_DUP, TYPE_DUP1 },
{ ENCODING_REG, TYPE_XMM128 },
{ ENCODING_RM, TYPE_M8 },
{ ENCODING_IB, TYPE_IMM32 },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 243 */
{ ENCODING_DUP, TYPE_DUP1 },
{ ENCODING_REG, TYPE_XMM128 },
{ ENCODING_RM, TYPE_R32 },
{ ENCODING_IB, TYPE_IMM32 },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 244 */
{ ENCODING_DUP, TYPE_DUP1 },
{ ENCODING_REG, TYPE_XMM128 },
{ ENCODING_RM, TYPE_Mv },
{ ENCODING_IB, TYPE_IMM32 },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 245 */
{ ENCODING_DUP, TYPE_DUP1 },
{ ENCODING_REG, TYPE_XMM128 },
{ ENCODING_RM, TYPE_R64 },
{ ENCODING_IB, TYPE_IMM32 },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 246 */
{ ENCODING_Rv, TYPE_Rv },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 247 */
{ ENCODING_RO, TYPE_R64 },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 248 */
{ ENCODING_DUP, TYPE_DUP1 },
{ ENCODING_RM, TYPE_XMM128 },
{ ENCODING_IB, TYPE_IMM32 },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 249 */
{ ENCODING_IB, TYPE_IMM64 },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 250 */
{ ENCODING_IB, TYPE_IMM32 },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 251 */
{ ENCODING_RM, TYPE_Mv },
{ ENCODING_IB, TYPE_IMM8 },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 252 */
{ ENCODING_DUP, TYPE_DUP1 },
{ ENCODING_RM, TYPE_Rv },
{ ENCODING_IB, TYPE_IMM8 },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 253 */
{ ENCODING_DUP, TYPE_DUP1 },
{ ENCODING_RM, TYPE_R64 },
{ ENCODING_IB, TYPE_IMM8 },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 254 */
{ ENCODING_REG, TYPE_Rv },
{ ENCODING_RM, TYPE_Mv },
{ ENCODING_IB, TYPE_IMM8 },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 255 */
{ ENCODING_REG, TYPE_Rv },
{ ENCODING_RM, TYPE_Rv },
{ ENCODING_IB, TYPE_IMM8 },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 256 */
{ ENCODING_REG, TYPE_R64 },
{ ENCODING_RM, TYPE_Mv },
{ ENCODING_IB, TYPE_IMM8 },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 257 */
{ ENCODING_REG, TYPE_R64 },
{ ENCODING_RM, TYPE_R64 },
{ ENCODING_IB, TYPE_IMM8 },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 258 */
{ ENCODING_REG, TYPE_XMM128 },
{ ENCODING_RM, TYPE_M128 },
{ ENCODING_IB, TYPE_IMM32 },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 259 */
{ ENCODING_REG, TYPE_XMM128 },
{ ENCODING_RM, TYPE_XMM128 },
{ ENCODING_IB, TYPE_IMM32 },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 260 */
{ ENCODING_DUP, TYPE_DUP1 },
{ ENCODING_REG, TYPE_XMM128 },
{ ENCODING_RM, TYPE_M64FP },
{ ENCODING_IB, TYPE_IMM32 },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 261 */
{ ENCODING_DUP, TYPE_DUP1 },
{ ENCODING_REG, TYPE_XMM64 },
{ ENCODING_RM, TYPE_XMM64 },
{ ENCODING_IB, TYPE_IMM32 },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 262 */
{ ENCODING_DUP, TYPE_DUP1 },
{ ENCODING_REG, TYPE_XMM32 },
{ ENCODING_RM, TYPE_XMM32 },
{ ENCODING_IB, TYPE_IMM32 },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 263 */
{ ENCODING_RM, TYPE_Mv },
{ ENCODING_REG, TYPE_Rv },
{ ENCODING_IB, TYPE_IMM8 },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 264 */
{ ENCODING_DUP, TYPE_DUP1 },
{ ENCODING_RM, TYPE_Rv },
{ ENCODING_REG, TYPE_Rv },
{ ENCODING_IB, TYPE_IMM8 },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 265 */
{ ENCODING_RM, TYPE_Mv },
{ ENCODING_REG, TYPE_R64 },
{ ENCODING_IB, TYPE_IMM8 },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 266 */
{ ENCODING_DUP, TYPE_DUP1 },
{ ENCODING_RM, TYPE_R64 },
{ ENCODING_REG, TYPE_R64 },
{ ENCODING_IB, TYPE_IMM8 },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 267 */
{ ENCODING_REG, TYPE_R32 },
{ ENCODING_RM, TYPE_Mv },
{ ENCODING_VVVV, TYPE_R32 },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 268 */
{ ENCODING_REG, TYPE_R32 },
{ ENCODING_RM, TYPE_R32 },
{ ENCODING_VVVV, TYPE_R32 },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 269 */
{ ENCODING_REG, TYPE_XMM256 },
{ ENCODING_VVVV, TYPE_XMM256 },
{ ENCODING_RM, TYPE_M256 },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 270 */
{ ENCODING_REG, TYPE_XMM256 },
{ ENCODING_VVVV, TYPE_XMM256 },
{ ENCODING_RM, TYPE_XMM256 },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 271 */
{ ENCODING_REG, TYPE_XMM128 },
{ ENCODING_VVVV, TYPE_XMM128 },
{ ENCODING_RM, TYPE_M128 },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 272 */
{ ENCODING_REG, TYPE_XMM128 },
{ ENCODING_VVVV, TYPE_XMM128 },
{ ENCODING_RM, TYPE_XMM128 },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 273 */
{ ENCODING_REG, TYPE_XMM64 },
{ ENCODING_VVVV, TYPE_XMM64 },
{ ENCODING_RM, TYPE_M64FP },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 274 */
{ ENCODING_REG, TYPE_XMM64 },
{ ENCODING_VVVV, TYPE_XMM64 },
{ ENCODING_RM, TYPE_XMM64 },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 275 */
{ ENCODING_REG, TYPE_XMM32 },
{ ENCODING_VVVV, TYPE_XMM32 },
{ ENCODING_RM, TYPE_M32FP },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 276 */
{ ENCODING_REG, TYPE_XMM32 },
{ ENCODING_VVVV, TYPE_XMM32 },
{ ENCODING_RM, TYPE_XMM32 },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 277 */
{ ENCODING_REG, TYPE_XMM256 },
{ ENCODING_VVVV, TYPE_XMM256 },
{ ENCODING_RM, TYPE_M256 },
{ ENCODING_IB, TYPE_IMM32 },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 278 */
{ ENCODING_REG, TYPE_XMM256 },
{ ENCODING_VVVV, TYPE_XMM256 },
{ ENCODING_RM, TYPE_XMM256 },
{ ENCODING_IB, TYPE_IMM32 },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 279 */
{ ENCODING_REG, TYPE_XMM128 },
{ ENCODING_VVVV, TYPE_XMM128 },
{ ENCODING_RM, TYPE_M128 },
{ ENCODING_IB, TYPE_IMM32 },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 280 */
{ ENCODING_REG, TYPE_XMM128 },
{ ENCODING_VVVV, TYPE_XMM128 },
{ ENCODING_RM, TYPE_XMM128 },
{ ENCODING_IB, TYPE_IMM32 },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 281 */
{ ENCODING_REG, TYPE_XMM256 },
{ ENCODING_VVVV, TYPE_XMM256 },
{ ENCODING_RM, TYPE_M256 },
{ ENCODING_IB, TYPE_XMM256 },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 282 */
{ ENCODING_REG, TYPE_XMM256 },
{ ENCODING_VVVV, TYPE_XMM256 },
{ ENCODING_RM, TYPE_XMM256 },
{ ENCODING_IB, TYPE_XMM256 },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 283 */
{ ENCODING_REG, TYPE_XMM128 },
{ ENCODING_VVVV, TYPE_XMM128 },
{ ENCODING_RM, TYPE_M128 },
{ ENCODING_IB, TYPE_XMM128 },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 284 */
{ ENCODING_REG, TYPE_XMM128 },
{ ENCODING_VVVV, TYPE_XMM128 },
{ ENCODING_RM, TYPE_XMM128 },
{ ENCODING_IB, TYPE_XMM128 },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 285 */
{ ENCODING_REG, TYPE_XMM256 },
{ ENCODING_RM, TYPE_M128 },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 286 */
{ ENCODING_REG, TYPE_XMM256 },
{ ENCODING_RM, TYPE_M64FP },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 287 */
{ ENCODING_REG, TYPE_XMM256 },
{ ENCODING_RM, TYPE_XMM128 },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 288 */
{ ENCODING_REG, TYPE_XMM256 },
{ ENCODING_RM, TYPE_M32FP },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 289 */
{ ENCODING_REG, TYPE_XMM128 },
{ ENCODING_RM, TYPE_M32FP },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 290 */
{ ENCODING_REG, TYPE_XMM256 },
{ ENCODING_VVVV, TYPE_XMM256 },
{ ENCODING_RM, TYPE_M256 },
{ ENCODING_IB, TYPE_IMM5 },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 291 */
{ ENCODING_REG, TYPE_XMM256 },
{ ENCODING_VVVV, TYPE_XMM256 },
{ ENCODING_RM, TYPE_M256 },
{ ENCODING_IB, TYPE_IMM8 },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 292 */
{ ENCODING_REG, TYPE_XMM256 },
{ ENCODING_VVVV, TYPE_XMM256 },
{ ENCODING_RM, TYPE_XMM256 },
{ ENCODING_IB, TYPE_IMM5 },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 293 */
{ ENCODING_REG, TYPE_XMM256 },
{ ENCODING_VVVV, TYPE_XMM256 },
{ ENCODING_RM, TYPE_XMM256 },
{ ENCODING_IB, TYPE_IMM8 },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 294 */
{ ENCODING_REG, TYPE_XMM128 },
{ ENCODING_VVVV, TYPE_XMM128 },
{ ENCODING_RM, TYPE_M128 },
{ ENCODING_IB, TYPE_IMM5 },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 295 */
{ ENCODING_REG, TYPE_XMM128 },
{ ENCODING_VVVV, TYPE_XMM128 },
{ ENCODING_RM, TYPE_M128 },
{ ENCODING_IB, TYPE_IMM8 },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 296 */
{ ENCODING_REG, TYPE_XMM128 },
{ ENCODING_VVVV, TYPE_XMM128 },
{ ENCODING_RM, TYPE_XMM128 },
{ ENCODING_IB, TYPE_IMM5 },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 297 */
{ ENCODING_REG, TYPE_XMM128 },
{ ENCODING_VVVV, TYPE_XMM128 },
{ ENCODING_RM, TYPE_XMM128 },
{ ENCODING_IB, TYPE_IMM8 },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 298 */
{ ENCODING_REG, TYPE_XMM64 },
{ ENCODING_VVVV, TYPE_XMM64 },
{ ENCODING_RM, TYPE_M64FP },
{ ENCODING_IB, TYPE_IMM5 },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 299 */
{ ENCODING_REG, TYPE_XMM64 },
{ ENCODING_VVVV, TYPE_XMM64 },
{ ENCODING_RM, TYPE_M64FP },
{ ENCODING_IB, TYPE_IMM8 },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 300 */
{ ENCODING_REG, TYPE_XMM64 },
{ ENCODING_VVVV, TYPE_XMM64 },
{ ENCODING_RM, TYPE_XMM64 },
{ ENCODING_IB, TYPE_IMM5 },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 301 */
{ ENCODING_REG, TYPE_XMM64 },
{ ENCODING_VVVV, TYPE_XMM64 },
{ ENCODING_RM, TYPE_XMM64 },
{ ENCODING_IB, TYPE_IMM8 },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 302 */
{ ENCODING_REG, TYPE_XMM32 },
{ ENCODING_VVVV, TYPE_XMM32 },
{ ENCODING_RM, TYPE_M32FP },
{ ENCODING_IB, TYPE_IMM5 },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 303 */
{ ENCODING_REG, TYPE_XMM32 },
{ ENCODING_VVVV, TYPE_XMM32 },
{ ENCODING_RM, TYPE_M32FP },
{ ENCODING_IB, TYPE_IMM8 },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 304 */
{ ENCODING_REG, TYPE_XMM32 },
{ ENCODING_VVVV, TYPE_XMM32 },
{ ENCODING_RM, TYPE_XMM32 },
{ ENCODING_IB, TYPE_IMM5 },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 305 */
{ ENCODING_REG, TYPE_XMM32 },
{ ENCODING_VVVV, TYPE_XMM32 },
{ ENCODING_RM, TYPE_XMM32 },
{ ENCODING_IB, TYPE_IMM8 },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 306 */
{ ENCODING_REG, TYPE_XMM256 },
{ ENCODING_RM, TYPE_M256 },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 307 */
{ ENCODING_REG, TYPE_XMM256 },
{ ENCODING_RM, TYPE_XMM256 },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 308 */
{ ENCODING_REG, TYPE_XMM128 },
{ ENCODING_RM, TYPE_M256 },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 309 */
{ ENCODING_REG, TYPE_XMM128 },
{ ENCODING_RM, TYPE_XMM256 },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 310 */
{ ENCODING_RM, TYPE_M128 },
{ ENCODING_REG, TYPE_XMM256 },
{ ENCODING_IB, TYPE_IMM32 },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 311 */
{ ENCODING_RM, TYPE_XMM128 },
{ ENCODING_REG, TYPE_XMM256 },
{ ENCODING_IB, TYPE_IMM32 },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 312 */
{ ENCODING_RM, TYPE_M64FP },
{ ENCODING_REG, TYPE_XMM128 },
{ ENCODING_IB, TYPE_IMM32 },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 313 */
{ ENCODING_RM, TYPE_XMM128 },
{ ENCODING_REG, TYPE_XMM128 },
{ ENCODING_IB, TYPE_IMM32 },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 314 */
{ ENCODING_REG, TYPE_XMM32 },
{ ENCODING_VVVV, TYPE_XMM64 },
{ ENCODING_RM, TYPE_M64FP },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 315 */
{ ENCODING_REG, TYPE_XMM32 },
{ ENCODING_VVVV, TYPE_XMM64 },
{ ENCODING_RM, TYPE_XMM64 },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 316 */
{ ENCODING_REG, TYPE_XMM64 },
{ ENCODING_VVVV, TYPE_XMM64 },
{ ENCODING_RM, TYPE_Mv },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 317 */
{ ENCODING_REG, TYPE_XMM64 },
{ ENCODING_VVVV, TYPE_XMM64 },
{ ENCODING_RM, TYPE_R64 },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 318 */
{ ENCODING_REG, TYPE_XMM64 },
{ ENCODING_VVVV, TYPE_XMM64 },
{ ENCODING_RM, TYPE_Rv },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 319 */
{ ENCODING_REG, TYPE_XMM32 },
{ ENCODING_VVVV, TYPE_XMM32 },
{ ENCODING_RM, TYPE_Mv },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 320 */
{ ENCODING_REG, TYPE_XMM32 },
{ ENCODING_VVVV, TYPE_XMM32 },
{ ENCODING_RM, TYPE_R64 },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 321 */
{ ENCODING_REG, TYPE_XMM32 },
{ ENCODING_VVVV, TYPE_XMM32 },
{ ENCODING_RM, TYPE_Rv },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 322 */
{ ENCODING_REG, TYPE_XMM64 },
{ ENCODING_VVVV, TYPE_XMM32 },
{ ENCODING_RM, TYPE_M32FP },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 323 */
{ ENCODING_REG, TYPE_XMM64 },
{ ENCODING_VVVV, TYPE_XMM32 },
{ ENCODING_RM, TYPE_XMM32 },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 324 */
{ ENCODING_RM, TYPE_M128 },
{ ENCODING_REG, TYPE_XMM256 },
{ ENCODING_IB, TYPE_IMM8 },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 325 */
{ ENCODING_RM, TYPE_XMM128 },
{ ENCODING_REG, TYPE_XMM256 },
{ ENCODING_IB, TYPE_IMM8 },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 326 */
{ ENCODING_REG, TYPE_XMM128 },
{ ENCODING_VVVV, TYPE_XMM128 },
{ ENCODING_IB, TYPE_XMM128 },
{ ENCODING_RM, TYPE_M128 },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 327 */
{ ENCODING_REG, TYPE_XMM256 },
{ ENCODING_VVVV, TYPE_XMM256 },
{ ENCODING_IB, TYPE_XMM256 },
{ ENCODING_RM, TYPE_M256 },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 328 */
{ ENCODING_REG, TYPE_XMM128 },
{ ENCODING_VVVV, TYPE_XMM128 },
{ ENCODING_IB, TYPE_XMM128 },
{ ENCODING_RM, TYPE_XMM128 },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 329 */
{ ENCODING_REG, TYPE_XMM256 },
{ ENCODING_VVVV, TYPE_XMM256 },
{ ENCODING_IB, TYPE_XMM256 },
{ ENCODING_RM, TYPE_XMM256 },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 330 */
{ ENCODING_DUP, TYPE_DUP1 },
{ ENCODING_REG, TYPE_XMM128 },
{ ENCODING_VVVV, TYPE_XMM128 },
{ ENCODING_RM, TYPE_M128 },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 331 */
{ ENCODING_DUP, TYPE_DUP1 },
{ ENCODING_REG, TYPE_XMM256 },
{ ENCODING_VVVV, TYPE_XMM256 },
{ ENCODING_RM, TYPE_M256 },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 332 */
{ ENCODING_DUP, TYPE_DUP1 },
{ ENCODING_REG, TYPE_XMM128 },
{ ENCODING_VVVV, TYPE_XMM128 },
{ ENCODING_RM, TYPE_XMM128 },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 333 */
{ ENCODING_DUP, TYPE_DUP1 },
{ ENCODING_REG, TYPE_XMM256 },
{ ENCODING_VVVV, TYPE_XMM256 },
{ ENCODING_RM, TYPE_XMM256 },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 334 */
{ ENCODING_REG, TYPE_XMM64 },
{ ENCODING_VVVV, TYPE_XMM64 },
{ ENCODING_RM, TYPE_M64FP },
{ ENCODING_IB, TYPE_XMM64 },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 335 */
{ ENCODING_REG, TYPE_XMM64 },
{ ENCODING_VVVV, TYPE_XMM64 },
{ ENCODING_IB, TYPE_XMM64 },
{ ENCODING_RM, TYPE_M64FP },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 336 */
{ ENCODING_REG, TYPE_XMM64 },
{ ENCODING_VVVV, TYPE_XMM64 },
{ ENCODING_IB, TYPE_XMM64 },
{ ENCODING_RM, TYPE_XMM64 },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 337 */
{ ENCODING_REG, TYPE_XMM64 },
{ ENCODING_VVVV, TYPE_XMM64 },
{ ENCODING_RM, TYPE_XMM64 },
{ ENCODING_IB, TYPE_XMM64 },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 338 */
{ ENCODING_DUP, TYPE_DUP1 },
{ ENCODING_REG, TYPE_XMM64 },
{ ENCODING_VVVV, TYPE_XMM64 },
{ ENCODING_RM, TYPE_M64FP },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 339 */
{ ENCODING_DUP, TYPE_DUP1 },
{ ENCODING_REG, TYPE_XMM64 },
{ ENCODING_VVVV, TYPE_XMM64 },
{ ENCODING_RM, TYPE_XMM64 },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 340 */
{ ENCODING_REG, TYPE_XMM32 },
{ ENCODING_VVVV, TYPE_XMM32 },
{ ENCODING_RM, TYPE_M32FP },
{ ENCODING_IB, TYPE_XMM32 },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 341 */
{ ENCODING_REG, TYPE_XMM32 },
{ ENCODING_VVVV, TYPE_XMM32 },
{ ENCODING_IB, TYPE_XMM32 },
{ ENCODING_RM, TYPE_M32FP },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 342 */
{ ENCODING_REG, TYPE_XMM32 },
{ ENCODING_VVVV, TYPE_XMM32 },
{ ENCODING_IB, TYPE_XMM32 },
{ ENCODING_RM, TYPE_XMM32 },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 343 */
{ ENCODING_REG, TYPE_XMM32 },
{ ENCODING_VVVV, TYPE_XMM32 },
{ ENCODING_RM, TYPE_XMM32 },
{ ENCODING_IB, TYPE_XMM32 },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 344 */
{ ENCODING_DUP, TYPE_DUP1 },
{ ENCODING_REG, TYPE_XMM32 },
{ ENCODING_VVVV, TYPE_XMM32 },
{ ENCODING_RM, TYPE_M32FP },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 345 */
{ ENCODING_DUP, TYPE_DUP1 },
{ ENCODING_REG, TYPE_XMM32 },
{ ENCODING_VVVV, TYPE_XMM32 },
{ ENCODING_RM, TYPE_XMM32 },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 346 */
{ ENCODING_REG, TYPE_XMM64 },
{ ENCODING_VVVV, TYPE_XMM64 },
{ ENCODING_RM, TYPE_M128 },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 347 */
{ ENCODING_REG, TYPE_XMM32 },
{ ENCODING_VVVV, TYPE_XMM32 },
{ ENCODING_RM, TYPE_M128 },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 348 */
{ ENCODING_DUP, TYPE_DUP2 },
{ ENCODING_DUP, TYPE_DUP4 },
{ ENCODING_REG, TYPE_XMM256 },
{ ENCODING_RM, TYPE_M64 },
{ ENCODING_VVVV, TYPE_XMM256 },
},
{ /* 349 */
{ ENCODING_DUP, TYPE_DUP2 },
{ ENCODING_DUP, TYPE_DUP4 },
{ ENCODING_REG, TYPE_XMM128 },
{ ENCODING_RM, TYPE_M64 },
{ ENCODING_VVVV, TYPE_XMM128 },
},
{ /* 350 */
{ ENCODING_DUP, TYPE_DUP2 },
{ ENCODING_DUP, TYPE_DUP4 },
{ ENCODING_REG, TYPE_XMM256 },
{ ENCODING_RM, TYPE_M32 },
{ ENCODING_VVVV, TYPE_XMM256 },
},
{ /* 351 */
{ ENCODING_DUP, TYPE_DUP2 },
{ ENCODING_DUP, TYPE_DUP4 },
{ ENCODING_REG, TYPE_XMM128 },
{ ENCODING_RM, TYPE_M32 },
{ ENCODING_VVVV, TYPE_XMM128 },
},
{ /* 352 */
{ ENCODING_REG, TYPE_XMM256 },
{ ENCODING_VVVV, TYPE_XMM256 },
{ ENCODING_RM, TYPE_M128 },
{ ENCODING_IB, TYPE_IMM8 },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 353 */
{ ENCODING_REG, TYPE_XMM256 },
{ ENCODING_VVVV, TYPE_XMM256 },
{ ENCODING_RM, TYPE_XMM128 },
{ ENCODING_IB, TYPE_IMM8 },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 354 */
{ ENCODING_REG, TYPE_XMM128 },
{ ENCODING_VVVV, TYPE_XMM128 },
{ ENCODING_RM, TYPE_M32FP },
{ ENCODING_IB, TYPE_IMM32 },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 355 */
{ ENCODING_RM, TYPE_M256 },
{ ENCODING_VVVV, TYPE_XMM256 },
{ ENCODING_REG, TYPE_XMM256 },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 356 */
{ ENCODING_RM, TYPE_M128 },
{ ENCODING_VVVV, TYPE_XMM128 },
{ ENCODING_REG, TYPE_XMM128 },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 357 */
{ ENCODING_RM, TYPE_M256 },
{ ENCODING_REG, TYPE_XMM256 },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 358 */
{ ENCODING_RM, TYPE_XMM256 },
{ ENCODING_REG, TYPE_XMM256 },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 359 */
{ ENCODING_REG, TYPE_XMM128 },
{ ENCODING_VVVV, TYPE_XMM128 },
{ ENCODING_RM, TYPE_M64FP },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 360 */
{ ENCODING_REG, TYPE_R64 },
{ ENCODING_RM, TYPE_XMM256 },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 361 */
{ ENCODING_REG, TYPE_R32 },
{ ENCODING_RM, TYPE_XMM256 },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 362 */
{ ENCODING_REG, TYPE_Rv },
{ ENCODING_RM, TYPE_XMM256 },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 363 */
{ ENCODING_REG, TYPE_XMM128 },
{ ENCODING_VVVV, TYPE_XMM128 },
{ ENCODING_RM, TYPE_XMM64 },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 364 */
{ ENCODING_RM, TYPE_XMM128 },
{ ENCODING_VVVV, TYPE_XMM128 },
{ ENCODING_REG, TYPE_XMM64 },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 365 */
{ ENCODING_REG, TYPE_XMM128 },
{ ENCODING_VVVV, TYPE_XMM128 },
{ ENCODING_RM, TYPE_XMM32 },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 366 */
{ ENCODING_RM, TYPE_XMM128 },
{ ENCODING_VVVV, TYPE_XMM128 },
{ ENCODING_REG, TYPE_XMM32 },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 367 */
{ ENCODING_REG, TYPE_XMM256 },
{ ENCODING_RM, TYPE_M8 },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 368 */
{ ENCODING_REG, TYPE_XMM128 },
{ ENCODING_RM, TYPE_M8 },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 369 */
{ ENCODING_REG, TYPE_XMM256 },
{ ENCODING_RM, TYPE_Mv },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 370 */
{ ENCODING_REG, TYPE_XMM128 },
{ ENCODING_VVVV, TYPE_XMM128 },
{ ENCODING_RM, TYPE_M128 },
{ ENCODING_IB, TYPE_XMM128 },
{ ENCODING_IB, TYPE_IMM8 },
},
{ /* 371 */
{ ENCODING_REG, TYPE_XMM256 },
{ ENCODING_VVVV, TYPE_XMM256 },
{ ENCODING_RM, TYPE_M256 },
{ ENCODING_IB, TYPE_XMM256 },
{ ENCODING_IB, TYPE_IMM8 },
},
{ /* 372 */
{ ENCODING_REG, TYPE_XMM128 },
{ ENCODING_VVVV, TYPE_XMM128 },
{ ENCODING_IB, TYPE_XMM128 },
{ ENCODING_RM, TYPE_M128 },
{ ENCODING_IB, TYPE_IMM8 },
},
{ /* 373 */
{ ENCODING_REG, TYPE_XMM256 },
{ ENCODING_VVVV, TYPE_XMM256 },
{ ENCODING_IB, TYPE_XMM256 },
{ ENCODING_RM, TYPE_M256 },
{ ENCODING_IB, TYPE_IMM8 },
},
{ /* 374 */
{ ENCODING_REG, TYPE_XMM128 },
{ ENCODING_VVVV, TYPE_XMM128 },
{ ENCODING_RM, TYPE_XMM128 },
{ ENCODING_IB, TYPE_XMM128 },
{ ENCODING_IB, TYPE_IMM8 },
},
{ /* 375 */
{ ENCODING_REG, TYPE_XMM256 },
{ ENCODING_VVVV, TYPE_XMM256 },
{ ENCODING_RM, TYPE_XMM256 },
{ ENCODING_IB, TYPE_XMM256 },
{ ENCODING_IB, TYPE_IMM8 },
},
{ /* 376 */
{ ENCODING_REG, TYPE_XMM256 },
{ ENCODING_RM, TYPE_M256 },
{ ENCODING_IB, TYPE_IMM8 },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 377 */
{ ENCODING_REG, TYPE_XMM256 },
{ ENCODING_RM, TYPE_XMM256 },
{ ENCODING_IB, TYPE_IMM8 },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 378 */
{ ENCODING_REG, TYPE_XMM128 },
{ ENCODING_VVVV, TYPE_XMM128 },
{ ENCODING_RM, TYPE_M8 },
{ ENCODING_IB, TYPE_IMM32 },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 379 */
{ ENCODING_REG, TYPE_XMM128 },
{ ENCODING_VVVV, TYPE_XMM128 },
{ ENCODING_RM, TYPE_R32 },
{ ENCODING_IB, TYPE_IMM32 },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 380 */
{ ENCODING_REG, TYPE_XMM128 },
{ ENCODING_VVVV, TYPE_XMM128 },
{ ENCODING_RM, TYPE_Mv },
{ ENCODING_IB, TYPE_IMM32 },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 381 */
{ ENCODING_REG, TYPE_XMM128 },
{ ENCODING_VVVV, TYPE_XMM128 },
{ ENCODING_RM, TYPE_R64 },
{ ENCODING_IB, TYPE_IMM32 },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 382 */
{ ENCODING_VVVV, TYPE_XMM256 },
{ ENCODING_RM, TYPE_XMM256 },
{ ENCODING_IB, TYPE_IMM32 },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 383 */
{ ENCODING_VVVV, TYPE_XMM128 },
{ ENCODING_RM, TYPE_XMM128 },
{ ENCODING_IB, TYPE_IMM32 },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 384 */
{ ENCODING_REG, TYPE_XMM256 },
{ ENCODING_VVVV, TYPE_XMM256 },
{ ENCODING_RM, TYPE_M128 },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 385 */
{ ENCODING_REG, TYPE_XMM256 },
{ ENCODING_VVVV, TYPE_XMM256 },
{ ENCODING_RM, TYPE_XMM128 },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 386 */
{ ENCODING_REG, TYPE_XMM128 },
{ ENCODING_VVVV, TYPE_XMM128 },
{ ENCODING_RM, TYPE_M64FP },
{ ENCODING_IB, TYPE_IMM32 },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 387 */
{ ENCODING_REG, TYPE_XMM64 },
{ ENCODING_VVVV, TYPE_XMM64 },
{ ENCODING_RM, TYPE_XMM64 },
{ ENCODING_IB, TYPE_IMM32 },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 388 */
{ ENCODING_REG, TYPE_XMM32 },
{ ENCODING_VVVV, TYPE_XMM32 },
{ ENCODING_RM, TYPE_XMM32 },
{ ENCODING_IB, TYPE_IMM32 },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 389 */
{ ENCODING_REG, TYPE_XMM256 },
{ ENCODING_RM, TYPE_M256 },
{ ENCODING_IB, TYPE_IMM32 },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
{ /* 390 */
{ ENCODING_REG, TYPE_XMM256 },
{ ENCODING_RM, TYPE_XMM256 },
{ ENCODING_IB, TYPE_IMM32 },
{ ENCODING_NONE, TYPE_NONE },
{ ENCODING_NONE, TYPE_NONE },
},
};
static const struct InstructionSpecifier x86DisassemblerInstrSpecifiers[4550] = {
{ /* 0 */
MODIFIER_NONE,
0x00,
0,
/* PHI */
},
{ /* 1 */
MODIFIER_NONE,
0x00,
0,
/* INLINEASM */
},
{ /* 2 */
MODIFIER_NONE,
0x00,
0,
/* PROLOG_LABEL */
},
{ /* 3 */
MODIFIER_NONE,
0x00,
0,
/* EH_LABEL */
},
{ /* 4 */
MODIFIER_NONE,
0x00,
0,
/* GC_LABEL */
},
{ /* 5 */
MODIFIER_NONE,
0x00,
0,
/* KILL */
},
{ /* 6 */
MODIFIER_NONE,
0x00,
0,
/* EXTRACT_SUBREG */
},
{ /* 7 */
MODIFIER_NONE,
0x00,
0,
/* INSERT_SUBREG */
},
{ /* 8 */
MODIFIER_NONE,
0x00,
0,
/* IMPLICIT_DEF */
},
{ /* 9 */
MODIFIER_NONE,
0x00,
0,
/* SUBREG_TO_REG */
},
{ /* 10 */
MODIFIER_NONE,
0x00,
0,
/* COPY_TO_REGCLASS */
},
{ /* 11 */
MODIFIER_NONE,
0x00,
0,
/* DBG_VALUE */
},
{ /* 12 */
MODIFIER_NONE,
0x00,
0,
/* REG_SEQUENCE */
},
{ /* 13 */
MODIFIER_NONE,
0x00,
0,
/* COPY */
},
{ /* 14 */
MODIFIER_NONE,
0x00,
0,
/* BUNDLE */
},
{ /* 15 */
MODIFIER_NONE,
0x00,
0,
/* LIFETIME_START */
},
{ /* 16 */
MODIFIER_NONE,
0x00,
0,
/* LIFETIME_END */
},
{ /* 17 */
MODIFIER_NONE,
0x00,
0,
/* BUNDLE_ALIGN_START */
},
{ /* 18 */
MODIFIER_NONE,
0x00,
0,
/* BUNDLE_ALIGN_END */
},
{ /* 19 */
MODIFIER_NONE,
0x00,
0,
/* BUNDLE_LOCK */
},
{ /* 20 */
MODIFIER_NONE,
0x00,
0,
/* BUNDLE_UNLOCK */
},
{ /* 21 */
MODIFIER_NONE,
0x37,
0,
/* AAA */
},
{ /* 22 */
MODIFIER_NONE,
0xd5,
1,
/* AAD8i8 */
},
{ /* 23 */
MODIFIER_NONE,
0xd4,
1,
/* AAM8i8 */
},
{ /* 24 */
MODIFIER_NONE,
0x3f,
0,
/* AAS */
},
{ /* 25 */
MODIFIER_NONE,
0xd9,
0,
/* ABS_F */
},
{ /* 26 */
MODIFIER_NONE,
0x00,
0,
/* ABS_Fp32 */
},
{ /* 27 */
MODIFIER_NONE,
0x00,
0,
/* ABS_Fp64 */
},
{ /* 28 */
MODIFIER_NONE,
0x00,
0,
/* ABS_Fp80 */
},
{ /* 29 */
MODIFIER_NONE,
0x00,
0,
/* ACQUIRE_MOV16rm */
},
{ /* 30 */
MODIFIER_NONE,
0x00,
0,
/* ACQUIRE_MOV32rm */
},
{ /* 31 */
MODIFIER_NONE,
0x00,
0,
/* ACQUIRE_MOV64rm */
},
{ /* 32 */
MODIFIER_NONE,
0x00,
0,
/* ACQUIRE_MOV8rm */
},
{ /* 33 */
MODIFIER_NONE,
0x15,
2,
/* ADC16i16 */
},
{ /* 34 */
MODIFIER_NONE,
0x81,
3,
/* ADC16mi */
},
{ /* 35 */
MODIFIER_NONE,
0x83,
4,
/* ADC16mi8 */
},
{ /* 36 */
MODIFIER_NONE,
0x11,
5,
/* ADC16mr */
},
{ /* 37 */
MODIFIER_NONE,
0x81,
6,
/* ADC16ri */
},
{ /* 38 */
MODIFIER_NONE,
0x83,
7,
/* ADC16ri8 */
},
{ /* 39 */
MODIFIER_NONE,
0x13,
8,
/* ADC16rm */
},
{ /* 40 */
MODIFIER_NONE,
0x11,
9,
/* ADC16rr */
},
{ /* 41 */
MODIFIER_NONE,
0x13,
10,
/* ADC16rr_REV */
},
{ /* 42 */
MODIFIER_NONE,
0x15,
2,
/* ADC32i32 */
},
{ /* 43 */
MODIFIER_NONE,
0x81,
3,
/* ADC32mi */
},
{ /* 44 */
MODIFIER_NONE,
0x83,
11,
/* ADC32mi8 */
},
{ /* 45 */
MODIFIER_NONE,
0x11,
5,
/* ADC32mr */
},
{ /* 46 */
MODIFIER_NONE,
0x81,
6,
/* ADC32ri */
},
{ /* 47 */
MODIFIER_NONE,
0x83,
12,
/* ADC32ri8 */
},
{ /* 48 */
MODIFIER_NONE,
0x13,
8,
/* ADC32rm */
},
{ /* 49 */
MODIFIER_NONE,
0x11,
9,
/* ADC32rr */
},
{ /* 50 */
MODIFIER_NONE,
0x13,
10,
/* ADC32rr_REV */
},
{ /* 51 */
MODIFIER_NONE,
0x15,
13,
/* ADC64i32 */
},
{ /* 52 */
MODIFIER_NONE,
0x81,
14,
/* ADC64mi32 */
},
{ /* 53 */
MODIFIER_NONE,
0x83,
15,
/* ADC64mi8 */
},
{ /* 54 */
MODIFIER_NONE,
0x11,
16,
/* ADC64mr */
},
{ /* 55 */
MODIFIER_NONE,
0x81,
17,
/* ADC64ri32 */
},
{ /* 56 */
MODIFIER_NONE,
0x83,
18,
/* ADC64ri8 */
},
{ /* 57 */
MODIFIER_NONE,
0x13,
19,
/* ADC64rm */
},
{ /* 58 */
MODIFIER_NONE,
0x11,
20,
/* ADC64rr */
},
{ /* 59 */
MODIFIER_NONE,
0x13,
21,
/* ADC64rr_REV */
},
{ /* 60 */
MODIFIER_NONE,
0x14,
1,
/* ADC8i8 */
},
{ /* 61 */
MODIFIER_NONE,
0x80,
22,
/* ADC8mi */
},
{ /* 62 */
MODIFIER_NONE,
0x10,
23,
/* ADC8mr */
},
{ /* 63 */
MODIFIER_NONE,
0x80,
24,
/* ADC8ri */
},
{ /* 64 */
MODIFIER_NONE,
0x12,
25,
/* ADC8rm */
},
{ /* 65 */
MODIFIER_NONE,
0x10,
26,
/* ADC8rr */
},
{ /* 66 */
MODIFIER_NONE,
0x12,
27,
/* ADC8rr_REV */
},
{ /* 67 */
MODIFIER_NONE,
0xf6,
28,
/* ADCX32rm */
},
{ /* 68 */
MODIFIER_NONE,
0xf6,
29,
/* ADCX32rr */
},
{ /* 69 */
MODIFIER_NONE,
0xf6,
30,
/* ADCX64rm */
},
{ /* 70 */
MODIFIER_NONE,
0xf6,
31,
/* ADCX64rr */
},
{ /* 71 */
MODIFIER_NONE,
0x05,
2,
/* ADD16i16 */
},
{ /* 72 */
MODIFIER_NONE,
0x81,
3,
/* ADD16mi */
},
{ /* 73 */
MODIFIER_NONE,
0x83,
4,
/* ADD16mi8 */
},
{ /* 74 */
MODIFIER_NONE,
0x01,
5,
/* ADD16mr */
},
{ /* 75 */
MODIFIER_NONE,
0x81,
6,
/* ADD16ri */
},
{ /* 76 */
MODIFIER_NONE,
0x83,
7,
/* ADD16ri8 */
},
{ /* 77 */
MODIFIER_NONE,
0x00,
0,
/* ADD16ri8_DB */
},
{ /* 78 */
MODIFIER_NONE,
0x00,
0,
/* ADD16ri_DB */
},
{ /* 79 */
MODIFIER_NONE,
0x03,
8,
/* ADD16rm */
},
{ /* 80 */
MODIFIER_NONE,
0x01,
9,
/* ADD16rr */
},
{ /* 81 */
MODIFIER_NONE,
0x00,
0,
/* ADD16rr_DB */
},
{ /* 82 */
MODIFIER_NONE,
0x03,
10,
/* ADD16rr_REV */
},
{ /* 83 */
MODIFIER_NONE,
0x05,
2,
/* ADD32i32 */
},
{ /* 84 */
MODIFIER_NONE,
0x81,
3,
/* ADD32mi */
},
{ /* 85 */
MODIFIER_NONE,
0x83,
11,
/* ADD32mi8 */
},
{ /* 86 */
MODIFIER_NONE,
0x01,
5,
/* ADD32mr */
},
{ /* 87 */
MODIFIER_NONE,
0x81,
6,
/* ADD32ri */
},
{ /* 88 */
MODIFIER_NONE,
0x83,
12,
/* ADD32ri8 */
},
{ /* 89 */
MODIFIER_NONE,
0x00,
0,
/* ADD32ri8_DB */
},
{ /* 90 */
MODIFIER_NONE,
0x00,
0,
/* ADD32ri_DB */
},
{ /* 91 */
MODIFIER_NONE,
0x03,
8,
/* ADD32rm */
},
{ /* 92 */
MODIFIER_NONE,
0x01,
9,
/* ADD32rr */
},
{ /* 93 */
MODIFIER_NONE,
0x00,
0,
/* ADD32rr_DB */
},
{ /* 94 */
MODIFIER_NONE,
0x03,
10,
/* ADD32rr_REV */
},
{ /* 95 */
MODIFIER_NONE,
0x05,
13,
/* ADD64i32 */
},
{ /* 96 */
MODIFIER_NONE,
0x81,
14,
/* ADD64mi32 */
},
{ /* 97 */
MODIFIER_NONE,
0x83,
15,
/* ADD64mi8 */
},
{ /* 98 */
MODIFIER_NONE,
0x01,
16,
/* ADD64mr */
},
{ /* 99 */
MODIFIER_NONE,
0x81,
17,
/* ADD64ri32 */
},
{ /* 100 */
MODIFIER_NONE,
0x00,
0,
/* ADD64ri32_DB */
},
{ /* 101 */
MODIFIER_NONE,
0x83,
18,
/* ADD64ri8 */
},
{ /* 102 */
MODIFIER_NONE,
0x00,
0,
/* ADD64ri8_DB */
},
{ /* 103 */
MODIFIER_NONE,
0x03,
19,
/* ADD64rm */
},
{ /* 104 */
MODIFIER_NONE,
0x01,
20,
/* ADD64rr */
},
{ /* 105 */
MODIFIER_NONE,
0x00,
0,
/* ADD64rr_DB */
},
{ /* 106 */
MODIFIER_NONE,
0x03,
21,
/* ADD64rr_REV */
},
{ /* 107 */
MODIFIER_NONE,
0x04,
1,
/* ADD8i8 */
},
{ /* 108 */
MODIFIER_NONE,
0x80,
22,
/* ADD8mi */
},
{ /* 109 */
MODIFIER_NONE,
0x00,
23,
/* ADD8mr */
},
{ /* 110 */
MODIFIER_NONE,
0x80,
24,
/* ADD8ri */
},
{ /* 111 */
MODIFIER_NONE,
0x02,
25,
/* ADD8rm */
},
{ /* 112 */
MODIFIER_NONE,
0x00,
26,
/* ADD8rr */
},
{ /* 113 */
MODIFIER_NONE,
0x02,
27,
/* ADD8rr_REV */
},
{ /* 114 */
MODIFIER_NONE,
0x58,
32,
/* ADDPDrm */
},
{ /* 115 */
MODIFIER_NONE,
0x58,
33,
/* ADDPDrr */
},
{ /* 116 */
MODIFIER_NONE,
0x58,
32,
/* ADDPSrm */
},
{ /* 117 */
MODIFIER_NONE,
0x58,
33,
/* ADDPSrr */
},
{ /* 118 */
MODIFIER_NONE,
0x58,
34,
/* ADDSDrm */
},
{ /* 119 */
MODIFIER_NONE,
0x00,
0,
/* ADDSDrm_Int */
},
{ /* 120 */
MODIFIER_NONE,
0x58,
35,
/* ADDSDrr */
},
{ /* 121 */
MODIFIER_NONE,
0x00,
0,
/* ADDSDrr_Int */
},
{ /* 122 */
MODIFIER_NONE,
0x58,
36,
/* ADDSSrm */
},
{ /* 123 */
MODIFIER_NONE,
0x00,
0,
/* ADDSSrm_Int */
},
{ /* 124 */
MODIFIER_NONE,
0x58,
37,
/* ADDSSrr */
},
{ /* 125 */
MODIFIER_NONE,
0x00,
0,
/* ADDSSrr_Int */
},
{ /* 126 */
MODIFIER_NONE,
0xd0,
32,
/* ADDSUBPDrm */
},
{ /* 127 */
MODIFIER_NONE,
0xd0,
33,
/* ADDSUBPDrr */
},
{ /* 128 */
MODIFIER_NONE,
0xd0,
32,
/* ADDSUBPSrm */
},
{ /* 129 */
MODIFIER_NONE,
0xd0,
33,
/* ADDSUBPSrr */
},
{ /* 130 */
MODIFIER_NONE,
0xd8,
38,
/* ADD_F32m */
},
{ /* 131 */
MODIFIER_NONE,
0xdc,
39,
/* ADD_F64m */
},
{ /* 132 */
MODIFIER_NONE,
0xde,
40,
/* ADD_FI16m */
},
{ /* 133 */
MODIFIER_NONE,
0xda,
40,
/* ADD_FI32m */
},
{ /* 134 */
MODIFIER_MODRM,
0xc0,
41,
/* ADD_FPrST0 */
},
{ /* 135 */
MODIFIER_MODRM,
0xc0,
41,
/* ADD_FST0r */
},
{ /* 136 */
MODIFIER_NONE,
0x00,
0,
/* ADD_Fp32 */
},
{ /* 137 */
MODIFIER_NONE,
0x00,
0,
/* ADD_Fp32m */
},
{ /* 138 */
MODIFIER_NONE,
0x00,
0,
/* ADD_Fp64 */
},
{ /* 139 */
MODIFIER_NONE,
0x00,
0,
/* ADD_Fp64m */
},
{ /* 140 */
MODIFIER_NONE,
0x00,
0,
/* ADD_Fp64m32 */
},
{ /* 141 */
MODIFIER_NONE,
0x00,
0,
/* ADD_Fp80 */
},
{ /* 142 */
MODIFIER_NONE,
0x00,
0,
/* ADD_Fp80m32 */
},
{ /* 143 */
MODIFIER_NONE,
0x00,
0,
/* ADD_Fp80m64 */
},
{ /* 144 */
MODIFIER_NONE,
0x00,
0,
/* ADD_FpI16m32 */
},
{ /* 145 */
MODIFIER_NONE,
0x00,
0,
/* ADD_FpI16m64 */
},
{ /* 146 */
MODIFIER_NONE,
0x00,
0,
/* ADD_FpI16m80 */
},
{ /* 147 */
MODIFIER_NONE,
0x00,
0,
/* ADD_FpI32m32 */
},
{ /* 148 */
MODIFIER_NONE,
0x00,
0,
/* ADD_FpI32m64 */
},
{ /* 149 */
MODIFIER_NONE,
0x00,
0,
/* ADD_FpI32m80 */
},
{ /* 150 */
MODIFIER_MODRM,
0xc0,
41,
/* ADD_FrST0 */
},
{ /* 151 */
MODIFIER_NONE,
0x00,
0,
/* ADJCALLSTACKDOWN32 */
},
{ /* 152 */
MODIFIER_NONE,
0x00,
0,
/* ADJCALLSTACKDOWN64 */
},
{ /* 153 */
MODIFIER_NONE,
0x00,
0,
/* ADJCALLSTACKUP32 */
},
{ /* 154 */
MODIFIER_NONE,
0x00,
0,
/* ADJCALLSTACKUP64 */
},
{ /* 155 */
MODIFIER_NONE,
0xf6,
42,
/* ADOX32rm */
},
{ /* 156 */
MODIFIER_NONE,
0xf6,
43,
/* ADOX32rr */
},
{ /* 157 */
MODIFIER_NONE,
0xf6,
30,
/* ADOX64rm */
},
{ /* 158 */
MODIFIER_NONE,
0xf6,
31,
/* ADOX64rr */
},
{ /* 159 */
MODIFIER_NONE,
0xdf,
32,
/* AESDECLASTrm */
},
{ /* 160 */
MODIFIER_NONE,
0xdf,
33,
/* AESDECLASTrr */
},
{ /* 161 */
MODIFIER_NONE,
0xde,
32,
/* AESDECrm */
},
{ /* 162 */
MODIFIER_NONE,
0xde,
33,
/* AESDECrr */
},
{ /* 163 */
MODIFIER_NONE,
0xdd,
32,
/* AESENCLASTrm */
},
{ /* 164 */
MODIFIER_NONE,
0xdd,
33,
/* AESENCLASTrr */
},
{ /* 165 */
MODIFIER_NONE,
0xdc,
32,
/* AESENCrm */
},
{ /* 166 */
MODIFIER_NONE,
0xdc,
33,
/* AESENCrr */
},
{ /* 167 */
MODIFIER_NONE,
0xdb,
44,
/* AESIMCrm */
},
{ /* 168 */
MODIFIER_NONE,
0xdb,
45,
/* AESIMCrr */
},
{ /* 169 */
MODIFIER_NONE,
0xdf,
46,
/* AESKEYGENASSIST128rm */
},
{ /* 170 */
MODIFIER_NONE,
0xdf,
47,
/* AESKEYGENASSIST128rr */
},
{ /* 171 */
MODIFIER_NONE,
0x25,
2,
/* AND16i16 */
},
{ /* 172 */
MODIFIER_NONE,
0x81,
3,
/* AND16mi */
},
{ /* 173 */
MODIFIER_NONE,
0x83,
4,
/* AND16mi8 */
},
{ /* 174 */
MODIFIER_NONE,
0x21,
5,
/* AND16mr */
},
{ /* 175 */
MODIFIER_NONE,
0x81,
6,
/* AND16ri */
},
{ /* 176 */
MODIFIER_NONE,
0x83,
7,
/* AND16ri8 */
},
{ /* 177 */
MODIFIER_NONE,
0x23,
8,
/* AND16rm */
},
{ /* 178 */
MODIFIER_NONE,
0x21,
9,
/* AND16rr */
},
{ /* 179 */
MODIFIER_NONE,
0x23,
10,
/* AND16rr_REV */
},
{ /* 180 */
MODIFIER_NONE,
0x25,
2,
/* AND32i32 */
},
{ /* 181 */
MODIFIER_NONE,
0x81,
3,
/* AND32mi */
},
{ /* 182 */
MODIFIER_NONE,
0x83,
11,
/* AND32mi8 */
},
{ /* 183 */
MODIFIER_NONE,
0x21,
5,
/* AND32mr */
},
{ /* 184 */
MODIFIER_NONE,
0x81,
6,
/* AND32ri */
},
{ /* 185 */
MODIFIER_NONE,
0x83,
12,
/* AND32ri8 */
},
{ /* 186 */
MODIFIER_NONE,
0x23,
8,
/* AND32rm */
},
{ /* 187 */
MODIFIER_NONE,
0x21,
9,
/* AND32rr */
},
{ /* 188 */
MODIFIER_NONE,
0x23,
10,
/* AND32rr_REV */
},
{ /* 189 */
MODIFIER_NONE,
0x25,
13,
/* AND64i32 */
},
{ /* 190 */
MODIFIER_NONE,
0x81,
14,
/* AND64mi32 */
},
{ /* 191 */
MODIFIER_NONE,
0x83,
15,
/* AND64mi8 */
},
{ /* 192 */
MODIFIER_NONE,
0x21,
16,
/* AND64mr */
},
{ /* 193 */
MODIFIER_NONE,
0x81,
17,
/* AND64ri32 */
},
{ /* 194 */
MODIFIER_NONE,
0x83,
18,
/* AND64ri8 */
},
{ /* 195 */
MODIFIER_NONE,
0x23,
19,
/* AND64rm */
},
{ /* 196 */
MODIFIER_NONE,
0x21,
20,
/* AND64rr */
},
{ /* 197 */
MODIFIER_NONE,
0x23,
21,
/* AND64rr_REV */
},
{ /* 198 */
MODIFIER_NONE,
0x24,
1,
/* AND8i8 */
},
{ /* 199 */
MODIFIER_NONE,
0x80,
22,
/* AND8mi */
},
{ /* 200 */
MODIFIER_NONE,
0x20,
23,
/* AND8mr */
},
{ /* 201 */
MODIFIER_NONE,
0x80,
24,
/* AND8ri */
},
{ /* 202 */
MODIFIER_NONE,
0x22,
25,
/* AND8rm */
},
{ /* 203 */
MODIFIER_NONE,
0x20,
26,
/* AND8rr */
},
{ /* 204 */
MODIFIER_NONE,
0x22,
27,
/* AND8rr_REV */
},
{ /* 205 */
MODIFIER_NONE,
0xf2,
48,
/* ANDN32rm */
},
{ /* 206 */
MODIFIER_NONE,
0xf2,
49,
/* ANDN32rr */
},
{ /* 207 */
MODIFIER_NONE,
0xf2,
50,
/* ANDN64rm */
},
{ /* 208 */
MODIFIER_NONE,
0xf2,
51,
/* ANDN64rr */
},
{ /* 209 */
MODIFIER_NONE,
0x55,
32,
/* ANDNPDrm */
},
{ /* 210 */
MODIFIER_NONE,
0x55,
33,
/* ANDNPDrr */
},
{ /* 211 */
MODIFIER_NONE,
0x55,
32,
/* ANDNPSrm */
},
{ /* 212 */
MODIFIER_NONE,
0x55,
33,
/* ANDNPSrr */
},
{ /* 213 */
MODIFIER_NONE,
0x54,
32,
/* ANDPDrm */
},
{ /* 214 */
MODIFIER_NONE,
0x54,
33,
/* ANDPDrr */
},
{ /* 215 */
MODIFIER_NONE,
0x54,
32,
/* ANDPSrm */
},
{ /* 216 */
MODIFIER_NONE,
0x54,
33,
/* ANDPSrr */
},
{ /* 217 */
MODIFIER_NONE,
0x63,
52,
/* ARPL16mr */
},
{ /* 218 */
MODIFIER_NONE,
0x63,
53,
/* ARPL16rr */
},
{ /* 219 */
MODIFIER_NONE,
0x00,
0,
/* ATOMADD6432 */
},
{ /* 220 */
MODIFIER_NONE,
0x00,
0,
/* ATOMAND16 */
},
{ /* 221 */
MODIFIER_NONE,
0x00,
0,
/* ATOMAND32 */
},
{ /* 222 */
MODIFIER_NONE,
0x00,
0,
/* ATOMAND64 */
},
{ /* 223 */
MODIFIER_NONE,
0x00,
0,
/* ATOMAND6432 */
},
{ /* 224 */
MODIFIER_NONE,
0x00,
0,
/* ATOMAND8 */
},
{ /* 225 */
MODIFIER_NONE,
0x00,
0,
/* ATOMMAX16 */
},
{ /* 226 */
MODIFIER_NONE,
0x00,
0,
/* ATOMMAX32 */
},
{ /* 227 */
MODIFIER_NONE,
0x00,
0,
/* ATOMMAX64 */
},
{ /* 228 */
MODIFIER_NONE,
0x00,
0,
/* ATOMMAX6432 */
},
{ /* 229 */
MODIFIER_NONE,
0x00,
0,
/* ATOMMAX8 */
},
{ /* 230 */
MODIFIER_NONE,
0x00,
0,
/* ATOMMIN16 */
},
{ /* 231 */
MODIFIER_NONE,
0x00,
0,
/* ATOMMIN32 */
},
{ /* 232 */
MODIFIER_NONE,
0x00,
0,
/* ATOMMIN64 */
},
{ /* 233 */
MODIFIER_NONE,
0x00,
0,
/* ATOMMIN6432 */
},
{ /* 234 */
MODIFIER_NONE,
0x00,
0,
/* ATOMMIN8 */
},
{ /* 235 */
MODIFIER_NONE,
0x00,
0,
/* ATOMNAND16 */
},
{ /* 236 */
MODIFIER_NONE,
0x00,
0,
/* ATOMNAND32 */
},
{ /* 237 */
MODIFIER_NONE,
0x00,
0,
/* ATOMNAND64 */
},
{ /* 238 */
MODIFIER_NONE,
0x00,
0,
/* ATOMNAND6432 */
},
{ /* 239 */
MODIFIER_NONE,
0x00,
0,
/* ATOMNAND8 */
},
{ /* 240 */
MODIFIER_NONE,
0x00,
0,
/* ATOMOR16 */
},
{ /* 241 */
MODIFIER_NONE,
0x00,
0,
/* ATOMOR32 */
},
{ /* 242 */
MODIFIER_NONE,
0x00,
0,
/* ATOMOR64 */
},
{ /* 243 */
MODIFIER_NONE,
0x00,
0,
/* ATOMOR6432 */
},
{ /* 244 */
MODIFIER_NONE,
0x00,
0,
/* ATOMOR8 */
},
{ /* 245 */
MODIFIER_NONE,
0x00,
0,
/* ATOMSUB6432 */
},
{ /* 246 */
MODIFIER_NONE,
0x00,
0,
/* ATOMSWAP6432 */
},
{ /* 247 */
MODIFIER_NONE,
0x00,
0,
/* ATOMUMAX16 */
},
{ /* 248 */
MODIFIER_NONE,
0x00,
0,
/* ATOMUMAX32 */
},
{ /* 249 */
MODIFIER_NONE,
0x00,
0,
/* ATOMUMAX64 */
},
{ /* 250 */
MODIFIER_NONE,
0x00,
0,
/* ATOMUMAX6432 */
},
{ /* 251 */
MODIFIER_NONE,
0x00,
0,
/* ATOMUMAX8 */
},
{ /* 252 */
MODIFIER_NONE,
0x00,
0,
/* ATOMUMIN16 */
},
{ /* 253 */
MODIFIER_NONE,
0x00,
0,
/* ATOMUMIN32 */
},
{ /* 254 */
MODIFIER_NONE,
0x00,
0,
/* ATOMUMIN64 */
},
{ /* 255 */
MODIFIER_NONE,
0x00,
0,
/* ATOMUMIN6432 */
},
{ /* 256 */
MODIFIER_NONE,
0x00,
0,
/* ATOMUMIN8 */
},
{ /* 257 */
MODIFIER_NONE,
0x00,
0,
/* ATOMXOR16 */
},
{ /* 258 */
MODIFIER_NONE,
0x00,
0,
/* ATOMXOR32 */
},
{ /* 259 */
MODIFIER_NONE,
0x00,
0,
/* ATOMXOR64 */
},
{ /* 260 */
MODIFIER_NONE,
0x00,
0,
/* ATOMXOR6432 */
},
{ /* 261 */
MODIFIER_NONE,
0x00,
0,
/* ATOMXOR8 */
},
{ /* 262 */
MODIFIER_NONE,
0x00,
0,
/* AVX2_SETALLONES */
},
{ /* 263 */
MODIFIER_NONE,
0x00,
0,
/* AVX_SET0 */
},
{ /* 264 */
MODIFIER_NONE,
0xf7,
54,
/* BEXTR32rm */
},
{ /* 265 */
MODIFIER_NONE,
0xf7,
55,
/* BEXTR32rr */
},
{ /* 266 */
MODIFIER_NONE,
0xf7,
56,
/* BEXTR64rm */
},
{ /* 267 */
MODIFIER_NONE,
0xf7,
57,
/* BEXTR64rr */
},
{ /* 268 */
MODIFIER_NONE,
0x0d,
58,
/* BLENDPDrmi */
},
{ /* 269 */
MODIFIER_NONE,
0x0d,
59,
/* BLENDPDrri */
},
{ /* 270 */
MODIFIER_NONE,
0x0c,
58,
/* BLENDPSrmi */
},
{ /* 271 */
MODIFIER_NONE,
0x0c,
59,
/* BLENDPSrri */
},
{ /* 272 */
MODIFIER_NONE,
0x15,
32,
/* BLENDVPDrm0 */
},
{ /* 273 */
MODIFIER_NONE,
0x15,
33,
/* BLENDVPDrr0 */
},
{ /* 274 */
MODIFIER_NONE,
0x14,
32,
/* BLENDVPSrm0 */
},
{ /* 275 */
MODIFIER_NONE,
0x14,
33,
/* BLENDVPSrr0 */
},
{ /* 276 */
MODIFIER_NONE,
0xf3,
60,
/* BLSI32rm */
},
{ /* 277 */
MODIFIER_NONE,
0xf3,
61,
/* BLSI32rr */
},
{ /* 278 */
MODIFIER_NONE,
0xf3,
62,
/* BLSI64rm */
},
{ /* 279 */
MODIFIER_NONE,
0xf3,
63,
/* BLSI64rr */
},
{ /* 280 */
MODIFIER_NONE,
0xf3,
60,
/* BLSMSK32rm */
},
{ /* 281 */
MODIFIER_NONE,
0xf3,
61,
/* BLSMSK32rr */
},
{ /* 282 */
MODIFIER_NONE,
0xf3,
62,
/* BLSMSK64rm */
},
{ /* 283 */
MODIFIER_NONE,
0xf3,
63,
/* BLSMSK64rr */
},
{ /* 284 */
MODIFIER_NONE,
0xf3,
60,
/* BLSR32rm */
},
{ /* 285 */
MODIFIER_NONE,
0xf3,
61,
/* BLSR32rr */
},
{ /* 286 */
MODIFIER_NONE,
0xf3,
62,
/* BLSR64rm */
},
{ /* 287 */
MODIFIER_NONE,
0xf3,
63,
/* BLSR64rr */
},
{ /* 288 */
MODIFIER_NONE,
0x62,
42,
/* BOUNDS16rm */
},
{ /* 289 */
MODIFIER_NONE,
0x62,
42,
/* BOUNDS32rm */
},
{ /* 290 */
MODIFIER_NONE,
0xbc,
42,
/* BSF16rm */
},
{ /* 291 */
MODIFIER_NONE,
0xbc,
43,
/* BSF16rr */
},
{ /* 292 */
MODIFIER_NONE,
0xbc,
42,
/* BSF32rm */
},
{ /* 293 */
MODIFIER_NONE,
0xbc,
43,
/* BSF32rr */
},
{ /* 294 */
MODIFIER_NONE,
0xbc,
30,
/* BSF64rm */
},
{ /* 295 */
MODIFIER_NONE,
0xbc,
31,
/* BSF64rr */
},
{ /* 296 */
MODIFIER_NONE,
0xbd,
42,
/* BSR16rm */
},
{ /* 297 */
MODIFIER_NONE,
0xbd,
43,
/* BSR16rr */
},
{ /* 298 */
MODIFIER_NONE,
0xbd,
42,
/* BSR32rm */
},
{ /* 299 */
MODIFIER_NONE,
0xbd,
43,
/* BSR32rr */
},
{ /* 300 */
MODIFIER_NONE,
0xbd,
30,
/* BSR64rm */
},
{ /* 301 */
MODIFIER_NONE,
0xbd,
31,
/* BSR64rr */
},
{ /* 302 */
MODIFIER_OPCODE,
0xc8,
64,
/* BSWAP32r */
},
{ /* 303 */
MODIFIER_OPCODE,
0xc8,
65,
/* BSWAP64r */
},
{ /* 304 */
MODIFIER_NONE,
0xba,
4,
/* BT16mi8 */
},
{ /* 305 */
MODIFIER_NONE,
0xa3,
5,
/* BT16mr */
},
{ /* 306 */
MODIFIER_NONE,
0xba,
66,
/* BT16ri8 */
},
{ /* 307 */
MODIFIER_NONE,
0xa3,
67,
/* BT16rr */
},
{ /* 308 */
MODIFIER_NONE,
0xba,
11,
/* BT32mi8 */
},
{ /* 309 */
MODIFIER_NONE,
0xa3,
5,
/* BT32mr */
},
{ /* 310 */
MODIFIER_NONE,
0xba,
68,
/* BT32ri8 */
},
{ /* 311 */
MODIFIER_NONE,
0xa3,
67,
/* BT32rr */
},
{ /* 312 */
MODIFIER_NONE,
0xba,
15,
/* BT64mi8 */
},
{ /* 313 */
MODIFIER_NONE,
0xa3,
16,
/* BT64mr */
},
{ /* 314 */
MODIFIER_NONE,
0xba,
69,
/* BT64ri8 */
},
{ /* 315 */
MODIFIER_NONE,
0xa3,
70,
/* BT64rr */
},
{ /* 316 */
MODIFIER_NONE,
0xba,
4,
/* BTC16mi8 */
},
{ /* 317 */
MODIFIER_NONE,
0xbb,
5,
/* BTC16mr */
},
{ /* 318 */
MODIFIER_NONE,
0xba,
66,
/* BTC16ri8 */
},
{ /* 319 */
MODIFIER_NONE,
0xbb,
67,
/* BTC16rr */
},
{ /* 320 */
MODIFIER_NONE,
0xba,
11,
/* BTC32mi8 */
},
{ /* 321 */
MODIFIER_NONE,
0xbb,
5,
/* BTC32mr */
},
{ /* 322 */
MODIFIER_NONE,
0xba,
68,
/* BTC32ri8 */
},
{ /* 323 */
MODIFIER_NONE,
0xbb,
67,
/* BTC32rr */
},
{ /* 324 */
MODIFIER_NONE,
0xba,
15,
/* BTC64mi8 */
},
{ /* 325 */
MODIFIER_NONE,
0xbb,
16,
/* BTC64mr */
},
{ /* 326 */
MODIFIER_NONE,
0xba,
69,
/* BTC64ri8 */
},
{ /* 327 */
MODIFIER_NONE,
0xbb,
70,
/* BTC64rr */
},
{ /* 328 */
MODIFIER_NONE,
0xba,
4,
/* BTR16mi8 */
},
{ /* 329 */
MODIFIER_NONE,
0xb3,
5,
/* BTR16mr */
},
{ /* 330 */
MODIFIER_NONE,
0xba,
66,
/* BTR16ri8 */
},
{ /* 331 */
MODIFIER_NONE,
0xb3,
67,
/* BTR16rr */
},
{ /* 332 */
MODIFIER_NONE,
0xba,
11,
/* BTR32mi8 */
},
{ /* 333 */
MODIFIER_NONE,
0xb3,
5,
/* BTR32mr */
},
{ /* 334 */
MODIFIER_NONE,
0xba,
68,
/* BTR32ri8 */
},
{ /* 335 */
MODIFIER_NONE,
0xb3,
67,
/* BTR32rr */
},
{ /* 336 */
MODIFIER_NONE,
0xba,
15,
/* BTR64mi8 */
},
{ /* 337 */
MODIFIER_NONE,
0xb3,
16,
/* BTR64mr */
},
{ /* 338 */
MODIFIER_NONE,
0xba,
69,
/* BTR64ri8 */
},
{ /* 339 */
MODIFIER_NONE,
0xb3,
70,
/* BTR64rr */
},
{ /* 340 */
MODIFIER_NONE,
0xba,
4,
/* BTS16mi8 */
},
{ /* 341 */
MODIFIER_NONE,
0xab,
5,
/* BTS16mr */
},
{ /* 342 */
MODIFIER_NONE,
0xba,
66,
/* BTS16ri8 */
},
{ /* 343 */
MODIFIER_NONE,
0xab,
67,
/* BTS16rr */
},
{ /* 344 */
MODIFIER_NONE,
0xba,
11,
/* BTS32mi8 */
},
{ /* 345 */
MODIFIER_NONE,
0xab,
5,
/* BTS32mr */
},
{ /* 346 */
MODIFIER_NONE,
0xba,
68,
/* BTS32ri8 */
},
{ /* 347 */
MODIFIER_NONE,
0xab,
67,
/* BTS32rr */
},
{ /* 348 */
MODIFIER_NONE,
0xba,
15,
/* BTS64mi8 */
},
{ /* 349 */
MODIFIER_NONE,
0xab,
16,
/* BTS64mr */
},
{ /* 350 */
MODIFIER_NONE,
0xba,
69,
/* BTS64ri8 */
},
{ /* 351 */
MODIFIER_NONE,
0xab,
70,
/* BTS64rr */
},
{ /* 352 */
MODIFIER_NONE,
0xf5,
54,
/* BZHI32rm */
},
{ /* 353 */
MODIFIER_NONE,
0xf5,
55,
/* BZHI32rr */
},
{ /* 354 */
MODIFIER_NONE,
0xf5,
56,
/* BZHI64rm */
},
{ /* 355 */
MODIFIER_NONE,
0xf5,
57,
/* BZHI64rr */
},
{ /* 356 */
MODIFIER_NONE,
0xff,
40,
/* CALL32m */
},
{ /* 357 */
MODIFIER_NONE,
0xff,
71,
/* CALL32r */
},
{ /* 358 */
MODIFIER_NONE,
0xff,
40,
/* CALL64m */
},
{ /* 359 */
MODIFIER_NONE,
0xe8,
72,
/* CALL64pcrel32 */
},
{ /* 360 */
MODIFIER_NONE,
0xff,
73,
/* CALL64r */
},
{ /* 361 */
MODIFIER_NONE,
0x00,
0,
/* */
},
{ /* 362 */
MODIFIER_NONE,
0xe8,
74,
/* CALLpcrel32 */
},
{ /* 363 */
MODIFIER_NONE,
0x98,
0,
/* CBW */
},
{ /* 364 */
MODIFIER_NONE,
0x99,
0,
/* CDQ */
},
{ /* 365 */
MODIFIER_NONE,
0x98,
0,
/* CDQE */
},
{ /* 366 */
MODIFIER_NONE,
0xd9,
0,
/* CHS_F */
},
{ /* 367 */
MODIFIER_NONE,
0x00,
0,
/* CHS_Fp32 */
},
{ /* 368 */
MODIFIER_NONE,
0x00,
0,
/* CHS_Fp64 */
},
{ /* 369 */
MODIFIER_NONE,
0x00,
0,
/* CHS_Fp80 */
},
{ /* 370 */
MODIFIER_NONE,
0x01,
0,
/* CLAC */
},
{ /* 371 */
MODIFIER_NONE,
0xf8,
0,
/* CLC */
},
{ /* 372 */
MODIFIER_NONE,
0xfc,
0,
/* CLD */
},
{ /* 373 */
MODIFIER_NONE,
0xae,
75,
/* CLFLUSH */
},
{ /* 374 */
MODIFIER_NONE,
0x01,
0,
/* CLGI */
},
{ /* 375 */
MODIFIER_NONE,
0xfa,
0,
/* CLI */
},
{ /* 376 */
MODIFIER_NONE,
0x06,
0,
/* CLTS */
},
{ /* 377 */
MODIFIER_NONE,
0xf5,
0,
/* CMC */
},
{ /* 378 */
MODIFIER_NONE,
0x47,
8,
/* CMOVA16rm */
},
{ /* 379 */
MODIFIER_NONE,
0x47,
10,
/* CMOVA16rr */
},
{ /* 380 */
MODIFIER_NONE,
0x47,
8,
/* CMOVA32rm */
},
{ /* 381 */
MODIFIER_NONE,
0x47,
10,
/* CMOVA32rr */
},
{ /* 382 */
MODIFIER_NONE,
0x47,
19,
/* CMOVA64rm */
},
{ /* 383 */
MODIFIER_NONE,
0x47,
21,
/* CMOVA64rr */
},
{ /* 384 */
MODIFIER_NONE,
0x43,
8,
/* CMOVAE16rm */
},
{ /* 385 */
MODIFIER_NONE,
0x43,
10,
/* CMOVAE16rr */
},
{ /* 386 */
MODIFIER_NONE,
0x43,
8,
/* CMOVAE32rm */
},
{ /* 387 */
MODIFIER_NONE,
0x43,
10,
/* CMOVAE32rr */
},
{ /* 388 */
MODIFIER_NONE,
0x43,
19,
/* CMOVAE64rm */
},
{ /* 389 */
MODIFIER_NONE,
0x43,
21,
/* CMOVAE64rr */
},
{ /* 390 */
MODIFIER_NONE,
0x42,
8,
/* CMOVB16rm */
},
{ /* 391 */
MODIFIER_NONE,
0x42,
10,
/* CMOVB16rr */
},
{ /* 392 */
MODIFIER_NONE,
0x42,
8,
/* CMOVB32rm */
},
{ /* 393 */
MODIFIER_NONE,
0x42,
10,
/* CMOVB32rr */
},
{ /* 394 */
MODIFIER_NONE,
0x42,
19,
/* CMOVB64rm */
},
{ /* 395 */
MODIFIER_NONE,
0x42,
21,
/* CMOVB64rr */
},
{ /* 396 */
MODIFIER_NONE,
0x46,
8,
/* CMOVBE16rm */
},
{ /* 397 */
MODIFIER_NONE,
0x46,
10,
/* CMOVBE16rr */
},
{ /* 398 */
MODIFIER_NONE,
0x46,
8,
/* CMOVBE32rm */
},
{ /* 399 */
MODIFIER_NONE,
0x46,
10,
/* CMOVBE32rr */
},
{ /* 400 */
MODIFIER_NONE,
0x46,
19,
/* CMOVBE64rm */
},
{ /* 401 */
MODIFIER_NONE,
0x46,
21,
/* CMOVBE64rr */
},
{ /* 402 */
MODIFIER_MODRM,
0xd0,
41,
/* CMOVBE_F */
},
{ /* 403 */
MODIFIER_NONE,
0x00,
0,
/* CMOVBE_Fp32 */
},
{ /* 404 */
MODIFIER_NONE,
0x00,
0,
/* CMOVBE_Fp64 */
},
{ /* 405 */
MODIFIER_NONE,
0x00,
0,
/* CMOVBE_Fp80 */
},
{ /* 406 */
MODIFIER_MODRM,
0xc0,
41,
/* CMOVB_F */
},
{ /* 407 */
MODIFIER_NONE,
0x00,
0,
/* CMOVB_Fp32 */
},
{ /* 408 */
MODIFIER_NONE,
0x00,
0,
/* CMOVB_Fp64 */
},
{ /* 409 */
MODIFIER_NONE,
0x00,
0,
/* CMOVB_Fp80 */
},
{ /* 410 */
MODIFIER_NONE,
0x44,
8,
/* CMOVE16rm */
},
{ /* 411 */
MODIFIER_NONE,
0x44,
10,
/* CMOVE16rr */
},
{ /* 412 */
MODIFIER_NONE,
0x44,
8,
/* CMOVE32rm */
},
{ /* 413 */
MODIFIER_NONE,
0x44,
10,
/* CMOVE32rr */
},
{ /* 414 */
MODIFIER_NONE,
0x44,
19,
/* CMOVE64rm */
},
{ /* 415 */
MODIFIER_NONE,
0x44,
21,
/* CMOVE64rr */
},
{ /* 416 */
MODIFIER_MODRM,
0xc8,
41,
/* CMOVE_F */
},
{ /* 417 */
MODIFIER_NONE,
0x00,
0,
/* CMOVE_Fp32 */
},
{ /* 418 */
MODIFIER_NONE,
0x00,
0,
/* CMOVE_Fp64 */
},
{ /* 419 */
MODIFIER_NONE,
0x00,
0,
/* CMOVE_Fp80 */
},
{ /* 420 */
MODIFIER_NONE,
0x4f,
8,
/* CMOVG16rm */
},
{ /* 421 */
MODIFIER_NONE,
0x4f,
10,
/* CMOVG16rr */
},
{ /* 422 */
MODIFIER_NONE,
0x4f,
8,
/* CMOVG32rm */
},
{ /* 423 */
MODIFIER_NONE,
0x4f,
10,
/* CMOVG32rr */
},
{ /* 424 */
MODIFIER_NONE,
0x4f,
19,
/* CMOVG64rm */
},
{ /* 425 */
MODIFIER_NONE,
0x4f,
21,
/* CMOVG64rr */
},
{ /* 426 */
MODIFIER_NONE,
0x4d,
8,
/* CMOVGE16rm */
},
{ /* 427 */
MODIFIER_NONE,
0x4d,
10,
/* CMOVGE16rr */
},
{ /* 428 */
MODIFIER_NONE,
0x4d,
8,
/* CMOVGE32rm */
},
{ /* 429 */
MODIFIER_NONE,
0x4d,
10,
/* CMOVGE32rr */
},
{ /* 430 */
MODIFIER_NONE,
0x4d,
19,
/* CMOVGE64rm */
},
{ /* 431 */
MODIFIER_NONE,
0x4d,
21,
/* CMOVGE64rr */
},
{ /* 432 */
MODIFIER_NONE,
0x4c,
8,
/* CMOVL16rm */
},
{ /* 433 */
MODIFIER_NONE,
0x4c,
10,
/* CMOVL16rr */
},
{ /* 434 */
MODIFIER_NONE,
0x4c,
8,
/* CMOVL32rm */
},
{ /* 435 */
MODIFIER_NONE,
0x4c,
10,
/* CMOVL32rr */
},
{ /* 436 */
MODIFIER_NONE,
0x4c,
19,
/* CMOVL64rm */
},
{ /* 437 */
MODIFIER_NONE,
0x4c,
21,
/* CMOVL64rr */
},
{ /* 438 */
MODIFIER_NONE,
0x4e,
8,
/* CMOVLE16rm */
},
{ /* 439 */
MODIFIER_NONE,
0x4e,
10,
/* CMOVLE16rr */
},
{ /* 440 */
MODIFIER_NONE,
0x4e,
8,
/* CMOVLE32rm */
},
{ /* 441 */
MODIFIER_NONE,
0x4e,
10,
/* CMOVLE32rr */
},
{ /* 442 */
MODIFIER_NONE,
0x4e,
19,
/* CMOVLE64rm */
},
{ /* 443 */
MODIFIER_NONE,
0x4e,
21,
/* CMOVLE64rr */
},
{ /* 444 */
MODIFIER_MODRM,
0xd0,
41,
/* CMOVNBE_F */
},
{ /* 445 */
MODIFIER_NONE,
0x00,
0,
/* CMOVNBE_Fp32 */
},
{ /* 446 */
MODIFIER_NONE,
0x00,
0,
/* CMOVNBE_Fp64 */
},
{ /* 447 */
MODIFIER_NONE,
0x00,
0,
/* CMOVNBE_Fp80 */
},
{ /* 448 */
MODIFIER_MODRM,
0xc0,
41,
/* CMOVNB_F */
},
{ /* 449 */
MODIFIER_NONE,
0x00,
0,
/* CMOVNB_Fp32 */
},
{ /* 450 */
MODIFIER_NONE,
0x00,
0,
/* CMOVNB_Fp64 */
},
{ /* 451 */
MODIFIER_NONE,
0x00,
0,
/* CMOVNB_Fp80 */
},
{ /* 452 */
MODIFIER_NONE,
0x45,
8,
/* CMOVNE16rm */
},
{ /* 453 */
MODIFIER_NONE,
0x45,
10,
/* CMOVNE16rr */
},
{ /* 454 */
MODIFIER_NONE,
0x45,
8,
/* CMOVNE32rm */
},
{ /* 455 */
MODIFIER_NONE,
0x45,
10,
/* CMOVNE32rr */
},
{ /* 456 */
MODIFIER_NONE,
0x45,
19,
/* CMOVNE64rm */
},
{ /* 457 */
MODIFIER_NONE,
0x45,
21,
/* CMOVNE64rr */
},
{ /* 458 */
MODIFIER_MODRM,
0xc8,
41,
/* CMOVNE_F */
},
{ /* 459 */
MODIFIER_NONE,
0x00,
0,
/* CMOVNE_Fp32 */
},
{ /* 460 */
MODIFIER_NONE,
0x00,
0,
/* CMOVNE_Fp64 */
},
{ /* 461 */
MODIFIER_NONE,
0x00,
0,
/* CMOVNE_Fp80 */
},
{ /* 462 */
MODIFIER_NONE,
0x41,
8,
/* CMOVNO16rm */
},
{ /* 463 */
MODIFIER_NONE,
0x41,
10,
/* CMOVNO16rr */
},
{ /* 464 */
MODIFIER_NONE,
0x41,
8,
/* CMOVNO32rm */
},
{ /* 465 */
MODIFIER_NONE,
0x41,
10,
/* CMOVNO32rr */
},
{ /* 466 */
MODIFIER_NONE,
0x41,
19,
/* CMOVNO64rm */
},
{ /* 467 */
MODIFIER_NONE,
0x41,
21,
/* CMOVNO64rr */
},
{ /* 468 */
MODIFIER_NONE,
0x4b,
8,
/* CMOVNP16rm */
},
{ /* 469 */
MODIFIER_NONE,
0x4b,
10,
/* CMOVNP16rr */
},
{ /* 470 */
MODIFIER_NONE,
0x4b,
8,
/* CMOVNP32rm */
},
{ /* 471 */
MODIFIER_NONE,
0x4b,
10,
/* CMOVNP32rr */
},
{ /* 472 */
MODIFIER_NONE,
0x4b,
19,
/* CMOVNP64rm */
},
{ /* 473 */
MODIFIER_NONE,
0x4b,
21,
/* CMOVNP64rr */
},
{ /* 474 */
MODIFIER_MODRM,
0xd8,
41,
/* CMOVNP_F */
},
{ /* 475 */
MODIFIER_NONE,
0x00,
0,
/* CMOVNP_Fp32 */
},
{ /* 476 */
MODIFIER_NONE,
0x00,
0,
/* CMOVNP_Fp64 */
},
{ /* 477 */
MODIFIER_NONE,
0x00,
0,
/* CMOVNP_Fp80 */
},
{ /* 478 */
MODIFIER_NONE,
0x49,
8,
/* CMOVNS16rm */
},
{ /* 479 */
MODIFIER_NONE,
0x49,
10,
/* CMOVNS16rr */
},
{ /* 480 */
MODIFIER_NONE,
0x49,
8,
/* CMOVNS32rm */
},
{ /* 481 */
MODIFIER_NONE,
0x49,
10,
/* CMOVNS32rr */
},
{ /* 482 */
MODIFIER_NONE,
0x49,
19,
/* CMOVNS64rm */
},
{ /* 483 */
MODIFIER_NONE,
0x49,
21,
/* CMOVNS64rr */
},
{ /* 484 */
MODIFIER_NONE,
0x40,
8,
/* CMOVO16rm */
},
{ /* 485 */
MODIFIER_NONE,
0x40,
10,
/* CMOVO16rr */
},
{ /* 486 */
MODIFIER_NONE,
0x40,
8,
/* CMOVO32rm */
},
{ /* 487 */
MODIFIER_NONE,
0x40,
10,
/* CMOVO32rr */
},
{ /* 488 */
MODIFIER_NONE,
0x40,
19,
/* CMOVO64rm */
},
{ /* 489 */
MODIFIER_NONE,
0x40,
21,
/* CMOVO64rr */
},
{ /* 490 */
MODIFIER_NONE,
0x4a,
8,
/* CMOVP16rm */
},
{ /* 491 */
MODIFIER_NONE,
0x4a,
10,
/* CMOVP16rr */
},
{ /* 492 */
MODIFIER_NONE,
0x4a,
8,
/* CMOVP32rm */
},
{ /* 493 */
MODIFIER_NONE,
0x4a,
10,
/* CMOVP32rr */
},
{ /* 494 */
MODIFIER_NONE,
0x4a,
19,
/* CMOVP64rm */
},
{ /* 495 */
MODIFIER_NONE,
0x4a,
21,
/* CMOVP64rr */
},
{ /* 496 */
MODIFIER_MODRM,
0xd8,
41,
/* CMOVP_F */
},
{ /* 497 */
MODIFIER_NONE,
0x00,
0,
/* CMOVP_Fp32 */
},
{ /* 498 */
MODIFIER_NONE,
0x00,
0,
/* CMOVP_Fp64 */
},
{ /* 499 */
MODIFIER_NONE,
0x00,
0,
/* CMOVP_Fp80 */
},
{ /* 500 */
MODIFIER_NONE,
0x48,
8,
/* CMOVS16rm */
},
{ /* 501 */
MODIFIER_NONE,
0x48,
10,
/* CMOVS16rr */
},
{ /* 502 */
MODIFIER_NONE,
0x48,
8,
/* CMOVS32rm */
},
{ /* 503 */
MODIFIER_NONE,
0x48,
10,
/* CMOVS32rr */
},
{ /* 504 */
MODIFIER_NONE,
0x48,
19,
/* CMOVS64rm */
},
{ /* 505 */
MODIFIER_NONE,
0x48,
21,
/* CMOVS64rr */
},
{ /* 506 */
MODIFIER_NONE,
0x00,
0,
/* CMOV_FR32 */
},
{ /* 507 */
MODIFIER_NONE,
0x00,
0,
/* CMOV_FR64 */
},
{ /* 508 */
MODIFIER_NONE,
0x00,
0,
/* CMOV_GR16 */
},
{ /* 509 */
MODIFIER_NONE,
0x00,
0,
/* CMOV_GR32 */
},
{ /* 510 */
MODIFIER_NONE,
0x00,
0,
/* CMOV_GR8 */
},
{ /* 511 */
MODIFIER_NONE,
0x00,
0,
/* CMOV_RFP32 */
},
{ /* 512 */
MODIFIER_NONE,
0x00,
0,
/* CMOV_RFP64 */
},
{ /* 513 */
MODIFIER_NONE,
0x00,
0,
/* CMOV_RFP80 */
},
{ /* 514 */
MODIFIER_NONE,
0x00,
0,
/* CMOV_V2F64 */
},
{ /* 515 */
MODIFIER_NONE,
0x00,
0,
/* CMOV_V2I64 */
},
{ /* 516 */
MODIFIER_NONE,
0x00,
0,
/* CMOV_V4F32 */
},
{ /* 517 */
MODIFIER_NONE,
0x00,
0,
/* CMOV_V4F64 */
},
{ /* 518 */
MODIFIER_NONE,
0x00,
0,
/* CMOV_V4I64 */
},
{ /* 519 */
MODIFIER_NONE,
0x00,
0,
/* CMOV_V8F32 */
},
{ /* 520 */
MODIFIER_NONE,
0x3d,
2,
/* CMP16i16 */
},
{ /* 521 */
MODIFIER_NONE,
0x81,
3,
/* CMP16mi */
},
{ /* 522 */
MODIFIER_NONE,
0x83,
4,
/* CMP16mi8 */
},
{ /* 523 */
MODIFIER_NONE,
0x39,
5,
/* CMP16mr */
},
{ /* 524 */
MODIFIER_NONE,
0x81,
76,
/* CMP16ri */
},
{ /* 525 */
MODIFIER_NONE,
0x83,
66,
/* CMP16ri8 */
},
{ /* 526 */
MODIFIER_NONE,
0x3b,
42,
/* CMP16rm */
},
{ /* 527 */
MODIFIER_NONE,
0x39,
67,
/* CMP16rr */
},
{ /* 528 */
MODIFIER_NONE,
0x3b,
43,
/* CMP16rr_REV */
},
{ /* 529 */
MODIFIER_NONE,
0x3d,
2,
/* CMP32i32 */
},
{ /* 530 */
MODIFIER_NONE,
0x81,
3,
/* CMP32mi */
},
{ /* 531 */
MODIFIER_NONE,
0x83,
11,
/* CMP32mi8 */
},
{ /* 532 */
MODIFIER_NONE,
0x39,
5,
/* CMP32mr */
},
{ /* 533 */
MODIFIER_NONE,
0x81,
76,
/* CMP32ri */
},
{ /* 534 */
MODIFIER_NONE,
0x83,
68,
/* CMP32ri8 */
},
{ /* 535 */
MODIFIER_NONE,
0x3b,
42,
/* CMP32rm */
},
{ /* 536 */
MODIFIER_NONE,
0x39,
67,
/* CMP32rr */
},
{ /* 537 */
MODIFIER_NONE,
0x3b,
43,
/* CMP32rr_REV */
},
{ /* 538 */
MODIFIER_NONE,
0x3d,
13,
/* CMP64i32 */
},
{ /* 539 */
MODIFIER_NONE,
0x81,
14,
/* CMP64mi32 */
},
{ /* 540 */
MODIFIER_NONE,
0x83,
15,
/* CMP64mi8 */
},
{ /* 541 */
MODIFIER_NONE,
0x39,
16,
/* CMP64mr */
},
{ /* 542 */
MODIFIER_NONE,
0x81,
77,
/* CMP64ri32 */
},
{ /* 543 */
MODIFIER_NONE,
0x83,
69,
/* CMP64ri8 */
},
{ /* 544 */
MODIFIER_NONE,
0x3b,
30,
/* CMP64rm */
},
{ /* 545 */
MODIFIER_NONE,
0x39,
70,
/* CMP64rr */
},
{ /* 546 */
MODIFIER_NONE,
0x3b,
31,
/* CMP64rr_REV */
},
{ /* 547 */
MODIFIER_NONE,
0x3c,
1,
/* CMP8i8 */
},
{ /* 548 */
MODIFIER_NONE,
0x80,
22,
/* CMP8mi */
},
{ /* 549 */
MODIFIER_NONE,
0x38,
23,
/* CMP8mr */
},
{ /* 550 */
MODIFIER_NONE,
0x80,
78,
/* CMP8ri */
},
{ /* 551 */
MODIFIER_NONE,
0x3a,
79,
/* CMP8rm */
},
{ /* 552 */
MODIFIER_NONE,
0x38,
80,
/* CMP8rr */
},
{ /* 553 */
MODIFIER_NONE,
0x3a,
81,
/* CMP8rr_REV */
},
{ /* 554 */
MODIFIER_NONE,
0xc2,
82,
/* CMPPDrmi */
},
{ /* 555 */
MODIFIER_NONE,
0xc2,
83,
/* CMPPDrmi_alt */
},
{ /* 556 */
MODIFIER_NONE,
0xc2,
84,
/* CMPPDrri */
},
{ /* 557 */
MODIFIER_NONE,
0xc2,
85,
/* CMPPDrri_alt */
},
{ /* 558 */
MODIFIER_NONE,
0xc2,
82,
/* CMPPSrmi */
},
{ /* 559 */
MODIFIER_NONE,
0xc2,
83,
/* CMPPSrmi_alt */
},
{ /* 560 */
MODIFIER_NONE,
0xc2,
84,
/* CMPPSrri */
},
{ /* 561 */
MODIFIER_NONE,
0xc2,
85,
/* CMPPSrri_alt */
},
{ /* 562 */
MODIFIER_NONE,
0xa7,
0,
/* CMPS16 */
},
{ /* 563 */
MODIFIER_NONE,
0xa7,
0,
/* CMPS32 */
},
{ /* 564 */
MODIFIER_NONE,
0xa7,
0,
/* CMPS64 */
},
{ /* 565 */
MODIFIER_NONE,
0xa6,
0,
/* CMPS8 */
},
{ /* 566 */
MODIFIER_NONE,
0xc2,
86,
/* CMPSDrm */
},
{ /* 567 */
MODIFIER_NONE,
0xc2,
87,
/* CMPSDrm_alt */
},
{ /* 568 */
MODIFIER_NONE,
0xc2,
88,
/* CMPSDrr */
},
{ /* 569 */
MODIFIER_NONE,
0xc2,
89,
/* CMPSDrr_alt */
},
{ /* 570 */
MODIFIER_NONE,
0xc2,
90,
/* CMPSSrm */
},
{ /* 571 */
MODIFIER_NONE,
0xc2,
91,
/* CMPSSrm_alt */
},
{ /* 572 */
MODIFIER_NONE,
0xc2,
92,
/* CMPSSrr */
},
{ /* 573 */
MODIFIER_NONE,
0xc2,
93,
/* CMPSSrr_alt */
},
{ /* 574 */
MODIFIER_NONE,
0xc7,
94,
/* CMPXCHG16B */
},
{ /* 575 */
MODIFIER_NONE,
0xb1,
5,
/* CMPXCHG16rm */
},
{ /* 576 */
MODIFIER_NONE,
0xb1,
67,
/* CMPXCHG16rr */
},
{ /* 577 */
MODIFIER_NONE,
0xb1,
5,
/* CMPXCHG32rm */
},
{ /* 578 */
MODIFIER_NONE,
0xb1,
67,
/* CMPXCHG32rr */
},
{ /* 579 */
MODIFIER_NONE,
0xb1,
16,
/* CMPXCHG64rm */
},
{ /* 580 */
MODIFIER_NONE,
0xb1,
70,
/* CMPXCHG64rr */
},
{ /* 581 */
MODIFIER_NONE,
0xc7,
40,
/* CMPXCHG8B */
},
{ /* 582 */
MODIFIER_NONE,
0xb0,
23,
/* CMPXCHG8rm */
},
{ /* 583 */
MODIFIER_NONE,
0xb0,
80,
/* CMPXCHG8rr */
},
{ /* 584 */
MODIFIER_NONE,
0x2f,
44,
/* COMISDrm */
},
{ /* 585 */
MODIFIER_NONE,
0x2f,
45,
/* COMISDrr */
},
{ /* 586 */
MODIFIER_NONE,
0x2f,
44,
/* COMISSrm */
},
{ /* 587 */
MODIFIER_NONE,
0x2f,
45,
/* COMISSrr */
},
{ /* 588 */
MODIFIER_MODRM,
0xd8,
41,
/* COMP_FST0r */
},
{ /* 589 */
MODIFIER_MODRM,
0xf0,
41,
/* COM_FIPr */
},
{ /* 590 */
MODIFIER_MODRM,
0xf0,
41,
/* COM_FIr */
},
{ /* 591 */
MODIFIER_MODRM,
0xd0,
41,
/* COM_FST0r */
},
{ /* 592 */
MODIFIER_NONE,
0xd9,
0,
/* COS_F */
},
{ /* 593 */
MODIFIER_NONE,
0x00,
0,
/* COS_Fp32 */
},
{ /* 594 */
MODIFIER_NONE,
0x00,
0,
/* COS_Fp64 */
},
{ /* 595 */
MODIFIER_NONE,
0x00,
0,
/* COS_Fp80 */
},
{ /* 596 */
MODIFIER_NONE,
0xa2,
0,
/* CPUID */
},
{ /* 597 */
MODIFIER_NONE,
0x99,
0,
/* CQO */
},
{ /* 598 */
MODIFIER_NONE,
0xf1,
95,
/* CRC32r32m16 */
},
{ /* 599 */
MODIFIER_NONE,
0xf1,
95,
/* CRC32r32m32 */
},
{ /* 600 */
MODIFIER_NONE,
0xf0,
96,
/* CRC32r32m8 */
},
{ /* 601 */
MODIFIER_NONE,
0xf1,
97,
/* CRC32r32r16 */
},
{ /* 602 */
MODIFIER_NONE,
0xf1,
98,
/* CRC32r32r32 */
},
{ /* 603 */
MODIFIER_NONE,
0xf0,
99,
/* CRC32r32r8 */
},
{ /* 604 */
MODIFIER_NONE,
0xf1,
19,
/* CRC32r64m64 */
},
{ /* 605 */
MODIFIER_NONE,
0xf0,
100,
/* CRC32r64m8 */
},
{ /* 606 */
MODIFIER_NONE,
0xf1,
21,
/* CRC32r64r64 */
},
{ /* 607 */
MODIFIER_NONE,
0xf0,
101,
/* CRC32r64r8 */
},
{ /* 608 */
MODIFIER_NONE,
0x2e,
0,
/* CS_PREFIX */
},
{ /* 609 */
MODIFIER_NONE,
0xe6,
102,
/* CVTDQ2PDrm */
},
{ /* 610 */
MODIFIER_NONE,
0xe6,
45,
/* CVTDQ2PDrr */
},
{ /* 611 */
MODIFIER_NONE,
0x5b,
44,
/* CVTDQ2PSrm */
},
{ /* 612 */
MODIFIER_NONE,
0x5b,
45,
/* CVTDQ2PSrr */
},
{ /* 613 */
MODIFIER_NONE,
0xe6,
44,
/* CVTPD2DQrm */
},
{ /* 614 */
MODIFIER_NONE,
0xe6,
45,
/* CVTPD2DQrr */
},
{ /* 615 */
MODIFIER_NONE,
0x5a,
44,
/* CVTPD2PSrm */
},
{ /* 616 */
MODIFIER_NONE,
0x5a,
45,
/* CVTPD2PSrr */
},
{ /* 617 */
MODIFIER_NONE,
0x5b,
44,
/* CVTPS2DQrm */
},
{ /* 618 */
MODIFIER_NONE,
0x5b,
45,
/* CVTPS2DQrr */
},
{ /* 619 */
MODIFIER_NONE,
0x5a,
103,
/* CVTPS2PDrm */
},
{ /* 620 */
MODIFIER_NONE,
0x5a,
45,
/* CVTPS2PDrr */
},
{ /* 621 */
MODIFIER_NONE,
0x2d,
104,
/* CVTSD2SI64rm */
},
{ /* 622 */
MODIFIER_NONE,
0x2d,
105,
/* CVTSD2SI64rr */
},
{ /* 623 */
MODIFIER_NONE,
0x2d,
106,
/* CVTSD2SIrm */
},
{ /* 624 */
MODIFIER_NONE,
0x2d,
107,
/* CVTSD2SIrr */
},
{ /* 625 */
MODIFIER_NONE,
0x5a,
108,
/* CVTSD2SSrm */
},
{ /* 626 */
MODIFIER_NONE,
0x5a,
109,
/* CVTSD2SSrr */
},
{ /* 627 */
MODIFIER_NONE,
0x2a,
110,
/* CVTSI2SD64rm */
},
{ /* 628 */
MODIFIER_NONE,
0x2a,
111,
/* CVTSI2SD64rr */
},
{ /* 629 */
MODIFIER_NONE,
0x2a,
110,
/* CVTSI2SDrm */
},
{ /* 630 */
MODIFIER_NONE,
0x2a,
112,
/* CVTSI2SDrr */
},
{ /* 631 */
MODIFIER_NONE,
0x2a,
113,
/* CVTSI2SS64rm */
},
{ /* 632 */
MODIFIER_NONE,
0x2a,
114,
/* CVTSI2SS64rr */
},
{ /* 633 */
MODIFIER_NONE,
0x2a,
113,
/* CVTSI2SSrm */
},
{ /* 634 */
MODIFIER_NONE,
0x2a,
115,
/* CVTSI2SSrr */
},
{ /* 635 */
MODIFIER_NONE,
0x5a,
116,
/* CVTSS2SDrm */
},
{ /* 636 */
MODIFIER_NONE,
0x5a,
117,
/* CVTSS2SDrr */
},
{ /* 637 */
MODIFIER_NONE,
0x2d,
118,
/* CVTSS2SI64rm */
},
{ /* 638 */
MODIFIER_NONE,
0x2d,
105,
/* CVTSS2SI64rr */
},
{ /* 639 */
MODIFIER_NONE,
0x2d,
119,
/* CVTSS2SIrm */
},
{ /* 640 */
MODIFIER_NONE,
0x2d,
107,
/* CVTSS2SIrr */
},
{ /* 641 */
MODIFIER_NONE,
0xe6,
44,
/* CVTTPD2DQrm */
},
{ /* 642 */
MODIFIER_NONE,
0xe6,
45,
/* CVTTPD2DQrr */
},
{ /* 643 */
MODIFIER_NONE,
0x5b,
44,
/* CVTTPS2DQrm */
},
{ /* 644 */
MODIFIER_NONE,
0x5b,
45,
/* CVTTPS2DQrr */
},
{ /* 645 */
MODIFIER_NONE,
0x2c,
104,
/* CVTTSD2SI64rm */
},
{ /* 646 */
MODIFIER_NONE,
0x2c,
120,
/* CVTTSD2SI64rr */
},
{ /* 647 */
MODIFIER_NONE,
0x2c,
106,
/* CVTTSD2SIrm */
},
{ /* 648 */
MODIFIER_NONE,
0x2c,
121,
/* CVTTSD2SIrr */
},
{ /* 649 */
MODIFIER_NONE,
0x2c,
118,
/* CVTTSS2SI64rm */
},
{ /* 650 */
MODIFIER_NONE,
0x2c,
122,
/* CVTTSS2SI64rr */
},
{ /* 651 */
MODIFIER_NONE,
0x2c,
119,
/* CVTTSS2SIrm */
},
{ /* 652 */
MODIFIER_NONE,
0x2c,
123,
/* CVTTSS2SIrr */
},
{ /* 653 */
MODIFIER_NONE,
0x99,
0,
/* CWD */
},
{ /* 654 */
MODIFIER_NONE,
0x98,
0,
/* CWDE */
},
{ /* 655 */
MODIFIER_NONE,
0x27,
0,
/* DAA */
},
{ /* 656 */
MODIFIER_NONE,
0x2f,
0,
/* DAS */
},
{ /* 657 */
MODIFIER_NONE,
0x66,
0,
/* DATA16_PREFIX */
},
{ /* 658 */
MODIFIER_NONE,
0xff,
40,
/* DEC16m */
},
{ /* 659 */
MODIFIER_OPCODE,
0x48,
64,
/* DEC16r */
},
{ /* 660 */
MODIFIER_NONE,
0xff,
40,
/* DEC32m */
},
{ /* 661 */
MODIFIER_OPCODE,
0x48,
64,
/* DEC32r */
},
{ /* 662 */
MODIFIER_NONE,
0xff,
40,
/* DEC64_16m */
},
{ /* 663 */
MODIFIER_NONE,
0xff,
124,
/* DEC64_16r */
},
{ /* 664 */
MODIFIER_NONE,
0xff,
40,
/* DEC64_32m */
},
{ /* 665 */
MODIFIER_NONE,
0xff,
124,
/* DEC64_32r */
},
{ /* 666 */
MODIFIER_NONE,
0xff,
40,
/* DEC64m */
},
{ /* 667 */
MODIFIER_NONE,
0xff,
125,
/* DEC64r */
},
{ /* 668 */
MODIFIER_NONE,
0xfe,
75,
/* DEC8m */
},
{ /* 669 */
MODIFIER_NONE,
0xfe,
126,
/* DEC8r */
},
{ /* 670 */
MODIFIER_NONE,
0xf7,
40,
/* DIV16m */
},
{ /* 671 */
MODIFIER_NONE,
0xf7,
71,
/* DIV16r */
},
{ /* 672 */
MODIFIER_NONE,
0xf7,
40,
/* DIV32m */
},
{ /* 673 */
MODIFIER_NONE,
0xf7,
71,
/* DIV32r */
},
{ /* 674 */
MODIFIER_NONE,
0xf7,
40,
/* DIV64m */
},
{ /* 675 */
MODIFIER_NONE,
0xf7,
73,
/* DIV64r */
},
{ /* 676 */
MODIFIER_NONE,
0xf6,
75,
/* DIV8m */
},
{ /* 677 */
MODIFIER_NONE,
0xf6,
127,
/* DIV8r */
},
{ /* 678 */
MODIFIER_NONE,
0x5e,
32,
/* DIVPDrm */
},
{ /* 679 */
MODIFIER_NONE,
0x5e,
33,
/* DIVPDrr */
},
{ /* 680 */
MODIFIER_NONE,
0x5e,
32,
/* DIVPSrm */
},
{ /* 681 */
MODIFIER_NONE,
0x5e,
33,
/* DIVPSrr */
},
{ /* 682 */
MODIFIER_NONE,
0xd8,
38,
/* DIVR_F32m */
},
{ /* 683 */
MODIFIER_NONE,
0xdc,
39,
/* DIVR_F64m */
},
{ /* 684 */
MODIFIER_NONE,
0xde,
40,
/* DIVR_FI16m */
},
{ /* 685 */
MODIFIER_NONE,
0xda,
40,
/* DIVR_FI32m */
},
{ /* 686 */
MODIFIER_MODRM,
0xf0,
41,
/* DIVR_FPrST0 */
},
{ /* 687 */
MODIFIER_MODRM,
0xf8,
41,
/* DIVR_FST0r */
},
{ /* 688 */
MODIFIER_NONE,
0x00,
0,
/* DIVR_Fp32m */
},
{ /* 689 */
MODIFIER_NONE,
0x00,
0,
/* DIVR_Fp64m */
},
{ /* 690 */
MODIFIER_NONE,
0x00,
0,
/* DIVR_Fp64m32 */
},
{ /* 691 */
MODIFIER_NONE,
0x00,
0,
/* DIVR_Fp80m32 */
},
{ /* 692 */
MODIFIER_NONE,
0x00,
0,
/* DIVR_Fp80m64 */
},
{ /* 693 */
MODIFIER_NONE,
0x00,
0,
/* DIVR_FpI16m32 */
},
{ /* 694 */
MODIFIER_NONE,
0x00,
0,
/* DIVR_FpI16m64 */
},
{ /* 695 */
MODIFIER_NONE,
0x00,
0,
/* DIVR_FpI16m80 */
},
{ /* 696 */
MODIFIER_NONE,
0x00,
0,
/* DIVR_FpI32m32 */
},
{ /* 697 */
MODIFIER_NONE,
0x00,
0,
/* DIVR_FpI32m64 */
},
{ /* 698 */
MODIFIER_NONE,
0x00,
0,
/* DIVR_FpI32m80 */
},
{ /* 699 */
MODIFIER_MODRM,
0xf0,
41,
/* DIVR_FrST0 */
},
{ /* 700 */
MODIFIER_NONE,
0x5e,
34,
/* DIVSDrm */
},
{ /* 701 */
MODIFIER_NONE,
0x00,
0,
/* DIVSDrm_Int */
},
{ /* 702 */
MODIFIER_NONE,
0x5e,
35,
/* DIVSDrr */
},
{ /* 703 */
MODIFIER_NONE,
0x00,
0,
/* DIVSDrr_Int */
},
{ /* 704 */
MODIFIER_NONE,
0x5e,
36,
/* DIVSSrm */
},
{ /* 705 */
MODIFIER_NONE,
0x00,
0,
/* DIVSSrm_Int */
},
{ /* 706 */
MODIFIER_NONE,
0x5e,
37,
/* DIVSSrr */
},
{ /* 707 */
MODIFIER_NONE,
0x00,
0,
/* DIVSSrr_Int */
},
{ /* 708 */
MODIFIER_NONE,
0xd8,
38,
/* DIV_F32m */
},
{ /* 709 */
MODIFIER_NONE,
0xdc,
39,
/* DIV_F64m */
},
{ /* 710 */
MODIFIER_NONE,
0xde,
40,
/* DIV_FI16m */
},
{ /* 711 */
MODIFIER_NONE,
0xda,
40,
/* DIV_FI32m */
},
{ /* 712 */
MODIFIER_MODRM,
0xf8,
41,
/* DIV_FPrST0 */
},
{ /* 713 */
MODIFIER_MODRM,
0xf0,
41,
/* DIV_FST0r */
},
{ /* 714 */
MODIFIER_NONE,
0x00,
0,
/* DIV_Fp32 */
},
{ /* 715 */
MODIFIER_NONE,
0x00,
0,
/* DIV_Fp32m */
},
{ /* 716 */
MODIFIER_NONE,
0x00,
0,
/* DIV_Fp64 */
},
{ /* 717 */
MODIFIER_NONE,
0x00,
0,
/* DIV_Fp64m */
},
{ /* 718 */
MODIFIER_NONE,
0x00,
0,
/* DIV_Fp64m32 */
},
{ /* 719 */
MODIFIER_NONE,
0x00,
0,
/* DIV_Fp80 */
},
{ /* 720 */
MODIFIER_NONE,
0x00,
0,
/* DIV_Fp80m32 */
},
{ /* 721 */
MODIFIER_NONE,
0x00,
0,
/* DIV_Fp80m64 */
},
{ /* 722 */
MODIFIER_NONE,
0x00,
0,
/* DIV_FpI16m32 */
},
{ /* 723 */
MODIFIER_NONE,
0x00,
0,
/* DIV_FpI16m64 */
},
{ /* 724 */
MODIFIER_NONE,
0x00,
0,
/* DIV_FpI16m80 */
},
{ /* 725 */
MODIFIER_NONE,
0x00,
0,
/* DIV_FpI32m32 */
},
{ /* 726 */
MODIFIER_NONE,
0x00,
0,
/* DIV_FpI32m64 */
},
{ /* 727 */
MODIFIER_NONE,
0x00,
0,
/* DIV_FpI32m80 */
},
{ /* 728 */
MODIFIER_MODRM,
0xf8,
41,
/* DIV_FrST0 */
},
{ /* 729 */
MODIFIER_NONE,
0x41,
58,
/* DPPDrmi */
},
{ /* 730 */
MODIFIER_NONE,
0x41,
59,
/* DPPDrri */
},
{ /* 731 */
MODIFIER_NONE,
0x40,
58,
/* DPPSrmi */
},
{ /* 732 */
MODIFIER_NONE,
0x40,
59,
/* DPPSrri */
},
{ /* 733 */
MODIFIER_NONE,
0x3e,
0,
/* DS_PREFIX */
},
{ /* 734 */
MODIFIER_NONE,
0x00,
0,
/* EH_RETURN */
},
{ /* 735 */
MODIFIER_NONE,
0x00,
0,
/* EH_RETURN64 */
},
{ /* 736 */
MODIFIER_NONE,
0x00,
0,
/* EH_SjLj_LongJmp32 */
},
{ /* 737 */
MODIFIER_NONE,
0x00,
0,
/* EH_SjLj_LongJmp64 */
},
{ /* 738 */
MODIFIER_NONE,
0x00,
0,
/* EH_SjLj_SetJmp32 */
},
{ /* 739 */
MODIFIER_NONE,
0x00,
0,
/* EH_SjLj_SetJmp64 */
},
{ /* 740 */
MODIFIER_NONE,
0x00,
0,
/* EH_SjLj_Setup */
},
{ /* 741 */
MODIFIER_NONE,
0xc8,
128,
/* ENTER */
},
{ /* 742 */
MODIFIER_NONE,
0x26,
0,
/* ES_PREFIX */
},
{ /* 743 */
MODIFIER_NONE,
0x17,
129,
/* EXTRACTPSmr */
},
{ /* 744 */
MODIFIER_NONE,
0x17,
130,
/* EXTRACTPSrr */
},
{ /* 745 */
MODIFIER_NONE,
0x79,
33,
/* EXTRQ */
},
{ /* 746 */
MODIFIER_NONE,
0x78,
131,
/* EXTRQI */
},
{ /* 747 */
MODIFIER_NONE,
0xd9,
0,
/* F2XM1 */
},
{ /* 748 */
MODIFIER_NONE,
0x9a,
132,
/* FARCALL16i */
},
{ /* 749 */
MODIFIER_NONE,
0xff,
133,
/* FARCALL16m */
},
{ /* 750 */
MODIFIER_NONE,
0x9a,
134,
/* FARCALL32i */
},
{ /* 751 */
MODIFIER_NONE,
0xff,
135,
/* FARCALL32m */
},
{ /* 752 */
MODIFIER_NONE,
0xff,
136,
/* FARCALL64 */
},
{ /* 753 */
MODIFIER_NONE,
0xea,
132,
/* FARJMP16i */
},
{ /* 754 */
MODIFIER_NONE,
0xff,
133,
/* FARJMP16m */
},
{ /* 755 */
MODIFIER_NONE,
0xea,
134,
/* FARJMP32i */
},
{ /* 756 */
MODIFIER_NONE,
0xff,
135,
/* FARJMP32m */
},
{ /* 757 */
MODIFIER_NONE,
0xff,
136,
/* FARJMP64 */
},
{ /* 758 */
MODIFIER_NONE,
0xdf,
38,
/* FBLDm */
},
{ /* 759 */
MODIFIER_NONE,
0xdf,
38,
/* FBSTPm */
},
{ /* 760 */
MODIFIER_NONE,
0xd8,
38,
/* FCOM32m */
},
{ /* 761 */
MODIFIER_NONE,
0xdc,
39,
/* FCOM64m */
},
{ /* 762 */
MODIFIER_NONE,
0xd8,
38,
/* FCOMP32m */
},
{ /* 763 */
MODIFIER_NONE,
0xdc,
39,
/* FCOMP64m */
},
{ /* 764 */
MODIFIER_NONE,
0xde,
0,
/* FCOMPP */
},
{ /* 765 */
MODIFIER_NONE,
0xd9,
0,
/* FDECSTP */
},
{ /* 766 */
MODIFIER_NONE,
0x0e,
0,
/* FEMMS */
},
{ /* 767 */
MODIFIER_MODRM,
0xc0,
41,
/* FFREE */
},
{ /* 768 */
MODIFIER_NONE,
0xde,
40,
/* FICOM16m */
},
{ /* 769 */
MODIFIER_NONE,
0xda,
40,
/* FICOM32m */
},
{ /* 770 */
MODIFIER_NONE,
0xde,
40,
/* FICOMP16m */
},
{ /* 771 */
MODIFIER_NONE,
0xda,
40,
/* FICOMP32m */
},
{ /* 772 */
MODIFIER_NONE,
0xd9,
0,
/* FINCSTP */
},
{ /* 773 */
MODIFIER_NONE,
0xd9,
40,
/* FLDCW16m */
},
{ /* 774 */
MODIFIER_NONE,
0xd9,
38,
/* FLDENVm */
},
{ /* 775 */
MODIFIER_NONE,
0xd9,
0,
/* FLDL2E */
},
{ /* 776 */
MODIFIER_NONE,
0xd9,
0,
/* FLDL2T */
},
{ /* 777 */
MODIFIER_NONE,
0xd9,
0,
/* FLDLG2 */
},
{ /* 778 */
MODIFIER_NONE,
0xd9,
0,
/* FLDLN2 */
},
{ /* 779 */
MODIFIER_NONE,
0xd9,
0,
/* FLDPI */
},
{ /* 780 */
MODIFIER_NONE,
0xdb,
0,
/* FNCLEX */
},
{ /* 781 */
MODIFIER_NONE,
0xdb,
0,
/* FNINIT */
},
{ /* 782 */
MODIFIER_NONE,
0xd9,
0,
/* FNOP */
},
{ /* 783 */
MODIFIER_NONE,
0xd9,
40,
/* FNSTCW16m */
},
{ /* 784 */
MODIFIER_NONE,
0xdf,
0,
/* FNSTSW16r */
},
{ /* 785 */
MODIFIER_NONE,
0xdd,
38,
/* FNSTSWm */
},
{ /* 786 */
MODIFIER_NONE,
0x00,
0,
/* FP32_TO_INT16_IN_MEM */
},
{ /* 787 */
MODIFIER_NONE,
0x00,
0,
/* FP32_TO_INT32_IN_MEM */
},
{ /* 788 */
MODIFIER_NONE,
0x00,
0,
/* FP32_TO_INT64_IN_MEM */
},
{ /* 789 */
MODIFIER_NONE,
0x00,
0,
/* FP64_TO_INT16_IN_MEM */
},
{ /* 790 */
MODIFIER_NONE,
0x00,
0,
/* FP64_TO_INT32_IN_MEM */
},
{ /* 791 */
MODIFIER_NONE,
0x00,
0,
/* FP64_TO_INT64_IN_MEM */
},
{ /* 792 */
MODIFIER_NONE,
0x00,
0,
/* FP80_TO_INT16_IN_MEM */
},
{ /* 793 */
MODIFIER_NONE,
0x00,
0,
/* FP80_TO_INT32_IN_MEM */
},
{ /* 794 */
MODIFIER_NONE,
0x00,
0,
/* FP80_TO_INT64_IN_MEM */
},
{ /* 795 */
MODIFIER_NONE,
0xd9,
0,
/* FPATAN */
},
{ /* 796 */
MODIFIER_NONE,
0xd9,
0,
/* FPREM */
},
{ /* 797 */
MODIFIER_NONE,
0xd9,
0,
/* FPREM1 */
},
{ /* 798 */
MODIFIER_NONE,
0xd9,
0,
/* FPTAN */
},
{ /* 799 */
MODIFIER_NONE,
0xd9,
0,
/* FRNDINT */
},
{ /* 800 */
MODIFIER_NONE,
0xdd,
38,
/* FRSTORm */
},
{ /* 801 */
MODIFIER_NONE,
0xdd,
38,
/* FSAVEm */
},
{ /* 802 */
MODIFIER_NONE,
0xd9,
0,
/* FSCALE */
},
{ /* 803 */
MODIFIER_NONE,
0xd9,
0,
/* FSINCOS */
},
{ /* 804 */
MODIFIER_NONE,
0xd9,
38,
/* FSTENVm */
},
{ /* 805 */
MODIFIER_NONE,
0x64,
0,
/* FS_PREFIX */
},
{ /* 806 */
MODIFIER_NONE,
0xd9,
0,
/* FXAM */
},
{ /* 807 */
MODIFIER_NONE,
0xae,
137,
/* FXRSTOR */
},
{ /* 808 */
MODIFIER_NONE,
0xae,
137,
/* FXRSTOR64 */
},
{ /* 809 */
MODIFIER_NONE,
0xae,
137,
/* FXSAVE */
},
{ /* 810 */
MODIFIER_NONE,
0xae,
137,
/* FXSAVE64 */
},
{ /* 811 */
MODIFIER_NONE,
0xd9,
0,
/* FXTRACT */
},
{ /* 812 */
MODIFIER_NONE,
0xd9,
0,
/* FYL2X */
},
{ /* 813 */
MODIFIER_NONE,
0xd9,
0,
/* FYL2XP1 */
},
{ /* 814 */
MODIFIER_NONE,
0x00,
0,
/* FpPOP_RETVAL */
},
{ /* 815 */
MODIFIER_NONE,
0x55,
138,
/* FsANDNPDrm */
},
{ /* 816 */
MODIFIER_NONE,
0x55,
35,
/* FsANDNPDrr */
},
{ /* 817 */
MODIFIER_NONE,
0x55,
139,
/* FsANDNPSrm */
},
{ /* 818 */
MODIFIER_NONE,
0x55,
37,
/* FsANDNPSrr */
},
{ /* 819 */
MODIFIER_NONE,
0x54,
138,
/* FsANDPDrm */
},
{ /* 820 */
MODIFIER_NONE,
0x54,
35,
/* FsANDPDrr */
},
{ /* 821 */
MODIFIER_NONE,
0x54,
139,
/* FsANDPSrm */
},
{ /* 822 */
MODIFIER_NONE,
0x54,
37,
/* FsANDPSrr */
},
{ /* 823 */
MODIFIER_NONE,
0x00,
0,
/* FsFLD0SD */
},
{ /* 824 */
MODIFIER_NONE,
0x00,
0,
/* FsFLD0SS */
},
{ /* 825 */
MODIFIER_NONE,
0x28,
140,
/* FsMOVAPDrm */
},
{ /* 826 */
MODIFIER_NONE,
0x28,
141,
/* FsMOVAPDrr */
},
{ /* 827 */
MODIFIER_NONE,
0x28,
142,
/* FsMOVAPSrm */
},
{ /* 828 */
MODIFIER_NONE,
0x28,
143,
/* FsMOVAPSrr */
},
{ /* 829 */
MODIFIER_NONE,
0x56,
138,
/* FsORPDrm */
},
{ /* 830 */
MODIFIER_NONE,
0x56,
35,
/* FsORPDrr */
},
{ /* 831 */
MODIFIER_NONE,
0x56,
139,
/* FsORPSrm */
},
{ /* 832 */
MODIFIER_NONE,
0x56,
37,
/* FsORPSrr */
},
{ /* 833 */
MODIFIER_NONE,
0x00,
0,
/* FsVMOVAPDrm */
},
{ /* 834 */
MODIFIER_NONE,
0x28,
141,
/* FsVMOVAPDrr */
},
{ /* 835 */
MODIFIER_NONE,
0x00,
0,
/* FsVMOVAPSrm */
},
{ /* 836 */
MODIFIER_NONE,
0x28,
143,
/* FsVMOVAPSrr */
},
{ /* 837 */
MODIFIER_NONE,
0x57,
138,
/* FsXORPDrm */
},
{ /* 838 */
MODIFIER_NONE,
0x57,
35,
/* FsXORPDrr */
},
{ /* 839 */
MODIFIER_NONE,
0x57,
139,
/* FsXORPSrm */
},
{ /* 840 */
MODIFIER_NONE,
0x57,
37,
/* FsXORPSrr */
},
{ /* 841 */
MODIFIER_NONE,
0x65,
0,
/* GS_PREFIX */
},
{ /* 842 */
MODIFIER_NONE,
0x7c,
32,
/* HADDPDrm */
},
{ /* 843 */
MODIFIER_NONE,
0x7c,
33,
/* HADDPDrr */
},
{ /* 844 */
MODIFIER_NONE,
0x7c,
32,
/* HADDPSrm */
},
{ /* 845 */
MODIFIER_NONE,
0x7c,
33,
/* HADDPSrr */
},
{ /* 846 */
MODIFIER_NONE,
0xf4,
0,
/* HLT */
},
{ /* 847 */
MODIFIER_NONE,
0x7d,
32,
/* HSUBPDrm */
},
{ /* 848 */
MODIFIER_NONE,
0x7d,
33,
/* HSUBPDrr */
},
{ /* 849 */
MODIFIER_NONE,
0x7d,
32,
/* HSUBPSrm */
},
{ /* 850 */
MODIFIER_NONE,
0x7d,
33,
/* HSUBPSrr */
},
{ /* 851 */
MODIFIER_NONE,
0xf7,
40,
/* IDIV16m */
},
{ /* 852 */
MODIFIER_NONE,
0xf7,
71,
/* IDIV16r */
},
{ /* 853 */
MODIFIER_NONE,
0xf7,
40,
/* IDIV32m */
},
{ /* 854 */
MODIFIER_NONE,
0xf7,
71,
/* IDIV32r */
},
{ /* 855 */
MODIFIER_NONE,
0xf7,
40,
/* IDIV64m */
},
{ /* 856 */
MODIFIER_NONE,
0xf7,
73,
/* IDIV64r */
},
{ /* 857 */
MODIFIER_NONE,
0xf6,
75,
/* IDIV8m */
},
{ /* 858 */
MODIFIER_NONE,
0xf6,
127,
/* IDIV8r */
},
{ /* 859 */
MODIFIER_NONE,
0xdf,
40,
/* ILD_F16m */
},
{ /* 860 */
MODIFIER_NONE,
0xdb,
40,
/* ILD_F32m */
},
{ /* 861 */
MODIFIER_NONE,
0xdf,
40,
/* ILD_F64m */
},
{ /* 862 */
MODIFIER_NONE,
0x00,
0,
/* ILD_Fp16m32 */
},
{ /* 863 */
MODIFIER_NONE,
0x00,
0,
/* ILD_Fp16m64 */
},
{ /* 864 */
MODIFIER_NONE,
0x00,
0,
/* ILD_Fp16m80 */
},
{ /* 865 */
MODIFIER_NONE,
0x00,
0,
/* ILD_Fp32m32 */
},
{ /* 866 */
MODIFIER_NONE,
0x00,
0,
/* ILD_Fp32m64 */
},
{ /* 867 */
MODIFIER_NONE,
0x00,
0,
/* ILD_Fp32m80 */
},
{ /* 868 */
MODIFIER_NONE,
0x00,
0,
/* ILD_Fp64m32 */
},
{ /* 869 */
MODIFIER_NONE,
0x00,
0,
/* ILD_Fp64m64 */
},
{ /* 870 */
MODIFIER_NONE,
0x00,
0,
/* ILD_Fp64m80 */
},
{ /* 871 */
MODIFIER_NONE,
0xf7,
40,
/* IMUL16m */
},
{ /* 872 */
MODIFIER_NONE,
0xf7,
71,
/* IMUL16r */
},
{ /* 873 */
MODIFIER_NONE,
0xaf,
8,
/* IMUL16rm */
},
{ /* 874 */
MODIFIER_NONE,
0x69,
144,
/* IMUL16rmi */
},
{ /* 875 */
MODIFIER_NONE,
0x6b,
145,
/* IMUL16rmi8 */
},
{ /* 876 */
MODIFIER_NONE,
0xaf,
10,
/* IMUL16rr */
},
{ /* 877 */
MODIFIER_NONE,
0x69,
146,
/* IMUL16rri */
},
{ /* 878 */
MODIFIER_NONE,
0x6b,
147,
/* IMUL16rri8 */
},
{ /* 879 */
MODIFIER_NONE,
0xf7,
40,
/* IMUL32m */
},
{ /* 880 */
MODIFIER_NONE,
0xf7,
71,
/* IMUL32r */
},
{ /* 881 */
MODIFIER_NONE,
0xaf,
8,
/* IMUL32rm */
},
{ /* 882 */
MODIFIER_NONE,
0x69,
144,
/* IMUL32rmi */
},
{ /* 883 */
MODIFIER_NONE,
0x6b,
148,
/* IMUL32rmi8 */
},
{ /* 884 */
MODIFIER_NONE,
0xaf,
10,
/* IMUL32rr */
},
{ /* 885 */
MODIFIER_NONE,
0x69,
146,
/* IMUL32rri */
},
{ /* 886 */
MODIFIER_NONE,
0x6b,
149,
/* IMUL32rri8 */
},
{ /* 887 */
MODIFIER_NONE,
0xf7,
40,
/* IMUL64m */
},
{ /* 888 */
MODIFIER_NONE,
0xf7,
73,
/* IMUL64r */
},
{ /* 889 */
MODIFIER_NONE,
0xaf,
19,
/* IMUL64rm */
},
{ /* 890 */
MODIFIER_NONE,
0x69,
150,
/* IMUL64rmi32 */
},
{ /* 891 */
MODIFIER_NONE,
0x6b,
151,
/* IMUL64rmi8 */
},
{ /* 892 */
MODIFIER_NONE,
0xaf,
21,
/* IMUL64rr */
},
{ /* 893 */
MODIFIER_NONE,
0x69,
152,
/* IMUL64rri32 */
},
{ /* 894 */
MODIFIER_NONE,
0x6b,
153,
/* IMUL64rri8 */
},
{ /* 895 */
MODIFIER_NONE,
0xf6,
75,
/* IMUL8m */
},
{ /* 896 */
MODIFIER_NONE,
0xf6,
127,
/* IMUL8r */
},
{ /* 897 */
MODIFIER_NONE,
0x6d,
0,
/* IN16 */
},
{ /* 898 */
MODIFIER_NONE,
0xe5,
1,
/* IN16ri */
},
{ /* 899 */
MODIFIER_NONE,
0xed,
0,
/* IN16rr */
},
{ /* 900 */
MODIFIER_NONE,
0x6d,
0,
/* IN32 */
},
{ /* 901 */
MODIFIER_NONE,
0xe5,
1,
/* IN32ri */
},
{ /* 902 */
MODIFIER_NONE,
0xed,
0,
/* IN32rr */
},
{ /* 903 */
MODIFIER_NONE,
0x6c,
0,
/* IN8 */
},
{ /* 904 */
MODIFIER_NONE,
0xe4,
1,
/* IN8ri */
},
{ /* 905 */
MODIFIER_NONE,
0xec,
0,
/* IN8rr */
},
{ /* 906 */
MODIFIER_NONE,
0xff,
40,
/* INC16m */
},
{ /* 907 */
MODIFIER_OPCODE,
0x40,
64,
/* INC16r */
},
{ /* 908 */
MODIFIER_NONE,
0xff,
40,
/* INC32m */
},
{ /* 909 */
MODIFIER_OPCODE,
0x40,
64,
/* INC32r */
},
{ /* 910 */
MODIFIER_NONE,
0xff,
40,
/* INC64_16m */
},
{ /* 911 */
MODIFIER_NONE,
0xff,
124,
/* INC64_16r */
},
{ /* 912 */
MODIFIER_NONE,
0xff,
40,
/* INC64_32m */
},
{ /* 913 */
MODIFIER_NONE,
0xff,
124,
/* INC64_32r */
},
{ /* 914 */
MODIFIER_NONE,
0xff,
40,
/* INC64m */
},
{ /* 915 */
MODIFIER_NONE,
0xff,
125,
/* INC64r */
},
{ /* 916 */
MODIFIER_NONE,
0xfe,
75,
/* INC8m */
},
{ /* 917 */
MODIFIER_NONE,
0xfe,
126,
/* INC8r */
},
{ /* 918 */
MODIFIER_NONE,
0x21,
154,
/* INSERTPSrm */
},
{ /* 919 */
MODIFIER_NONE,
0x21,
59,
/* INSERTPSrr */
},
{ /* 920 */
MODIFIER_NONE,
0x79,
33,
/* INSERTQ */
},
{ /* 921 */
MODIFIER_NONE,
0x78,
155,
/* INSERTQI */
},
{ /* 922 */
MODIFIER_NONE,
0xcd,
1,
/* INT */
},
{ /* 923 */
MODIFIER_NONE,
0xcc,
0,
/* INT3 */
},
{ /* 924 */
MODIFIER_NONE,
0xce,
0,
/* INTO */
},
{ /* 925 */
MODIFIER_NONE,
0x08,
0,
/* INVD */
},
{ /* 926 */
MODIFIER_NONE,
0x80,
156,
/* INVEPT32 */
},
{ /* 927 */
MODIFIER_NONE,
0x80,
157,
/* INVEPT64 */
},
{ /* 928 */
MODIFIER_NONE,
0x01,
75,
/* INVLPG */
},
{ /* 929 */
MODIFIER_NONE,
0x01,
0,
/* INVLPGA32 */
},
{ /* 930 */
MODIFIER_NONE,
0x01,
0,
/* INVLPGA64 */
},
{ /* 931 */
MODIFIER_NONE,
0x82,
156,
/* INVPCID32 */
},
{ /* 932 */
MODIFIER_NONE,
0x82,
157,
/* INVPCID64 */
},
{ /* 933 */
MODIFIER_NONE,
0x81,
156,
/* INVVPID32 */
},
{ /* 934 */
MODIFIER_NONE,
0x81,
157,
/* INVVPID64 */
},
{ /* 935 */
MODIFIER_NONE,
0xcf,
0,
/* IRET16 */
},
{ /* 936 */
MODIFIER_NONE,
0xcf,
0,
/* IRET32 */
},
{ /* 937 */
MODIFIER_NONE,
0xcf,
0,
/* IRET64 */
},
{ /* 938 */
MODIFIER_NONE,
0xdf,
40,
/* ISTT_FP16m */
},
{ /* 939 */
MODIFIER_NONE,
0xdb,
40,
/* ISTT_FP32m */
},
{ /* 940 */
MODIFIER_NONE,
0xdd,
40,
/* ISTT_FP64m */
},
{ /* 941 */
MODIFIER_NONE,
0x00,
0,
/* ISTT_Fp16m32 */
},
{ /* 942 */
MODIFIER_NONE,
0x00,
0,
/* ISTT_Fp16m64 */
},
{ /* 943 */
MODIFIER_NONE,
0x00,
0,
/* ISTT_Fp16m80 */
},
{ /* 944 */
MODIFIER_NONE,
0x00,
0,
/* ISTT_Fp32m32 */
},
{ /* 945 */
MODIFIER_NONE,
0x00,
0,
/* ISTT_Fp32m64 */
},
{ /* 946 */
MODIFIER_NONE,
0x00,
0,
/* ISTT_Fp32m80 */
},
{ /* 947 */
MODIFIER_NONE,
0x00,
0,
/* ISTT_Fp64m32 */
},
{ /* 948 */
MODIFIER_NONE,
0x00,
0,
/* ISTT_Fp64m64 */
},
{ /* 949 */
MODIFIER_NONE,
0x00,
0,
/* ISTT_Fp64m80 */
},
{ /* 950 */
MODIFIER_NONE,
0xdf,
40,
/* IST_F16m */
},
{ /* 951 */
MODIFIER_NONE,
0xdb,
40,
/* IST_F32m */
},
{ /* 952 */
MODIFIER_NONE,
0xdf,
40,
/* IST_FP16m */
},
{ /* 953 */
MODIFIER_NONE,
0xdb,
40,
/* IST_FP32m */
},
{ /* 954 */
MODIFIER_NONE,
0xdf,
40,
/* IST_FP64m */
},
{ /* 955 */
MODIFIER_NONE,
0x00,
0,
/* IST_Fp16m32 */
},
{ /* 956 */
MODIFIER_NONE,
0x00,
0,
/* IST_Fp16m64 */
},
{ /* 957 */
MODIFIER_NONE,
0x00,
0,
/* IST_Fp16m80 */
},
{ /* 958 */
MODIFIER_NONE,
0x00,
0,
/* IST_Fp32m32 */
},
{ /* 959 */
MODIFIER_NONE,
0x00,
0,
/* IST_Fp32m64 */
},
{ /* 960 */
MODIFIER_NONE,
0x00,
0,
/* IST_Fp32m80 */
},
{ /* 961 */
MODIFIER_NONE,
0x00,
0,
/* IST_Fp64m32 */
},
{ /* 962 */
MODIFIER_NONE,
0x00,
0,
/* IST_Fp64m64 */
},
{ /* 963 */
MODIFIER_NONE,
0x00,
0,
/* IST_Fp64m80 */
},
{ /* 964 */
MODIFIER_NONE,
0x00,
0,
/* Int_CMPSDrm */
},
{ /* 965 */
MODIFIER_NONE,
0x00,
0,
/* Int_CMPSDrr */
},
{ /* 966 */
MODIFIER_NONE,
0x00,
0,
/* Int_CMPSSrm */
},
{ /* 967 */
MODIFIER_NONE,
0x00,
0,
/* Int_CMPSSrr */
},
{ /* 968 */
MODIFIER_NONE,
0x00,
0,
/* Int_COMISDrm */
},
{ /* 969 */
MODIFIER_NONE,
0x00,
0,
/* Int_COMISDrr */
},
{ /* 970 */
MODIFIER_NONE,
0x00,
0,
/* Int_COMISSrm */
},
{ /* 971 */
MODIFIER_NONE,
0x00,
0,
/* Int_COMISSrr */
},
{ /* 972 */
MODIFIER_NONE,
0x00,
0,
/* Int_CVTSD2SSrm */
},
{ /* 973 */
MODIFIER_NONE,
0x00,
0,
/* Int_CVTSD2SSrr */
},
{ /* 974 */
MODIFIER_NONE,
0x00,
0,
/* Int_CVTSI2SD64rm */
},
{ /* 975 */
MODIFIER_NONE,
0x00,
0,
/* Int_CVTSI2SD64rr */
},
{ /* 976 */
MODIFIER_NONE,
0x00,
0,
/* Int_CVTSI2SDrm */
},
{ /* 977 */
MODIFIER_NONE,
0x00,
0,
/* Int_CVTSI2SDrr */
},
{ /* 978 */
MODIFIER_NONE,
0x00,
0,
/* Int_CVTSI2SS64rm */
},
{ /* 979 */
MODIFIER_NONE,
0x00,
0,
/* Int_CVTSI2SS64rr */
},
{ /* 980 */
MODIFIER_NONE,
0x00,
0,
/* Int_CVTSI2SSrm */
},
{ /* 981 */
MODIFIER_NONE,
0x00,
0,
/* Int_CVTSI2SSrr */
},
{ /* 982 */
MODIFIER_NONE,
0x00,
0,
/* Int_CVTSS2SDrm */
},
{ /* 983 */
MODIFIER_NONE,
0x00,
0,
/* Int_CVTSS2SDrr */
},
{ /* 984 */
MODIFIER_NONE,
0x00,
0,
/* Int_CVTTSD2SI64rm */
},
{ /* 985 */
MODIFIER_NONE,
0x00,
0,
/* Int_CVTTSD2SI64rr */
},
{ /* 986 */
MODIFIER_NONE,
0x00,
0,
/* Int_CVTTSD2SIrm */
},
{ /* 987 */
MODIFIER_NONE,
0x00,
0,
/* Int_CVTTSD2SIrr */
},
{ /* 988 */
MODIFIER_NONE,
0x00,
0,
/* Int_CVTTSS2SI64rm */
},
{ /* 989 */
MODIFIER_NONE,
0x00,
0,
/* Int_CVTTSS2SI64rr */
},
{ /* 990 */
MODIFIER_NONE,
0x00,
0,
/* Int_CVTTSS2SIrm */
},
{ /* 991 */
MODIFIER_NONE,
0x00,
0,
/* Int_CVTTSS2SIrr */
},
{ /* 992 */
MODIFIER_NONE,
0x00,
0,
/* Int_MemBarrier */
},
{ /* 993 */
MODIFIER_NONE,
0x00,
0,
/* Int_UCOMISDrm */
},
{ /* 994 */
MODIFIER_NONE,
0x00,
0,
/* Int_UCOMISDrr */
},
{ /* 995 */
MODIFIER_NONE,
0x00,
0,
/* Int_UCOMISSrm */
},
{ /* 996 */
MODIFIER_NONE,
0x00,
0,
/* Int_UCOMISSrr */
},
{ /* 997 */
MODIFIER_NONE,
0x00,
0,
/* Int_VCMPSDrm */
},
{ /* 998 */
MODIFIER_NONE,
0x00,
0,
/* Int_VCMPSDrr */
},
{ /* 999 */
MODIFIER_NONE,
0x00,
0,
/* Int_VCMPSSrm */
},
{ /* 1000 */
MODIFIER_NONE,
0x00,
0,
/* Int_VCMPSSrr */
},
{ /* 1001 */
MODIFIER_NONE,
0x00,
0,
/* Int_VCOMISDrm */
},
{ /* 1002 */
MODIFIER_NONE,
0x00,
0,
/* Int_VCOMISDrr */
},
{ /* 1003 */
MODIFIER_NONE,
0x00,
0,
/* Int_VCOMISSrm */
},
{ /* 1004 */
MODIFIER_NONE,
0x00,
0,
/* Int_VCOMISSrr */
},
{ /* 1005 */
MODIFIER_NONE,
0x00,
0,
/* Int_VCVTSD2SSrm */
},
{ /* 1006 */
MODIFIER_NONE,
0x00,
0,
/* Int_VCVTSD2SSrr */
},
{ /* 1007 */
MODIFIER_NONE,
0x00,
0,
/* Int_VCVTSI2SD64rm */
},
{ /* 1008 */
MODIFIER_NONE,
0x00,
0,
/* Int_VCVTSI2SD64rr */
},
{ /* 1009 */
MODIFIER_NONE,
0x00,
0,
/* Int_VCVTSI2SDrm */
},
{ /* 1010 */
MODIFIER_NONE,
0x00,
0,
/* Int_VCVTSI2SDrr */
},
{ /* 1011 */
MODIFIER_NONE,
0x00,
0,
/* Int_VCVTSI2SS64rm */
},
{ /* 1012 */
MODIFIER_NONE,
0x00,
0,
/* Int_VCVTSI2SS64rr */
},
{ /* 1013 */
MODIFIER_NONE,
0x00,
0,
/* Int_VCVTSI2SSrm */
},
{ /* 1014 */
MODIFIER_NONE,
0x00,
0,
/* Int_VCVTSI2SSrr */
},
{ /* 1015 */
MODIFIER_NONE,
0x00,
0,
/* Int_VCVTSS2SDrm */
},
{ /* 1016 */
MODIFIER_NONE,
0x00,
0,
/* Int_VCVTSS2SDrr */
},
{ /* 1017 */
MODIFIER_NONE,
0x00,
0,
/* Int_VCVTTSD2SI64rm */
},
{ /* 1018 */
MODIFIER_NONE,
0x00,
0,
/* Int_VCVTTSD2SI64rr */
},
{ /* 1019 */
MODIFIER_NONE,
0x00,
0,
/* Int_VCVTTSD2SIrm */
},
{ /* 1020 */
MODIFIER_NONE,
0x00,
0,
/* Int_VCVTTSD2SIrr */
},
{ /* 1021 */
MODIFIER_NONE,
0x00,
0,
/* Int_VCVTTSS2SI64rm */
},
{ /* 1022 */
MODIFIER_NONE,
0x00,
0,
/* Int_VCVTTSS2SI64rr */
},
{ /* 1023 */
MODIFIER_NONE,
0x00,
0,
/* Int_VCVTTSS2SIrm */
},
{ /* 1024 */
MODIFIER_NONE,
0x00,
0,
/* Int_VCVTTSS2SIrr */
},
{ /* 1025 */
MODIFIER_NONE,
0x00,
0,
/* Int_VUCOMISDrm */
},
{ /* 1026 */
MODIFIER_NONE,
0x00,
0,
/* Int_VUCOMISDrr */
},
{ /* 1027 */
MODIFIER_NONE,
0x00,
0,
/* Int_VUCOMISSrm */
},
{ /* 1028 */
MODIFIER_NONE,
0x00,
0,
/* Int_VUCOMISSrr */
},
{ /* 1029 */
MODIFIER_NONE,
0x73,
158,
/* JAE_1 */
},
{ /* 1030 */
MODIFIER_NONE,
0x83,
159,
/* JAE_4 */
},
{ /* 1031 */
MODIFIER_NONE,
0x77,
158,
/* JA_1 */
},
{ /* 1032 */
MODIFIER_NONE,
0x87,
159,
/* JA_4 */
},
{ /* 1033 */
MODIFIER_NONE,
0x76,
158,
/* JBE_1 */
},
{ /* 1034 */
MODIFIER_NONE,
0x86,
159,
/* JBE_4 */
},
{ /* 1035 */
MODIFIER_NONE,
0x72,
158,
/* JB_1 */
},
{ /* 1036 */
MODIFIER_NONE,
0x82,
159,
/* JB_4 */
},
{ /* 1037 */
MODIFIER_NONE,
0xe3,
158,
/* JCXZ */
},
{ /* 1038 */
MODIFIER_NONE,
0xe3,
158,
/* JECXZ_32 */
},
{ /* 1039 */
MODIFIER_NONE,
0xe3,
158,
/* JECXZ_64 */
},
{ /* 1040 */
MODIFIER_NONE,
0x74,
158,
/* JE_1 */
},
{ /* 1041 */
MODIFIER_NONE,
0x84,
159,
/* JE_4 */
},
{ /* 1042 */
MODIFIER_NONE,
0x7d,
158,
/* JGE_1 */
},
{ /* 1043 */
MODIFIER_NONE,
0x8d,
159,
/* JGE_4 */
},
{ /* 1044 */
MODIFIER_NONE,
0x7f,
158,
/* JG_1 */
},
{ /* 1045 */
MODIFIER_NONE,
0x8f,
159,
/* JG_4 */
},
{ /* 1046 */
MODIFIER_NONE,
0x7e,
158,
/* JLE_1 */
},
{ /* 1047 */
MODIFIER_NONE,
0x8e,
159,
/* JLE_4 */
},
{ /* 1048 */
MODIFIER_NONE,
0x7c,
158,
/* JL_1 */
},
{ /* 1049 */
MODIFIER_NONE,
0x8c,
159,
/* JL_4 */
},
{ /* 1050 */
MODIFIER_NONE,
0xff,
40,
/* JMP32m */
},
{ /* 1051 */
MODIFIER_NONE,
0xff,
71,
/* JMP32r */
},
{ /* 1052 */
MODIFIER_NONE,
0xff,
40,
/* JMP64m */
},
{ /* 1053 */
MODIFIER_NONE,
0xe9,
159,
/* JMP64pcrel32 */
},
{ /* 1054 */
MODIFIER_NONE,
0xff,
73,
/* JMP64r */
},
{ /* 1055 */
MODIFIER_NONE,
0xeb,
158,
/* JMP_1 */
},
{ /* 1056 */
MODIFIER_NONE,
0xe9,
159,
/* JMP_4 */
},
{ /* 1057 */
MODIFIER_NONE,
0x75,
158,
/* JNE_1 */
},
{ /* 1058 */
MODIFIER_NONE,
0x85,
159,
/* JNE_4 */
},
{ /* 1059 */
MODIFIER_NONE,
0x71,
158,
/* JNO_1 */
},
{ /* 1060 */
MODIFIER_NONE,
0x81,
159,
/* JNO_4 */
},
{ /* 1061 */
MODIFIER_NONE,
0x7b,
158,
/* JNP_1 */
},
{ /* 1062 */
MODIFIER_NONE,
0x8b,
159,
/* JNP_4 */
},
{ /* 1063 */
MODIFIER_NONE,
0x79,
158,
/* JNS_1 */
},
{ /* 1064 */
MODIFIER_NONE,
0x89,
159,
/* JNS_4 */
},
{ /* 1065 */
MODIFIER_NONE,
0x70,
158,
/* JO_1 */
},
{ /* 1066 */
MODIFIER_NONE,
0x80,
159,
/* JO_4 */
},
{ /* 1067 */
MODIFIER_NONE,
0x7a,
158,
/* JP_1 */
},
{ /* 1068 */
MODIFIER_NONE,
0x8a,
159,
/* JP_4 */
},
{ /* 1069 */
MODIFIER_NONE,
0xe3,
158,
/* JRCXZ */
},
{ /* 1070 */
MODIFIER_NONE,
0x78,
158,
/* JS_1 */
},
{ /* 1071 */
MODIFIER_NONE,
0x88,
159,
/* JS_4 */
},
{ /* 1072 */
MODIFIER_NONE,
0x9f,
0,
/* LAHF */
},
{ /* 1073 */
MODIFIER_NONE,
0x02,
42,
/* LAR16rm */
},
{ /* 1074 */
MODIFIER_NONE,
0x02,
43,
/* LAR16rr */
},
{ /* 1075 */
MODIFIER_NONE,
0x02,
42,
/* LAR32rm */
},
{ /* 1076 */
MODIFIER_NONE,
0x02,
43,
/* LAR32rr */
},
{ /* 1077 */
MODIFIER_NONE,
0x02,
30,
/* LAR64rm */
},
{ /* 1078 */
MODIFIER_NONE,
0x02,
160,
/* LAR64rr */
},
{ /* 1079 */
MODIFIER_NONE,
0x00,
0,
/* LCMPXCHG16 */
},
{ /* 1080 */
MODIFIER_NONE,
0x00,
0,
/* LCMPXCHG16B */
},
{ /* 1081 */
MODIFIER_NONE,
0x00,
0,
/* LCMPXCHG32 */
},
{ /* 1082 */
MODIFIER_NONE,
0x00,
0,
/* LCMPXCHG64 */
},
{ /* 1083 */
MODIFIER_NONE,
0x00,
0,
/* LCMPXCHG8 */
},
{ /* 1084 */
MODIFIER_NONE,
0x00,
0,
/* LCMPXCHG8B */
},
{ /* 1085 */
MODIFIER_NONE,
0xf0,
44,
/* LDDQUrm */
},
{ /* 1086 */
MODIFIER_NONE,
0xae,
40,
/* LDMXCSR */
},
{ /* 1087 */
MODIFIER_NONE,
0xc5,
161,
/* LDS16rm */
},
{ /* 1088 */
MODIFIER_NONE,
0xc5,
162,
/* LDS32rm */
},
{ /* 1089 */
MODIFIER_NONE,
0xd9,
0,
/* LD_F0 */
},
{ /* 1090 */
MODIFIER_NONE,
0xd9,
0,
/* LD_F1 */
},
{ /* 1091 */
MODIFIER_NONE,
0xd9,
38,
/* LD_F32m */
},
{ /* 1092 */
MODIFIER_NONE,
0xdd,
39,
/* LD_F64m */
},
{ /* 1093 */
MODIFIER_NONE,
0xdb,
163,
/* LD_F80m */
},
{ /* 1094 */
MODIFIER_NONE,
0x00,
0,
/* LD_Fp032 */
},
{ /* 1095 */
MODIFIER_NONE,
0x00,
0,
/* LD_Fp064 */
},
{ /* 1096 */
MODIFIER_NONE,
0x00,
0,
/* LD_Fp080 */
},
{ /* 1097 */
MODIFIER_NONE,
0x00,
0,
/* LD_Fp132 */
},
{ /* 1098 */
MODIFIER_NONE,
0x00,
0,
/* LD_Fp164 */
},
{ /* 1099 */
MODIFIER_NONE,
0x00,
0,
/* LD_Fp180 */
},
{ /* 1100 */
MODIFIER_NONE,
0x00,
0,
/* LD_Fp32m */
},
{ /* 1101 */
MODIFIER_NONE,
0x00,
0,
/* LD_Fp32m64 */
},
{ /* 1102 */
MODIFIER_NONE,
0x00,
0,
/* LD_Fp32m80 */
},
{ /* 1103 */
MODIFIER_NONE,
0x00,
0,
/* LD_Fp64m */
},
{ /* 1104 */
MODIFIER_NONE,
0x00,
0,
/* LD_Fp64m80 */
},
{ /* 1105 */
MODIFIER_NONE,
0x00,
0,
/* LD_Fp80m */
},
{ /* 1106 */
MODIFIER_MODRM,
0xc0,
41,
/* LD_Frr */
},
{ /* 1107 */
MODIFIER_NONE,
0x8d,
42,
/* LEA16r */
},
{ /* 1108 */
MODIFIER_NONE,
0x8d,
42,
/* LEA32r */
},
{ /* 1109 */
MODIFIER_NONE,
0x8d,
164,
/* LEA64_32r */
},
{ /* 1110 */
MODIFIER_NONE,
0x8d,
165,
/* LEA64r */
},
{ /* 1111 */
MODIFIER_NONE,
0xc9,
0,
/* LEAVE */
},
{ /* 1112 */
MODIFIER_NONE,
0xc9,
0,
/* LEAVE64 */
},
{ /* 1113 */
MODIFIER_NONE,
0xc4,
161,
/* LES16rm */
},
{ /* 1114 */
MODIFIER_NONE,
0xc4,
162,
/* LES32rm */
},
{ /* 1115 */
MODIFIER_NONE,
0xae,
0,
/* LFENCE */
},
{ /* 1116 */
MODIFIER_NONE,
0xb4,
161,
/* LFS16rm */
},
{ /* 1117 */
MODIFIER_NONE,
0xb4,
162,
/* LFS32rm */
},
{ /* 1118 */
MODIFIER_NONE,
0xb4,
166,
/* LFS64rm */
},
{ /* 1119 */
MODIFIER_NONE,
0x01,
135,
/* LGDT16m */
},
{ /* 1120 */
MODIFIER_NONE,
0x01,
135,
/* LGDTm */
},
{ /* 1121 */
MODIFIER_NONE,
0xb5,
161,
/* LGS16rm */
},
{ /* 1122 */
MODIFIER_NONE,
0xb5,
162,
/* LGS32rm */
},
{ /* 1123 */
MODIFIER_NONE,
0xb5,
166,
/* LGS64rm */
},
{ /* 1124 */
MODIFIER_NONE,
0x01,
135,
/* LIDT16m */
},
{ /* 1125 */
MODIFIER_NONE,
0x01,
135,
/* LIDTm */
},
{ /* 1126 */
MODIFIER_NONE,
0x00,
40,
/* LLDT16m */
},
{ /* 1127 */
MODIFIER_NONE,
0x00,
167,
/* LLDT16r */
},
{ /* 1128 */
MODIFIER_NONE,
0x01,
40,
/* LMSW16m */
},
{ /* 1129 */
MODIFIER_NONE,
0x01,
167,
/* LMSW16r */
},
{ /* 1130 */
MODIFIER_NONE,
0x00,
0,
/* LOCK_ADD16mi */
},
{ /* 1131 */
MODIFIER_NONE,
0x00,
0,
/* LOCK_ADD16mi8 */
},
{ /* 1132 */
MODIFIER_NONE,
0x00,
0,
/* LOCK_ADD16mr */
},
{ /* 1133 */
MODIFIER_NONE,
0x00,
0,
/* LOCK_ADD32mi */
},
{ /* 1134 */
MODIFIER_NONE,
0x00,
0,
/* LOCK_ADD32mi8 */
},
{ /* 1135 */
MODIFIER_NONE,
0x00,
0,
/* LOCK_ADD32mr */
},
{ /* 1136 */
MODIFIER_NONE,
0x00,
0,
/* LOCK_ADD64mi32 */
},
{ /* 1137 */
MODIFIER_NONE,
0x00,
0,
/* LOCK_ADD64mi8 */
},
{ /* 1138 */
MODIFIER_NONE,
0x00,
0,
/* LOCK_ADD64mr */
},
{ /* 1139 */
MODIFIER_NONE,
0x00,
0,
/* LOCK_ADD8mi */
},
{ /* 1140 */
MODIFIER_NONE,
0x00,
0,
/* LOCK_ADD8mr */
},
{ /* 1141 */
MODIFIER_NONE,
0x00,
0,
/* LOCK_AND16mi */
},
{ /* 1142 */
MODIFIER_NONE,
0x00,
0,
/* LOCK_AND16mi8 */
},
{ /* 1143 */
MODIFIER_NONE,
0x00,
0,
/* LOCK_AND16mr */
},
{ /* 1144 */
MODIFIER_NONE,
0x00,
0,
/* LOCK_AND32mi */
},
{ /* 1145 */
MODIFIER_NONE,
0x00,
0,
/* LOCK_AND32mi8 */
},
{ /* 1146 */
MODIFIER_NONE,
0x00,
0,
/* LOCK_AND32mr */
},
{ /* 1147 */
MODIFIER_NONE,
0x00,
0,
/* LOCK_AND64mi32 */
},
{ /* 1148 */
MODIFIER_NONE,
0x00,
0,
/* LOCK_AND64mi8 */
},
{ /* 1149 */
MODIFIER_NONE,
0x00,
0,
/* LOCK_AND64mr */
},
{ /* 1150 */
MODIFIER_NONE,
0x00,
0,
/* LOCK_AND8mi */
},
{ /* 1151 */
MODIFIER_NONE,
0x00,
0,
/* LOCK_AND8mr */
},
{ /* 1152 */
MODIFIER_NONE,
0x00,
0,
/* LOCK_DEC16m */
},
{ /* 1153 */
MODIFIER_NONE,
0x00,
0,
/* LOCK_DEC32m */
},
{ /* 1154 */
MODIFIER_NONE,
0x00,
0,
/* LOCK_DEC64m */
},
{ /* 1155 */
MODIFIER_NONE,
0x00,
0,
/* LOCK_DEC8m */
},
{ /* 1156 */
MODIFIER_NONE,
0x00,
0,
/* LOCK_INC16m */
},
{ /* 1157 */
MODIFIER_NONE,
0x00,
0,
/* LOCK_INC32m */
},
{ /* 1158 */
MODIFIER_NONE,
0x00,
0,
/* LOCK_INC64m */
},
{ /* 1159 */
MODIFIER_NONE,
0x00,
0,
/* LOCK_INC8m */
},
{ /* 1160 */
MODIFIER_NONE,
0x00,
0,
/* LOCK_OR16mi */
},
{ /* 1161 */
MODIFIER_NONE,
0x00,
0,
/* LOCK_OR16mi8 */
},
{ /* 1162 */
MODIFIER_NONE,
0x00,
0,
/* LOCK_OR16mr */
},
{ /* 1163 */
MODIFIER_NONE,
0x00,
0,
/* LOCK_OR32mi */
},
{ /* 1164 */
MODIFIER_NONE,
0x00,
0,
/* LOCK_OR32mi8 */
},
{ /* 1165 */
MODIFIER_NONE,
0x00,
0,
/* LOCK_OR32mr */
},
{ /* 1166 */
MODIFIER_NONE,
0x00,
0,
/* LOCK_OR64mi32 */
},
{ /* 1167 */
MODIFIER_NONE,
0x00,
0,
/* LOCK_OR64mi8 */
},
{ /* 1168 */
MODIFIER_NONE,
0x00,
0,
/* LOCK_OR64mr */
},
{ /* 1169 */
MODIFIER_NONE,
0x00,
0,
/* LOCK_OR8mi */
},
{ /* 1170 */
MODIFIER_NONE,
0x00,
0,
/* LOCK_OR8mr */
},
{ /* 1171 */
MODIFIER_NONE,
0xf0,
0,
/* LOCK_PREFIX */
},
{ /* 1172 */
MODIFIER_NONE,
0x00,
0,
/* LOCK_SUB16mi */
},
{ /* 1173 */
MODIFIER_NONE,
0x00,
0,
/* LOCK_SUB16mi8 */
},
{ /* 1174 */
MODIFIER_NONE,
0x00,
0,
/* LOCK_SUB16mr */
},
{ /* 1175 */
MODIFIER_NONE,
0x00,
0,
/* LOCK_SUB32mi */
},
{ /* 1176 */
MODIFIER_NONE,
0x00,
0,
/* LOCK_SUB32mi8 */
},
{ /* 1177 */
MODIFIER_NONE,
0x00,
0,
/* LOCK_SUB32mr */
},
{ /* 1178 */
MODIFIER_NONE,
0x00,
0,
/* LOCK_SUB64mi32 */
},
{ /* 1179 */
MODIFIER_NONE,
0x00,
0,
/* LOCK_SUB64mi8 */
},
{ /* 1180 */
MODIFIER_NONE,
0x00,
0,
/* LOCK_SUB64mr */
},
{ /* 1181 */
MODIFIER_NONE,
0x00,
0,
/* LOCK_SUB8mi */
},
{ /* 1182 */
MODIFIER_NONE,
0x00,
0,
/* LOCK_SUB8mr */
},
{ /* 1183 */
MODIFIER_NONE,
0x00,
0,
/* LOCK_XOR16mi */
},
{ /* 1184 */
MODIFIER_NONE,
0x00,
0,
/* LOCK_XOR16mi8 */
},
{ /* 1185 */
MODIFIER_NONE,
0x00,
0,
/* LOCK_XOR16mr */
},
{ /* 1186 */
MODIFIER_NONE,
0x00,
0,
/* LOCK_XOR32mi */
},
{ /* 1187 */
MODIFIER_NONE,
0x00,
0,
/* LOCK_XOR32mi8 */
},
{ /* 1188 */
MODIFIER_NONE,
0x00,
0,
/* LOCK_XOR32mr */
},
{ /* 1189 */
MODIFIER_NONE,
0x00,
0,
/* LOCK_XOR64mi32 */
},
{ /* 1190 */
MODIFIER_NONE,
0x00,
0,
/* LOCK_XOR64mi8 */
},
{ /* 1191 */
MODIFIER_NONE,
0x00,
0,
/* LOCK_XOR64mr */
},
{ /* 1192 */
MODIFIER_NONE,
0x00,
0,
/* LOCK_XOR8mi */
},
{ /* 1193 */
MODIFIER_NONE,
0x00,
0,
/* LOCK_XOR8mr */
},
{ /* 1194 */
MODIFIER_NONE,
0xac,
0,
/* LODSB */
},
{ /* 1195 */
MODIFIER_NONE,
0xad,
0,
/* LODSD */
},
{ /* 1196 */
MODIFIER_NONE,
0xad,
0,
/* LODSQ */
},
{ /* 1197 */
MODIFIER_NONE,
0xad,
0,
/* LODSW */
},
{ /* 1198 */
MODIFIER_NONE,
0xe2,
158,
/* LOOP */
},
{ /* 1199 */
MODIFIER_NONE,
0xe1,
158,
/* LOOPE */
},
{ /* 1200 */
MODIFIER_NONE,
0xe0,
158,
/* LOOPNE */
},
{ /* 1201 */
MODIFIER_NONE,
0xca,
168,
/* LRETI */
},
{ /* 1202 */
MODIFIER_NONE,
0xca,
2,
/* LRETIW */
},
{ /* 1203 */
MODIFIER_NONE,
0xcb,
0,
/* LRETL */
},
{ /* 1204 */
MODIFIER_NONE,
0xcb,
0,
/* LRETQ */
},
{ /* 1205 */
MODIFIER_NONE,
0xcb,
0,
/* LRETW */
},
{ /* 1206 */
MODIFIER_NONE,
0x03,
42,
/* LSL16rm */
},
{ /* 1207 */
MODIFIER_NONE,
0x03,
43,
/* LSL16rr */
},
{ /* 1208 */
MODIFIER_NONE,
0x03,
42,
/* LSL32rm */
},
{ /* 1209 */
MODIFIER_NONE,
0x03,
43,
/* LSL32rr */
},
{ /* 1210 */
MODIFIER_NONE,
0x03,
30,
/* LSL64rm */
},
{ /* 1211 */
MODIFIER_NONE,
0x03,
31,
/* LSL64rr */
},
{ /* 1212 */
MODIFIER_NONE,
0xb2,
161,
/* LSS16rm */
},
{ /* 1213 */
MODIFIER_NONE,
0xb2,
162,
/* LSS32rm */
},
{ /* 1214 */
MODIFIER_NONE,
0xb2,
166,
/* LSS64rm */
},
{ /* 1215 */
MODIFIER_NONE,
0x00,
40,
/* LTRm */
},
{ /* 1216 */
MODIFIER_NONE,
0x00,
167,
/* LTRr */
},
{ /* 1217 */
MODIFIER_NONE,
0x00,
0,
/* LXADD16 */
},
{ /* 1218 */
MODIFIER_NONE,
0x00,
0,
/* LXADD32 */
},
{ /* 1219 */
MODIFIER_NONE,
0x00,
0,
/* LXADD64 */
},
{ /* 1220 */
MODIFIER_NONE,
0x00,
0,
/* LXADD8 */
},
{ /* 1221 */
MODIFIER_NONE,
0xbd,
42,
/* LZCNT16rm */
},
{ /* 1222 */
MODIFIER_NONE,
0xbd,
43,
/* LZCNT16rr */
},
{ /* 1223 */
MODIFIER_NONE,
0xbd,
42,
/* LZCNT32rm */
},
{ /* 1224 */
MODIFIER_NONE,
0xbd,
43,
/* LZCNT32rr */
},
{ /* 1225 */
MODIFIER_NONE,
0xbd,
30,
/* LZCNT64rm */
},
{ /* 1226 */
MODIFIER_NONE,
0xbd,
31,
/* LZCNT64rr */
},
{ /* 1227 */
MODIFIER_NONE,
0xf7,
45,
/* MASKMOVDQU */
},
{ /* 1228 */
MODIFIER_NONE,
0xf7,
45,
/* MASKMOVDQU64 */
},
{ /* 1229 */
MODIFIER_NONE,
0x00,
0,
/* MAXCPDrm */
},
{ /* 1230 */
MODIFIER_NONE,
0x00,
0,
/* MAXCPDrr */
},
{ /* 1231 */
MODIFIER_NONE,
0x00,
0,
/* MAXCPSrm */
},
{ /* 1232 */
MODIFIER_NONE,
0x00,
0,
/* MAXCPSrr */
},
{ /* 1233 */
MODIFIER_NONE,
0x00,
0,
/* MAXCSDrm */
},
{ /* 1234 */
MODIFIER_NONE,
0x00,
0,
/* MAXCSDrr */
},
{ /* 1235 */
MODIFIER_NONE,
0x00,
0,
/* MAXCSSrm */
},
{ /* 1236 */
MODIFIER_NONE,
0x00,
0,
/* MAXCSSrr */
},
{ /* 1237 */
MODIFIER_NONE,
0x5f,
32,
/* MAXPDrm */
},
{ /* 1238 */
MODIFIER_NONE,
0x5f,
33,
/* MAXPDrr */
},
{ /* 1239 */
MODIFIER_NONE,
0x5f,
32,
/* MAXPSrm */
},
{ /* 1240 */
MODIFIER_NONE,
0x5f,
33,
/* MAXPSrr */
},
{ /* 1241 */
MODIFIER_NONE,
0x5f,
34,
/* MAXSDrm */
},
{ /* 1242 */
MODIFIER_NONE,
0x00,
0,
/* MAXSDrm_Int */
},
{ /* 1243 */
MODIFIER_NONE,
0x5f,
35,
/* MAXSDrr */
},
{ /* 1244 */
MODIFIER_NONE,
0x00,
0,
/* MAXSDrr_Int */
},
{ /* 1245 */
MODIFIER_NONE,
0x5f,
36,
/* MAXSSrm */
},
{ /* 1246 */
MODIFIER_NONE,
0x00,
0,
/* MAXSSrm_Int */
},
{ /* 1247 */
MODIFIER_NONE,
0x5f,
37,
/* MAXSSrr */
},
{ /* 1248 */
MODIFIER_NONE,
0x00,
0,
/* MAXSSrr_Int */
},
{ /* 1249 */
MODIFIER_NONE,
0xae,
0,
/* MFENCE */
},
{ /* 1250 */
MODIFIER_NONE,
0x00,
0,
/* MINCPDrm */
},
{ /* 1251 */
MODIFIER_NONE,
0x00,
0,
/* MINCPDrr */
},
{ /* 1252 */
MODIFIER_NONE,
0x00,
0,
/* MINCPSrm */
},
{ /* 1253 */
MODIFIER_NONE,
0x00,
0,
/* MINCPSrr */
},
{ /* 1254 */
MODIFIER_NONE,
0x00,
0,
/* MINCSDrm */
},
{ /* 1255 */
MODIFIER_NONE,
0x00,
0,
/* MINCSDrr */
},
{ /* 1256 */
MODIFIER_NONE,
0x00,
0,
/* MINCSSrm */
},
{ /* 1257 */
MODIFIER_NONE,
0x00,
0,
/* MINCSSrr */
},
{ /* 1258 */
MODIFIER_NONE,
0x5d,
32,
/* MINPDrm */
},
{ /* 1259 */
MODIFIER_NONE,
0x5d,
33,
/* MINPDrr */
},
{ /* 1260 */
MODIFIER_NONE,
0x5d,
32,
/* MINPSrm */
},
{ /* 1261 */
MODIFIER_NONE,
0x5d,
33,
/* MINPSrr */
},
{ /* 1262 */
MODIFIER_NONE,
0x5d,
34,
/* MINSDrm */
},
{ /* 1263 */
MODIFIER_NONE,
0x00,
0,
/* MINSDrm_Int */
},
{ /* 1264 */
MODIFIER_NONE,
0x5d,
35,
/* MINSDrr */
},
{ /* 1265 */
MODIFIER_NONE,
0x00,
0,
/* MINSDrr_Int */
},
{ /* 1266 */
MODIFIER_NONE,
0x5d,
36,
/* MINSSrm */
},
{ /* 1267 */
MODIFIER_NONE,
0x00,
0,
/* MINSSrm_Int */
},
{ /* 1268 */
MODIFIER_NONE,
0x5d,
37,
/* MINSSrr */
},
{ /* 1269 */
MODIFIER_NONE,
0x00,
0,
/* MINSSrr_Int */
},
{ /* 1270 */
MODIFIER_NONE,
0x2d,
169,
/* MMX_CVTPD2PIirm */
},
{ /* 1271 */
MODIFIER_NONE,
0x2d,
170,
/* MMX_CVTPD2PIirr */
},
{ /* 1272 */
MODIFIER_NONE,
0x2a,
102,
/* MMX_CVTPI2PDirm */
},
{ /* 1273 */
MODIFIER_NONE,
0x2a,
171,
/* MMX_CVTPI2PDirr */
},
{ /* 1274 */
MODIFIER_NONE,
0x2a,
172,
/* MMX_CVTPI2PSirm */
},
{ /* 1275 */
MODIFIER_NONE,
0x2a,
173,
/* MMX_CVTPI2PSirr */
},
{ /* 1276 */
MODIFIER_NONE,
0x2d,
174,
/* MMX_CVTPS2PIirm */
},
{ /* 1277 */
MODIFIER_NONE,
0x2d,
170,
/* MMX_CVTPS2PIirr */
},
{ /* 1278 */
MODIFIER_NONE,
0x2c,
169,
/* MMX_CVTTPD2PIirm */
},
{ /* 1279 */
MODIFIER_NONE,
0x2c,
170,
/* MMX_CVTTPD2PIirr */
},
{ /* 1280 */
MODIFIER_NONE,
0x2c,
174,
/* MMX_CVTTPS2PIirm */
},
{ /* 1281 */
MODIFIER_NONE,
0x2c,
170,
/* MMX_CVTTPS2PIirr */
},
{ /* 1282 */
MODIFIER_NONE,
0x77,
0,
/* MMX_EMMS */
},
{ /* 1283 */
MODIFIER_NONE,
0xf7,
175,
/* MMX_MASKMOVQ */
},
{ /* 1284 */
MODIFIER_NONE,
0xf7,
175,
/* MMX_MASKMOVQ64 */
},
{ /* 1285 */
MODIFIER_NONE,
0x7e,
176,
/* MMX_MOVD64from64rr */
},
{ /* 1286 */
MODIFIER_NONE,
0x7e,
177,
/* MMX_MOVD64grr */
},
{ /* 1287 */
MODIFIER_NONE,
0x7e,
178,
/* MMX_MOVD64mr */
},
{ /* 1288 */
MODIFIER_NONE,
0x6e,
179,
/* MMX_MOVD64rm */
},
{ /* 1289 */
MODIFIER_NONE,
0x6e,
180,
/* MMX_MOVD64rr */
},
{ /* 1290 */
MODIFIER_NONE,
0x6e,
181,
/* MMX_MOVD64rrv164 */
},
{ /* 1291 */
MODIFIER_NONE,
0x6e,
181,
/* MMX_MOVD64to64rr */
},
{ /* 1292 */
MODIFIER_NONE,
0xd6,
170,
/* MMX_MOVDQ2Qrr */
},
{ /* 1293 */
MODIFIER_NONE,
0x00,
0,
/* MMX_MOVFR642Qrr */
},
{ /* 1294 */
MODIFIER_NONE,
0xe7,
178,
/* MMX_MOVNTQmr */
},
{ /* 1295 */
MODIFIER_NONE,
0xd6,
171,
/* MMX_MOVQ2DQrr */
},
{ /* 1296 */
MODIFIER_NONE,
0x00,
0,
/* MMX_MOVQ2FR64rr */
},
{ /* 1297 */
MODIFIER_NONE,
0x7f,
178,
/* MMX_MOVQ64mr */
},
{ /* 1298 */
MODIFIER_NONE,
0x6f,
179,
/* MMX_MOVQ64rm */
},
{ /* 1299 */
MODIFIER_NONE,
0x6f,
175,
/* MMX_MOVQ64rr */
},
{ /* 1300 */
MODIFIER_NONE,
0x6e,
179,
/* MMX_MOVZDI2PDIrm */
},
{ /* 1301 */
MODIFIER_NONE,
0x6e,
180,
/* MMX_MOVZDI2PDIrr */
},
{ /* 1302 */
MODIFIER_NONE,
0x1c,
179,
/* MMX_PABSBrm64 */
},
{ /* 1303 */
MODIFIER_NONE,
0x1c,
175,
/* MMX_PABSBrr64 */
},
{ /* 1304 */
MODIFIER_NONE,
0x1e,
179,
/* MMX_PABSDrm64 */
},
{ /* 1305 */
MODIFIER_NONE,
0x1e,
175,
/* MMX_PABSDrr64 */
},
{ /* 1306 */
MODIFIER_NONE,
0x1d,
179,
/* MMX_PABSWrm64 */
},
{ /* 1307 */
MODIFIER_NONE,
0x1d,
175,
/* MMX_PABSWrr64 */
},
{ /* 1308 */
MODIFIER_NONE,
0x6b,
182,
/* MMX_PACKSSDWirm */
},
{ /* 1309 */
MODIFIER_NONE,
0x6b,
183,
/* MMX_PACKSSDWirr */
},
{ /* 1310 */
MODIFIER_NONE,
0x63,
182,
/* MMX_PACKSSWBirm */
},
{ /* 1311 */
MODIFIER_NONE,
0x63,
183,
/* MMX_PACKSSWBirr */
},
{ /* 1312 */
MODIFIER_NONE,
0x67,
182,
/* MMX_PACKUSWBirm */
},
{ /* 1313 */
MODIFIER_NONE,
0x67,
183,
/* MMX_PACKUSWBirr */
},
{ /* 1314 */
MODIFIER_NONE,
0xfc,
182,
/* MMX_PADDBirm */
},
{ /* 1315 */
MODIFIER_NONE,
0xfc,
183,
/* MMX_PADDBirr */
},
{ /* 1316 */
MODIFIER_NONE,
0xfe,
182,
/* MMX_PADDDirm */
},
{ /* 1317 */
MODIFIER_NONE,
0xfe,
183,
/* MMX_PADDDirr */
},
{ /* 1318 */
MODIFIER_NONE,
0xd4,
182,
/* MMX_PADDQirm */
},
{ /* 1319 */
MODIFIER_NONE,
0xd4,
183,
/* MMX_PADDQirr */
},
{ /* 1320 */
MODIFIER_NONE,
0xec,
182,
/* MMX_PADDSBirm */
},
{ /* 1321 */
MODIFIER_NONE,
0xec,
183,
/* MMX_PADDSBirr */
},
{ /* 1322 */
MODIFIER_NONE,
0xed,
182,
/* MMX_PADDSWirm */
},
{ /* 1323 */
MODIFIER_NONE,
0xed,
183,
/* MMX_PADDSWirr */
},
{ /* 1324 */
MODIFIER_NONE,
0xdc,
182,
/* MMX_PADDUSBirm */
},
{ /* 1325 */
MODIFIER_NONE,
0xdc,
183,
/* MMX_PADDUSBirr */
},
{ /* 1326 */
MODIFIER_NONE,
0xdd,
182,
/* MMX_PADDUSWirm */
},
{ /* 1327 */
MODIFIER_NONE,
0xdd,
183,
/* MMX_PADDUSWirr */
},
{ /* 1328 */
MODIFIER_NONE,
0xfd,
182,
/* MMX_PADDWirm */
},
{ /* 1329 */
MODIFIER_NONE,
0xfd,
183,
/* MMX_PADDWirr */
},
{ /* 1330 */
MODIFIER_NONE,
0x0f,
184,
/* MMX_PALIGNR64irm */
},
{ /* 1331 */
MODIFIER_NONE,
0x0f,
185,
/* MMX_PALIGNR64irr */
},
{ /* 1332 */
MODIFIER_NONE,
0xdf,
182,
/* MMX_PANDNirm */
},
{ /* 1333 */
MODIFIER_NONE,
0xdf,
183,
/* MMX_PANDNirr */
},
{ /* 1334 */
MODIFIER_NONE,
0xdb,
182,
/* MMX_PANDirm */
},
{ /* 1335 */
MODIFIER_NONE,
0xdb,
183,
/* MMX_PANDirr */
},
{ /* 1336 */
MODIFIER_NONE,
0xe0,
182,
/* MMX_PAVGBirm */
},
{ /* 1337 */
MODIFIER_NONE,
0xe0,
183,
/* MMX_PAVGBirr */
},
{ /* 1338 */
MODIFIER_NONE,
0xe3,
182,
/* MMX_PAVGWirm */
},
{ /* 1339 */
MODIFIER_NONE,
0xe3,
183,
/* MMX_PAVGWirr */
},
{ /* 1340 */
MODIFIER_NONE,
0x74,
182,
/* MMX_PCMPEQBirm */
},
{ /* 1341 */
MODIFIER_NONE,
0x74,
183,
/* MMX_PCMPEQBirr */
},
{ /* 1342 */
MODIFIER_NONE,
0x76,
182,
/* MMX_PCMPEQDirm */
},
{ /* 1343 */
MODIFIER_NONE,
0x76,
183,
/* MMX_PCMPEQDirr */
},
{ /* 1344 */
MODIFIER_NONE,
0x75,
182,
/* MMX_PCMPEQWirm */
},
{ /* 1345 */
MODIFIER_NONE,
0x75,
183,
/* MMX_PCMPEQWirr */
},
{ /* 1346 */
MODIFIER_NONE,
0x64,
182,
/* MMX_PCMPGTBirm */
},
{ /* 1347 */
MODIFIER_NONE,
0x64,
183,
/* MMX_PCMPGTBirr */
},
{ /* 1348 */
MODIFIER_NONE,
0x66,
182,
/* MMX_PCMPGTDirm */
},
{ /* 1349 */
MODIFIER_NONE,
0x66,
183,
/* MMX_PCMPGTDirr */
},
{ /* 1350 */
MODIFIER_NONE,
0x65,
182,
/* MMX_PCMPGTWirm */
},
{ /* 1351 */
MODIFIER_NONE,
0x65,
183,
/* MMX_PCMPGTWirr */
},
{ /* 1352 */
MODIFIER_NONE,
0xc5,
186,
/* MMX_PEXTRWirri */
},
{ /* 1353 */
MODIFIER_NONE,
0x03,
182,
/* MMX_PHADDSWrm64 */
},
{ /* 1354 */
MODIFIER_NONE,
0x03,
183,
/* MMX_PHADDSWrr64 */
},
{ /* 1355 */
MODIFIER_NONE,
0x01,
182,
/* MMX_PHADDWrm64 */
},
{ /* 1356 */
MODIFIER_NONE,
0x01,
183,
/* MMX_PHADDWrr64 */
},
{ /* 1357 */
MODIFIER_NONE,
0x02,
182,
/* MMX_PHADDrm64 */
},
{ /* 1358 */
MODIFIER_NONE,
0x02,
183,
/* MMX_PHADDrr64 */
},
{ /* 1359 */
MODIFIER_NONE,
0x06,
182,
/* MMX_PHSUBDrm64 */
},
{ /* 1360 */
MODIFIER_NONE,
0x06,
183,
/* MMX_PHSUBDrr64 */
},
{ /* 1361 */
MODIFIER_NONE,
0x07,
182,
/* MMX_PHSUBSWrm64 */
},
{ /* 1362 */
MODIFIER_NONE,
0x07,
183,
/* MMX_PHSUBSWrr64 */
},
{ /* 1363 */
MODIFIER_NONE,
0x05,
182,
/* MMX_PHSUBWrm64 */
},
{ /* 1364 */
MODIFIER_NONE,
0x05,
183,
/* MMX_PHSUBWrr64 */
},
{ /* 1365 */
MODIFIER_NONE,
0xc4,
187,
/* MMX_PINSRWirmi */
},
{ /* 1366 */
MODIFIER_NONE,
0xc4,
188,
/* MMX_PINSRWirri */
},
{ /* 1367 */
MODIFIER_NONE,
0x04,
182,
/* MMX_PMADDUBSWrm64 */
},
{ /* 1368 */
MODIFIER_NONE,
0x04,
183,
/* MMX_PMADDUBSWrr64 */
},
{ /* 1369 */
MODIFIER_NONE,
0xf5,
182,
/* MMX_PMADDWDirm */
},
{ /* 1370 */
MODIFIER_NONE,
0xf5,
183,
/* MMX_PMADDWDirr */
},
{ /* 1371 */
MODIFIER_NONE,
0xee,
182,
/* MMX_PMAXSWirm */
},
{ /* 1372 */
MODIFIER_NONE,
0xee,
183,
/* MMX_PMAXSWirr */
},
{ /* 1373 */
MODIFIER_NONE,
0xde,
182,
/* MMX_PMAXUBirm */
},
{ /* 1374 */
MODIFIER_NONE,
0xde,
183,
/* MMX_PMAXUBirr */
},
{ /* 1375 */
MODIFIER_NONE,
0xea,
182,
/* MMX_PMINSWirm */
},
{ /* 1376 */
MODIFIER_NONE,
0xea,
183,
/* MMX_PMINSWirr */
},
{ /* 1377 */
MODIFIER_NONE,
0xda,
182,
/* MMX_PMINUBirm */
},
{ /* 1378 */
MODIFIER_NONE,
0xda,
183,
/* MMX_PMINUBirr */
},
{ /* 1379 */
MODIFIER_NONE,
0xd7,
189,
/* MMX_PMOVMSKBrr */
},
{ /* 1380 */
MODIFIER_NONE,
0x0b,
182,
/* MMX_PMULHRSWrm64 */
},
{ /* 1381 */
MODIFIER_NONE,
0x0b,
183,
/* MMX_PMULHRSWrr64 */
},
{ /* 1382 */
MODIFIER_NONE,
0xe4,
182,
/* MMX_PMULHUWirm */
},
{ /* 1383 */
MODIFIER_NONE,
0xe4,
183,
/* MMX_PMULHUWirr */
},
{ /* 1384 */
MODIFIER_NONE,
0xe5,
182,
/* MMX_PMULHWirm */
},
{ /* 1385 */
MODIFIER_NONE,
0xe5,
183,
/* MMX_PMULHWirr */
},
{ /* 1386 */
MODIFIER_NONE,
0xd5,
182,
/* MMX_PMULLWirm */
},
{ /* 1387 */
MODIFIER_NONE,
0xd5,
183,
/* MMX_PMULLWirr */
},
{ /* 1388 */
MODIFIER_NONE,
0xf4,
182,
/* MMX_PMULUDQirm */
},
{ /* 1389 */
MODIFIER_NONE,
0xf4,
183,
/* MMX_PMULUDQirr */
},
{ /* 1390 */
MODIFIER_NONE,
0xeb,
182,
/* MMX_PORirm */
},
{ /* 1391 */
MODIFIER_NONE,
0xeb,
183,
/* MMX_PORirr */
},
{ /* 1392 */
MODIFIER_NONE,
0xf6,
182,
/* MMX_PSADBWirm */
},
{ /* 1393 */
MODIFIER_NONE,
0xf6,
183,
/* MMX_PSADBWirr */
},
{ /* 1394 */
MODIFIER_NONE,
0x00,
182,
/* MMX_PSHUFBrm64 */
},
{ /* 1395 */
MODIFIER_NONE,
0x00,
183,
/* MMX_PSHUFBrr64 */
},
{ /* 1396 */
MODIFIER_NONE,
0x70,
190,
/* MMX_PSHUFWmi */
},
{ /* 1397 */
MODIFIER_NONE,
0x70,
191,
/* MMX_PSHUFWri */
},
{ /* 1398 */
MODIFIER_NONE,
0x08,
182,
/* MMX_PSIGNBrm64 */
},
{ /* 1399 */
MODIFIER_NONE,
0x08,
183,
/* MMX_PSIGNBrr64 */
},
{ /* 1400 */
MODIFIER_NONE,
0x0a,
182,
/* MMX_PSIGNDrm64 */
},
{ /* 1401 */
MODIFIER_NONE,
0x0a,
183,
/* MMX_PSIGNDrr64 */
},
{ /* 1402 */
MODIFIER_NONE,
0x09,
182,
/* MMX_PSIGNWrm64 */
},
{ /* 1403 */
MODIFIER_NONE,
0x09,
183,
/* MMX_PSIGNWrr64 */
},
{ /* 1404 */
MODIFIER_NONE,
0x72,
192,
/* MMX_PSLLDri */
},
{ /* 1405 */
MODIFIER_NONE,
0xf2,
182,
/* MMX_PSLLDrm */
},
{ /* 1406 */
MODIFIER_NONE,
0xf2,
183,
/* MMX_PSLLDrr */
},
{ /* 1407 */
MODIFIER_NONE,
0x73,
192,
/* MMX_PSLLQri */
},
{ /* 1408 */
MODIFIER_NONE,
0xf3,
182,
/* MMX_PSLLQrm */
},
{ /* 1409 */
MODIFIER_NONE,
0xf3,
183,
/* MMX_PSLLQrr */
},
{ /* 1410 */
MODIFIER_NONE,
0x71,
192,
/* MMX_PSLLWri */
},
{ /* 1411 */
MODIFIER_NONE,
0xf1,
182,
/* MMX_PSLLWrm */
},
{ /* 1412 */
MODIFIER_NONE,
0xf1,
183,
/* MMX_PSLLWrr */
},
{ /* 1413 */
MODIFIER_NONE,
0x72,
192,
/* MMX_PSRADri */
},
{ /* 1414 */
MODIFIER_NONE,
0xe2,
182,
/* MMX_PSRADrm */
},
{ /* 1415 */
MODIFIER_NONE,
0xe2,
183,
/* MMX_PSRADrr */
},
{ /* 1416 */
MODIFIER_NONE,
0x71,
192,
/* MMX_PSRAWri */
},
{ /* 1417 */
MODIFIER_NONE,
0xe1,
182,
/* MMX_PSRAWrm */
},
{ /* 1418 */
MODIFIER_NONE,
0xe1,
183,
/* MMX_PSRAWrr */
},
{ /* 1419 */
MODIFIER_NONE,
0x72,
192,
/* MMX_PSRLDri */
},
{ /* 1420 */
MODIFIER_NONE,
0xd2,
182,
/* MMX_PSRLDrm */
},
{ /* 1421 */
MODIFIER_NONE,
0xd2,
183,
/* MMX_PSRLDrr */
},
{ /* 1422 */
MODIFIER_NONE,
0x73,
192,
/* MMX_PSRLQri */
},
{ /* 1423 */
MODIFIER_NONE,
0xd3,
182,
/* MMX_PSRLQrm */
},
{ /* 1424 */
MODIFIER_NONE,
0xd3,
183,
/* MMX_PSRLQrr */
},
{ /* 1425 */
MODIFIER_NONE,
0x71,
192,
/* MMX_PSRLWri */
},
{ /* 1426 */
MODIFIER_NONE,
0xd1,
182,
/* MMX_PSRLWrm */
},
{ /* 1427 */
MODIFIER_NONE,
0xd1,
183,
/* MMX_PSRLWrr */
},
{ /* 1428 */
MODIFIER_NONE,
0xf8,
182,
/* MMX_PSUBBirm */
},
{ /* 1429 */
MODIFIER_NONE,
0xf8,
183,
/* MMX_PSUBBirr */
},
{ /* 1430 */
MODIFIER_NONE,
0xfa,
182,
/* MMX_PSUBDirm */
},
{ /* 1431 */
MODIFIER_NONE,
0xfa,
183,
/* MMX_PSUBDirr */
},
{ /* 1432 */
MODIFIER_NONE,
0xfb,
182,
/* MMX_PSUBQirm */
},
{ /* 1433 */
MODIFIER_NONE,
0xfb,
183,
/* MMX_PSUBQirr */
},
{ /* 1434 */
MODIFIER_NONE,
0xe8,
182,
/* MMX_PSUBSBirm */
},
{ /* 1435 */
MODIFIER_NONE,
0xe8,
183,
/* MMX_PSUBSBirr */
},
{ /* 1436 */
MODIFIER_NONE,
0xe9,
182,
/* MMX_PSUBSWirm */
},
{ /* 1437 */
MODIFIER_NONE,
0xe9,
183,
/* MMX_PSUBSWirr */
},
{ /* 1438 */
MODIFIER_NONE,
0xd8,
182,
/* MMX_PSUBUSBirm */
},
{ /* 1439 */
MODIFIER_NONE,
0xd8,
183,
/* MMX_PSUBUSBirr */
},
{ /* 1440 */
MODIFIER_NONE,
0xd9,
182,
/* MMX_PSUBUSWirm */
},
{ /* 1441 */
MODIFIER_NONE,
0xd9,
183,
/* MMX_PSUBUSWirr */
},
{ /* 1442 */
MODIFIER_NONE,
0xf9,
182,
/* MMX_PSUBWirm */
},
{ /* 1443 */
MODIFIER_NONE,
0xf9,
183,
/* MMX_PSUBWirr */
},
{ /* 1444 */
MODIFIER_NONE,
0x68,
182,
/* MMX_PUNPCKHBWirm */
},
{ /* 1445 */
MODIFIER_NONE,
0x68,
183,
/* MMX_PUNPCKHBWirr */
},
{ /* 1446 */
MODIFIER_NONE,
0x6a,
182,
/* MMX_PUNPCKHDQirm */
},
{ /* 1447 */
MODIFIER_NONE,
0x6a,
183,
/* MMX_PUNPCKHDQirr */
},
{ /* 1448 */
MODIFIER_NONE,
0x69,
182,
/* MMX_PUNPCKHWDirm */
},
{ /* 1449 */
MODIFIER_NONE,
0x69,
183,
/* MMX_PUNPCKHWDirr */
},
{ /* 1450 */
MODIFIER_NONE,
0x60,
182,
/* MMX_PUNPCKLBWirm */
},
{ /* 1451 */
MODIFIER_NONE,
0x60,
183,
/* MMX_PUNPCKLBWirr */
},
{ /* 1452 */
MODIFIER_NONE,
0x62,
182,
/* MMX_PUNPCKLDQirm */
},
{ /* 1453 */
MODIFIER_NONE,
0x62,
183,
/* MMX_PUNPCKLDQirr */
},
{ /* 1454 */
MODIFIER_NONE,
0x61,
182,
/* MMX_PUNPCKLWDirm */
},
{ /* 1455 */
MODIFIER_NONE,
0x61,
183,
/* MMX_PUNPCKLWDirr */
},
{ /* 1456 */
MODIFIER_NONE,
0xef,
182,
/* MMX_PXORirm */
},
{ /* 1457 */
MODIFIER_NONE,
0xef,
183,
/* MMX_PXORirr */
},
{ /* 1458 */
MODIFIER_NONE,
0x00,
0,
/* MONITOR */
},
{ /* 1459 */
MODIFIER_NONE,
0x01,
0,
/* MONITORrrr */
},
{ /* 1460 */
MODIFIER_NONE,
0xc0,
0,
/* MONTMUL */
},
{ /* 1461 */
MODIFIER_NONE,
0x00,
0,
/* MORESTACK_RET */
},
{ /* 1462 */
MODIFIER_NONE,
0x00,
0,
/* MORESTACK_RET_RESTORE_R10 */
},
{ /* 1463 */
MODIFIER_NONE,
0xa3,
193,
/* MOV16ao16 */
},
{ /* 1464 */
MODIFIER_NONE,
0xc7,
3,
/* MOV16mi */
},
{ /* 1465 */
MODIFIER_NONE,
0x89,
5,
/* MOV16mr */
},
{ /* 1466 */
MODIFIER_NONE,
0x8c,
194,
/* MOV16ms */
},
{ /* 1467 */
MODIFIER_NONE,
0xa1,
193,
/* MOV16o16a */
},
{ /* 1468 */
MODIFIER_NONE,
0x00,
0,
/* MOV16r0 */
},
{ /* 1469 */
MODIFIER_OPCODE,
0xb8,
195,
/* MOV16ri */
},
{ /* 1470 */
MODIFIER_NONE,
0x8b,
42,
/* MOV16rm */
},
{ /* 1471 */
MODIFIER_NONE,
0x89,
67,
/* MOV16rr */
},
{ /* 1472 */
MODIFIER_NONE,
0x8b,
43,
/* MOV16rr_REV */
},
{ /* 1473 */
MODIFIER_NONE,
0x8c,
196,
/* MOV16rs */
},
{ /* 1474 */
MODIFIER_NONE,
0x8e,
197,
/* MOV16sm */
},
{ /* 1475 */
MODIFIER_NONE,
0x8e,
198,
/* MOV16sr */
},
{ /* 1476 */
MODIFIER_NONE,
0xa3,
199,
/* MOV32ao32 */
},
{ /* 1477 */
MODIFIER_NONE,
0x22,
200,
/* MOV32cr */
},
{ /* 1478 */
MODIFIER_NONE,
0x23,
201,
/* MOV32dr */
},
{ /* 1479 */
MODIFIER_NONE,
0xc7,
3,
/* MOV32mi */
},
{ /* 1480 */
MODIFIER_NONE,
0x89,
5,
/* MOV32mr */
},
{ /* 1481 */
MODIFIER_NONE,
0x8c,
194,
/* MOV32ms */
},
{ /* 1482 */
MODIFIER_NONE,
0xa1,
199,
/* MOV32o32a */
},
{ /* 1483 */
MODIFIER_NONE,
0x00,
0,
/* MOV32r0 */
},
{ /* 1484 */
MODIFIER_NONE,
0x20,
202,
/* MOV32rc */
},
{ /* 1485 */
MODIFIER_NONE,
0x21,
203,
/* MOV32rd */
},
{ /* 1486 */
MODIFIER_OPCODE,
0xb8,
195,
/* MOV32ri */
},
{ /* 1487 */
MODIFIER_NONE,
0x8b,
42,
/* MOV32rm */
},
{ /* 1488 */
MODIFIER_NONE,
0x89,
67,
/* MOV32rr */
},
{ /* 1489 */
MODIFIER_NONE,
0x8b,
43,
/* MOV32rr_REV */
},
{ /* 1490 */
MODIFIER_NONE,
0x8c,
196,
/* MOV32rs */
},
{ /* 1491 */
MODIFIER_NONE,
0x8e,
197,
/* MOV32sm */
},
{ /* 1492 */
MODIFIER_NONE,
0x8e,
198,
/* MOV32sr */
},
{ /* 1493 */
MODIFIER_NONE,
0x22,
204,
/* MOV64cr */
},
{ /* 1494 */
MODIFIER_NONE,
0x23,
205,
/* MOV64dr */
},
{ /* 1495 */
MODIFIER_NONE,
0xc7,
14,
/* MOV64mi32 */
},
{ /* 1496 */
MODIFIER_NONE,
0x89,
16,
/* MOV64mr */
},
{ /* 1497 */
MODIFIER_NONE,
0x8c,
194,
/* MOV64ms */
},
{ /* 1498 */
MODIFIER_NONE,
0x00,
0,
/* MOV64r0 */
},
{ /* 1499 */
MODIFIER_NONE,
0x20,
206,
/* MOV64rc */
},
{ /* 1500 */
MODIFIER_NONE,
0x21,
207,
/* MOV64rd */
},
{ /* 1501 */
MODIFIER_OPCODE,
0xb8,
208,
/* MOV64ri */
},
{ /* 1502 */
MODIFIER_NONE,
0xc7,
77,
/* MOV64ri32 */
},
{ /* 1503 */
MODIFIER_NONE,
0x00,
0,
/* MOV64ri64i32 */
},
{ /* 1504 */
MODIFIER_NONE,
0x8b,
30,
/* MOV64rm */
},
{ /* 1505 */
MODIFIER_NONE,
0x89,
70,
/* MOV64rr */
},
{ /* 1506 */
MODIFIER_NONE,
0x8b,
31,
/* MOV64rr_REV */
},
{ /* 1507 */
MODIFIER_NONE,
0x8c,
209,
/* MOV64rs */
},
{ /* 1508 */
MODIFIER_NONE,
0x8e,
197,
/* MOV64sm */
},
{ /* 1509 */
MODIFIER_NONE,
0x8e,
210,
/* MOV64sr */
},
{ /* 1510 */
MODIFIER_NONE,
0x6e,
211,
/* MOV64toPQIrr */
},
{ /* 1511 */
MODIFIER_NONE,
0x00,
0,
/* MOV64toSDrm */
},
{ /* 1512 */
MODIFIER_NONE,
0x00,
0,
/* MOV64toSDrr */
},
{ /* 1513 */
MODIFIER_NONE,
0xa2,
212,
/* MOV8ao8 */
},
{ /* 1514 */
MODIFIER_NONE,
0xc6,
22,
/* MOV8mi */
},
{ /* 1515 */
MODIFIER_NONE,
0x88,
23,
/* MOV8mr */
},
{ /* 1516 */
MODIFIER_NONE,
0x00,
0,
/* MOV8mr_NOREX */
},
{ /* 1517 */
MODIFIER_NONE,
0xa0,
212,
/* MOV8o8a */
},
{ /* 1518 */
MODIFIER_NONE,
0x00,
0,
/* MOV8r0 */
},
{ /* 1519 */
MODIFIER_OPCODE,
0xb0,
213,
/* MOV8ri */
},
{ /* 1520 */
MODIFIER_NONE,
0x8a,
79,
/* MOV8rm */
},
{ /* 1521 */
MODIFIER_NONE,
0x00,
0,
/* MOV8rm_NOREX */
},
{ /* 1522 */
MODIFIER_NONE,
0x88,
80,
/* MOV8rr */
},
{ /* 1523 */
MODIFIER_NONE,
0x00,
0,
/* MOV8rr_NOREX */
},
{ /* 1524 */
MODIFIER_NONE,
0x8a,
81,
/* MOV8rr_REV */
},
{ /* 1525 */
MODIFIER_NONE,
0x29,
214,
/* MOVAPDmr */
},
{ /* 1526 */
MODIFIER_NONE,
0x28,
44,
/* MOVAPDrm */
},
{ /* 1527 */
MODIFIER_NONE,
0x28,
45,
/* MOVAPDrr */
},
{ /* 1528 */
MODIFIER_NONE,
0x29,
215,
/* MOVAPDrr_REV */
},
{ /* 1529 */
MODIFIER_NONE,
0x29,
214,
/* MOVAPSmr */
},
{ /* 1530 */
MODIFIER_NONE,
0x28,
44,
/* MOVAPSrm */
},
{ /* 1531 */
MODIFIER_NONE,
0x28,
45,
/* MOVAPSrr */
},
{ /* 1532 */
MODIFIER_NONE,
0x29,
215,
/* MOVAPSrr_REV */
},
{ /* 1533 */
MODIFIER_NONE,
0xf1,
5,
/* MOVBE16mr */
},
{ /* 1534 */
MODIFIER_NONE,
0xf0,
42,
/* MOVBE16rm */
},
{ /* 1535 */
MODIFIER_NONE,
0xf1,
5,
/* MOVBE32mr */
},
{ /* 1536 */
MODIFIER_NONE,
0xf0,
42,
/* MOVBE32rm */
},
{ /* 1537 */
MODIFIER_NONE,
0xf1,
16,
/* MOVBE64mr */
},
{ /* 1538 */
MODIFIER_NONE,
0xf0,
30,
/* MOVBE64rm */
},
{ /* 1539 */
MODIFIER_NONE,
0x12,
103,
/* MOVDDUPrm */
},
{ /* 1540 */
MODIFIER_NONE,
0x12,
45,
/* MOVDDUPrr */
},
{ /* 1541 */
MODIFIER_NONE,
0x6e,
102,
/* MOVDI2PDIrm */
},
{ /* 1542 */
MODIFIER_NONE,
0x6e,
216,
/* MOVDI2PDIrr */
},
{ /* 1543 */
MODIFIER_NONE,
0x00,
0,
/* MOVDI2SSrm */
},
{ /* 1544 */
MODIFIER_NONE,
0x00,
0,
/* MOVDI2SSrr */
},
{ /* 1545 */
MODIFIER_NONE,
0x7f,
214,
/* MOVDQAmr */
},
{ /* 1546 */
MODIFIER_NONE,
0x6f,
44,
/* MOVDQArm */
},
{ /* 1547 */
MODIFIER_NONE,
0x6f,
45,
/* MOVDQArr */
},
{ /* 1548 */
MODIFIER_NONE,
0x7f,
215,
/* MOVDQArr_REV */
},
{ /* 1549 */
MODIFIER_NONE,
0x7f,
214,
/* MOVDQUmr */
},
{ /* 1550 */
MODIFIER_NONE,
0x6f,
44,
/* MOVDQUrm */
},
{ /* 1551 */
MODIFIER_NONE,
0x6f,
45,
/* MOVDQUrr */
},
{ /* 1552 */
MODIFIER_NONE,
0x7f,
215,
/* MOVDQUrr_REV */
},
{ /* 1553 */
MODIFIER_NONE,
0x12,
33,
/* MOVHLPSrr */
},
{ /* 1554 */
MODIFIER_NONE,
0x17,
217,
/* MOVHPDmr */
},
{ /* 1555 */
MODIFIER_NONE,
0x16,
218,
/* MOVHPDrm */
},
{ /* 1556 */
MODIFIER_NONE,
0x17,
217,
/* MOVHPSmr */
},
{ /* 1557 */
MODIFIER_NONE,
0x16,
218,
/* MOVHPSrm */
},
{ /* 1558 */
MODIFIER_NONE,
0x16,
33,
/* MOVLHPSrr */
},
{ /* 1559 */
MODIFIER_NONE,
0x13,
217,
/* MOVLPDmr */
},
{ /* 1560 */
MODIFIER_NONE,
0x12,
218,
/* MOVLPDrm */
},
{ /* 1561 */
MODIFIER_NONE,
0x13,
217,
/* MOVLPSmr */
},
{ /* 1562 */
MODIFIER_NONE,
0x12,
218,
/* MOVLPSrm */
},
{ /* 1563 */
MODIFIER_NONE,
0xd6,
219,
/* MOVLQ128mr */
},
{ /* 1564 */
MODIFIER_NONE,
0x50,
220,
/* MOVMSKPDrr32 */
},
{ /* 1565 */
MODIFIER_NONE,
0x50,
105,
/* MOVMSKPDrr64 */
},
{ /* 1566 */
MODIFIER_NONE,
0x50,
107,
/* MOVMSKPSrr32 */
},
{ /* 1567 */
MODIFIER_NONE,
0x50,
105,
/* MOVMSKPSrr64 */
},
{ /* 1568 */
MODIFIER_NONE,
0x2a,
44,
/* MOVNTDQArm */
},
{ /* 1569 */
MODIFIER_NONE,
0xe7,
214,
/* MOVNTDQmr */
},
{ /* 1570 */
MODIFIER_NONE,
0xc3,
16,
/* MOVNTI_64mr */
},
{ /* 1571 */
MODIFIER_NONE,
0xc3,
5,
/* MOVNTImr */
},
{ /* 1572 */
MODIFIER_NONE,
0x2b,
214,
/* MOVNTPDmr */
},
{ /* 1573 */
MODIFIER_NONE,
0x2b,
214,
/* MOVNTPSmr */
},
{ /* 1574 */
MODIFIER_NONE,
0x2b,
217,
/* MOVNTSD */
},
{ /* 1575 */
MODIFIER_NONE,
0x2b,
221,
/* MOVNTSS */
},
{ /* 1576 */
MODIFIER_NONE,
0x00,
0,
/* MOVPC32r */
},
{ /* 1577 */
MODIFIER_NONE,
0x7e,
219,
/* MOVPDI2DImr */
},
{ /* 1578 */
MODIFIER_NONE,
0x7e,
222,
/* MOVPDI2DIrr */
},
{ /* 1579 */
MODIFIER_NONE,
0xd6,
219,
/* MOVPQI2QImr */
},
{ /* 1580 */
MODIFIER_NONE,
0x7e,
223,
/* MOVPQIto64rr */
},
{ /* 1581 */
MODIFIER_NONE,
0x7e,
102,
/* MOVQI2PQIrm */
},
{ /* 1582 */
MODIFIER_NONE,
0x7e,
45,
/* MOVQxrxr */
},
{ /* 1583 */
MODIFIER_NONE,
0xa4,
0,
/* MOVSB */
},
{ /* 1584 */
MODIFIER_NONE,
0xa5,
0,
/* MOVSD */
},
{ /* 1585 */
MODIFIER_NONE,
0x11,
224,
/* MOVSDmr */
},
{ /* 1586 */
MODIFIER_NONE,
0x10,
225,
/* MOVSDrm */
},
{ /* 1587 */
MODIFIER_NONE,
0x10,
226,
/* MOVSDrr */
},
{ /* 1588 */
MODIFIER_NONE,
0x11,
227,
/* MOVSDrr_REV */
},
{ /* 1589 */
MODIFIER_NONE,
0x00,
0,
/* MOVSDto64mr */
},
{ /* 1590 */
MODIFIER_NONE,
0x00,
0,
/* MOVSDto64rr */
},
{ /* 1591 */
MODIFIER_NONE,
0x16,
44,
/* MOVSHDUPrm */
},
{ /* 1592 */
MODIFIER_NONE,
0x16,
45,
/* MOVSHDUPrr */
},
{ /* 1593 */
MODIFIER_NONE,
0x12,
44,
/* MOVSLDUPrm */
},
{ /* 1594 */
MODIFIER_NONE,
0x12,
45,
/* MOVSLDUPrr */
},
{ /* 1595 */
MODIFIER_NONE,
0xa5,
0,
/* MOVSQ */
},
{ /* 1596 */
MODIFIER_NONE,
0x00,
0,
/* MOVSS2DImr */
},
{ /* 1597 */
MODIFIER_NONE,
0x00,
0,
/* MOVSS2DIrr */
},
{ /* 1598 */
MODIFIER_NONE,
0x11,
228,
/* MOVSSmr */
},
{ /* 1599 */
MODIFIER_NONE,
0x10,
229,
/* MOVSSrm */
},
{ /* 1600 */
MODIFIER_NONE,
0x10,
230,
/* MOVSSrr */
},
{ /* 1601 */
MODIFIER_NONE,
0x11,
231,
/* MOVSSrr_REV */
},
{ /* 1602 */
MODIFIER_NONE,
0xa5,
0,
/* MOVSW */
},
{ /* 1603 */
MODIFIER_NONE,
0xbe,
232,
/* MOVSX16rm8 */
},
{ /* 1604 */
MODIFIER_NONE,
0xbe,
233,
/* MOVSX16rr8 */
},
{ /* 1605 */
MODIFIER_NONE,
0xbf,
42,
/* MOVSX32rm16 */
},
{ /* 1606 */
MODIFIER_NONE,
0xbe,
232,
/* MOVSX32rm8 */
},
{ /* 1607 */
MODIFIER_NONE,
0xbf,
234,
/* MOVSX32rr16 */
},
{ /* 1608 */
MODIFIER_NONE,
0xbe,
233,
/* MOVSX32rr8 */
},
{ /* 1609 */
MODIFIER_NONE,
0xbf,
30,
/* MOVSX64rm16 */
},
{ /* 1610 */
MODIFIER_NONE,
0x63,
30,
/* MOVSX64rm32 */
},
{ /* 1611 */
MODIFIER_NONE,
0xbe,
235,
/* MOVSX64rm8 */
},
{ /* 1612 */
MODIFIER_NONE,
0xbf,
236,
/* MOVSX64rr16 */
},
{ /* 1613 */
MODIFIER_NONE,
0x63,
160,
/* MOVSX64rr32 */
},
{ /* 1614 */
MODIFIER_NONE,
0xbe,
237,
/* MOVSX64rr8 */
},
{ /* 1615 */
MODIFIER_NONE,
0x11,
214,
/* MOVUPDmr */
},
{ /* 1616 */
MODIFIER_NONE,
0x10,
44,
/* MOVUPDrm */
},
{ /* 1617 */
MODIFIER_NONE,
0x10,
45,
/* MOVUPDrr */
},
{ /* 1618 */
MODIFIER_NONE,
0x11,
215,
/* MOVUPDrr_REV */
},
{ /* 1619 */
MODIFIER_NONE,
0x11,
214,
/* MOVUPSmr */
},
{ /* 1620 */
MODIFIER_NONE,
0x10,
44,
/* MOVUPSrm */
},
{ /* 1621 */
MODIFIER_NONE,
0x10,
45,
/* MOVUPSrr */
},
{ /* 1622 */
MODIFIER_NONE,
0x11,
215,
/* MOVUPSrr_REV */
},
{ /* 1623 */
MODIFIER_NONE,
0x6e,
102,
/* MOVZDI2PDIrm */
},
{ /* 1624 */
MODIFIER_NONE,
0x6e,
216,
/* MOVZDI2PDIrr */
},
{ /* 1625 */
MODIFIER_NONE,
0x7e,
44,
/* MOVZPQILo2PQIrm */
},
{ /* 1626 */
MODIFIER_NONE,
0x7e,
45,
/* MOVZPQILo2PQIrr */
},
{ /* 1627 */
MODIFIER_NONE,
0x7e,
102,
/* MOVZQI2PQIrm */
},
{ /* 1628 */
MODIFIER_NONE,
0x6e,
211,
/* MOVZQI2PQIrr */
},
{ /* 1629 */
MODIFIER_NONE,
0xb6,
232,
/* MOVZX16rm8 */
},
{ /* 1630 */
MODIFIER_NONE,
0xb6,
233,
/* MOVZX16rr8 */
},
{ /* 1631 */
MODIFIER_NONE,
0x00,
0,
/* MOVZX32_NOREXrm8 */
},
{ /* 1632 */
MODIFIER_NONE,
0x00,
0,
/* MOVZX32_NOREXrr8 */
},
{ /* 1633 */
MODIFIER_NONE,
0xb7,
42,
/* MOVZX32rm16 */
},
{ /* 1634 */
MODIFIER_NONE,
0xb6,
232,
/* MOVZX32rm8 */
},
{ /* 1635 */
MODIFIER_NONE,
0xb7,
234,
/* MOVZX32rr16 */
},
{ /* 1636 */
MODIFIER_NONE,
0xb6,
233,
/* MOVZX32rr8 */
},
{ /* 1637 */
MODIFIER_NONE,
0x00,
0,
/* MOVZX64rm16 */
},
{ /* 1638 */
MODIFIER_NONE,
0xb7,
30,
/* MOVZX64rm16_Q */
},
{ /* 1639 */
MODIFIER_NONE,
0x00,
0,
/* MOVZX64rm32 */
},
{ /* 1640 */
MODIFIER_NONE,
0x00,
0,
/* MOVZX64rm8 */
},
{ /* 1641 */
MODIFIER_NONE,
0xb6,
235,
/* MOVZX64rm8_Q */
},
{ /* 1642 */
MODIFIER_NONE,
0x00,
0,
/* MOVZX64rr16 */
},
{ /* 1643 */
MODIFIER_NONE,
0xb7,
236,
/* MOVZX64rr16_Q */
},
{ /* 1644 */
MODIFIER_NONE,
0x00,
0,
/* MOVZX64rr32 */
},
{ /* 1645 */
MODIFIER_NONE,
0x00,
0,
/* MOVZX64rr8 */
},
{ /* 1646 */
MODIFIER_NONE,
0xb6,
237,
/* MOVZX64rr8_Q */
},
{ /* 1647 */
MODIFIER_NONE,
0x42,
58,
/* MPSADBWrmi */
},
{ /* 1648 */
MODIFIER_NONE,
0x42,
59,
/* MPSADBWrri */
},
{ /* 1649 */
MODIFIER_NONE,
0xf7,
40,
/* MUL16m */
},
{ /* 1650 */
MODIFIER_NONE,
0xf7,
71,
/* MUL16r */
},
{ /* 1651 */
MODIFIER_NONE,
0xf7,
40,
/* MUL32m */
},
{ /* 1652 */
MODIFIER_NONE,
0xf7,
71,
/* MUL32r */
},
{ /* 1653 */
MODIFIER_NONE,
0xf7,
40,
/* MUL64m */
},
{ /* 1654 */
MODIFIER_NONE,
0xf7,
73,
/* MUL64r */
},
{ /* 1655 */
MODIFIER_NONE,
0xf6,
75,
/* MUL8m */
},
{ /* 1656 */
MODIFIER_NONE,
0xf6,
127,
/* MUL8r */
},
{ /* 1657 */
MODIFIER_NONE,
0x59,
32,
/* MULPDrm */
},
{ /* 1658 */
MODIFIER_NONE,
0x59,
33,
/* MULPDrr */
},
{ /* 1659 */
MODIFIER_NONE,
0x59,
32,
/* MULPSrm */
},
{ /* 1660 */
MODIFIER_NONE,
0x59,
33,
/* MULPSrr */
},
{ /* 1661 */
MODIFIER_NONE,
0x59,
34,
/* MULSDrm */
},
{ /* 1662 */
MODIFIER_NONE,
0x00,
0,
/* MULSDrm_Int */
},
{ /* 1663 */
MODIFIER_NONE,
0x59,
35,
/* MULSDrr */
},
{ /* 1664 */
MODIFIER_NONE,
0x00,
0,
/* MULSDrr_Int */
},
{ /* 1665 */
MODIFIER_NONE,
0x59,
36,
/* MULSSrm */
},
{ /* 1666 */
MODIFIER_NONE,
0x00,
0,
/* MULSSrm_Int */
},
{ /* 1667 */
MODIFIER_NONE,
0x59,
37,
/* MULSSrr */
},
{ /* 1668 */
MODIFIER_NONE,
0x00,
0,
/* MULSSrr_Int */
},
{ /* 1669 */
MODIFIER_NONE,
0xf6,
48,
/* MULX32rm */
},
{ /* 1670 */
MODIFIER_NONE,
0xf6,
49,
/* MULX32rr */
},
{ /* 1671 */
MODIFIER_NONE,
0xf6,
50,
/* MULX64rm */
},
{ /* 1672 */
MODIFIER_NONE,
0xf6,
51,
/* MULX64rr */
},
{ /* 1673 */
MODIFIER_NONE,
0xd8,
38,
/* MUL_F32m */
},
{ /* 1674 */
MODIFIER_NONE,
0xdc,
39,
/* MUL_F64m */
},
{ /* 1675 */
MODIFIER_NONE,
0xde,
40,
/* MUL_FI16m */
},
{ /* 1676 */
MODIFIER_NONE,
0xda,
40,
/* MUL_FI32m */
},
{ /* 1677 */
MODIFIER_MODRM,
0xc8,
41,
/* MUL_FPrST0 */
},
{ /* 1678 */
MODIFIER_MODRM,
0xc8,
41,
/* MUL_FST0r */
},
{ /* 1679 */
MODIFIER_NONE,
0x00,
0,
/* MUL_Fp32 */
},
{ /* 1680 */
MODIFIER_NONE,
0x00,
0,
/* MUL_Fp32m */
},
{ /* 1681 */
MODIFIER_NONE,
0x00,
0,
/* MUL_Fp64 */
},
{ /* 1682 */
MODIFIER_NONE,
0x00,
0,
/* MUL_Fp64m */
},
{ /* 1683 */
MODIFIER_NONE,
0x00,
0,
/* MUL_Fp64m32 */
},
{ /* 1684 */
MODIFIER_NONE,
0x00,
0,
/* MUL_Fp80 */
},
{ /* 1685 */
MODIFIER_NONE,
0x00,
0,
/* MUL_Fp80m32 */
},
{ /* 1686 */
MODIFIER_NONE,
0x00,
0,
/* MUL_Fp80m64 */
},
{ /* 1687 */
MODIFIER_NONE,
0x00,
0,
/* MUL_FpI16m32 */
},
{ /* 1688 */
MODIFIER_NONE,
0x00,
0,
/* MUL_FpI16m64 */
},
{ /* 1689 */
MODIFIER_NONE,
0x00,
0,
/* MUL_FpI16m80 */
},
{ /* 1690 */
MODIFIER_NONE,
0x00,
0,
/* MUL_FpI32m32 */
},
{ /* 1691 */
MODIFIER_NONE,
0x00,
0,
/* MUL_FpI32m64 */
},
{ /* 1692 */
MODIFIER_NONE,
0x00,
0,
/* MUL_FpI32m80 */
},
{ /* 1693 */
MODIFIER_MODRM,
0xc8,
41,
/* MUL_FrST0 */
},
{ /* 1694 */
MODIFIER_NONE,
0x01,
0,
/* MWAITrr */
},
{ /* 1695 */
MODIFIER_NONE,
0x00,
0,
/* */
},
{ /* 1696 */
MODIFIER_NONE,
0x00,
0,
/* */
},
{ /* 1697 */
MODIFIER_NONE,
0x00,
0,
/* */
},
{ /* 1698 */
MODIFIER_NONE,
0x00,
0,
/* */
},
{ /* 1699 */
MODIFIER_NONE,
0x00,
0,
/* */
},
{ /* 1700 */
MODIFIER_NONE,
0x00,
0,
/* */
},
{ /* 1701 */
MODIFIER_NONE,
0x00,
0,
/* */
},
{ /* 1702 */
MODIFIER_NONE,
0x00,
0,
/* NACL_CG_CALL32r */
},
{ /* 1703 */
MODIFIER_NONE,
0x00,
0,
/* NACL_CG_CALL64pcrel32 */
},
{ /* 1704 */
MODIFIER_NONE,
0x00,
0,
/* NACL_CG_CALL64r */
},
{ /* 1705 */
MODIFIER_NONE,
0x00,
0,
/* NACL_CG_CALLpcrel32 */
},
{ /* 1706 */
MODIFIER_NONE,
0x00,
0,
/* NACL_CG_GD_TLS_addr64 */
},
{ /* 1707 */
MODIFIER_NONE,
0x00,
0,
/* NACL_CG_IE_TLS_addr32 */
},
{ /* 1708 */
MODIFIER_NONE,
0x00,
0,
/* NACL_CG_IE_TLS_addr64 */
},
{ /* 1709 */
MODIFIER_NONE,
0x00,
0,
/* NACL_CG_JMP64r */
},
{ /* 1710 */
MODIFIER_NONE,
0x00,
0,
/* NACL_CG_LE_TLS_addr32 */
},
{ /* 1711 */
MODIFIER_NONE,
0x00,
0,
/* NACL_CG_LE_TLS_addr64 */
},
{ /* 1712 */
MODIFIER_NONE,
0x00,
0,
/* NACL_CG_TAILJMPd64 */
},
{ /* 1713 */
MODIFIER_NONE,
0x00,
0,
/* NACL_CG_TAILJMPr64 */
},
{ /* 1714 */
MODIFIER_NONE,
0x00,
0,
/* NACL_CG_TCRETURNdi64 */
},
{ /* 1715 */
MODIFIER_NONE,
0x00,
0,
/* NACL_CG_TCRETURNri64 */
},
{ /* 1716 */
MODIFIER_NONE,
0x00,
0,
/* NACL_CG_TLS_addr32 */
},
{ /* 1717 */
MODIFIER_NONE,
0x00,
0,
/* NACL_CG_VAARG_64 */
},
{ /* 1718 */
MODIFIER_NONE,
0x00,
0,
/* */
},
{ /* 1719 */
MODIFIER_NONE,
0x00,
0,
/* */
},
{ /* 1720 */
MODIFIER_NONE,
0x00,
0,
/* */
},
{ /* 1721 */
MODIFIER_NONE,
0x00,
0,
/* */
},
{ /* 1722 */
MODIFIER_NONE,
0x00,
0,
/* */
},
{ /* 1723 */
MODIFIER_NONE,
0x00,
0,
/* */
},
{ /* 1724 */
MODIFIER_NONE,
0x00,
0,
/* */
},
{ /* 1725 */
MODIFIER_NONE,
0x00,
0,
/* */
},
{ /* 1726 */
MODIFIER_NONE,
0x00,
0,
/* */
},
{ /* 1727 */
MODIFIER_NONE,
0x00,
0,
/* */
},
{ /* 1728 */
MODIFIER_NONE,
0x00,
0,
/* */
},
{ /* 1729 */
MODIFIER_NONE,
0x00,
0,
/* */
},
{ /* 1730 */
MODIFIER_NONE,
0x00,
0,
/* */
},
{ /* 1731 */
MODIFIER_NONE,
0x00,
0,
/* */
},
{ /* 1732 */
MODIFIER_NONE,
0x00,
0,
/* */
},
{ /* 1733 */
MODIFIER_NONE,
0x00,
0,
/* */
},
{ /* 1734 */
MODIFIER_NONE,
0x00,
0,
/* */
},
{ /* 1735 */
MODIFIER_NONE,
0x00,
0,
/* */
},
{ /* 1736 */
MODIFIER_NONE,
0xf7,
40,
/* NEG16m */
},
{ /* 1737 */
MODIFIER_NONE,
0xf7,
124,
/* NEG16r */
},
{ /* 1738 */
MODIFIER_NONE,
0xf7,
40,
/* NEG32m */
},
{ /* 1739 */
MODIFIER_NONE,
0xf7,
124,
/* NEG32r */
},
{ /* 1740 */
MODIFIER_NONE,
0xf7,
40,
/* NEG64m */
},
{ /* 1741 */
MODIFIER_NONE,
0xf7,
125,
/* NEG64r */
},
{ /* 1742 */
MODIFIER_NONE,
0xf6,
75,
/* NEG8m */
},
{ /* 1743 */
MODIFIER_NONE,
0xf6,
126,
/* NEG8r */
},
{ /* 1744 */
MODIFIER_NONE,
0x90,
0,
/* NOOP */
},
{ /* 1745 */
MODIFIER_NONE,
0x1f,
40,
/* NOOPL */
},
{ /* 1746 */
MODIFIER_NONE,
0x1f,
40,
/* NOOPW */
},
{ /* 1747 */
MODIFIER_NONE,
0xf7,
40,
/* NOT16m */
},
{ /* 1748 */
MODIFIER_NONE,
0xf7,
124,
/* NOT16r */
},
{ /* 1749 */
MODIFIER_NONE,
0xf7,
40,
/* NOT32m */
},
{ /* 1750 */
MODIFIER_NONE,
0xf7,
124,
/* NOT32r */
},
{ /* 1751 */
MODIFIER_NONE,
0xf7,
40,
/* NOT64m */
},
{ /* 1752 */
MODIFIER_NONE,
0xf7,
125,
/* NOT64r */
},
{ /* 1753 */
MODIFIER_NONE,
0xf6,
75,
/* NOT8m */
},
{ /* 1754 */
MODIFIER_NONE,
0xf6,
126,
/* NOT8r */
},
{ /* 1755 */
MODIFIER_NONE,
0x0d,
2,
/* OR16i16 */
},
{ /* 1756 */
MODIFIER_NONE,
0x81,
3,
/* OR16mi */
},
{ /* 1757 */
MODIFIER_NONE,
0x83,
4,
/* OR16mi8 */
},
{ /* 1758 */
MODIFIER_NONE,
0x09,
5,
/* OR16mr */
},
{ /* 1759 */
MODIFIER_NONE,
0x81,
6,
/* OR16ri */
},
{ /* 1760 */
MODIFIER_NONE,
0x83,
7,
/* OR16ri8 */
},
{ /* 1761 */
MODIFIER_NONE,
0x0b,
8,
/* OR16rm */
},
{ /* 1762 */
MODIFIER_NONE,
0x09,
9,
/* OR16rr */
},
{ /* 1763 */
MODIFIER_NONE,
0x0b,
10,
/* OR16rr_REV */
},
{ /* 1764 */
MODIFIER_NONE,
0x0d,
2,
/* OR32i32 */
},
{ /* 1765 */
MODIFIER_NONE,
0x81,
3,
/* OR32mi */
},
{ /* 1766 */
MODIFIER_NONE,
0x83,
11,
/* OR32mi8 */
},
{ /* 1767 */
MODIFIER_NONE,
0x09,
5,
/* OR32mr */
},
{ /* 1768 */
MODIFIER_NONE,
0x00,
0,
/* OR32mrLocked */
},
{ /* 1769 */
MODIFIER_NONE,
0x81,
6,
/* OR32ri */
},
{ /* 1770 */
MODIFIER_NONE,
0x83,
12,
/* OR32ri8 */
},
{ /* 1771 */
MODIFIER_NONE,
0x0b,
8,
/* OR32rm */
},
{ /* 1772 */
MODIFIER_NONE,
0x09,
9,
/* OR32rr */
},
{ /* 1773 */
MODIFIER_NONE,
0x0b,
10,
/* OR32rr_REV */
},
{ /* 1774 */
MODIFIER_NONE,
0x0d,
13,
/* OR64i32 */
},
{ /* 1775 */
MODIFIER_NONE,
0x81,
14,
/* OR64mi32 */
},
{ /* 1776 */
MODIFIER_NONE,
0x83,
15,
/* OR64mi8 */
},
{ /* 1777 */
MODIFIER_NONE,
0x09,
16,
/* OR64mr */
},
{ /* 1778 */
MODIFIER_NONE,
0x81,
17,
/* OR64ri32 */
},
{ /* 1779 */
MODIFIER_NONE,
0x83,
18,
/* OR64ri8 */
},
{ /* 1780 */
MODIFIER_NONE,
0x0b,
19,
/* OR64rm */
},
{ /* 1781 */
MODIFIER_NONE,
0x09,
20,
/* OR64rr */
},
{ /* 1782 */
MODIFIER_NONE,
0x0b,
21,
/* OR64rr_REV */
},
{ /* 1783 */
MODIFIER_NONE,
0x0c,
1,
/* OR8i8 */
},
{ /* 1784 */
MODIFIER_NONE,
0x80,
22,
/* OR8mi */
},
{ /* 1785 */
MODIFIER_NONE,
0x08,
23,
/* OR8mr */
},
{ /* 1786 */
MODIFIER_NONE,
0x80,
24,
/* OR8ri */
},
{ /* 1787 */
MODIFIER_NONE,
0x0a,
25,
/* OR8rm */
},
{ /* 1788 */
MODIFIER_NONE,
0x08,
26,
/* OR8rr */
},
{ /* 1789 */
MODIFIER_NONE,
0x0a,
27,
/* OR8rr_REV */
},
{ /* 1790 */
MODIFIER_NONE,
0x56,
32,
/* ORPDrm */
},
{ /* 1791 */
MODIFIER_NONE,
0x56,
33,
/* ORPDrr */
},
{ /* 1792 */
MODIFIER_NONE,
0x56,
32,
/* ORPSrm */
},
{ /* 1793 */
MODIFIER_NONE,
0x56,
33,
/* ORPSrr */
},
{ /* 1794 */
MODIFIER_NONE,
0xe7,
1,
/* OUT16ir */
},
{ /* 1795 */
MODIFIER_NONE,
0xef,
0,
/* OUT16rr */
},
{ /* 1796 */
MODIFIER_NONE,
0xe7,
1,
/* OUT32ir */
},
{ /* 1797 */
MODIFIER_NONE,
0xef,
0,
/* OUT32rr */
},
{ /* 1798 */
MODIFIER_NONE,
0xe6,
1,
/* OUT8ir */
},
{ /* 1799 */
MODIFIER_NONE,
0xee,
0,
/* OUT8rr */
},
{ /* 1800 */
MODIFIER_NONE,
0x6e,
0,
/* OUTSB */
},
{ /* 1801 */
MODIFIER_NONE,
0x6f,
0,
/* OUTSD */
},
{ /* 1802 */
MODIFIER_NONE,
0x6f,
0,
/* OUTSW */
},
{ /* 1803 */
MODIFIER_NONE,
0x1c,
44,
/* PABSBrm128 */
},
{ /* 1804 */
MODIFIER_NONE,
0x1c,
45,
/* PABSBrr128 */
},
{ /* 1805 */
MODIFIER_NONE,
0x1e,
44,
/* PABSDrm128 */
},
{ /* 1806 */
MODIFIER_NONE,
0x1e,
45,
/* PABSDrr128 */
},
{ /* 1807 */
MODIFIER_NONE,
0x1d,
44,
/* PABSWrm128 */
},
{ /* 1808 */
MODIFIER_NONE,
0x1d,
45,
/* PABSWrr128 */
},
{ /* 1809 */
MODIFIER_NONE,
0x6b,
32,
/* PACKSSDWrm */
},
{ /* 1810 */
MODIFIER_NONE,
0x6b,
33,
/* PACKSSDWrr */
},
{ /* 1811 */
MODIFIER_NONE,
0x63,
32,
/* PACKSSWBrm */
},
{ /* 1812 */
MODIFIER_NONE,
0x63,
33,
/* PACKSSWBrr */
},
{ /* 1813 */
MODIFIER_NONE,
0x2b,
32,
/* PACKUSDWrm */
},
{ /* 1814 */
MODIFIER_NONE,
0x2b,
33,
/* PACKUSDWrr */
},
{ /* 1815 */
MODIFIER_NONE,
0x67,
32,
/* PACKUSWBrm */
},
{ /* 1816 */
MODIFIER_NONE,
0x67,
33,
/* PACKUSWBrr */
},
{ /* 1817 */
MODIFIER_NONE,
0xfc,
32,
/* PADDBrm */
},
{ /* 1818 */
MODIFIER_NONE,
0xfc,
33,
/* PADDBrr */
},
{ /* 1819 */
MODIFIER_NONE,
0xfe,
32,
/* PADDDrm */
},
{ /* 1820 */
MODIFIER_NONE,
0xfe,
33,
/* PADDDrr */
},
{ /* 1821 */
MODIFIER_NONE,
0xd4,
32,
/* PADDQrm */
},
{ /* 1822 */
MODIFIER_NONE,
0xd4,
33,
/* PADDQrr */
},
{ /* 1823 */
MODIFIER_NONE,
0xec,
32,
/* PADDSBrm */
},
{ /* 1824 */
MODIFIER_NONE,
0xec,
33,
/* PADDSBrr */
},
{ /* 1825 */
MODIFIER_NONE,
0xed,
32,
/* PADDSWrm */
},
{ /* 1826 */
MODIFIER_NONE,
0xed,
33,
/* PADDSWrr */
},
{ /* 1827 */
MODIFIER_NONE,
0xdc,
32,
/* PADDUSBrm */
},
{ /* 1828 */
MODIFIER_NONE,
0xdc,
33,
/* PADDUSBrr */
},
{ /* 1829 */
MODIFIER_NONE,
0xdd,
32,
/* PADDUSWrm */
},
{ /* 1830 */
MODIFIER_NONE,
0xdd,
33,
/* PADDUSWrr */
},
{ /* 1831 */
MODIFIER_NONE,
0xfd,
32,
/* PADDWrm */
},
{ /* 1832 */
MODIFIER_NONE,
0xfd,
33,
/* PADDWrr */
},
{ /* 1833 */
MODIFIER_NONE,
0x0f,
83,
/* PALIGNR128rm */
},
{ /* 1834 */
MODIFIER_NONE,
0x0f,
85,
/* PALIGNR128rr */
},
{ /* 1835 */
MODIFIER_NONE,
0xdf,
32,
/* PANDNrm */
},
{ /* 1836 */
MODIFIER_NONE,
0xdf,
33,
/* PANDNrr */
},
{ /* 1837 */
MODIFIER_NONE,
0xdb,
32,
/* PANDrm */
},
{ /* 1838 */
MODIFIER_NONE,
0xdb,
33,
/* PANDrr */
},
{ /* 1839 */
MODIFIER_NONE,
0x90,
0,
/* PAUSE */
},
{ /* 1840 */
MODIFIER_NONE,
0xe0,
32,
/* PAVGBrm */
},
{ /* 1841 */
MODIFIER_NONE,
0xe0,
33,
/* PAVGBrr */
},
{ /* 1842 */
MODIFIER_NONE,
0x00,
0,
/* */
},
{ /* 1843 */
MODIFIER_NONE,
0x00,
0,
/* */
},
{ /* 1844 */
MODIFIER_NONE,
0xe3,
32,
/* PAVGWrm */
},
{ /* 1845 */
MODIFIER_NONE,
0xe3,
33,
/* PAVGWrr */
},
{ /* 1846 */
MODIFIER_NONE,
0x10,
32,
/* PBLENDVBrm0 */
},
{ /* 1847 */
MODIFIER_NONE,
0x10,
33,
/* PBLENDVBrr0 */
},
{ /* 1848 */
MODIFIER_NONE,
0x0e,
58,
/* PBLENDWrmi */
},
{ /* 1849 */
MODIFIER_NONE,
0x0e,
59,
/* PBLENDWrri */
},
{ /* 1850 */
MODIFIER_NONE,
0x44,
83,
/* PCLMULQDQrm */
},
{ /* 1851 */
MODIFIER_NONE,
0x44,
85,
/* PCLMULQDQrr */
},
{ /* 1852 */
MODIFIER_NONE,
0x74,
32,
/* PCMPEQBrm */
},
{ /* 1853 */
MODIFIER_NONE,
0x74,
33,
/* PCMPEQBrr */
},
{ /* 1854 */
MODIFIER_NONE,
0x76,
32,
/* PCMPEQDrm */
},
{ /* 1855 */
MODIFIER_NONE,
0x76,
33,
/* PCMPEQDrr */
},
{ /* 1856 */
MODIFIER_NONE,
0x29,
32,
/* PCMPEQQrm */
},
{ /* 1857 */
MODIFIER_NONE,
0x29,
33,
/* PCMPEQQrr */
},
{ /* 1858 */
MODIFIER_NONE,
0x75,
32,
/* PCMPEQWrm */
},
{ /* 1859 */
MODIFIER_NONE,
0x75,
33,
/* PCMPEQWrr */
},
{ /* 1860 */
MODIFIER_NONE,
0x00,
0,
/* PCMPESTRIMEM */
},
{ /* 1861 */
MODIFIER_NONE,
0x00,
0,
/* PCMPESTRIREG */
},
{ /* 1862 */
MODIFIER_NONE,
0x61,
46,
/* PCMPESTRIrm */
},
{ /* 1863 */
MODIFIER_NONE,
0x61,
47,
/* PCMPESTRIrr */
},
{ /* 1864 */
MODIFIER_NONE,
0x00,
0,
/* PCMPESTRM128MEM */
},
{ /* 1865 */
MODIFIER_NONE,
0x00,
0,
/* PCMPESTRM128REG */
},
{ /* 1866 */
MODIFIER_NONE,
0x60,
46,
/* PCMPESTRM128rm */
},
{ /* 1867 */
MODIFIER_NONE,
0x60,
47,
/* PCMPESTRM128rr */
},
{ /* 1868 */
MODIFIER_NONE,
0x64,
32,
/* PCMPGTBrm */
},
{ /* 1869 */
MODIFIER_NONE,
0x64,
33,
/* PCMPGTBrr */
},
{ /* 1870 */
MODIFIER_NONE,
0x66,
32,
/* PCMPGTDrm */
},
{ /* 1871 */
MODIFIER_NONE,
0x66,
33,
/* PCMPGTDrr */
},
{ /* 1872 */
MODIFIER_NONE,
0x37,
32,
/* PCMPGTQrm */
},
{ /* 1873 */
MODIFIER_NONE,
0x37,
33,
/* PCMPGTQrr */
},
{ /* 1874 */
MODIFIER_NONE,
0x65,
32,
/* PCMPGTWrm */
},
{ /* 1875 */
MODIFIER_NONE,
0x65,
33,
/* PCMPGTWrr */
},
{ /* 1876 */
MODIFIER_NONE,
0x00,
0,
/* PCMPISTRIMEM */
},
{ /* 1877 */
MODIFIER_NONE,
0x00,
0,
/* PCMPISTRIREG */
},
{ /* 1878 */
MODIFIER_NONE,
0x63,
46,
/* PCMPISTRIrm */
},
{ /* 1879 */
MODIFIER_NONE,
0x63,
47,
/* PCMPISTRIrr */
},
{ /* 1880 */
MODIFIER_NONE,
0x00,
0,
/* PCMPISTRM128MEM */
},
{ /* 1881 */
MODIFIER_NONE,
0x00,
0,
/* PCMPISTRM128REG */
},
{ /* 1882 */
MODIFIER_NONE,
0x62,
46,
/* PCMPISTRM128rm */
},
{ /* 1883 */
MODIFIER_NONE,
0x62,
47,
/* PCMPISTRM128rr */
},
{ /* 1884 */
MODIFIER_NONE,
0xf5,
48,
/* PDEP32rm */
},
{ /* 1885 */
MODIFIER_NONE,
0xf5,
49,
/* PDEP32rr */
},
{ /* 1886 */
MODIFIER_NONE,
0xf5,
50,
/* PDEP64rm */
},
{ /* 1887 */
MODIFIER_NONE,
0xf5,
51,
/* PDEP64rr */
},
{ /* 1888 */
MODIFIER_NONE,
0xf5,
48,
/* PEXT32rm */
},
{ /* 1889 */
MODIFIER_NONE,
0xf5,
49,
/* PEXT32rr */
},
{ /* 1890 */
MODIFIER_NONE,
0xf5,
50,
/* PEXT64rm */
},
{ /* 1891 */
MODIFIER_NONE,
0xf5,
51,
/* PEXT64rr */
},
{ /* 1892 */
MODIFIER_NONE,
0x14,
238,
/* PEXTRBmr */
},
{ /* 1893 */
MODIFIER_NONE,
0x14,
130,
/* PEXTRBrr */
},
{ /* 1894 */
MODIFIER_NONE,
0x16,
239,
/* PEXTRDmr */
},
{ /* 1895 */
MODIFIER_NONE,
0x16,
130,
/* PEXTRDrr */
},
{ /* 1896 */
MODIFIER_NONE,
0x16,
239,
/* PEXTRQmr */
},
{ /* 1897 */
MODIFIER_NONE,
0x16,
240,
/* PEXTRQrr */
},
{ /* 1898 */
MODIFIER_NONE,
0x15,
239,
/* PEXTRWmr */
},
{ /* 1899 */
MODIFIER_NONE,
0xc5,
241,
/* PEXTRWri */
},
{ /* 1900 */
MODIFIER_NONE,
0x00,
0,
/* */
},
{ /* 1901 */
MODIFIER_NONE,
0x00,
0,
/* */
},
{ /* 1902 */
MODIFIER_NONE,
0x00,
0,
/* */
},
{ /* 1903 */
MODIFIER_NONE,
0x00,
0,
/* */
},
{ /* 1904 */
MODIFIER_NONE,
0x00,
0,
/* */
},
{ /* 1905 */
MODIFIER_NONE,
0x00,
0,
/* */
},
{ /* 1906 */
MODIFIER_NONE,
0x00,
0,
/* */
},
{ /* 1907 */
MODIFIER_NONE,
0x00,
0,
/* */
},
{ /* 1908 */
MODIFIER_NONE,
0x00,
0,
/* */
},
{ /* 1909 */
MODIFIER_NONE,
0x00,
0,
/* */
},
{ /* 1910 */
MODIFIER_NONE,
0x00,
0,
/* */
},
{ /* 1911 */
MODIFIER_NONE,
0x00,
0,
/* */
},
{ /* 1912 */
MODIFIER_NONE,
0x00,
0,
/* */
},
{ /* 1913 */
MODIFIER_NONE,
0x00,
0,
/* */
},
{ /* 1914 */
MODIFIER_NONE,
0x00,
0,
/* */
},
{ /* 1915 */
MODIFIER_NONE,
0x00,
0,
/* */
},
{ /* 1916 */
MODIFIER_NONE,
0x00,
0,
/* */
},
{ /* 1917 */
MODIFIER_NONE,
0x00,
0,
/* */
},
{ /* 1918 */
MODIFIER_NONE,
0x00,
0,
/* */
},
{ /* 1919 */
MODIFIER_NONE,
0x00,
0,
/* */
},
{ /* 1920 */
MODIFIER_NONE,
0x00,
0,
/* */
},
{ /* 1921 */
MODIFIER_NONE,
0x00,
0,
/* */
},
{ /* 1922 */
MODIFIER_NONE,
0x00,
0,
/* */
},
{ /* 1923 */
MODIFIER_NONE,
0x00,
0,
/* */
},
{ /* 1924 */
MODIFIER_NONE,
0x00,
0,
/* */
},
{ /* 1925 */
MODIFIER_NONE,
0x00,
0,
/* */
},
{ /* 1926 */
MODIFIER_NONE,
0x00,
0,
/* */
},
{ /* 1927 */
MODIFIER_NONE,
0x00,
0,
/* */
},
{ /* 1928 */
MODIFIER_NONE,
0x00,
0,
/* */
},
{ /* 1929 */
MODIFIER_NONE,
0x00,
0,
/* */
},
{ /* 1930 */
MODIFIER_NONE,
0x00,
0,
/* */
},
{ /* 1931 */
MODIFIER_NONE,
0x00,
0,
/* */
},
{ /* 1932 */
MODIFIER_NONE,
0x00,
0,
/* */
},
{ /* 1933 */
MODIFIER_NONE,
0x00,
0,
/* */
},
{ /* 1934 */
MODIFIER_NONE,
0x00,
0,
/* */
},
{ /* 1935 */
MODIFIER_NONE,
0x00,
0,
/* */
},
{ /* 1936 */
MODIFIER_NONE,
0x00,
0,
/* */
},
{ /* 1937 */
MODIFIER_NONE,
0x00,
0,
/* */
},
{ /* 1938 */
MODIFIER_NONE,
0x02,
32,
/* PHADDDrm */
},
{ /* 1939 */
MODIFIER_NONE,
0x02,
33,
/* PHADDDrr */
},
{ /* 1940 */
MODIFIER_NONE,
0x03,
32,
/* PHADDSWrm128 */
},
{ /* 1941 */
MODIFIER_NONE,
0x03,
33,
/* PHADDSWrr128 */
},
{ /* 1942 */
MODIFIER_NONE,
0x01,
32,
/* PHADDWrm */
},
{ /* 1943 */
MODIFIER_NONE,
0x01,
33,
/* PHADDWrr */
},
{ /* 1944 */
MODIFIER_NONE,
0x41,
44,
/* PHMINPOSUWrm128 */
},
{ /* 1945 */
MODIFIER_NONE,
0x41,
45,
/* PHMINPOSUWrr128 */
},
{ /* 1946 */
MODIFIER_NONE,
0x06,
32,
/* PHSUBDrm */
},
{ /* 1947 */
MODIFIER_NONE,
0x06,
33,
/* PHSUBDrr */
},
{ /* 1948 */
MODIFIER_NONE,
0x07,
32,
/* PHSUBSWrm128 */
},
{ /* 1949 */
MODIFIER_NONE,
0x07,
33,
/* PHSUBSWrr128 */
},
{ /* 1950 */
MODIFIER_NONE,
0x05,
32,
/* PHSUBWrm */
},
{ /* 1951 */
MODIFIER_NONE,
0x05,
33,
/* PHSUBWrr */
},
{ /* 1952 */
MODIFIER_NONE,
0x00,
0,
/* */
},
{ /* 1953 */
MODIFIER_NONE,
0x00,
0,
/* */
},
{ /* 1954 */
MODIFIER_NONE,
0x00,
0,
/* */
},
{ /* 1955 */
MODIFIER_NONE,
0x00,
0,
/* */
},
{ /* 1956 */
MODIFIER_NONE,
0x20,
242,
/* PINSRBrm */
},
{ /* 1957 */
MODIFIER_NONE,
0x20,
243,
/* PINSRBrr */
},
{ /* 1958 */
MODIFIER_NONE,
0x22,
244,
/* PINSRDrm */
},
{ /* 1959 */
MODIFIER_NONE,
0x22,
243,
/* PINSRDrr */
},
{ /* 1960 */
MODIFIER_NONE,
0x22,
244,
/* PINSRQrm */
},
{ /* 1961 */
MODIFIER_NONE,
0x22,
245,
/* PINSRQrr */
},
{ /* 1962 */
MODIFIER_NONE,
0xc4,
244,
/* PINSRWrmi */
},
{ /* 1963 */
MODIFIER_NONE,
0xc4,
243,
/* PINSRWrri */
},
{ /* 1964 */
MODIFIER_NONE,
0x04,
32,
/* PMADDUBSWrm128 */
},
{ /* 1965 */
MODIFIER_NONE,
0x04,
33,
/* PMADDUBSWrr128 */
},
{ /* 1966 */
MODIFIER_NONE,
0xf5,
32,
/* PMADDWDrm */
},
{ /* 1967 */
MODIFIER_NONE,
0xf5,
33,
/* PMADDWDrr */
},
{ /* 1968 */
MODIFIER_NONE,
0x3c,
32,
/* PMAXSBrm */
},
{ /* 1969 */
MODIFIER_NONE,
0x3c,
33,
/* PMAXSBrr */
},
{ /* 1970 */
MODIFIER_NONE,
0x3d,
32,
/* PMAXSDrm */
},
{ /* 1971 */
MODIFIER_NONE,
0x3d,
33,
/* PMAXSDrr */
},
{ /* 1972 */
MODIFIER_NONE,
0xee,
32,
/* PMAXSWrm */
},
{ /* 1973 */
MODIFIER_NONE,
0xee,
33,
/* PMAXSWrr */
},
{ /* 1974 */
MODIFIER_NONE,
0xde,
32,
/* PMAXUBrm */
},
{ /* 1975 */
MODIFIER_NONE,
0xde,
33,
/* PMAXUBrr */
},
{ /* 1976 */
MODIFIER_NONE,
0x3f,
32,
/* PMAXUDrm */
},
{ /* 1977 */
MODIFIER_NONE,
0x3f,
33,
/* PMAXUDrr */
},
{ /* 1978 */
MODIFIER_NONE,
0x3e,
32,
/* PMAXUWrm */
},
{ /* 1979 */
MODIFIER_NONE,
0x3e,
33,
/* PMAXUWrr */
},
{ /* 1980 */
MODIFIER_NONE,
0x38,
32,
/* PMINSBrm */
},
{ /* 1981 */
MODIFIER_NONE,
0x38,
33,
/* PMINSBrr */
},
{ /* 1982 */
MODIFIER_NONE,
0x39,
32,
/* PMINSDrm */
},
{ /* 1983 */
MODIFIER_NONE,
0x39,
33,
/* PMINSDrr */
},
{ /* 1984 */
MODIFIER_NONE,
0xea,
32,
/* PMINSWrm */
},
{ /* 1985 */
MODIFIER_NONE,
0xea,
33,
/* PMINSWrr */
},
{ /* 1986 */
MODIFIER_NONE,
0xda,
32,
/* PMINUBrm */
},
{ /* 1987 */
MODIFIER_NONE,
0xda,
33,
/* PMINUBrr */
},
{ /* 1988 */
MODIFIER_NONE,
0x3b,
32,
/* PMINUDrm */
},
{ /* 1989 */
MODIFIER_NONE,
0x3b,
33,
/* PMINUDrr */
},
{ /* 1990 */
MODIFIER_NONE,
0x3a,
32,
/* PMINUWrm */
},
{ /* 1991 */
MODIFIER_NONE,
0x3a,
33,
/* PMINUWrr */
},
{ /* 1992 */
MODIFIER_NONE,
0xd7,
220,
/* PMOVMSKBrr */
},
{ /* 1993 */
MODIFIER_NONE,
0x21,
102,
/* PMOVSXBDrm */
},
{ /* 1994 */
MODIFIER_NONE,
0x21,
45,
/* PMOVSXBDrr */
},
{ /* 1995 */
MODIFIER_NONE,
0x22,
102,
/* PMOVSXBQrm */
},
{ /* 1996 */
MODIFIER_NONE,
0x22,
45,
/* PMOVSXBQrr */
},
{ /* 1997 */
MODIFIER_NONE,
0x20,
102,
/* PMOVSXBWrm */
},
{ /* 1998 */
MODIFIER_NONE,
0x20,
45,
/* PMOVSXBWrr */
},
{ /* 1999 */
MODIFIER_NONE,
0x25,
102,
/* PMOVSXDQrm */
},
{ /* 2000 */
MODIFIER_NONE,
0x25,
45,
/* PMOVSXDQrr */
},
{ /* 2001 */
MODIFIER_NONE,
0x23,
102,
/* PMOVSXWDrm */
},
{ /* 2002 */
MODIFIER_NONE,
0x23,
45,
/* PMOVSXWDrr */
},
{ /* 2003 */
MODIFIER_NONE,
0x24,
102,
/* PMOVSXWQrm */
},
{ /* 2004 */
MODIFIER_NONE,
0x24,
45,
/* PMOVSXWQrr */
},
{ /* 2005 */
MODIFIER_NONE,
0x31,
102,
/* PMOVZXBDrm */
},
{ /* 2006 */
MODIFIER_NONE,
0x31,
45,
/* PMOVZXBDrr */
},
{ /* 2007 */
MODIFIER_NONE,
0x32,
102,
/* PMOVZXBQrm */
},
{ /* 2008 */
MODIFIER_NONE,
0x32,
45,
/* PMOVZXBQrr */
},
{ /* 2009 */
MODIFIER_NONE,
0x30,
102,
/* PMOVZXBWrm */
},
{ /* 2010 */
MODIFIER_NONE,
0x30,
45,
/* PMOVZXBWrr */
},
{ /* 2011 */
MODIFIER_NONE,
0x35,
102,
/* PMOVZXDQrm */
},
{ /* 2012 */
MODIFIER_NONE,
0x35,
45,
/* PMOVZXDQrr */
},
{ /* 2013 */
MODIFIER_NONE,
0x33,
102,
/* PMOVZXWDrm */
},
{ /* 2014 */
MODIFIER_NONE,
0x33,
45,
/* PMOVZXWDrr */
},
{ /* 2015 */
MODIFIER_NONE,
0x34,
102,
/* PMOVZXWQrm */
},
{ /* 2016 */
MODIFIER_NONE,
0x34,
45,
/* PMOVZXWQrr */
},
{ /* 2017 */
MODIFIER_NONE,
0x28,
32,
/* PMULDQrm */
},
{ /* 2018 */
MODIFIER_NONE,
0x28,
33,
/* PMULDQrr */
},
{ /* 2019 */
MODIFIER_NONE,
0x0b,
32,
/* PMULHRSWrm128 */
},
{ /* 2020 */
MODIFIER_NONE,
0x0b,
33,
/* PMULHRSWrr128 */
},
{ /* 2021 */
MODIFIER_NONE,
0x00,
0,
/* */
},
{ /* 2022 */
MODIFIER_NONE,
0x00,
0,
/* */
},
{ /* 2023 */
MODIFIER_NONE,
0xe4,
32,
/* PMULHUWrm */
},
{ /* 2024 */
MODIFIER_NONE,
0xe4,
33,
/* PMULHUWrr */
},
{ /* 2025 */
MODIFIER_NONE,
0xe5,
32,
/* PMULHWrm */
},
{ /* 2026 */
MODIFIER_NONE,
0xe5,
33,
/* PMULHWrr */
},
{ /* 2027 */
MODIFIER_NONE,
0x40,
32,
/* PMULLDrm */
},
{ /* 2028 */
MODIFIER_NONE,
0x40,
33,
/* PMULLDrr */
},
{ /* 2029 */
MODIFIER_NONE,
0xd5,
32,
/* PMULLWrm */
},
{ /* 2030 */
MODIFIER_NONE,
0xd5,
33,
/* PMULLWrr */
},
{ /* 2031 */
MODIFIER_NONE,
0xf4,
32,
/* PMULUDQrm */
},
{ /* 2032 */
MODIFIER_NONE,
0xf4,
33,
/* PMULUDQrr */
},
{ /* 2033 */
MODIFIER_OPCODE,
0x58,
246,
/* POP16r */
},
{ /* 2034 */
MODIFIER_NONE,
0x8f,
40,
/* POP16rmm */
},
{ /* 2035 */
MODIFIER_NONE,
0x8f,
71,
/* POP16rmr */
},
{ /* 2036 */
MODIFIER_OPCODE,
0x58,
246,
/* POP32r */
},
{ /* 2037 */
MODIFIER_NONE,
0x8f,
40,
/* POP32rmm */
},
{ /* 2038 */
MODIFIER_NONE,
0x8f,
71,
/* POP32rmr */
},
{ /* 2039 */
MODIFIER_OPCODE,
0x58,
247,
/* POP64r */
},
{ /* 2040 */
MODIFIER_NONE,
0x8f,
40,
/* POP64rmm */
},
{ /* 2041 */
MODIFIER_NONE,
0x8f,
73,
/* POP64rmr */
},
{ /* 2042 */
MODIFIER_NONE,
0x61,
0,
/* POPA32 */
},
{ /* 2043 */
MODIFIER_NONE,
0xb8,
42,
/* POPCNT16rm */
},
{ /* 2044 */
MODIFIER_NONE,
0xb8,
43,
/* POPCNT16rr */
},
{ /* 2045 */
MODIFIER_NONE,
0xb8,
42,
/* POPCNT32rm */
},
{ /* 2046 */
MODIFIER_NONE,
0xb8,
43,
/* POPCNT32rr */
},
{ /* 2047 */
MODIFIER_NONE,
0xb8,
30,
/* POPCNT64rm */
},
{ /* 2048 */
MODIFIER_NONE,
0xb8,
31,
/* POPCNT64rr */
},
{ /* 2049 */
MODIFIER_NONE,
0x1f,
0,
/* POPDS16 */
},
{ /* 2050 */
MODIFIER_NONE,
0x1f,
0,
/* POPDS32 */
},
{ /* 2051 */
MODIFIER_NONE,
0x07,
0,
/* POPES16 */
},
{ /* 2052 */
MODIFIER_NONE,
0x07,
0,
/* POPES32 */
},
{ /* 2053 */
MODIFIER_NONE,
0x9d,
0,
/* POPF16 */
},
{ /* 2054 */
MODIFIER_NONE,
0x9d,
0,
/* POPF32 */
},
{ /* 2055 */
MODIFIER_NONE,
0x9d,
0,
/* POPF64 */
},
{ /* 2056 */
MODIFIER_NONE,
0xa1,
0,
/* POPFS16 */
},
{ /* 2057 */
MODIFIER_NONE,
0xa1,
0,
/* POPFS32 */
},
{ /* 2058 */
MODIFIER_NONE,
0xa1,
0,
/* POPFS64 */
},
{ /* 2059 */
MODIFIER_NONE,
0xa9,
0,
/* POPGS16 */
},
{ /* 2060 */
MODIFIER_NONE,
0xa9,
0,
/* POPGS32 */
},
{ /* 2061 */
MODIFIER_NONE,
0xa9,
0,
/* POPGS64 */
},
{ /* 2062 */
MODIFIER_NONE,
0x17,
0,
/* POPSS16 */
},
{ /* 2063 */
MODIFIER_NONE,
0x17,
0,
/* POPSS32 */
},
{ /* 2064 */
MODIFIER_NONE,
0xeb,
32,
/* PORrm */
},
{ /* 2065 */
MODIFIER_NONE,
0xeb,
33,
/* PORrr */
},
{ /* 2066 */
MODIFIER_NONE,
0x0d,
75,
/* PREFETCH */
},
{ /* 2067 */
MODIFIER_NONE,
0x18,
75,
/* PREFETCHNTA */
},
{ /* 2068 */
MODIFIER_NONE,
0x18,
75,
/* PREFETCHT0 */
},
{ /* 2069 */
MODIFIER_NONE,
0x18,
75,
/* PREFETCHT1 */
},
{ /* 2070 */
MODIFIER_NONE,
0x18,
75,
/* PREFETCHT2 */
},
{ /* 2071 */
MODIFIER_NONE,
0x0d,
75,
/* PREFETCHW */
},
{ /* 2072 */
MODIFIER_NONE,
0xf6,
32,
/* PSADBWrm */
},
{ /* 2073 */
MODIFIER_NONE,
0xf6,
33,
/* PSADBWrr */
},
{ /* 2074 */
MODIFIER_NONE,
0x00,
32,
/* PSHUFBrm */
},
{ /* 2075 */
MODIFIER_NONE,
0x00,
33,
/* PSHUFBrr */
},
{ /* 2076 */
MODIFIER_NONE,
0x70,
46,
/* PSHUFDmi */
},
{ /* 2077 */
MODIFIER_NONE,
0x70,
47,
/* PSHUFDri */
},
{ /* 2078 */
MODIFIER_NONE,
0x70,
46,
/* PSHUFHWmi */
},
{ /* 2079 */
MODIFIER_NONE,
0x70,
47,
/* PSHUFHWri */
},
{ /* 2080 */
MODIFIER_NONE,
0x70,
46,
/* PSHUFLWmi */
},
{ /* 2081 */
MODIFIER_NONE,
0x70,
47,
/* PSHUFLWri */
},
{ /* 2082 */
MODIFIER_NONE,
0x08,
32,
/* PSIGNBrm */
},
{ /* 2083 */
MODIFIER_NONE,
0x08,
33,
/* PSIGNBrr */
},
{ /* 2084 */
MODIFIER_NONE,
0x0a,
32,
/* PSIGNDrm */
},
{ /* 2085 */
MODIFIER_NONE,
0x0a,
33,
/* PSIGNDrr */
},
{ /* 2086 */
MODIFIER_NONE,
0x09,
32,
/* PSIGNWrm */
},
{ /* 2087 */
MODIFIER_NONE,
0x09,
33,
/* PSIGNWrr */
},
{ /* 2088 */
MODIFIER_NONE,
0x73,
248,
/* PSLLDQri */
},
{ /* 2089 */
MODIFIER_NONE,
0x72,
248,
/* PSLLDri */
},
{ /* 2090 */
MODIFIER_NONE,
0xf2,
32,
/* PSLLDrm */
},
{ /* 2091 */
MODIFIER_NONE,
0xf2,
33,
/* PSLLDrr */
},
{ /* 2092 */
MODIFIER_NONE,
0x73,
248,
/* PSLLQri */
},
{ /* 2093 */
MODIFIER_NONE,
0xf3,
32,
/* PSLLQrm */
},
{ /* 2094 */
MODIFIER_NONE,
0xf3,
33,
/* PSLLQrr */
},
{ /* 2095 */
MODIFIER_NONE,
0x71,
248,
/* PSLLWri */
},
{ /* 2096 */
MODIFIER_NONE,
0xf1,
32,
/* PSLLWrm */
},
{ /* 2097 */
MODIFIER_NONE,
0xf1,
33,
/* PSLLWrr */
},
{ /* 2098 */
MODIFIER_NONE,
0x72,
248,
/* PSRADri */
},
{ /* 2099 */
MODIFIER_NONE,
0xe2,
32,
/* PSRADrm */
},
{ /* 2100 */
MODIFIER_NONE,
0xe2,
33,
/* PSRADrr */
},
{ /* 2101 */
MODIFIER_NONE,
0x71,
248,
/* PSRAWri */
},
{ /* 2102 */
MODIFIER_NONE,
0xe1,
32,
/* PSRAWrm */
},
{ /* 2103 */
MODIFIER_NONE,
0xe1,
33,
/* PSRAWrr */
},
{ /* 2104 */
MODIFIER_NONE,
0x73,
248,
/* PSRLDQri */
},
{ /* 2105 */
MODIFIER_NONE,
0x72,
248,
/* PSRLDri */
},
{ /* 2106 */
MODIFIER_NONE,
0xd2,
32,
/* PSRLDrm */
},
{ /* 2107 */
MODIFIER_NONE,
0xd2,
33,
/* PSRLDrr */
},
{ /* 2108 */
MODIFIER_NONE,
0x73,
248,
/* PSRLQri */
},
{ /* 2109 */
MODIFIER_NONE,
0xd3,
32,
/* PSRLQrm */
},
{ /* 2110 */
MODIFIER_NONE,
0xd3,
33,
/* PSRLQrr */
},
{ /* 2111 */
MODIFIER_NONE,
0x71,
248,
/* PSRLWri */
},
{ /* 2112 */
MODIFIER_NONE,
0xd1,
32,
/* PSRLWrm */
},
{ /* 2113 */
MODIFIER_NONE,
0xd1,
33,
/* PSRLWrr */
},
{ /* 2114 */
MODIFIER_NONE,
0xf8,
32,
/* PSUBBrm */
},
{ /* 2115 */
MODIFIER_NONE,
0xf8,
33,
/* PSUBBrr */
},
{ /* 2116 */
MODIFIER_NONE,
0xfa,
32,
/* PSUBDrm */
},
{ /* 2117 */
MODIFIER_NONE,
0xfa,
33,
/* PSUBDrr */
},
{ /* 2118 */
MODIFIER_NONE,
0xfb,
32,
/* PSUBQrm */
},
{ /* 2119 */
MODIFIER_NONE,
0xfb,
33,
/* PSUBQrr */
},
{ /* 2120 */
MODIFIER_NONE,
0xe8,
32,
/* PSUBSBrm */
},
{ /* 2121 */
MODIFIER_NONE,
0xe8,
33,
/* PSUBSBrr */
},
{ /* 2122 */
MODIFIER_NONE,
0xe9,
32,
/* PSUBSWrm */
},
{ /* 2123 */
MODIFIER_NONE,
0xe9,
33,
/* PSUBSWrr */
},
{ /* 2124 */
MODIFIER_NONE,
0xd8,
32,
/* PSUBUSBrm */
},
{ /* 2125 */
MODIFIER_NONE,
0xd8,
33,
/* PSUBUSBrr */
},
{ /* 2126 */
MODIFIER_NONE,
0xd9,
32,
/* PSUBUSWrm */
},
{ /* 2127 */
MODIFIER_NONE,
0xd9,
33,
/* PSUBUSWrr */
},
{ /* 2128 */
MODIFIER_NONE,
0xf9,
32,
/* PSUBWrm */
},
{ /* 2129 */
MODIFIER_NONE,
0xf9,
33,
/* PSUBWrr */
},
{ /* 2130 */
MODIFIER_NONE,
0x00,
0,
/* */
},
{ /* 2131 */
MODIFIER_NONE,
0x00,
0,
/* */
},
{ /* 2132 */
MODIFIER_NONE,
0x17,
44,
/* PTESTrm */
},
{ /* 2133 */
MODIFIER_NONE,
0x17,
45,
/* PTESTrr */
},
{ /* 2134 */
MODIFIER_NONE,
0x68,
32,
/* PUNPCKHBWrm */
},
{ /* 2135 */
MODIFIER_NONE,
0x68,
33,
/* PUNPCKHBWrr */
},
{ /* 2136 */
MODIFIER_NONE,
0x6a,
32,
/* PUNPCKHDQrm */
},
{ /* 2137 */
MODIFIER_NONE,
0x6a,
33,
/* PUNPCKHDQrr */
},
{ /* 2138 */
MODIFIER_NONE,
0x6d,
32,
/* PUNPCKHQDQrm */
},
{ /* 2139 */
MODIFIER_NONE,
0x6d,
33,
/* PUNPCKHQDQrr */
},
{ /* 2140 */
MODIFIER_NONE,
0x69,
32,
/* PUNPCKHWDrm */
},
{ /* 2141 */
MODIFIER_NONE,
0x69,
33,
/* PUNPCKHWDrr */
},
{ /* 2142 */
MODIFIER_NONE,
0x60,
32,
/* PUNPCKLBWrm */
},
{ /* 2143 */
MODIFIER_NONE,
0x60,
33,
/* PUNPCKLBWrr */
},
{ /* 2144 */
MODIFIER_NONE,
0x62,
32,
/* PUNPCKLDQrm */
},
{ /* 2145 */
MODIFIER_NONE,
0x62,
33,
/* PUNPCKLDQrr */
},
{ /* 2146 */
MODIFIER_NONE,
0x6c,
32,
/* PUNPCKLQDQrm */
},
{ /* 2147 */
MODIFIER_NONE,
0x6c,
33,
/* PUNPCKLQDQrr */
},
{ /* 2148 */
MODIFIER_NONE,
0x61,
32,
/* PUNPCKLWDrm */
},
{ /* 2149 */
MODIFIER_NONE,
0x61,
33,
/* PUNPCKLWDrr */
},
{ /* 2150 */
MODIFIER_OPCODE,
0x50,
246,
/* PUSH16r */
},
{ /* 2151 */
MODIFIER_NONE,
0xff,
40,
/* PUSH16rmm */
},
{ /* 2152 */
MODIFIER_NONE,
0xff,
71,
/* PUSH16rmr */
},
{ /* 2153 */
MODIFIER_OPCODE,
0x50,
246,
/* PUSH32r */
},
{ /* 2154 */
MODIFIER_NONE,
0xff,
40,
/* PUSH32rmm */
},
{ /* 2155 */
MODIFIER_NONE,
0xff,
71,
/* PUSH32rmr */
},
{ /* 2156 */
MODIFIER_NONE,
0x68,
168,
/* PUSH64i16 */
},
{ /* 2157 */
MODIFIER_NONE,
0x68,
13,
/* PUSH64i32 */
},
{ /* 2158 */
MODIFIER_NONE,
0x6a,
249,
/* PUSH64i8 */
},
{ /* 2159 */
MODIFIER_OPCODE,
0x50,
247,
/* PUSH64r */
},
{ /* 2160 */
MODIFIER_NONE,
0xff,
40,
/* PUSH64rmm */
},
{ /* 2161 */
MODIFIER_NONE,
0xff,
73,
/* PUSH64rmr */
},
{ /* 2162 */
MODIFIER_NONE,
0x60,
0,
/* PUSHA32 */
},
{ /* 2163 */
MODIFIER_NONE,
0x0e,
0,
/* PUSHCS16 */
},
{ /* 2164 */
MODIFIER_NONE,
0x0e,
0,
/* PUSHCS32 */
},
{ /* 2165 */
MODIFIER_NONE,
0x1e,
0,
/* PUSHDS16 */
},
{ /* 2166 */
MODIFIER_NONE,
0x1e,
0,
/* PUSHDS32 */
},
{ /* 2167 */
MODIFIER_NONE,
0x06,
0,
/* PUSHES16 */
},
{ /* 2168 */
MODIFIER_NONE,
0x06,
0,
/* PUSHES32 */
},
{ /* 2169 */
MODIFIER_NONE,
0x9c,
0,
/* PUSHF16 */
},
{ /* 2170 */
MODIFIER_NONE,
0x9c,
0,
/* PUSHF32 */
},
{ /* 2171 */
MODIFIER_NONE,
0x9c,
0,
/* PUSHF64 */
},
{ /* 2172 */
MODIFIER_NONE,
0xa0,
0,
/* PUSHFS16 */
},
{ /* 2173 */
MODIFIER_NONE,
0xa0,
0,
/* PUSHFS32 */
},
{ /* 2174 */
MODIFIER_NONE,
0xa0,
0,
/* PUSHFS64 */
},
{ /* 2175 */
MODIFIER_NONE,
0xa8,
0,
/* PUSHGS16 */
},
{ /* 2176 */
MODIFIER_NONE,
0xa8,
0,
/* PUSHGS32 */
},
{ /* 2177 */
MODIFIER_NONE,
0xa8,
0,
/* PUSHGS64 */
},
{ /* 2178 */
MODIFIER_NONE,
0x16,
0,
/* PUSHSS16 */
},
{ /* 2179 */
MODIFIER_NONE,
0x16,
0,
/* PUSHSS32 */
},
{ /* 2180 */
MODIFIER_NONE,
0x68,
2,
/* PUSHi16 */
},
{ /* 2181 */
MODIFIER_NONE,
0x68,
2,
/* PUSHi32 */
},
{ /* 2182 */
MODIFIER_NONE,
0x6a,
250,
/* PUSHi8 */
},
{ /* 2183 */
MODIFIER_NONE,
0xef,
32,
/* PXORrm */
},
{ /* 2184 */
MODIFIER_NONE,
0xef,
33,
/* PXORrr */
},
{ /* 2185 */
MODIFIER_NONE,
0xd1,
40,
/* RCL16m1 */
},
{ /* 2186 */
MODIFIER_NONE,
0xd3,
40,
/* RCL16mCL */
},
{ /* 2187 */
MODIFIER_NONE,
0xc1,
251,
/* RCL16mi */
},
{ /* 2188 */
MODIFIER_NONE,
0xd1,
124,
/* RCL16r1 */
},
{ /* 2189 */
MODIFIER_NONE,
0xd3,
124,
/* RCL16rCL */
},
{ /* 2190 */
MODIFIER_NONE,
0xc1,
252,
/* RCL16ri */
},
{ /* 2191 */
MODIFIER_NONE,
0xd1,
40,
/* RCL32m1 */
},
{ /* 2192 */
MODIFIER_NONE,
0xd3,
40,
/* RCL32mCL */
},
{ /* 2193 */
MODIFIER_NONE,
0xc1,
251,
/* RCL32mi */
},
{ /* 2194 */
MODIFIER_NONE,
0xd1,
124,
/* RCL32r1 */
},
{ /* 2195 */
MODIFIER_NONE,
0xd3,
124,
/* RCL32rCL */
},
{ /* 2196 */
MODIFIER_NONE,
0xc1,
252,
/* RCL32ri */
},
{ /* 2197 */
MODIFIER_NONE,
0xd1,
40,
/* RCL64m1 */
},
{ /* 2198 */
MODIFIER_NONE,
0xd3,
40,
/* RCL64mCL */
},
{ /* 2199 */
MODIFIER_NONE,
0xc1,
251,
/* RCL64mi */
},
{ /* 2200 */
MODIFIER_NONE,
0xd1,
125,
/* RCL64r1 */
},
{ /* 2201 */
MODIFIER_NONE,
0xd3,
125,
/* RCL64rCL */
},
{ /* 2202 */
MODIFIER_NONE,
0xc1,
253,
/* RCL64ri */
},
{ /* 2203 */
MODIFIER_NONE,
0xd0,
75,
/* RCL8m1 */
},
{ /* 2204 */
MODIFIER_NONE,
0xd2,
75,
/* RCL8mCL */
},
{ /* 2205 */
MODIFIER_NONE,
0xc0,
22,
/* RCL8mi */
},
{ /* 2206 */
MODIFIER_NONE,
0xd0,
126,
/* RCL8r1 */
},
{ /* 2207 */
MODIFIER_NONE,
0xd2,
126,
/* RCL8rCL */
},
{ /* 2208 */
MODIFIER_NONE,
0xc0,
24,
/* RCL8ri */
},
{ /* 2209 */
MODIFIER_NONE,
0x53,
44,
/* RCPPSm */
},
{ /* 2210 */
MODIFIER_NONE,
0x00,
0,
/* RCPPSm_Int */
},
{ /* 2211 */
MODIFIER_NONE,
0x53,
45,
/* RCPPSr */
},
{ /* 2212 */
MODIFIER_NONE,
0x00,
0,
/* RCPPSr_Int */
},
{ /* 2213 */
MODIFIER_NONE,
0x53,
229,
/* RCPSSm */
},
{ /* 2214 */
MODIFIER_NONE,
0x00,
0,
/* RCPSSm_Int */
},
{ /* 2215 */
MODIFIER_NONE,
0x53,
143,
/* RCPSSr */
},
{ /* 2216 */
MODIFIER_NONE,
0x00,
0,
/* RCPSSr_Int */
},
{ /* 2217 */
MODIFIER_NONE,
0xd1,
40,
/* RCR16m1 */
},
{ /* 2218 */
MODIFIER_NONE,
0xd3,
40,
/* RCR16mCL */
},
{ /* 2219 */
MODIFIER_NONE,
0xc1,
251,
/* RCR16mi */
},
{ /* 2220 */
MODIFIER_NONE,
0xd1,
124,
/* RCR16r1 */
},
{ /* 2221 */
MODIFIER_NONE,
0xd3,
124,
/* RCR16rCL */
},
{ /* 2222 */
MODIFIER_NONE,
0xc1,
252,
/* RCR16ri */
},
{ /* 2223 */
MODIFIER_NONE,
0xd1,
40,
/* RCR32m1 */
},
{ /* 2224 */
MODIFIER_NONE,
0xd3,
40,
/* RCR32mCL */
},
{ /* 2225 */
MODIFIER_NONE,
0xc1,
251,
/* RCR32mi */
},
{ /* 2226 */
MODIFIER_NONE,
0xd1,
124,
/* RCR32r1 */
},
{ /* 2227 */
MODIFIER_NONE,
0xd3,
124,
/* RCR32rCL */
},
{ /* 2228 */
MODIFIER_NONE,
0xc1,
252,
/* RCR32ri */
},
{ /* 2229 */
MODIFIER_NONE,
0xd1,
40,
/* RCR64m1 */
},
{ /* 2230 */
MODIFIER_NONE,
0xd3,
40,
/* RCR64mCL */
},
{ /* 2231 */
MODIFIER_NONE,
0xc1,
251,
/* RCR64mi */
},
{ /* 2232 */
MODIFIER_NONE,
0xd1,
125,
/* RCR64r1 */
},
{ /* 2233 */
MODIFIER_NONE,
0xd3,
125,
/* RCR64rCL */
},
{ /* 2234 */
MODIFIER_NONE,
0xc1,
253,
/* RCR64ri */
},
{ /* 2235 */
MODIFIER_NONE,
0xd0,
75,
/* RCR8m1 */
},
{ /* 2236 */
MODIFIER_NONE,
0xd2,
75,
/* RCR8mCL */
},
{ /* 2237 */
MODIFIER_NONE,
0xc0,
22,
/* RCR8mi */
},
{ /* 2238 */
MODIFIER_NONE,
0xd0,
126,
/* RCR8r1 */
},
{ /* 2239 */
MODIFIER_NONE,
0xd2,
126,
/* RCR8rCL */
},
{ /* 2240 */
MODIFIER_NONE,
0xc0,
24,
/* RCR8ri */
},
{ /* 2241 */
MODIFIER_NONE,
0xae,
71,
/* RDFSBASE */
},
{ /* 2242 */
MODIFIER_NONE,
0xae,
73,
/* RDFSBASE64 */
},
{ /* 2243 */
MODIFIER_NONE,
0xae,
71,
/* RDGSBASE */
},
{ /* 2244 */
MODIFIER_NONE,
0xae,
73,
/* RDGSBASE64 */
},
{ /* 2245 */
MODIFIER_NONE,
0x32,
0,
/* RDMSR */
},
{ /* 2246 */
MODIFIER_NONE,
0x33,
0,
/* RDPMC */
},
{ /* 2247 */
MODIFIER_NONE,
0xc7,
71,
/* RDRAND16r */
},
{ /* 2248 */
MODIFIER_NONE,
0xc7,
71,
/* RDRAND32r */
},
{ /* 2249 */
MODIFIER_NONE,
0xc7,
73,
/* RDRAND64r */
},
{ /* 2250 */
MODIFIER_NONE,
0xc7,
71,
/* RDSEED16r */
},
{ /* 2251 */
MODIFIER_NONE,
0xc7,
71,
/* RDSEED32r */
},
{ /* 2252 */
MODIFIER_NONE,
0xc7,
73,
/* RDSEED64r */
},
{ /* 2253 */
MODIFIER_NONE,
0x31,
0,
/* RDTSC */
},
{ /* 2254 */
MODIFIER_NONE,
0x01,
0,
/* RDTSCP */
},
{ /* 2255 */
MODIFIER_NONE,
0x00,
0,
/* RELEASE_MOV16mr */
},
{ /* 2256 */
MODIFIER_NONE,
0x00,
0,
/* RELEASE_MOV32mr */
},
{ /* 2257 */
MODIFIER_NONE,
0x00,
0,
/* RELEASE_MOV64mr */
},
{ /* 2258 */
MODIFIER_NONE,
0x00,
0,
/* RELEASE_MOV8mr */
},
{ /* 2259 */
MODIFIER_NONE,
0xf2,
0,
/* REPNE_PREFIX */
},
{ /* 2260 */
MODIFIER_NONE,
0x00,
0,
/* REP_MOVSB_32 */
},
{ /* 2261 */
MODIFIER_NONE,
0x00,
0,
/* REP_MOVSB_64 */
},
{ /* 2262 */
MODIFIER_NONE,
0x00,
0,
/* REP_MOVSD_32 */
},
{ /* 2263 */
MODIFIER_NONE,
0x00,
0,
/* REP_MOVSD_64 */
},
{ /* 2264 */
MODIFIER_NONE,
0x00,
0,
/* REP_MOVSQ_64 */
},
{ /* 2265 */
MODIFIER_NONE,
0x00,
0,
/* REP_MOVSW_32 */
},
{ /* 2266 */
MODIFIER_NONE,
0x00,
0,
/* REP_MOVSW_64 */
},
{ /* 2267 */
MODIFIER_NONE,
0xf3,
0,
/* REP_PREFIX */
},
{ /* 2268 */
MODIFIER_NONE,
0x00,
0,
/* REP_STOSB_32 */
},
{ /* 2269 */
MODIFIER_NONE,
0x00,
0,
/* REP_STOSB_64 */
},
{ /* 2270 */
MODIFIER_NONE,
0x00,
0,
/* REP_STOSD_32 */
},
{ /* 2271 */
MODIFIER_NONE,
0x00,
0,
/* REP_STOSD_64 */
},
{ /* 2272 */
MODIFIER_NONE,
0x00,
0,
/* REP_STOSQ_64 */
},
{ /* 2273 */
MODIFIER_NONE,
0x00,
0,
/* REP_STOSW_32 */
},
{ /* 2274 */
MODIFIER_NONE,
0x00,
0,
/* REP_STOSW_64 */
},
{ /* 2275 */
MODIFIER_NONE,
0xc3,
0,
/* RET */
},
{ /* 2276 */
MODIFIER_NONE,
0xc2,
168,
/* RETI */
},
{ /* 2277 */
MODIFIER_NONE,
0xc2,
2,
/* RETIW */
},
{ /* 2278 */
MODIFIER_NONE,
0xc3,
0,
/* RETW */
},
{ /* 2279 */
MODIFIER_NONE,
0x48,
0,
/* REX64_PREFIX */
},
{ /* 2280 */
MODIFIER_NONE,
0xd1,
40,
/* ROL16m1 */
},
{ /* 2281 */
MODIFIER_NONE,
0xd3,
40,
/* ROL16mCL */
},
{ /* 2282 */
MODIFIER_NONE,
0xc1,
251,
/* ROL16mi */
},
{ /* 2283 */
MODIFIER_NONE,
0xd1,
124,
/* ROL16r1 */
},
{ /* 2284 */
MODIFIER_NONE,
0xd3,
124,
/* ROL16rCL */
},
{ /* 2285 */
MODIFIER_NONE,
0xc1,
252,
/* ROL16ri */
},
{ /* 2286 */
MODIFIER_NONE,
0xd1,
40,
/* ROL32m1 */
},
{ /* 2287 */
MODIFIER_NONE,
0xd3,
40,
/* ROL32mCL */
},
{ /* 2288 */
MODIFIER_NONE,
0xc1,
251,
/* ROL32mi */
},
{ /* 2289 */
MODIFIER_NONE,
0xd1,
124,
/* ROL32r1 */
},
{ /* 2290 */
MODIFIER_NONE,
0xd3,
124,
/* ROL32rCL */
},
{ /* 2291 */
MODIFIER_NONE,
0xc1,
252,
/* ROL32ri */
},
{ /* 2292 */
MODIFIER_NONE,
0xd1,
40,
/* ROL64m1 */
},
{ /* 2293 */
MODIFIER_NONE,
0xd3,
40,
/* ROL64mCL */
},
{ /* 2294 */
MODIFIER_NONE,
0xc1,
251,
/* ROL64mi */
},
{ /* 2295 */
MODIFIER_NONE,
0xd1,
125,
/* ROL64r1 */
},
{ /* 2296 */
MODIFIER_NONE,
0xd3,
125,
/* ROL64rCL */
},
{ /* 2297 */
MODIFIER_NONE,
0xc1,
253,
/* ROL64ri */
},
{ /* 2298 */
MODIFIER_NONE,
0xd0,
75,
/* ROL8m1 */
},
{ /* 2299 */
MODIFIER_NONE,
0xd2,
75,
/* ROL8mCL */
},
{ /* 2300 */
MODIFIER_NONE,
0xc0,
22,
/* ROL8mi */
},
{ /* 2301 */
MODIFIER_NONE,
0xd0,
126,
/* ROL8r1 */
},
{ /* 2302 */
MODIFIER_NONE,
0xd2,
126,
/* ROL8rCL */
},
{ /* 2303 */
MODIFIER_NONE,
0xc0,
24,
/* ROL8ri */
},
{ /* 2304 */
MODIFIER_NONE,
0xd1,
40,
/* ROR16m1 */
},
{ /* 2305 */
MODIFIER_NONE,
0xd3,
40,
/* ROR16mCL */
},
{ /* 2306 */
MODIFIER_NONE,
0xc1,
251,
/* ROR16mi */
},
{ /* 2307 */
MODIFIER_NONE,
0xd1,
124,
/* ROR16r1 */
},
{ /* 2308 */
MODIFIER_NONE,
0xd3,
124,
/* ROR16rCL */
},
{ /* 2309 */
MODIFIER_NONE,
0xc1,
252,
/* ROR16ri */
},
{ /* 2310 */
MODIFIER_NONE,
0xd1,
40,
/* ROR32m1 */
},
{ /* 2311 */
MODIFIER_NONE,
0xd3,
40,
/* ROR32mCL */
},
{ /* 2312 */
MODIFIER_NONE,
0xc1,
251,
/* ROR32mi */
},
{ /* 2313 */
MODIFIER_NONE,
0xd1,
124,
/* ROR32r1 */
},
{ /* 2314 */
MODIFIER_NONE,
0xd3,
124,
/* ROR32rCL */
},
{ /* 2315 */
MODIFIER_NONE,
0xc1,
252,
/* ROR32ri */
},
{ /* 2316 */
MODIFIER_NONE,
0xd1,
40,
/* ROR64m1 */
},
{ /* 2317 */
MODIFIER_NONE,
0xd3,
40,
/* ROR64mCL */
},
{ /* 2318 */
MODIFIER_NONE,
0xc1,
251,
/* ROR64mi */
},
{ /* 2319 */
MODIFIER_NONE,
0xd1,
125,
/* ROR64r1 */
},
{ /* 2320 */
MODIFIER_NONE,
0xd3,
125,
/* ROR64rCL */
},
{ /* 2321 */
MODIFIER_NONE,
0xc1,
253,
/* ROR64ri */
},
{ /* 2322 */
MODIFIER_NONE,
0xd0,
75,
/* ROR8m1 */
},
{ /* 2323 */
MODIFIER_NONE,
0xd2,
75,
/* ROR8mCL */
},
{ /* 2324 */
MODIFIER_NONE,
0xc0,
22,
/* ROR8mi */
},
{ /* 2325 */
MODIFIER_NONE,
0xd0,
126,
/* ROR8r1 */
},
{ /* 2326 */
MODIFIER_NONE,
0xd2,
126,
/* ROR8rCL */
},
{ /* 2327 */
MODIFIER_NONE,
0xc0,
24,
/* ROR8ri */
},
{ /* 2328 */
MODIFIER_NONE,
0xf0,
254,
/* RORX32mi */
},
{ /* 2329 */
MODIFIER_NONE,
0xf0,
255,
/* RORX32ri */
},
{ /* 2330 */
MODIFIER_NONE,
0xf0,
256,
/* RORX64mi */
},
{ /* 2331 */
MODIFIER_NONE,
0xf0,
257,
/* RORX64ri */
},
{ /* 2332 */
MODIFIER_NONE,
0x09,
258,
/* ROUNDPDm */
},
{ /* 2333 */
MODIFIER_NONE,
0x09,
259,
/* ROUNDPDr */
},
{ /* 2334 */
MODIFIER_NONE,
0x08,
258,
/* ROUNDPSm */
},
{ /* 2335 */
MODIFIER_NONE,
0x08,
259,
/* ROUNDPSr */
},
{ /* 2336 */
MODIFIER_NONE,
0x0b,
260,
/* ROUNDSDm */
},
{ /* 2337 */
MODIFIER_NONE,
0x0b,
261,
/* ROUNDSDr */
},
{ /* 2338 */
MODIFIER_NONE,
0x00,
0,
/* ROUNDSDr_Int */
},
{ /* 2339 */
MODIFIER_NONE,
0x0a,
154,
/* ROUNDSSm */
},
{ /* 2340 */
MODIFIER_NONE,
0x0a,
262,
/* ROUNDSSr */
},
{ /* 2341 */
MODIFIER_NONE,
0x00,
0,
/* ROUNDSSr_Int */
},
{ /* 2342 */
MODIFIER_NONE,
0xaa,
0,
/* RSM */
},
{ /* 2343 */
MODIFIER_NONE,
0x52,
44,
/* RSQRTPSm */
},
{ /* 2344 */
MODIFIER_NONE,
0x00,
0,
/* RSQRTPSm_Int */
},
{ /* 2345 */
MODIFIER_NONE,
0x52,
45,
/* RSQRTPSr */
},
{ /* 2346 */
MODIFIER_NONE,
0x00,
0,
/* RSQRTPSr_Int */
},
{ /* 2347 */
MODIFIER_NONE,
0x52,
229,
/* RSQRTSSm */
},
{ /* 2348 */
MODIFIER_NONE,
0x00,
0,
/* RSQRTSSm_Int */
},
{ /* 2349 */
MODIFIER_NONE,
0x52,
143,
/* RSQRTSSr */
},
{ /* 2350 */
MODIFIER_NONE,
0x00,
0,
/* RSQRTSSr_Int */
},
{ /* 2351 */
MODIFIER_NONE,
0x9e,
0,
/* SAHF */
},
{ /* 2352 */
MODIFIER_NONE,
0xd1,
40,
/* SAR16m1 */
},
{ /* 2353 */
MODIFIER_NONE,
0xd3,
40,
/* SAR16mCL */
},
{ /* 2354 */
MODIFIER_NONE,
0xc1,
251,
/* SAR16mi */
},
{ /* 2355 */
MODIFIER_NONE,
0xd1,
124,
/* SAR16r1 */
},
{ /* 2356 */
MODIFIER_NONE,
0xd3,
124,
/* SAR16rCL */
},
{ /* 2357 */
MODIFIER_NONE,
0xc1,
252,
/* SAR16ri */
},
{ /* 2358 */
MODIFIER_NONE,
0xd1,
40,
/* SAR32m1 */
},
{ /* 2359 */
MODIFIER_NONE,
0xd3,
40,
/* SAR32mCL */
},
{ /* 2360 */
MODIFIER_NONE,
0xc1,
251,
/* SAR32mi */
},
{ /* 2361 */
MODIFIER_NONE,
0xd1,
124,
/* SAR32r1 */
},
{ /* 2362 */
MODIFIER_NONE,
0xd3,
124,
/* SAR32rCL */
},
{ /* 2363 */
MODIFIER_NONE,
0xc1,
252,
/* SAR32ri */
},
{ /* 2364 */
MODIFIER_NONE,
0xd1,
40,
/* SAR64m1 */
},
{ /* 2365 */
MODIFIER_NONE,
0xd3,
40,
/* SAR64mCL */
},
{ /* 2366 */
MODIFIER_NONE,
0xc1,
251,
/* SAR64mi */
},
{ /* 2367 */
MODIFIER_NONE,
0xd1,
125,
/* SAR64r1 */
},
{ /* 2368 */
MODIFIER_NONE,
0xd3,
125,
/* SAR64rCL */
},
{ /* 2369 */
MODIFIER_NONE,
0xc1,
253,
/* SAR64ri */
},
{ /* 2370 */
MODIFIER_NONE,
0xd0,
75,
/* SAR8m1 */
},
{ /* 2371 */
MODIFIER_NONE,
0xd2,
75,
/* SAR8mCL */
},
{ /* 2372 */
MODIFIER_NONE,
0xc0,
22,
/* SAR8mi */
},
{ /* 2373 */
MODIFIER_NONE,
0xd0,
126,
/* SAR8r1 */
},
{ /* 2374 */
MODIFIER_NONE,
0xd2,
126,
/* SAR8rCL */
},
{ /* 2375 */
MODIFIER_NONE,
0xc0,
24,
/* SAR8ri */
},
{ /* 2376 */
MODIFIER_NONE,
0xf7,
54,
/* SARX32rm */
},
{ /* 2377 */
MODIFIER_NONE,
0xf7,
55,
/* SARX32rr */
},
{ /* 2378 */
MODIFIER_NONE,
0xf7,
56,
/* SARX64rm */
},
{ /* 2379 */
MODIFIER_NONE,
0xf7,
57,
/* SARX64rr */
},
{ /* 2380 */
MODIFIER_NONE,
0x1d,
2,
/* SBB16i16 */
},
{ /* 2381 */
MODIFIER_NONE,
0x81,
3,
/* SBB16mi */
},
{ /* 2382 */
MODIFIER_NONE,
0x83,
4,
/* SBB16mi8 */
},
{ /* 2383 */
MODIFIER_NONE,
0x19,
5,
/* SBB16mr */
},
{ /* 2384 */
MODIFIER_NONE,
0x81,
6,
/* SBB16ri */
},
{ /* 2385 */
MODIFIER_NONE,
0x83,
7,
/* SBB16ri8 */
},
{ /* 2386 */
MODIFIER_NONE,
0x1b,
8,
/* SBB16rm */
},
{ /* 2387 */
MODIFIER_NONE,
0x19,
9,
/* SBB16rr */
},
{ /* 2388 */
MODIFIER_NONE,
0x1b,
10,
/* SBB16rr_REV */
},
{ /* 2389 */
MODIFIER_NONE,
0x1d,
2,
/* SBB32i32 */
},
{ /* 2390 */
MODIFIER_NONE,
0x81,
3,
/* SBB32mi */
},
{ /* 2391 */
MODIFIER_NONE,
0x83,
11,
/* SBB32mi8 */
},
{ /* 2392 */
MODIFIER_NONE,
0x19,
5,
/* SBB32mr */
},
{ /* 2393 */
MODIFIER_NONE,
0x81,
6,
/* SBB32ri */
},
{ /* 2394 */
MODIFIER_NONE,
0x83,
12,
/* SBB32ri8 */
},
{ /* 2395 */
MODIFIER_NONE,
0x1b,
8,
/* SBB32rm */
},
{ /* 2396 */
MODIFIER_NONE,
0x19,
9,
/* SBB32rr */
},
{ /* 2397 */
MODIFIER_NONE,
0x1b,
10,
/* SBB32rr_REV */
},
{ /* 2398 */
MODIFIER_NONE,
0x1d,
13,
/* SBB64i32 */
},
{ /* 2399 */
MODIFIER_NONE,
0x81,
14,
/* SBB64mi32 */
},
{ /* 2400 */
MODIFIER_NONE,
0x83,
15,
/* SBB64mi8 */
},
{ /* 2401 */
MODIFIER_NONE,
0x19,
16,
/* SBB64mr */
},
{ /* 2402 */
MODIFIER_NONE,
0x81,
17,
/* SBB64ri32 */
},
{ /* 2403 */
MODIFIER_NONE,
0x83,
18,
/* SBB64ri8 */
},
{ /* 2404 */
MODIFIER_NONE,
0x1b,
19,
/* SBB64rm */
},
{ /* 2405 */
MODIFIER_NONE,
0x19,
20,
/* SBB64rr */
},
{ /* 2406 */
MODIFIER_NONE,
0x1b,
21,
/* SBB64rr_REV */
},
{ /* 2407 */
MODIFIER_NONE,
0x1c,
1,
/* SBB8i8 */
},
{ /* 2408 */
MODIFIER_NONE,
0x80,
22,
/* SBB8mi */
},
{ /* 2409 */
MODIFIER_NONE,
0x18,
23,
/* SBB8mr */
},
{ /* 2410 */
MODIFIER_NONE,
0x80,
24,
/* SBB8ri */
},
{ /* 2411 */
MODIFIER_NONE,
0x1a,
25,
/* SBB8rm */
},
{ /* 2412 */
MODIFIER_NONE,
0x18,
26,
/* SBB8rr */
},
{ /* 2413 */
MODIFIER_NONE,
0x1a,
27,
/* SBB8rr_REV */
},
{ /* 2414 */
MODIFIER_NONE,
0xaf,
0,
/* SCAS16 */
},
{ /* 2415 */
MODIFIER_NONE,
0xaf,
0,
/* SCAS32 */
},
{ /* 2416 */
MODIFIER_NONE,
0xaf,
0,
/* SCAS64 */
},
{ /* 2417 */
MODIFIER_NONE,
0xae,
0,
/* SCAS8 */
},
{ /* 2418 */
MODIFIER_NONE,
0x00,
0,
/* SEG_ALLOCA_32 */
},
{ /* 2419 */
MODIFIER_NONE,
0x00,
0,
/* SEG_ALLOCA_64 */
},
{ /* 2420 */
MODIFIER_NONE,
0x93,
75,
/* SETAEm */
},
{ /* 2421 */
MODIFIER_NONE,
0x93,
127,
/* SETAEr */
},
{ /* 2422 */
MODIFIER_NONE,
0x97,
75,
/* SETAm */
},
{ /* 2423 */
MODIFIER_NONE,
0x97,
127,
/* SETAr */
},
{ /* 2424 */
MODIFIER_NONE,
0x96,
75,
/* SETBEm */
},
{ /* 2425 */
MODIFIER_NONE,
0x96,
127,
/* SETBEr */
},
{ /* 2426 */
MODIFIER_NONE,
0x00,
0,
/* SETB_C16r */
},
{ /* 2427 */
MODIFIER_NONE,
0x00,
0,
/* SETB_C32r */
},
{ /* 2428 */
MODIFIER_NONE,
0x00,
0,
/* SETB_C64r */
},
{ /* 2429 */
MODIFIER_NONE,
0x00,
0,
/* SETB_C8r */
},
{ /* 2430 */
MODIFIER_NONE,
0x92,
75,
/* SETBm */
},
{ /* 2431 */
MODIFIER_NONE,
0x92,
127,
/* SETBr */
},
{ /* 2432 */
MODIFIER_NONE,
0x94,
75,
/* SETEm */
},
{ /* 2433 */
MODIFIER_NONE,
0x94,
127,
/* SETEr */
},
{ /* 2434 */
MODIFIER_NONE,
0x9d,
75,
/* SETGEm */
},
{ /* 2435 */
MODIFIER_NONE,
0x9d,
127,
/* SETGEr */
},
{ /* 2436 */
MODIFIER_NONE,
0x9f,
75,
/* SETGm */
},
{ /* 2437 */
MODIFIER_NONE,
0x9f,
127,
/* SETGr */
},
{ /* 2438 */
MODIFIER_NONE,
0x9e,
75,
/* SETLEm */
},
{ /* 2439 */
MODIFIER_NONE,
0x9e,
127,
/* SETLEr */
},
{ /* 2440 */
MODIFIER_NONE,
0x9c,
75,
/* SETLm */
},
{ /* 2441 */
MODIFIER_NONE,
0x9c,
127,
/* SETLr */
},
{ /* 2442 */
MODIFIER_NONE,
0x95,
75,
/* SETNEm */
},
{ /* 2443 */
MODIFIER_NONE,
0x95,
127,
/* SETNEr */
},
{ /* 2444 */
MODIFIER_NONE,
0x91,
75,
/* SETNOm */
},
{ /* 2445 */
MODIFIER_NONE,
0x91,
127,
/* SETNOr */
},
{ /* 2446 */
MODIFIER_NONE,
0x9b,
75,
/* SETNPm */
},
{ /* 2447 */
MODIFIER_NONE,
0x9b,
127,
/* SETNPr */
},
{ /* 2448 */
MODIFIER_NONE,
0x99,
75,
/* SETNSm */
},
{ /* 2449 */
MODIFIER_NONE,
0x99,
127,
/* SETNSr */
},
{ /* 2450 */
MODIFIER_NONE,
0x90,
75,
/* SETOm */
},
{ /* 2451 */
MODIFIER_NONE,
0x90,
127,
/* SETOr */
},
{ /* 2452 */
MODIFIER_NONE,
0x9a,
75,
/* SETPm */
},
{ /* 2453 */
MODIFIER_NONE,
0x9a,
127,
/* SETPr */
},
{ /* 2454 */
MODIFIER_NONE,
0x98,
75,
/* SETSm */
},
{ /* 2455 */
MODIFIER_NONE,
0x98,
127,
/* SETSr */
},
{ /* 2456 */
MODIFIER_NONE,
0xae,
0,
/* SFENCE */
},
{ /* 2457 */
MODIFIER_NONE,
0x01,
135,
/* SGDT16m */
},
{ /* 2458 */
MODIFIER_NONE,
0x01,
135,
/* SGDTm */
},
{ /* 2459 */
MODIFIER_NONE,
0xd1,
40,
/* SHL16m1 */
},
{ /* 2460 */
MODIFIER_NONE,
0xd3,
40,
/* SHL16mCL */
},
{ /* 2461 */
MODIFIER_NONE,
0xc1,
251,
/* SHL16mi */
},
{ /* 2462 */
MODIFIER_NONE,
0xd1,
124,
/* SHL16r1 */
},
{ /* 2463 */
MODIFIER_NONE,
0xd3,
124,
/* SHL16rCL */
},
{ /* 2464 */
MODIFIER_NONE,
0xc1,
252,
/* SHL16ri */
},
{ /* 2465 */
MODIFIER_NONE,
0xd1,
40,
/* SHL32m1 */
},
{ /* 2466 */
MODIFIER_NONE,
0xd3,
40,
/* SHL32mCL */
},
{ /* 2467 */
MODIFIER_NONE,
0xc1,
251,
/* SHL32mi */
},
{ /* 2468 */
MODIFIER_NONE,
0xd1,
124,
/* SHL32r1 */
},
{ /* 2469 */
MODIFIER_NONE,
0xd3,
124,
/* SHL32rCL */
},
{ /* 2470 */
MODIFIER_NONE,
0xc1,
252,
/* SHL32ri */
},
{ /* 2471 */
MODIFIER_NONE,
0xd1,
40,
/* SHL64m1 */
},
{ /* 2472 */
MODIFIER_NONE,
0xd3,
40,
/* SHL64mCL */
},
{ /* 2473 */
MODIFIER_NONE,
0xc1,
251,
/* SHL64mi */
},
{ /* 2474 */
MODIFIER_NONE,
0xd1,
125,
/* SHL64r1 */
},
{ /* 2475 */
MODIFIER_NONE,
0xd3,
125,
/* SHL64rCL */
},
{ /* 2476 */
MODIFIER_NONE,
0xc1,
253,
/* SHL64ri */
},
{ /* 2477 */
MODIFIER_NONE,
0xd0,
75,
/* SHL8m1 */
},
{ /* 2478 */
MODIFIER_NONE,
0xd2,
75,
/* SHL8mCL */
},
{ /* 2479 */
MODIFIER_NONE,
0xc0,
22,
/* SHL8mi */
},
{ /* 2480 */
MODIFIER_NONE,
0xd0,
126,
/* SHL8r1 */
},
{ /* 2481 */
MODIFIER_NONE,
0xd2,
126,
/* SHL8rCL */
},
{ /* 2482 */
MODIFIER_NONE,
0xc0,
24,
/* SHL8ri */
},
{ /* 2483 */
MODIFIER_NONE,
0xa5,
5,
/* SHLD16mrCL */
},
{ /* 2484 */
MODIFIER_NONE,
0xa4,
263,
/* SHLD16mri8 */
},
{ /* 2485 */
MODIFIER_NONE,
0xa5,
9,
/* SHLD16rrCL */
},
{ /* 2486 */
MODIFIER_NONE,
0xa4,
264,
/* SHLD16rri8 */
},
{ /* 2487 */
MODIFIER_NONE,
0xa5,
5,
/* SHLD32mrCL */
},
{ /* 2488 */
MODIFIER_NONE,
0xa4,
263,
/* SHLD32mri8 */
},
{ /* 2489 */
MODIFIER_NONE,
0xa5,
9,
/* SHLD32rrCL */
},
{ /* 2490 */
MODIFIER_NONE,
0xa4,
264,
/* SHLD32rri8 */
},
{ /* 2491 */
MODIFIER_NONE,
0xa5,
16,
/* SHLD64mrCL */
},
{ /* 2492 */
MODIFIER_NONE,
0xa4,
265,
/* SHLD64mri8 */
},
{ /* 2493 */
MODIFIER_NONE,
0xa5,
20,
/* SHLD64rrCL */
},
{ /* 2494 */
MODIFIER_NONE,
0xa4,
266,
/* SHLD64rri8 */
},
{ /* 2495 */
MODIFIER_NONE,
0xf7,
267,
/* SHLX32rm */
},
{ /* 2496 */
MODIFIER_NONE,
0xf7,
268,
/* SHLX32rr */
},
{ /* 2497 */
MODIFIER_NONE,
0xf7,
56,
/* SHLX64rm */
},
{ /* 2498 */
MODIFIER_NONE,
0xf7,
57,
/* SHLX64rr */
},
{ /* 2499 */
MODIFIER_NONE,
0xd1,
40,
/* SHR16m1 */
},
{ /* 2500 */
MODIFIER_NONE,
0xd3,
40,
/* SHR16mCL */
},
{ /* 2501 */
MODIFIER_NONE,
0xc1,
251,
/* SHR16mi */
},
{ /* 2502 */
MODIFIER_NONE,
0xd1,
124,
/* SHR16r1 */
},
{ /* 2503 */
MODIFIER_NONE,
0xd3,
124,
/* SHR16rCL */
},
{ /* 2504 */
MODIFIER_NONE,
0xc1,
252,
/* SHR16ri */
},
{ /* 2505 */
MODIFIER_NONE,
0xd1,
40,
/* SHR32m1 */
},
{ /* 2506 */
MODIFIER_NONE,
0xd3,
40,
/* SHR32mCL */
},
{ /* 2507 */
MODIFIER_NONE,
0xc1,
251,
/* SHR32mi */
},
{ /* 2508 */
MODIFIER_NONE,
0xd1,
124,
/* SHR32r1 */
},
{ /* 2509 */
MODIFIER_NONE,
0xd3,
124,
/* SHR32rCL */
},
{ /* 2510 */
MODIFIER_NONE,
0xc1,
252,
/* SHR32ri */
},
{ /* 2511 */
MODIFIER_NONE,
0xd1,
40,
/* SHR64m1 */
},
{ /* 2512 */
MODIFIER_NONE,
0xd3,
40,
/* SHR64mCL */
},
{ /* 2513 */
MODIFIER_NONE,
0xc1,
251,
/* SHR64mi */
},
{ /* 2514 */
MODIFIER_NONE,
0xd1,
125,
/* SHR64r1 */
},
{ /* 2515 */
MODIFIER_NONE,
0xd3,
125,
/* SHR64rCL */
},
{ /* 2516 */
MODIFIER_NONE,
0xc1,
253,
/* SHR64ri */
},
{ /* 2517 */
MODIFIER_NONE,
0xd0,
75,
/* SHR8m1 */
},
{ /* 2518 */
MODIFIER_NONE,
0xd2,
75,
/* SHR8mCL */
},
{ /* 2519 */
MODIFIER_NONE,
0xc0,
22,
/* SHR8mi */
},
{ /* 2520 */
MODIFIER_NONE,
0xd0,
126,
/* SHR8r1 */
},
{ /* 2521 */
MODIFIER_NONE,
0xd2,
126,
/* SHR8rCL */
},
{ /* 2522 */
MODIFIER_NONE,
0xc0,
24,
/* SHR8ri */
},
{ /* 2523 */
MODIFIER_NONE,
0xad,
5,
/* SHRD16mrCL */
},
{ /* 2524 */
MODIFIER_NONE,
0xac,
263,
/* SHRD16mri8 */
},
{ /* 2525 */
MODIFIER_NONE,
0xad,
9,
/* SHRD16rrCL */
},
{ /* 2526 */
MODIFIER_NONE,
0xac,
264,
/* SHRD16rri8 */
},
{ /* 2527 */
MODIFIER_NONE,
0xad,
5,
/* SHRD32mrCL */
},
{ /* 2528 */
MODIFIER_NONE,
0xac,
263,
/* SHRD32mri8 */
},
{ /* 2529 */
MODIFIER_NONE,
0xad,
9,
/* SHRD32rrCL */
},
{ /* 2530 */
MODIFIER_NONE,
0xac,
264,
/* SHRD32rri8 */
},
{ /* 2531 */
MODIFIER_NONE,
0xad,
16,
/* SHRD64mrCL */
},
{ /* 2532 */
MODIFIER_NONE,
0xac,
265,
/* SHRD64mri8 */
},
{ /* 2533 */
MODIFIER_NONE,
0xad,
20,
/* SHRD64rrCL */
},
{ /* 2534 */
MODIFIER_NONE,
0xac,
266,
/* SHRD64rri8 */
},
{ /* 2535 */
MODIFIER_NONE,
0xf7,
54,
/* SHRX32rm */
},
{ /* 2536 */
MODIFIER_NONE,
0xf7,
55,
/* SHRX32rr */
},
{ /* 2537 */
MODIFIER_NONE,
0xf7,
56,
/* SHRX64rm */
},
{ /* 2538 */
MODIFIER_NONE,
0xf7,
57,
/* SHRX64rr */
},
{ /* 2539 */
MODIFIER_NONE,
0xc6,
83,
/* SHUFPDrmi */
},
{ /* 2540 */
MODIFIER_NONE,
0xc6,
85,
/* SHUFPDrri */
},
{ /* 2541 */
MODIFIER_NONE,
0xc6,
83,
/* SHUFPSrmi */
},
{ /* 2542 */
MODIFIER_NONE,
0xc6,
85,
/* SHUFPSrri */
},
{ /* 2543 */
MODIFIER_NONE,
0x01,
135,
/* SIDT16m */
},
{ /* 2544 */
MODIFIER_NONE,
0x01,
135,
/* SIDTm */
},
{ /* 2545 */
MODIFIER_NONE,
0xd9,
0,
/* SIN_F */
},
{ /* 2546 */
MODIFIER_NONE,
0x00,
0,
/* SIN_Fp32 */
},
{ /* 2547 */
MODIFIER_NONE,
0x00,
0,
/* SIN_Fp64 */
},
{ /* 2548 */
MODIFIER_NONE,
0x00,
0,
/* SIN_Fp80 */
},
{ /* 2549 */
MODIFIER_NONE,
0x01,
0,
/* SKINIT */
},
{ /* 2550 */
MODIFIER_NONE,
0x00,
40,
/* SLDT16m */
},
{ /* 2551 */
MODIFIER_NONE,
0x00,
71,
/* SLDT16r */
},
{ /* 2552 */
MODIFIER_NONE,
0x00,
71,
/* SLDT32r */
},
{ /* 2553 */
MODIFIER_NONE,
0x00,
40,
/* SLDT64m */
},
{ /* 2554 */
MODIFIER_NONE,
0x00,
73,
/* SLDT64r */
},
{ /* 2555 */
MODIFIER_NONE,
0x01,
40,
/* SMSW16m */
},
{ /* 2556 */
MODIFIER_NONE,
0x01,
71,
/* SMSW16r */
},
{ /* 2557 */
MODIFIER_NONE,
0x01,
71,
/* SMSW32r */
},
{ /* 2558 */
MODIFIER_NONE,
0x01,
73,
/* SMSW64r */
},
{ /* 2559 */
MODIFIER_NONE,
0x51,
44,
/* SQRTPDm */
},
{ /* 2560 */
MODIFIER_NONE,
0x51,
45,
/* SQRTPDr */
},
{ /* 2561 */
MODIFIER_NONE,
0x51,
44,
/* SQRTPSm */
},
{ /* 2562 */
MODIFIER_NONE,
0x51,
45,
/* SQRTPSr */
},
{ /* 2563 */
MODIFIER_NONE,
0x51,
225,
/* SQRTSDm */
},
{ /* 2564 */
MODIFIER_NONE,
0x00,
0,
/* SQRTSDm_Int */
},
{ /* 2565 */
MODIFIER_NONE,
0x51,
141,
/* SQRTSDr */
},
{ /* 2566 */
MODIFIER_NONE,
0x00,
0,
/* SQRTSDr_Int */
},
{ /* 2567 */
MODIFIER_NONE,
0x51,
229,
/* SQRTSSm */
},
{ /* 2568 */
MODIFIER_NONE,
0x00,
0,
/* SQRTSSm_Int */
},
{ /* 2569 */
MODIFIER_NONE,
0x51,
143,
/* SQRTSSr */
},
{ /* 2570 */
MODIFIER_NONE,
0x00,
0,
/* SQRTSSr_Int */
},
{ /* 2571 */
MODIFIER_NONE,
0xd9,
0,
/* SQRT_F */
},
{ /* 2572 */
MODIFIER_NONE,
0x00,
0,
/* SQRT_Fp32 */
},
{ /* 2573 */
MODIFIER_NONE,
0x00,
0,
/* SQRT_Fp64 */
},
{ /* 2574 */
MODIFIER_NONE,
0x00,
0,
/* SQRT_Fp80 */
},
{ /* 2575 */
MODIFIER_NONE,
0x36,
0,
/* SS_PREFIX */
},
{ /* 2576 */
MODIFIER_NONE,
0x01,
0,
/* STAC */
},
{ /* 2577 */
MODIFIER_NONE,
0xf9,
0,
/* STC */
},
{ /* 2578 */
MODIFIER_NONE,
0xfd,
0,
/* STD */
},
{ /* 2579 */
MODIFIER_NONE,
0x01,
0,
/* STGI */
},
{ /* 2580 */
MODIFIER_NONE,
0xfb,
0,
/* STI */
},
{ /* 2581 */
MODIFIER_NONE,
0xae,
40,
/* STMXCSR */
},
{ /* 2582 */
MODIFIER_NONE,
0xaa,
0,
/* STOSB */
},
{ /* 2583 */
MODIFIER_NONE,
0xab,
0,
/* STOSD */
},
{ /* 2584 */
MODIFIER_NONE,
0xab,
0,
/* STOSQ */
},
{ /* 2585 */
MODIFIER_NONE,
0xab,
0,
/* STOSW */
},
{ /* 2586 */
MODIFIER_NONE,
0x00,
71,
/* STR16r */
},
{ /* 2587 */
MODIFIER_NONE,
0x00,
71,
/* STR32r */
},
{ /* 2588 */
MODIFIER_NONE,
0x00,
73,
/* STR64r */
},
{ /* 2589 */
MODIFIER_NONE,
0x00,
40,
/* STRm */
},
{ /* 2590 */
MODIFIER_NONE,
0xd9,
38,
/* ST_F32m */
},
{ /* 2591 */
MODIFIER_NONE,
0xdd,
39,
/* ST_F64m */
},
{ /* 2592 */
MODIFIER_NONE,
0xd9,
38,
/* ST_FP32m */
},
{ /* 2593 */
MODIFIER_NONE,
0xdd,
39,
/* ST_FP64m */
},
{ /* 2594 */
MODIFIER_NONE,
0xdb,
163,
/* ST_FP80m */
},
{ /* 2595 */
MODIFIER_MODRM,
0xd8,
41,
/* ST_FPrr */
},
{ /* 2596 */
MODIFIER_NONE,
0x00,
0,
/* ST_Fp32m */
},
{ /* 2597 */
MODIFIER_NONE,
0x00,
0,
/* ST_Fp64m */
},
{ /* 2598 */
MODIFIER_NONE,
0x00,
0,
/* ST_Fp64m32 */
},
{ /* 2599 */
MODIFIER_NONE,
0x00,
0,
/* ST_Fp80m32 */
},
{ /* 2600 */
MODIFIER_NONE,
0x00,
0,
/* ST_Fp80m64 */
},
{ /* 2601 */
MODIFIER_NONE,
0x00,
0,
/* ST_FpP32m */
},
{ /* 2602 */
MODIFIER_NONE,
0x00,
0,
/* ST_FpP64m */
},
{ /* 2603 */
MODIFIER_NONE,
0x00,
0,
/* ST_FpP64m32 */
},
{ /* 2604 */
MODIFIER_NONE,
0x00,
0,
/* ST_FpP80m */
},
{ /* 2605 */
MODIFIER_NONE,
0x00,
0,
/* ST_FpP80m32 */
},
{ /* 2606 */
MODIFIER_NONE,
0x00,
0,
/* ST_FpP80m64 */
},
{ /* 2607 */
MODIFIER_MODRM,
0xd0,
41,
/* ST_Frr */
},
{ /* 2608 */
MODIFIER_NONE,
0x2d,
2,
/* SUB16i16 */
},
{ /* 2609 */
MODIFIER_NONE,
0x81,
3,
/* SUB16mi */
},
{ /* 2610 */
MODIFIER_NONE,
0x83,
4,
/* SUB16mi8 */
},
{ /* 2611 */
MODIFIER_NONE,
0x29,
5,
/* SUB16mr */
},
{ /* 2612 */
MODIFIER_NONE,
0x81,
6,
/* SUB16ri */
},
{ /* 2613 */
MODIFIER_NONE,
0x83,
7,
/* SUB16ri8 */
},
{ /* 2614 */
MODIFIER_NONE,
0x2b,
8,
/* SUB16rm */
},
{ /* 2615 */
MODIFIER_NONE,
0x29,
9,
/* SUB16rr */
},
{ /* 2616 */
MODIFIER_NONE,
0x2b,
10,
/* SUB16rr_REV */
},
{ /* 2617 */
MODIFIER_NONE,
0x2d,
2,
/* SUB32i32 */
},
{ /* 2618 */
MODIFIER_NONE,
0x81,
3,
/* SUB32mi */
},
{ /* 2619 */
MODIFIER_NONE,
0x83,
11,
/* SUB32mi8 */
},
{ /* 2620 */
MODIFIER_NONE,
0x29,
5,
/* SUB32mr */
},
{ /* 2621 */
MODIFIER_NONE,
0x81,
6,
/* SUB32ri */
},
{ /* 2622 */
MODIFIER_NONE,
0x83,
12,
/* SUB32ri8 */
},
{ /* 2623 */
MODIFIER_NONE,
0x2b,
8,
/* SUB32rm */
},
{ /* 2624 */
MODIFIER_NONE,
0x29,
9,
/* SUB32rr */
},
{ /* 2625 */
MODIFIER_NONE,
0x2b,
10,
/* SUB32rr_REV */
},
{ /* 2626 */
MODIFIER_NONE,
0x2d,
13,
/* SUB64i32 */
},
{ /* 2627 */
MODIFIER_NONE,
0x81,
14,
/* SUB64mi32 */
},
{ /* 2628 */
MODIFIER_NONE,
0x83,
15,
/* SUB64mi8 */
},
{ /* 2629 */
MODIFIER_NONE,
0x29,
16,
/* SUB64mr */
},
{ /* 2630 */
MODIFIER_NONE,
0x81,
17,
/* SUB64ri32 */
},
{ /* 2631 */
MODIFIER_NONE,
0x83,
18,
/* SUB64ri8 */
},
{ /* 2632 */
MODIFIER_NONE,
0x2b,
19,
/* SUB64rm */
},
{ /* 2633 */
MODIFIER_NONE,
0x29,
20,
/* SUB64rr */
},
{ /* 2634 */
MODIFIER_NONE,
0x2b,
21,
/* SUB64rr_REV */
},
{ /* 2635 */
MODIFIER_NONE,
0x2c,
1,
/* SUB8i8 */
},
{ /* 2636 */
MODIFIER_NONE,
0x80,
22,
/* SUB8mi */
},
{ /* 2637 */
MODIFIER_NONE,
0x28,
23,
/* SUB8mr */
},
{ /* 2638 */
MODIFIER_NONE,
0x80,
24,
/* SUB8ri */
},
{ /* 2639 */
MODIFIER_NONE,
0x2a,
25,
/* SUB8rm */
},
{ /* 2640 */
MODIFIER_NONE,
0x28,
26,
/* SUB8rr */
},
{ /* 2641 */
MODIFIER_NONE,
0x2a,
27,
/* SUB8rr_REV */
},
{ /* 2642 */
MODIFIER_NONE,
0x5c,
32,
/* SUBPDrm */
},
{ /* 2643 */
MODIFIER_NONE,
0x5c,
33,
/* SUBPDrr */
},
{ /* 2644 */
MODIFIER_NONE,
0x5c,
32,
/* SUBPSrm */
},
{ /* 2645 */
MODIFIER_NONE,
0x5c,
33,
/* SUBPSrr */
},
{ /* 2646 */
MODIFIER_NONE,
0xd8,
38,
/* SUBR_F32m */
},
{ /* 2647 */
MODIFIER_NONE,
0xdc,
39,
/* SUBR_F64m */
},
{ /* 2648 */
MODIFIER_NONE,
0xde,
40,
/* SUBR_FI16m */
},
{ /* 2649 */
MODIFIER_NONE,
0xda,
40,
/* SUBR_FI32m */
},
{ /* 2650 */
MODIFIER_MODRM,
0xe0,
41,
/* SUBR_FPrST0 */
},
{ /* 2651 */
MODIFIER_MODRM,
0xe8,
41,
/* SUBR_FST0r */
},
{ /* 2652 */
MODIFIER_NONE,
0x00,
0,
/* SUBR_Fp32m */
},
{ /* 2653 */
MODIFIER_NONE,
0x00,
0,
/* SUBR_Fp64m */
},
{ /* 2654 */
MODIFIER_NONE,
0x00,
0,
/* SUBR_Fp64m32 */
},
{ /* 2655 */
MODIFIER_NONE,
0x00,
0,
/* SUBR_Fp80m32 */
},
{ /* 2656 */
MODIFIER_NONE,
0x00,
0,
/* SUBR_Fp80m64 */
},
{ /* 2657 */
MODIFIER_NONE,
0x00,
0,
/* SUBR_FpI16m32 */
},
{ /* 2658 */
MODIFIER_NONE,
0x00,
0,
/* SUBR_FpI16m64 */
},
{ /* 2659 */
MODIFIER_NONE,
0x00,
0,
/* SUBR_FpI16m80 */
},
{ /* 2660 */
MODIFIER_NONE,
0x00,
0,
/* SUBR_FpI32m32 */
},
{ /* 2661 */
MODIFIER_NONE,
0x00,
0,
/* SUBR_FpI32m64 */
},
{ /* 2662 */
MODIFIER_NONE,
0x00,
0,
/* SUBR_FpI32m80 */
},
{ /* 2663 */
MODIFIER_MODRM,
0xe0,
41,
/* SUBR_FrST0 */
},
{ /* 2664 */
MODIFIER_NONE,
0x5c,
34,
/* SUBSDrm */
},
{ /* 2665 */
MODIFIER_NONE,
0x00,
0,
/* SUBSDrm_Int */
},
{ /* 2666 */
MODIFIER_NONE,
0x5c,
35,
/* SUBSDrr */
},
{ /* 2667 */
MODIFIER_NONE,
0x00,
0,
/* SUBSDrr_Int */
},
{ /* 2668 */
MODIFIER_NONE,
0x5c,
36,
/* SUBSSrm */
},
{ /* 2669 */
MODIFIER_NONE,
0x00,
0,
/* SUBSSrm_Int */
},
{ /* 2670 */
MODIFIER_NONE,
0x5c,
37,
/* SUBSSrr */
},
{ /* 2671 */
MODIFIER_NONE,
0x00,
0,
/* SUBSSrr_Int */
},
{ /* 2672 */
MODIFIER_NONE,
0xd8,
38,
/* SUB_F32m */
},
{ /* 2673 */
MODIFIER_NONE,
0xdc,
39,
/* SUB_F64m */
},
{ /* 2674 */
MODIFIER_NONE,
0xde,
40,
/* SUB_FI16m */
},
{ /* 2675 */
MODIFIER_NONE,
0xda,
40,
/* SUB_FI32m */
},
{ /* 2676 */
MODIFIER_MODRM,
0xe8,
41,
/* SUB_FPrST0 */
},
{ /* 2677 */
MODIFIER_MODRM,
0xe0,
41,
/* SUB_FST0r */
},
{ /* 2678 */
MODIFIER_NONE,
0x00,
0,
/* SUB_Fp32 */
},
{ /* 2679 */
MODIFIER_NONE,
0x00,
0,
/* SUB_Fp32m */
},
{ /* 2680 */
MODIFIER_NONE,
0x00,
0,
/* SUB_Fp64 */
},
{ /* 2681 */
MODIFIER_NONE,
0x00,
0,
/* SUB_Fp64m */
},
{ /* 2682 */
MODIFIER_NONE,
0x00,
0,
/* SUB_Fp64m32 */
},
{ /* 2683 */
MODIFIER_NONE,
0x00,
0,
/* SUB_Fp80 */
},
{ /* 2684 */
MODIFIER_NONE,
0x00,
0,
/* SUB_Fp80m32 */
},
{ /* 2685 */
MODIFIER_NONE,
0x00,
0,
/* SUB_Fp80m64 */
},
{ /* 2686 */
MODIFIER_NONE,
0x00,
0,
/* SUB_FpI16m32 */
},
{ /* 2687 */
MODIFIER_NONE,
0x00,
0,
/* SUB_FpI16m64 */
},
{ /* 2688 */
MODIFIER_NONE,
0x00,
0,
/* SUB_FpI16m80 */
},
{ /* 2689 */
MODIFIER_NONE,
0x00,
0,
/* SUB_FpI32m32 */
},
{ /* 2690 */
MODIFIER_NONE,
0x00,
0,
/* SUB_FpI32m64 */
},
{ /* 2691 */
MODIFIER_NONE,
0x00,
0,
/* SUB_FpI32m80 */
},
{ /* 2692 */
MODIFIER_MODRM,
0xe8,
41,
/* SUB_FrST0 */
},
{ /* 2693 */
MODIFIER_NONE,
0x01,
0,
/* SWAPGS */
},
{ /* 2694 */
MODIFIER_NONE,
0x05,
0,
/* SYSCALL */
},
{ /* 2695 */
MODIFIER_NONE,
0x34,
0,
/* SYSENTER */
},
{ /* 2696 */
MODIFIER_NONE,
0x35,
0,
/* SYSEXIT */
},
{ /* 2697 */
MODIFIER_NONE,
0x35,
0,
/* SYSEXIT64 */
},
{ /* 2698 */
MODIFIER_NONE,
0x07,
0,
/* SYSRET */
},
{ /* 2699 */
MODIFIER_NONE,
0x07,
0,
/* SYSRET64 */
},
{ /* 2700 */
MODIFIER_NONE,
0x00,
0,
/* TAILJMPd */
},
{ /* 2701 */
MODIFIER_NONE,
0x00,
0,
/* TAILJMPd64 */
},
{ /* 2702 */
MODIFIER_NONE,
0x00,
0,
/* TAILJMPm */
},
{ /* 2703 */
MODIFIER_NONE,
0x00,
0,
/* TAILJMPm64 */
},
{ /* 2704 */
MODIFIER_NONE,
0x00,
0,
/* TAILJMPr */
},
{ /* 2705 */
MODIFIER_NONE,
0x00,
0,
/* TAILJMPr64 */
},
{ /* 2706 */
MODIFIER_NONE,
0x00,
0,
/* TCRETURNdi */
},
{ /* 2707 */
MODIFIER_NONE,
0x00,
0,
/* TCRETURNdi64 */
},
{ /* 2708 */
MODIFIER_NONE,
0x00,
0,
/* TCRETURNmi */
},
{ /* 2709 */
MODIFIER_NONE,
0x00,
0,
/* TCRETURNmi64 */
},
{ /* 2710 */
MODIFIER_NONE,
0x00,
0,
/* TCRETURNri */
},
{ /* 2711 */
MODIFIER_NONE,
0x00,
0,
/* TCRETURNri64 */
},
{ /* 2712 */
MODIFIER_NONE,
0xa9,
2,
/* TEST16i16 */
},
{ /* 2713 */
MODIFIER_NONE,
0xf7,
3,
/* TEST16mi */
},
{ /* 2714 */
MODIFIER_NONE,
0xf7,
76,
/* TEST16ri */
},
{ /* 2715 */
MODIFIER_NONE,
0x85,
42,
/* TEST16rm */
},
{ /* 2716 */
MODIFIER_NONE,
0x85,
43,
/* TEST16rr */
},
{ /* 2717 */
MODIFIER_NONE,
0xa9,
2,
/* TEST32i32 */
},
{ /* 2718 */
MODIFIER_NONE,
0xf7,
3,
/* TEST32mi */
},
{ /* 2719 */
MODIFIER_NONE,
0xf7,
76,
/* TEST32ri */
},
{ /* 2720 */
MODIFIER_NONE,
0x85,
42,
/* TEST32rm */
},
{ /* 2721 */
MODIFIER_NONE,
0x85,
43,
/* TEST32rr */
},
{ /* 2722 */
MODIFIER_NONE,
0xa9,
13,
/* TEST64i32 */
},
{ /* 2723 */
MODIFIER_NONE,
0xf7,
14,
/* TEST64mi32 */
},
{ /* 2724 */
MODIFIER_NONE,
0xf7,
77,
/* TEST64ri32 */
},
{ /* 2725 */
MODIFIER_NONE,
0x85,
30,
/* TEST64rm */
},
{ /* 2726 */
MODIFIER_NONE,
0x85,
31,
/* TEST64rr */
},
{ /* 2727 */
MODIFIER_NONE,
0xa8,
1,
/* TEST8i8 */
},
{ /* 2728 */
MODIFIER_NONE,
0xf6,
22,
/* TEST8mi */
},
{ /* 2729 */
MODIFIER_NONE,
0xf6,
78,
/* TEST8ri */
},
{ /* 2730 */
MODIFIER_NONE,
0x00,
0,
/* TEST8ri_NOREX */
},
{ /* 2731 */
MODIFIER_NONE,
0x84,
79,
/* TEST8rm */
},
{ /* 2732 */
MODIFIER_NONE,
0x84,
81,
/* TEST8rr */
},
{ /* 2733 */
MODIFIER_NONE,
0x00,
0,
/* THREAD_POINTER_FROM_GS */
},
{ /* 2734 */
MODIFIER_NONE,
0x00,
0,
/* TLSCall_32 */
},
{ /* 2735 */
MODIFIER_NONE,
0x00,
0,
/* TLSCall_64 */
},
{ /* 2736 */
MODIFIER_NONE,
0x00,
0,
/* TLS_addr32 */
},
{ /* 2737 */
MODIFIER_NONE,
0x00,
0,
/* TLS_addr64 */
},
{ /* 2738 */
MODIFIER_NONE,
0x00,
0,
/* TLS_base_addr32 */
},
{ /* 2739 */
MODIFIER_NONE,
0x00,
0,
/* TLS_base_addr64 */
},
{ /* 2740 */
MODIFIER_NONE,
0x0b,
0,
/* TRAP */
},
{ /* 2741 */
MODIFIER_NONE,
0xd9,
0,
/* TST_F */
},
{ /* 2742 */
MODIFIER_NONE,
0x00,
0,
/* TST_Fp32 */
},
{ /* 2743 */
MODIFIER_NONE,
0x00,
0,
/* TST_Fp64 */
},
{ /* 2744 */
MODIFIER_NONE,
0x00,
0,
/* TST_Fp80 */
},
{ /* 2745 */
MODIFIER_NONE,
0xbc,
42,
/* TZCNT16rm */
},
{ /* 2746 */
MODIFIER_NONE,
0xbc,
43,
/* TZCNT16rr */
},
{ /* 2747 */
MODIFIER_NONE,
0xbc,
42,
/* TZCNT32rm */
},
{ /* 2748 */
MODIFIER_NONE,
0xbc,
43,
/* TZCNT32rr */
},
{ /* 2749 */
MODIFIER_NONE,
0xbc,
30,
/* TZCNT64rm */
},
{ /* 2750 */
MODIFIER_NONE,
0xbc,
31,
/* TZCNT64rr */
},
{ /* 2751 */
MODIFIER_NONE,
0x2e,
225,
/* UCOMISDrm */
},
{ /* 2752 */
MODIFIER_NONE,
0x2e,
141,
/* UCOMISDrr */
},
{ /* 2753 */
MODIFIER_NONE,
0x2e,
229,
/* UCOMISSrm */
},
{ /* 2754 */
MODIFIER_NONE,
0x2e,
143,
/* UCOMISSrr */
},
{ /* 2755 */
MODIFIER_MODRM,
0xe8,
41,
/* UCOM_FIPr */
},
{ /* 2756 */
MODIFIER_MODRM,
0xe8,
41,
/* UCOM_FIr */
},
{ /* 2757 */
MODIFIER_NONE,
0xda,
0,
/* UCOM_FPPr */
},
{ /* 2758 */
MODIFIER_MODRM,
0xe8,
41,
/* UCOM_FPr */
},
{ /* 2759 */
MODIFIER_NONE,
0x00,
0,
/* UCOM_FpIr32 */
},
{ /* 2760 */
MODIFIER_NONE,
0x00,
0,
/* UCOM_FpIr64 */
},
{ /* 2761 */
MODIFIER_NONE,
0x00,
0,
/* UCOM_FpIr80 */
},
{ /* 2762 */
MODIFIER_NONE,
0x00,
0,
/* UCOM_Fpr32 */
},
{ /* 2763 */
MODIFIER_NONE,
0x00,
0,
/* UCOM_Fpr64 */
},
{ /* 2764 */
MODIFIER_NONE,
0x00,
0,
/* UCOM_Fpr80 */
},
{ /* 2765 */
MODIFIER_MODRM,
0xe0,
41,
/* UCOM_Fr */
},
{ /* 2766 */
MODIFIER_NONE,
0xb9,
0,
/* UD2B */
},
{ /* 2767 */
MODIFIER_NONE,
0x15,
32,
/* UNPCKHPDrm */
},
{ /* 2768 */
MODIFIER_NONE,
0x15,
33,
/* UNPCKHPDrr */
},
{ /* 2769 */
MODIFIER_NONE,
0x15,
32,
/* UNPCKHPSrm */
},
{ /* 2770 */
MODIFIER_NONE,
0x15,
33,
/* UNPCKHPSrr */
},
{ /* 2771 */
MODIFIER_NONE,
0x14,
32,
/* UNPCKLPDrm */
},
{ /* 2772 */
MODIFIER_NONE,
0x14,
33,
/* UNPCKLPDrr */
},
{ /* 2773 */
MODIFIER_NONE,
0x14,
32,
/* UNPCKLPSrm */
},
{ /* 2774 */
MODIFIER_NONE,
0x14,
33,
/* UNPCKLPSrr */
},
{ /* 2775 */
MODIFIER_NONE,
0x00,
0,
/* VAARG_64 */
},
{ /* 2776 */
MODIFIER_NONE,
0x58,
269,
/* VADDPDYrm */
},
{ /* 2777 */
MODIFIER_NONE,
0x58,
270,
/* VADDPDYrr */
},
{ /* 2778 */
MODIFIER_NONE,
0x58,
271,
/* VADDPDrm */
},
{ /* 2779 */
MODIFIER_NONE,
0x58,
272,
/* VADDPDrr */
},
{ /* 2780 */
MODIFIER_NONE,
0x58,
269,
/* VADDPSYrm */
},
{ /* 2781 */
MODIFIER_NONE,
0x58,
270,
/* VADDPSYrr */
},
{ /* 2782 */
MODIFIER_NONE,
0x58,
271,
/* VADDPSrm */
},
{ /* 2783 */
MODIFIER_NONE,
0x58,
272,
/* VADDPSrr */
},
{ /* 2784 */
MODIFIER_NONE,
0x58,
273,
/* VADDSDrm */
},
{ /* 2785 */
MODIFIER_NONE,
0x00,
0,
/* VADDSDrm_Int */
},
{ /* 2786 */
MODIFIER_NONE,
0x58,
274,
/* VADDSDrr */
},
{ /* 2787 */
MODIFIER_NONE,
0x00,
0,
/* VADDSDrr_Int */
},
{ /* 2788 */
MODIFIER_NONE,
0x58,
275,
/* VADDSSrm */
},
{ /* 2789 */
MODIFIER_NONE,
0x00,
0,
/* VADDSSrm_Int */
},
{ /* 2790 */
MODIFIER_NONE,
0x58,
276,
/* VADDSSrr */
},
{ /* 2791 */
MODIFIER_NONE,
0x00,
0,
/* VADDSSrr_Int */
},
{ /* 2792 */
MODIFIER_NONE,
0xd0,
269,
/* VADDSUBPDYrm */
},
{ /* 2793 */
MODIFIER_NONE,
0xd0,
270,
/* VADDSUBPDYrr */
},
{ /* 2794 */
MODIFIER_NONE,
0xd0,
271,
/* VADDSUBPDrm */
},
{ /* 2795 */
MODIFIER_NONE,
0xd0,
272,
/* VADDSUBPDrr */
},
{ /* 2796 */
MODIFIER_NONE,
0xd0,
269,
/* VADDSUBPSYrm */
},
{ /* 2797 */
MODIFIER_NONE,
0xd0,
270,
/* VADDSUBPSYrr */
},
{ /* 2798 */
MODIFIER_NONE,
0xd0,
271,
/* VADDSUBPSrm */
},
{ /* 2799 */
MODIFIER_NONE,
0xd0,
272,
/* VADDSUBPSrr */
},
{ /* 2800 */
MODIFIER_NONE,
0xdf,
271,
/* VAESDECLASTrm */
},
{ /* 2801 */
MODIFIER_NONE,
0xdf,
272,
/* VAESDECLASTrr */
},
{ /* 2802 */
MODIFIER_NONE,
0xde,
271,
/* VAESDECrm */
},
{ /* 2803 */
MODIFIER_NONE,
0xde,
272,
/* VAESDECrr */
},
{ /* 2804 */
MODIFIER_NONE,
0xdd,
271,
/* VAESENCLASTrm */
},
{ /* 2805 */
MODIFIER_NONE,
0xdd,
272,
/* VAESENCLASTrr */
},
{ /* 2806 */
MODIFIER_NONE,
0xdc,
271,
/* VAESENCrm */
},
{ /* 2807 */
MODIFIER_NONE,
0xdc,
272,
/* VAESENCrr */
},
{ /* 2808 */
MODIFIER_NONE,
0xdb,
44,
/* VAESIMCrm */
},
{ /* 2809 */
MODIFIER_NONE,
0xdb,
45,
/* VAESIMCrr */
},
{ /* 2810 */
MODIFIER_NONE,
0xdf,
46,
/* VAESKEYGENASSIST128rm */
},
{ /* 2811 */
MODIFIER_NONE,
0xdf,
47,
/* VAESKEYGENASSIST128rr */
},
{ /* 2812 */
MODIFIER_NONE,
0x55,
269,
/* VANDNPDYrm */
},
{ /* 2813 */
MODIFIER_NONE,
0x55,
270,
/* VANDNPDYrr */
},
{ /* 2814 */
MODIFIER_NONE,
0x55,
271,
/* VANDNPDrm */
},
{ /* 2815 */
MODIFIER_NONE,
0x55,
272,
/* VANDNPDrr */
},
{ /* 2816 */
MODIFIER_NONE,
0x55,
269,
/* VANDNPSYrm */
},
{ /* 2817 */
MODIFIER_NONE,
0x55,
270,
/* VANDNPSYrr */
},
{ /* 2818 */
MODIFIER_NONE,
0x55,
271,
/* VANDNPSrm */
},
{ /* 2819 */
MODIFIER_NONE,
0x55,
272,
/* VANDNPSrr */
},
{ /* 2820 */
MODIFIER_NONE,
0x54,
269,
/* VANDPDYrm */
},
{ /* 2821 */
MODIFIER_NONE,
0x54,
270,
/* VANDPDYrr */
},
{ /* 2822 */
MODIFIER_NONE,
0x54,
271,
/* VANDPDrm */
},
{ /* 2823 */
MODIFIER_NONE,
0x54,
272,
/* VANDPDrr */
},
{ /* 2824 */
MODIFIER_NONE,
0x54,
269,
/* VANDPSYrm */
},
{ /* 2825 */
MODIFIER_NONE,
0x54,
270,
/* VANDPSYrr */
},
{ /* 2826 */
MODIFIER_NONE,
0x54,
271,
/* VANDPSrm */
},
{ /* 2827 */
MODIFIER_NONE,
0x54,
272,
/* VANDPSrr */
},
{ /* 2828 */
MODIFIER_NONE,
0x00,
0,
/* VASTART_SAVE_XMM_REGS */
},
{ /* 2829 */
MODIFIER_NONE,
0x0d,
277,
/* VBLENDPDYrmi */
},
{ /* 2830 */
MODIFIER_NONE,
0x0d,
278,
/* VBLENDPDYrri */
},
{ /* 2831 */
MODIFIER_NONE,
0x0d,
279,
/* VBLENDPDrmi */
},
{ /* 2832 */
MODIFIER_NONE,
0x0d,
280,
/* VBLENDPDrri */
},
{ /* 2833 */
MODIFIER_NONE,
0x0c,
277,
/* VBLENDPSYrmi */
},
{ /* 2834 */
MODIFIER_NONE,
0x0c,
278,
/* VBLENDPSYrri */
},
{ /* 2835 */
MODIFIER_NONE,
0x0c,
279,
/* VBLENDPSrmi */
},
{ /* 2836 */
MODIFIER_NONE,
0x0c,
280,
/* VBLENDPSrri */
},
{ /* 2837 */
MODIFIER_NONE,
0x4b,
281,
/* VBLENDVPDYrm */
},
{ /* 2838 */
MODIFIER_NONE,
0x4b,
282,
/* VBLENDVPDYrr */
},
{ /* 2839 */
MODIFIER_NONE,
0x4b,
283,
/* VBLENDVPDrm */
},
{ /* 2840 */
MODIFIER_NONE,
0x4b,
284,
/* VBLENDVPDrr */
},
{ /* 2841 */
MODIFIER_NONE,
0x4a,
281,
/* VBLENDVPSYrm */
},
{ /* 2842 */
MODIFIER_NONE,
0x4a,
282,
/* VBLENDVPSYrr */
},
{ /* 2843 */
MODIFIER_NONE,
0x4a,
283,
/* VBLENDVPSrm */
},
{ /* 2844 */
MODIFIER_NONE,
0x4a,
284,
/* VBLENDVPSrr */
},
{ /* 2845 */
MODIFIER_NONE,
0x1a,
285,
/* VBROADCASTF128 */
},
{ /* 2846 */
MODIFIER_NONE,
0x5a,
285,
/* VBROADCASTI128 */
},
{ /* 2847 */
MODIFIER_NONE,
0x19,
286,
/* VBROADCASTSDYrm */
},
{ /* 2848 */
MODIFIER_NONE,
0x19,
287,
/* VBROADCASTSDYrr */
},
{ /* 2849 */
MODIFIER_NONE,
0x18,
288,
/* VBROADCASTSSYrm */
},
{ /* 2850 */
MODIFIER_NONE,
0x18,
287,
/* VBROADCASTSSYrr */
},
{ /* 2851 */
MODIFIER_NONE,
0x18,
289,
/* VBROADCASTSSrm */
},
{ /* 2852 */
MODIFIER_NONE,
0x18,
45,
/* VBROADCASTSSrr */
},
{ /* 2853 */
MODIFIER_NONE,
0xc2,
290,
/* VCMPPDYrmi */
},
{ /* 2854 */
MODIFIER_NONE,
0xc2,
291,
/* VCMPPDYrmi_alt */
},
{ /* 2855 */
MODIFIER_NONE,
0xc2,
292,
/* VCMPPDYrri */
},
{ /* 2856 */
MODIFIER_NONE,
0xc2,
293,
/* VCMPPDYrri_alt */
},
{ /* 2857 */
MODIFIER_NONE,
0xc2,
294,
/* VCMPPDrmi */
},
{ /* 2858 */
MODIFIER_NONE,
0xc2,
295,
/* VCMPPDrmi_alt */
},
{ /* 2859 */
MODIFIER_NONE,
0xc2,
296,
/* VCMPPDrri */
},
{ /* 2860 */
MODIFIER_NONE,
0xc2,
297,
/* VCMPPDrri_alt */
},
{ /* 2861 */
MODIFIER_NONE,
0xc2,
290,
/* VCMPPSYrmi */
},
{ /* 2862 */
MODIFIER_NONE,
0xc2,
291,
/* VCMPPSYrmi_alt */
},
{ /* 2863 */
MODIFIER_NONE,
0xc2,
292,
/* VCMPPSYrri */
},
{ /* 2864 */
MODIFIER_NONE,
0xc2,
293,
/* VCMPPSYrri_alt */
},
{ /* 2865 */
MODIFIER_NONE,
0xc2,
294,
/* VCMPPSrmi */
},
{ /* 2866 */
MODIFIER_NONE,
0xc2,
295,
/* VCMPPSrmi_alt */
},
{ /* 2867 */
MODIFIER_NONE,
0xc2,
296,
/* VCMPPSrri */
},
{ /* 2868 */
MODIFIER_NONE,
0xc2,
297,
/* VCMPPSrri_alt */
},
{ /* 2869 */
MODIFIER_NONE,
0xc2,
298,
/* VCMPSDrm */
},
{ /* 2870 */
MODIFIER_NONE,
0xc2,
299,
/* VCMPSDrm_alt */
},
{ /* 2871 */
MODIFIER_NONE,
0xc2,
300,
/* VCMPSDrr */
},
{ /* 2872 */
MODIFIER_NONE,
0xc2,
301,
/* VCMPSDrr_alt */
},
{ /* 2873 */
MODIFIER_NONE,
0xc2,
302,
/* VCMPSSrm */
},
{ /* 2874 */
MODIFIER_NONE,
0xc2,
303,
/* VCMPSSrm_alt */
},
{ /* 2875 */
MODIFIER_NONE,
0xc2,
304,
/* VCMPSSrr */
},
{ /* 2876 */
MODIFIER_NONE,
0xc2,
305,
/* VCMPSSrr_alt */
},
{ /* 2877 */
MODIFIER_NONE,
0x2f,
44,
/* VCOMISDrm */
},
{ /* 2878 */
MODIFIER_NONE,
0x2f,
45,
/* VCOMISDrr */
},
{ /* 2879 */
MODIFIER_NONE,
0x2f,
44,
/* VCOMISSrm */
},
{ /* 2880 */
MODIFIER_NONE,
0x2f,
45,
/* VCOMISSrr */
},
{ /* 2881 */
MODIFIER_NONE,
0xe6,
285,
/* VCVTDQ2PDYrm */
},
{ /* 2882 */
MODIFIER_NONE,
0xe6,
287,
/* VCVTDQ2PDYrr */
},
{ /* 2883 */
MODIFIER_NONE,
0xe6,
102,
/* VCVTDQ2PDrm */
},
{ /* 2884 */
MODIFIER_NONE,
0xe6,
45,
/* VCVTDQ2PDrr */
},
{ /* 2885 */
MODIFIER_NONE,
0x5b,
306,
/* VCVTDQ2PSYrm */
},
{ /* 2886 */
MODIFIER_NONE,
0x5b,
307,
/* VCVTDQ2PSYrr */
},
{ /* 2887 */
MODIFIER_NONE,
0x5b,
44,
/* VCVTDQ2PSrm */
},
{ /* 2888 */
MODIFIER_NONE,
0x5b,
45,
/* VCVTDQ2PSrr */
},
{ /* 2889 */
MODIFIER_NONE,
0xe6,
44,
/* VCVTPD2DQXrm */
},
{ /* 2890 */
MODIFIER_NONE,
0xe6,
308,
/* VCVTPD2DQYrm */
},
{ /* 2891 */
MODIFIER_NONE,
0xe6,
309,
/* VCVTPD2DQYrr */
},
{ /* 2892 */
MODIFIER_NONE,
0xe6,
45,
/* VCVTPD2DQrr */
},
{ /* 2893 */
MODIFIER_NONE,
0x5a,
44,
/* VCVTPD2PSXrm */
},
{ /* 2894 */
MODIFIER_NONE,
0x5a,
308,
/* VCVTPD2PSYrm */
},
{ /* 2895 */
MODIFIER_NONE,
0x5a,
309,
/* VCVTPD2PSYrr */
},
{ /* 2896 */
MODIFIER_NONE,
0x5a,
45,
/* VCVTPD2PSrr */
},
{ /* 2897 */
MODIFIER_NONE,
0x13,
285,
/* VCVTPH2PSYrm */
},
{ /* 2898 */
MODIFIER_NONE,
0x13,
287,
/* VCVTPH2PSYrr */
},
{ /* 2899 */
MODIFIER_NONE,
0x13,
103,
/* VCVTPH2PSrm */
},
{ /* 2900 */
MODIFIER_NONE,
0x13,
45,
/* VCVTPH2PSrr */
},
{ /* 2901 */
MODIFIER_NONE,
0x5b,
306,
/* VCVTPS2DQYrm */
},
{ /* 2902 */
MODIFIER_NONE,
0x5b,
307,
/* VCVTPS2DQYrr */
},
{ /* 2903 */
MODIFIER_NONE,
0x5b,
44,
/* VCVTPS2DQrm */
},
{ /* 2904 */
MODIFIER_NONE,
0x5b,
45,
/* VCVTPS2DQrr */
},
{ /* 2905 */
MODIFIER_NONE,
0x5a,
285,
/* VCVTPS2PDYrm */
},
{ /* 2906 */
MODIFIER_NONE,
0x5a,
287,
/* VCVTPS2PDYrr */
},
{ /* 2907 */
MODIFIER_NONE,
0x5a,
103,
/* VCVTPS2PDrm */
},
{ /* 2908 */
MODIFIER_NONE,
0x5a,
45,
/* VCVTPS2PDrr */
},
{ /* 2909 */
MODIFIER_NONE,
0x1d,
310,
/* VCVTPS2PHYmr */
},
{ /* 2910 */
MODIFIER_NONE,
0x1d,
311,
/* VCVTPS2PHYrr */
},
{ /* 2911 */
MODIFIER_NONE,
0x1d,
312,
/* VCVTPS2PHmr */
},
{ /* 2912 */
MODIFIER_NONE,
0x1d,
313,
/* VCVTPS2PHrr */
},
{ /* 2913 */
MODIFIER_NONE,
0x2d,
104,
/* VCVTSD2SI64rm */
},
{ /* 2914 */
MODIFIER_NONE,
0x2d,
105,
/* VCVTSD2SI64rr */
},
{ /* 2915 */
MODIFIER_NONE,
0x2d,
106,
/* VCVTSD2SIrm */
},
{ /* 2916 */
MODIFIER_NONE,
0x2d,
107,
/* VCVTSD2SIrr */
},
{ /* 2917 */
MODIFIER_NONE,
0x5a,
314,
/* VCVTSD2SSrm */
},
{ /* 2918 */
MODIFIER_NONE,
0x5a,
315,
/* VCVTSD2SSrr */
},
{ /* 2919 */
MODIFIER_NONE,
0x2a,
316,
/* VCVTSI2SD64rm */
},
{ /* 2920 */
MODIFIER_NONE,
0x2a,
317,
/* VCVTSI2SD64rr */
},
{ /* 2921 */
MODIFIER_NONE,
0x2a,
316,
/* VCVTSI2SDrm */
},
{ /* 2922 */
MODIFIER_NONE,
0x2a,
318,
/* VCVTSI2SDrr */
},
{ /* 2923 */
MODIFIER_NONE,
0x2a,
319,
/* VCVTSI2SS64rm */
},
{ /* 2924 */
MODIFIER_NONE,
0x2a,
320,
/* VCVTSI2SS64rr */
},
{ /* 2925 */
MODIFIER_NONE,
0x2a,
319,
/* VCVTSI2SSrm */
},
{ /* 2926 */
MODIFIER_NONE,
0x2a,
321,
/* VCVTSI2SSrr */
},
{ /* 2927 */
MODIFIER_NONE,
0x5a,
322,
/* VCVTSS2SDrm */
},
{ /* 2928 */
MODIFIER_NONE,
0x5a,
323,
/* VCVTSS2SDrr */
},
{ /* 2929 */
MODIFIER_NONE,
0x2d,
118,
/* VCVTSS2SI64rm */
},
{ /* 2930 */
MODIFIER_NONE,
0x2d,
105,
/* VCVTSS2SI64rr */
},
{ /* 2931 */
MODIFIER_NONE,
0x2d,
119,
/* VCVTSS2SIrm */
},
{ /* 2932 */
MODIFIER_NONE,
0x2d,
107,
/* VCVTSS2SIrr */
},
{ /* 2933 */
MODIFIER_NONE,
0xe6,
44,
/* VCVTTPD2DQXrm */
},
{ /* 2934 */
MODIFIER_NONE,
0xe6,
308,
/* VCVTTPD2DQYrm */
},
{ /* 2935 */
MODIFIER_NONE,
0xe6,
309,
/* VCVTTPD2DQYrr */
},
{ /* 2936 */
MODIFIER_NONE,
0xe6,
45,
/* VCVTTPD2DQrr */
},
{ /* 2937 */
MODIFIER_NONE,
0x5b,
306,
/* VCVTTPS2DQYrm */
},
{ /* 2938 */
MODIFIER_NONE,
0x5b,
307,
/* VCVTTPS2DQYrr */
},
{ /* 2939 */
MODIFIER_NONE,
0x5b,
44,
/* VCVTTPS2DQrm */
},
{ /* 2940 */
MODIFIER_NONE,
0x5b,
45,
/* VCVTTPS2DQrr */
},
{ /* 2941 */
MODIFIER_NONE,
0x2c,
104,
/* VCVTTSD2SI64rm */
},
{ /* 2942 */
MODIFIER_NONE,
0x2c,
120,
/* VCVTTSD2SI64rr */
},
{ /* 2943 */
MODIFIER_NONE,
0x2c,
106,
/* VCVTTSD2SIrm */
},
{ /* 2944 */
MODIFIER_NONE,
0x2c,
121,
/* VCVTTSD2SIrr */
},
{ /* 2945 */
MODIFIER_NONE,
0x2c,
118,
/* VCVTTSS2SI64rm */
},
{ /* 2946 */
MODIFIER_NONE,
0x2c,
122,
/* VCVTTSS2SI64rr */
},
{ /* 2947 */
MODIFIER_NONE,
0x2c,
119,
/* VCVTTSS2SIrm */
},
{ /* 2948 */
MODIFIER_NONE,
0x2c,
123,
/* VCVTTSS2SIrr */
},
{ /* 2949 */
MODIFIER_NONE,
0x5e,
269,
/* VDIVPDYrm */
},
{ /* 2950 */
MODIFIER_NONE,
0x5e,
270,
/* VDIVPDYrr */
},
{ /* 2951 */
MODIFIER_NONE,
0x5e,
271,
/* VDIVPDrm */
},
{ /* 2952 */
MODIFIER_NONE,
0x5e,
272,
/* VDIVPDrr */
},
{ /* 2953 */
MODIFIER_NONE,
0x5e,
269,
/* VDIVPSYrm */
},
{ /* 2954 */
MODIFIER_NONE,
0x5e,
270,
/* VDIVPSYrr */
},
{ /* 2955 */
MODIFIER_NONE,
0x5e,
271,
/* VDIVPSrm */
},
{ /* 2956 */
MODIFIER_NONE,
0x5e,
272,
/* VDIVPSrr */
},
{ /* 2957 */
MODIFIER_NONE,
0x5e,
273,
/* VDIVSDrm */
},
{ /* 2958 */
MODIFIER_NONE,
0x00,
0,
/* VDIVSDrm_Int */
},
{ /* 2959 */
MODIFIER_NONE,
0x5e,
274,
/* VDIVSDrr */
},
{ /* 2960 */
MODIFIER_NONE,
0x00,
0,
/* VDIVSDrr_Int */
},
{ /* 2961 */
MODIFIER_NONE,
0x5e,
275,
/* VDIVSSrm */
},
{ /* 2962 */
MODIFIER_NONE,
0x00,
0,
/* VDIVSSrm_Int */
},
{ /* 2963 */
MODIFIER_NONE,
0x5e,
276,
/* VDIVSSrr */
},
{ /* 2964 */
MODIFIER_NONE,
0x00,
0,
/* VDIVSSrr_Int */
},
{ /* 2965 */
MODIFIER_NONE,
0x41,
279,
/* VDPPDrmi */
},
{ /* 2966 */
MODIFIER_NONE,
0x41,
280,
/* VDPPDrri */
},
{ /* 2967 */
MODIFIER_NONE,
0x40,
277,
/* VDPPSYrmi */
},
{ /* 2968 */
MODIFIER_NONE,
0x40,
278,
/* VDPPSYrri */
},
{ /* 2969 */
MODIFIER_NONE,
0x40,
279,
/* VDPPSrmi */
},
{ /* 2970 */
MODIFIER_NONE,
0x40,
280,
/* VDPPSrri */
},
{ /* 2971 */
MODIFIER_NONE,
0x00,
40,
/* VERRm */
},
{ /* 2972 */
MODIFIER_NONE,
0x00,
167,
/* VERRr */
},
{ /* 2973 */
MODIFIER_NONE,
0x00,
40,
/* VERWm */
},
{ /* 2974 */
MODIFIER_NONE,
0x00,
167,
/* VERWr */
},
{ /* 2975 */
MODIFIER_NONE,
0x19,
324,
/* VEXTRACTF128mr */
},
{ /* 2976 */
MODIFIER_NONE,
0x19,
325,
/* VEXTRACTF128rr */
},
{ /* 2977 */
MODIFIER_NONE,
0x39,
324,
/* VEXTRACTI128mr */
},
{ /* 2978 */
MODIFIER_NONE,
0x39,
325,
/* VEXTRACTI128rr */
},
{ /* 2979 */
MODIFIER_NONE,
0x17,
129,
/* VEXTRACTPSmr */
},
{ /* 2980 */
MODIFIER_NONE,
0x17,
130,
/* VEXTRACTPSrr */
},
{ /* 2981 */
MODIFIER_NONE,
0x17,
240,
/* VEXTRACTPSrr64 */
},
{ /* 2982 */
MODIFIER_NONE,
0x69,
283,
/* VFMADDPD4mr */
},
{ /* 2983 */
MODIFIER_NONE,
0x69,
281,
/* VFMADDPD4mrY */
},
{ /* 2984 */
MODIFIER_NONE,
0x69,
326,
/* VFMADDPD4rm */
},
{ /* 2985 */
MODIFIER_NONE,
0x69,
327,
/* VFMADDPD4rmY */
},
{ /* 2986 */
MODIFIER_NONE,
0x69,
328,
/* VFMADDPD4rr */
},
{ /* 2987 */
MODIFIER_NONE,
0x69,
329,
/* VFMADDPD4rrY */
},
{ /* 2988 */
MODIFIER_NONE,
0x69,
282,
/* VFMADDPD4rrY_REV */
},
{ /* 2989 */
MODIFIER_NONE,
0x69,
284,
/* VFMADDPD4rr_REV */
},
{ /* 2990 */
MODIFIER_NONE,
0x98,
330,
/* VFMADDPDr132m */
},
{ /* 2991 */
MODIFIER_NONE,
0x98,
331,
/* VFMADDPDr132mY */
},
{ /* 2992 */
MODIFIER_NONE,
0x98,
332,
/* VFMADDPDr132r */
},
{ /* 2993 */
MODIFIER_NONE,
0x98,
333,
/* VFMADDPDr132rY */
},
{ /* 2994 */
MODIFIER_NONE,
0xa8,
330,
/* VFMADDPDr213m */
},
{ /* 2995 */
MODIFIER_NONE,
0xa8,
331,
/* VFMADDPDr213mY */
},
{ /* 2996 */
MODIFIER_NONE,
0xa8,
332,
/* VFMADDPDr213r */
},
{ /* 2997 */
MODIFIER_NONE,
0xa8,
333,
/* VFMADDPDr213rY */
},
{ /* 2998 */
MODIFIER_NONE,
0xb8,
330,
/* VFMADDPDr231m */
},
{ /* 2999 */
MODIFIER_NONE,
0xb8,
331,
/* VFMADDPDr231mY */
},
{ /* 3000 */
MODIFIER_NONE,
0xb8,
332,
/* VFMADDPDr231r */
},
{ /* 3001 */
MODIFIER_NONE,
0xb8,
333,
/* VFMADDPDr231rY */
},
{ /* 3002 */
MODIFIER_NONE,
0x68,
283,
/* VFMADDPS4mr */
},
{ /* 3003 */
MODIFIER_NONE,
0x68,
281,
/* VFMADDPS4mrY */
},
{ /* 3004 */
MODIFIER_NONE,
0x68,
326,
/* VFMADDPS4rm */
},
{ /* 3005 */
MODIFIER_NONE,
0x68,
327,
/* VFMADDPS4rmY */
},
{ /* 3006 */
MODIFIER_NONE,
0x68,
328,
/* VFMADDPS4rr */
},
{ /* 3007 */
MODIFIER_NONE,
0x68,
329,
/* VFMADDPS4rrY */
},
{ /* 3008 */
MODIFIER_NONE,
0x68,
282,
/* VFMADDPS4rrY_REV */
},
{ /* 3009 */
MODIFIER_NONE,
0x68,
284,
/* VFMADDPS4rr_REV */
},
{ /* 3010 */
MODIFIER_NONE,
0x98,
330,
/* VFMADDPSr132m */
},
{ /* 3011 */
MODIFIER_NONE,
0x98,
331,
/* VFMADDPSr132mY */
},
{ /* 3012 */
MODIFIER_NONE,
0x98,
332,
/* VFMADDPSr132r */
},
{ /* 3013 */
MODIFIER_NONE,
0x98,
333,
/* VFMADDPSr132rY */
},
{ /* 3014 */
MODIFIER_NONE,
0xa8,
330,
/* VFMADDPSr213m */
},
{ /* 3015 */
MODIFIER_NONE,
0xa8,
331,
/* VFMADDPSr213mY */
},
{ /* 3016 */
MODIFIER_NONE,
0xa8,
332,
/* VFMADDPSr213r */
},
{ /* 3017 */
MODIFIER_NONE,
0xa8,
333,
/* VFMADDPSr213rY */
},
{ /* 3018 */
MODIFIER_NONE,
0xb8,
330,
/* VFMADDPSr231m */
},
{ /* 3019 */
MODIFIER_NONE,
0xb8,
331,
/* VFMADDPSr231mY */
},
{ /* 3020 */
MODIFIER_NONE,
0xb8,
332,
/* VFMADDPSr231r */
},
{ /* 3021 */
MODIFIER_NONE,
0xb8,
333,
/* VFMADDPSr231rY */
},
{ /* 3022 */
MODIFIER_NONE,
0x6b,
334,
/* VFMADDSD4mr */
},
{ /* 3023 */
MODIFIER_NONE,
0x00,
0,
/* VFMADDSD4mr_Int */
},
{ /* 3024 */
MODIFIER_NONE,
0x6b,
335,
/* VFMADDSD4rm */
},
{ /* 3025 */
MODIFIER_NONE,
0x00,
0,
/* VFMADDSD4rm_Int */
},
{ /* 3026 */
MODIFIER_NONE,
0x6b,
336,
/* VFMADDSD4rr */
},
{ /* 3027 */
MODIFIER_NONE,
0x00,
0,
/* VFMADDSD4rr_Int */
},
{ /* 3028 */
MODIFIER_NONE,
0x6b,
337,
/* VFMADDSD4rr_REV */
},
{ /* 3029 */
MODIFIER_NONE,
0x99,
338,
/* VFMADDSDr132m */
},
{ /* 3030 */
MODIFIER_NONE,
0x99,
339,
/* VFMADDSDr132r */
},
{ /* 3031 */
MODIFIER_NONE,
0xa9,
338,
/* VFMADDSDr213m */
},
{ /* 3032 */
MODIFIER_NONE,
0x00,
0,
/* VFMADDSDr213m_Int */
},
{ /* 3033 */
MODIFIER_NONE,
0xa9,
339,
/* VFMADDSDr213r */
},
{ /* 3034 */
MODIFIER_NONE,
0x00,
0,
/* VFMADDSDr213r_Int */
},
{ /* 3035 */
MODIFIER_NONE,
0xb9,
338,
/* VFMADDSDr231m */
},
{ /* 3036 */
MODIFIER_NONE,
0xb9,
339,
/* VFMADDSDr231r */
},
{ /* 3037 */
MODIFIER_NONE,
0x6a,
340,
/* VFMADDSS4mr */
},
{ /* 3038 */
MODIFIER_NONE,
0x00,
0,
/* VFMADDSS4mr_Int */
},
{ /* 3039 */
MODIFIER_NONE,
0x6a,
341,
/* VFMADDSS4rm */
},
{ /* 3040 */
MODIFIER_NONE,
0x00,
0,
/* VFMADDSS4rm_Int */
},
{ /* 3041 */
MODIFIER_NONE,
0x6a,
342,
/* VFMADDSS4rr */
},
{ /* 3042 */
MODIFIER_NONE,
0x00,
0,
/* VFMADDSS4rr_Int */
},
{ /* 3043 */
MODIFIER_NONE,
0x6a,
343,
/* VFMADDSS4rr_REV */
},
{ /* 3044 */
MODIFIER_NONE,
0x99,
344,
/* VFMADDSSr132m */
},
{ /* 3045 */
MODIFIER_NONE,
0x99,
345,
/* VFMADDSSr132r */
},
{ /* 3046 */
MODIFIER_NONE,
0xa9,
344,
/* VFMADDSSr213m */
},
{ /* 3047 */
MODIFIER_NONE,
0x00,
0,
/* VFMADDSSr213m_Int */
},
{ /* 3048 */
MODIFIER_NONE,
0xa9,
345,
/* VFMADDSSr213r */
},
{ /* 3049 */
MODIFIER_NONE,
0x00,
0,
/* VFMADDSSr213r_Int */
},
{ /* 3050 */
MODIFIER_NONE,
0xb9,
344,
/* VFMADDSSr231m */
},
{ /* 3051 */
MODIFIER_NONE,
0xb9,
345,
/* VFMADDSSr231r */
},
{ /* 3052 */
MODIFIER_NONE,
0x5d,
283,
/* VFMADDSUBPD4mr */
},
{ /* 3053 */
MODIFIER_NONE,
0x5d,
281,
/* VFMADDSUBPD4mrY */
},
{ /* 3054 */
MODIFIER_NONE,
0x5d,
326,
/* VFMADDSUBPD4rm */
},
{ /* 3055 */
MODIFIER_NONE,
0x5d,
327,
/* VFMADDSUBPD4rmY */
},
{ /* 3056 */
MODIFIER_NONE,
0x5d,
328,
/* VFMADDSUBPD4rr */
},
{ /* 3057 */
MODIFIER_NONE,
0x5d,
329,
/* VFMADDSUBPD4rrY */
},
{ /* 3058 */
MODIFIER_NONE,
0x5d,
282,
/* VFMADDSUBPD4rrY_REV */
},
{ /* 3059 */
MODIFIER_NONE,
0x5d,
284,
/* VFMADDSUBPD4rr_REV */
},
{ /* 3060 */
MODIFIER_NONE,
0x96,
330,
/* VFMADDSUBPDr132m */
},
{ /* 3061 */
MODIFIER_NONE,
0x96,
331,
/* VFMADDSUBPDr132mY */
},
{ /* 3062 */
MODIFIER_NONE,
0x96,
332,
/* VFMADDSUBPDr132r */
},
{ /* 3063 */
MODIFIER_NONE,
0x96,
333,
/* VFMADDSUBPDr132rY */
},
{ /* 3064 */
MODIFIER_NONE,
0xa6,
330,
/* VFMADDSUBPDr213m */
},
{ /* 3065 */
MODIFIER_NONE,
0xa6,
331,
/* VFMADDSUBPDr213mY */
},
{ /* 3066 */
MODIFIER_NONE,
0xa6,
332,
/* VFMADDSUBPDr213r */
},
{ /* 3067 */
MODIFIER_NONE,
0xa6,
333,
/* VFMADDSUBPDr213rY */
},
{ /* 3068 */
MODIFIER_NONE,
0xb6,
330,
/* VFMADDSUBPDr231m */
},
{ /* 3069 */
MODIFIER_NONE,
0xb6,
331,
/* VFMADDSUBPDr231mY */
},
{ /* 3070 */
MODIFIER_NONE,
0xb6,
332,
/* VFMADDSUBPDr231r */
},
{ /* 3071 */
MODIFIER_NONE,
0xb6,
333,
/* VFMADDSUBPDr231rY */
},
{ /* 3072 */
MODIFIER_NONE,
0x5c,
283,
/* VFMADDSUBPS4mr */
},
{ /* 3073 */
MODIFIER_NONE,
0x5c,
281,
/* VFMADDSUBPS4mrY */
},
{ /* 3074 */
MODIFIER_NONE,
0x5c,
326,
/* VFMADDSUBPS4rm */
},
{ /* 3075 */
MODIFIER_NONE,
0x5c,
327,
/* VFMADDSUBPS4rmY */
},
{ /* 3076 */
MODIFIER_NONE,
0x5c,
328,
/* VFMADDSUBPS4rr */
},
{ /* 3077 */
MODIFIER_NONE,
0x5c,
329,
/* VFMADDSUBPS4rrY */
},
{ /* 3078 */
MODIFIER_NONE,
0x5c,
282,
/* VFMADDSUBPS4rrY_REV */
},
{ /* 3079 */
MODIFIER_NONE,
0x5c,
284,
/* VFMADDSUBPS4rr_REV */
},
{ /* 3080 */
MODIFIER_NONE,
0x96,
330,
/* VFMADDSUBPSr132m */
},
{ /* 3081 */
MODIFIER_NONE,
0x96,
331,
/* VFMADDSUBPSr132mY */
},
{ /* 3082 */
MODIFIER_NONE,
0x96,
332,
/* VFMADDSUBPSr132r */
},
{ /* 3083 */
MODIFIER_NONE,
0x96,
333,
/* VFMADDSUBPSr132rY */
},
{ /* 3084 */
MODIFIER_NONE,
0xa6,
330,
/* VFMADDSUBPSr213m */
},
{ /* 3085 */
MODIFIER_NONE,
0xa6,
331,
/* VFMADDSUBPSr213mY */
},
{ /* 3086 */
MODIFIER_NONE,
0xa6,
332,
/* VFMADDSUBPSr213r */
},
{ /* 3087 */
MODIFIER_NONE,
0xa6,
333,
/* VFMADDSUBPSr213rY */
},
{ /* 3088 */
MODIFIER_NONE,
0xb6,
330,
/* VFMADDSUBPSr231m */
},
{ /* 3089 */
MODIFIER_NONE,
0xb6,
331,
/* VFMADDSUBPSr231mY */
},
{ /* 3090 */
MODIFIER_NONE,
0xb6,
332,
/* VFMADDSUBPSr231r */
},
{ /* 3091 */
MODIFIER_NONE,
0xb6,
333,
/* VFMADDSUBPSr231rY */
},
{ /* 3092 */
MODIFIER_NONE,
0x5f,
283,
/* VFMSUBADDPD4mr */
},
{ /* 3093 */
MODIFIER_NONE,
0x5f,
281,
/* VFMSUBADDPD4mrY */
},
{ /* 3094 */
MODIFIER_NONE,
0x5f,
326,
/* VFMSUBADDPD4rm */
},
{ /* 3095 */
MODIFIER_NONE,
0x5f,
327,
/* VFMSUBADDPD4rmY */
},
{ /* 3096 */
MODIFIER_NONE,
0x5f,
328,
/* VFMSUBADDPD4rr */
},
{ /* 3097 */
MODIFIER_NONE,
0x5f,
329,
/* VFMSUBADDPD4rrY */
},
{ /* 3098 */
MODIFIER_NONE,
0x5f,
282,
/* VFMSUBADDPD4rrY_REV */
},
{ /* 3099 */
MODIFIER_NONE,
0x5f,
284,
/* VFMSUBADDPD4rr_REV */
},
{ /* 3100 */
MODIFIER_NONE,
0x97,
330,
/* VFMSUBADDPDr132m */
},
{ /* 3101 */
MODIFIER_NONE,
0x97,
331,
/* VFMSUBADDPDr132mY */
},
{ /* 3102 */
MODIFIER_NONE,
0x97,
332,
/* VFMSUBADDPDr132r */
},
{ /* 3103 */
MODIFIER_NONE,
0x97,
333,
/* VFMSUBADDPDr132rY */
},
{ /* 3104 */
MODIFIER_NONE,
0xa7,
330,
/* VFMSUBADDPDr213m */
},
{ /* 3105 */
MODIFIER_NONE,
0xa7,
331,
/* VFMSUBADDPDr213mY */
},
{ /* 3106 */
MODIFIER_NONE,
0xa7,
332,
/* VFMSUBADDPDr213r */
},
{ /* 3107 */
MODIFIER_NONE,
0xa7,
333,
/* VFMSUBADDPDr213rY */
},
{ /* 3108 */
MODIFIER_NONE,
0xb7,
330,
/* VFMSUBADDPDr231m */
},
{ /* 3109 */
MODIFIER_NONE,
0xb7,
331,
/* VFMSUBADDPDr231mY */
},
{ /* 3110 */
MODIFIER_NONE,
0xb7,
332,
/* VFMSUBADDPDr231r */
},
{ /* 3111 */
MODIFIER_NONE,
0xb7,
333,
/* VFMSUBADDPDr231rY */
},
{ /* 3112 */
MODIFIER_NONE,
0x5e,
283,
/* VFMSUBADDPS4mr */
},
{ /* 3113 */
MODIFIER_NONE,
0x5e,
281,
/* VFMSUBADDPS4mrY */
},
{ /* 3114 */
MODIFIER_NONE,
0x5e,
326,
/* VFMSUBADDPS4rm */
},
{ /* 3115 */
MODIFIER_NONE,
0x5e,
327,
/* VFMSUBADDPS4rmY */
},
{ /* 3116 */
MODIFIER_NONE,
0x5e,
328,
/* VFMSUBADDPS4rr */
},
{ /* 3117 */
MODIFIER_NONE,
0x5e,
329,
/* VFMSUBADDPS4rrY */
},
{ /* 3118 */
MODIFIER_NONE,
0x5e,
282,
/* VFMSUBADDPS4rrY_REV */
},
{ /* 3119 */
MODIFIER_NONE,
0x5e,
284,
/* VFMSUBADDPS4rr_REV */
},
{ /* 3120 */
MODIFIER_NONE,
0x97,
330,
/* VFMSUBADDPSr132m */
},
{ /* 3121 */
MODIFIER_NONE,
0x97,
331,
/* VFMSUBADDPSr132mY */
},
{ /* 3122 */
MODIFIER_NONE,
0x97,
332,
/* VFMSUBADDPSr132r */
},
{ /* 3123 */
MODIFIER_NONE,
0x97,
333,
/* VFMSUBADDPSr132rY */
},
{ /* 3124 */
MODIFIER_NONE,
0xa7,
330,
/* VFMSUBADDPSr213m */
},
{ /* 3125 */
MODIFIER_NONE,
0xa7,
331,
/* VFMSUBADDPSr213mY */
},
{ /* 3126 */
MODIFIER_NONE,
0xa7,
332,
/* VFMSUBADDPSr213r */
},
{ /* 3127 */
MODIFIER_NONE,
0xa7,
333,
/* VFMSUBADDPSr213rY */
},
{ /* 3128 */
MODIFIER_NONE,
0xb7,
330,
/* VFMSUBADDPSr231m */
},
{ /* 3129 */
MODIFIER_NONE,
0xb7,
331,
/* VFMSUBADDPSr231mY */
},
{ /* 3130 */
MODIFIER_NONE,
0xb7,
332,
/* VFMSUBADDPSr231r */
},
{ /* 3131 */
MODIFIER_NONE,
0xb7,
333,
/* VFMSUBADDPSr231rY */
},
{ /* 3132 */
MODIFIER_NONE,
0x6d,
283,
/* VFMSUBPD4mr */
},
{ /* 3133 */
MODIFIER_NONE,
0x6d,
281,
/* VFMSUBPD4mrY */
},
{ /* 3134 */
MODIFIER_NONE,
0x6d,
326,
/* VFMSUBPD4rm */
},
{ /* 3135 */
MODIFIER_NONE,
0x6d,
327,
/* VFMSUBPD4rmY */
},
{ /* 3136 */
MODIFIER_NONE,
0x6d,
328,
/* VFMSUBPD4rr */
},
{ /* 3137 */
MODIFIER_NONE,
0x6d,
329,
/* VFMSUBPD4rrY */
},
{ /* 3138 */
MODIFIER_NONE,
0x6d,
282,
/* VFMSUBPD4rrY_REV */
},
{ /* 3139 */
MODIFIER_NONE,
0x6d,
284,
/* VFMSUBPD4rr_REV */
},
{ /* 3140 */
MODIFIER_NONE,
0x9a,
330,
/* VFMSUBPDr132m */
},
{ /* 3141 */
MODIFIER_NONE,
0x9a,
331,
/* VFMSUBPDr132mY */
},
{ /* 3142 */
MODIFIER_NONE,
0x9a,
332,
/* VFMSUBPDr132r */
},
{ /* 3143 */
MODIFIER_NONE,
0x9a,
333,
/* VFMSUBPDr132rY */
},
{ /* 3144 */
MODIFIER_NONE,
0xaa,
330,
/* VFMSUBPDr213m */
},
{ /* 3145 */
MODIFIER_NONE,
0xaa,
331,
/* VFMSUBPDr213mY */
},
{ /* 3146 */
MODIFIER_NONE,
0xaa,
332,
/* VFMSUBPDr213r */
},
{ /* 3147 */
MODIFIER_NONE,
0xaa,
333,
/* VFMSUBPDr213rY */
},
{ /* 3148 */
MODIFIER_NONE,
0xba,
330,
/* VFMSUBPDr231m */
},
{ /* 3149 */
MODIFIER_NONE,
0xba,
331,
/* VFMSUBPDr231mY */
},
{ /* 3150 */
MODIFIER_NONE,
0xba,
332,
/* VFMSUBPDr231r */
},
{ /* 3151 */
MODIFIER_NONE,
0xba,
333,
/* VFMSUBPDr231rY */
},
{ /* 3152 */
MODIFIER_NONE,
0x6c,
283,
/* VFMSUBPS4mr */
},
{ /* 3153 */
MODIFIER_NONE,
0x6c,
281,
/* VFMSUBPS4mrY */
},
{ /* 3154 */
MODIFIER_NONE,
0x6c,
326,
/* VFMSUBPS4rm */
},
{ /* 3155 */
MODIFIER_NONE,
0x6c,
327,
/* VFMSUBPS4rmY */
},
{ /* 3156 */
MODIFIER_NONE,
0x6c,
328,
/* VFMSUBPS4rr */
},
{ /* 3157 */
MODIFIER_NONE,
0x6c,
329,
/* VFMSUBPS4rrY */
},
{ /* 3158 */
MODIFIER_NONE,
0x6c,
282,
/* VFMSUBPS4rrY_REV */
},
{ /* 3159 */
MODIFIER_NONE,
0x6c,
284,
/* VFMSUBPS4rr_REV */
},
{ /* 3160 */
MODIFIER_NONE,
0x9a,
330,
/* VFMSUBPSr132m */
},
{ /* 3161 */
MODIFIER_NONE,
0x9a,
331,
/* VFMSUBPSr132mY */
},
{ /* 3162 */
MODIFIER_NONE,
0x9a,
332,
/* VFMSUBPSr132r */
},
{ /* 3163 */
MODIFIER_NONE,
0x9a,
333,
/* VFMSUBPSr132rY */
},
{ /* 3164 */
MODIFIER_NONE,
0xaa,
330,
/* VFMSUBPSr213m */
},
{ /* 3165 */
MODIFIER_NONE,
0xaa,
331,
/* VFMSUBPSr213mY */
},
{ /* 3166 */
MODIFIER_NONE,
0xaa,
332,
/* VFMSUBPSr213r */
},
{ /* 3167 */
MODIFIER_NONE,
0xaa,
333,
/* VFMSUBPSr213rY */
},
{ /* 3168 */
MODIFIER_NONE,
0xba,
330,
/* VFMSUBPSr231m */
},
{ /* 3169 */
MODIFIER_NONE,
0xba,
331,
/* VFMSUBPSr231mY */
},
{ /* 3170 */
MODIFIER_NONE,
0xba,
332,
/* VFMSUBPSr231r */
},
{ /* 3171 */
MODIFIER_NONE,
0xba,
333,
/* VFMSUBPSr231rY */
},
{ /* 3172 */
MODIFIER_NONE,
0x6f,
334,
/* VFMSUBSD4mr */
},
{ /* 3173 */
MODIFIER_NONE,
0x00,
0,
/* VFMSUBSD4mr_Int */
},
{ /* 3174 */
MODIFIER_NONE,
0x6f,
335,
/* VFMSUBSD4rm */
},
{ /* 3175 */
MODIFIER_NONE,
0x00,
0,
/* VFMSUBSD4rm_Int */
},
{ /* 3176 */
MODIFIER_NONE,
0x6f,
336,
/* VFMSUBSD4rr */
},
{ /* 3177 */
MODIFIER_NONE,
0x00,
0,
/* VFMSUBSD4rr_Int */
},
{ /* 3178 */
MODIFIER_NONE,
0x6f,
337,
/* VFMSUBSD4rr_REV */
},
{ /* 3179 */
MODIFIER_NONE,
0x9b,
338,
/* VFMSUBSDr132m */
},
{ /* 3180 */
MODIFIER_NONE,
0x9b,
339,
/* VFMSUBSDr132r */
},
{ /* 3181 */
MODIFIER_NONE,
0xab,
338,
/* VFMSUBSDr213m */
},
{ /* 3182 */
MODIFIER_NONE,
0x00,
0,
/* VFMSUBSDr213m_Int */
},
{ /* 3183 */
MODIFIER_NONE,
0xab,
339,
/* VFMSUBSDr213r */
},
{ /* 3184 */
MODIFIER_NONE,
0x00,
0,
/* VFMSUBSDr213r_Int */
},
{ /* 3185 */
MODIFIER_NONE,
0xbb,
338,
/* VFMSUBSDr231m */
},
{ /* 3186 */
MODIFIER_NONE,
0xbb,
339,
/* VFMSUBSDr231r */
},
{ /* 3187 */
MODIFIER_NONE,
0x6e,
340,
/* VFMSUBSS4mr */
},
{ /* 3188 */
MODIFIER_NONE,
0x00,
0,
/* VFMSUBSS4mr_Int */
},
{ /* 3189 */
MODIFIER_NONE,
0x6e,
341,
/* VFMSUBSS4rm */
},
{ /* 3190 */
MODIFIER_NONE,
0x00,
0,
/* VFMSUBSS4rm_Int */
},
{ /* 3191 */
MODIFIER_NONE,
0x6e,
342,
/* VFMSUBSS4rr */
},
{ /* 3192 */
MODIFIER_NONE,
0x00,
0,
/* VFMSUBSS4rr_Int */
},
{ /* 3193 */
MODIFIER_NONE,
0x6e,
343,
/* VFMSUBSS4rr_REV */
},
{ /* 3194 */
MODIFIER_NONE,
0x9b,
344,
/* VFMSUBSSr132m */
},
{ /* 3195 */
MODIFIER_NONE,
0x9b,
345,
/* VFMSUBSSr132r */
},
{ /* 3196 */
MODIFIER_NONE,
0xab,
344,
/* VFMSUBSSr213m */
},
{ /* 3197 */
MODIFIER_NONE,
0x00,
0,
/* VFMSUBSSr213m_Int */
},
{ /* 3198 */
MODIFIER_NONE,
0xab,
345,
/* VFMSUBSSr213r */
},
{ /* 3199 */
MODIFIER_NONE,
0x00,
0,
/* VFMSUBSSr213r_Int */
},
{ /* 3200 */
MODIFIER_NONE,
0xbb,
344,
/* VFMSUBSSr231m */
},
{ /* 3201 */
MODIFIER_NONE,
0xbb,
345,
/* VFMSUBSSr231r */
},
{ /* 3202 */
MODIFIER_NONE,
0x79,
283,
/* VFNMADDPD4mr */
},
{ /* 3203 */
MODIFIER_NONE,
0x79,
281,
/* VFNMADDPD4mrY */
},
{ /* 3204 */
MODIFIER_NONE,
0x79,
326,
/* VFNMADDPD4rm */
},
{ /* 3205 */
MODIFIER_NONE,
0x79,
327,
/* VFNMADDPD4rmY */
},
{ /* 3206 */
MODIFIER_NONE,
0x79,
328,
/* VFNMADDPD4rr */
},
{ /* 3207 */
MODIFIER_NONE,
0x79,
329,
/* VFNMADDPD4rrY */
},
{ /* 3208 */
MODIFIER_NONE,
0x79,
282,
/* VFNMADDPD4rrY_REV */
},
{ /* 3209 */
MODIFIER_NONE,
0x79,
284,
/* VFNMADDPD4rr_REV */
},
{ /* 3210 */
MODIFIER_NONE,
0x9c,
330,
/* VFNMADDPDr132m */
},
{ /* 3211 */
MODIFIER_NONE,
0x9c,
331,
/* VFNMADDPDr132mY */
},
{ /* 3212 */
MODIFIER_NONE,
0x9c,
332,
/* VFNMADDPDr132r */
},
{ /* 3213 */
MODIFIER_NONE,
0x9c,
333,
/* VFNMADDPDr132rY */
},
{ /* 3214 */
MODIFIER_NONE,
0xac,
330,
/* VFNMADDPDr213m */
},
{ /* 3215 */
MODIFIER_NONE,
0xac,
331,
/* VFNMADDPDr213mY */
},
{ /* 3216 */
MODIFIER_NONE,
0xac,
332,
/* VFNMADDPDr213r */
},
{ /* 3217 */
MODIFIER_NONE,
0xac,
333,
/* VFNMADDPDr213rY */
},
{ /* 3218 */
MODIFIER_NONE,
0xbc,
330,
/* VFNMADDPDr231m */
},
{ /* 3219 */
MODIFIER_NONE,
0xbc,
331,
/* VFNMADDPDr231mY */
},
{ /* 3220 */
MODIFIER_NONE,
0xbc,
332,
/* VFNMADDPDr231r */
},
{ /* 3221 */
MODIFIER_NONE,
0xbc,
333,
/* VFNMADDPDr231rY */
},
{ /* 3222 */
MODIFIER_NONE,
0x78,
283,
/* VFNMADDPS4mr */
},
{ /* 3223 */
MODIFIER_NONE,
0x78,
281,
/* VFNMADDPS4mrY */
},
{ /* 3224 */
MODIFIER_NONE,
0x78,
326,
/* VFNMADDPS4rm */
},
{ /* 3225 */
MODIFIER_NONE,
0x78,
327,
/* VFNMADDPS4rmY */
},
{ /* 3226 */
MODIFIER_NONE,
0x78,
328,
/* VFNMADDPS4rr */
},
{ /* 3227 */
MODIFIER_NONE,
0x78,
329,
/* VFNMADDPS4rrY */
},
{ /* 3228 */
MODIFIER_NONE,
0x78,
282,
/* VFNMADDPS4rrY_REV */
},
{ /* 3229 */
MODIFIER_NONE,
0x78,
284,
/* VFNMADDPS4rr_REV */
},
{ /* 3230 */
MODIFIER_NONE,
0x9c,
330,
/* VFNMADDPSr132m */
},
{ /* 3231 */
MODIFIER_NONE,
0x9c,
331,
/* VFNMADDPSr132mY */
},
{ /* 3232 */
MODIFIER_NONE,
0x9c,
332,
/* VFNMADDPSr132r */
},
{ /* 3233 */
MODIFIER_NONE,
0x9c,
333,
/* VFNMADDPSr132rY */
},
{ /* 3234 */
MODIFIER_NONE,
0xac,
330,
/* VFNMADDPSr213m */
},
{ /* 3235 */
MODIFIER_NONE,
0xac,
331,
/* VFNMADDPSr213mY */
},
{ /* 3236 */
MODIFIER_NONE,
0xac,
332,
/* VFNMADDPSr213r */
},
{ /* 3237 */
MODIFIER_NONE,
0xac,
333,
/* VFNMADDPSr213rY */
},
{ /* 3238 */
MODIFIER_NONE,
0xbc,
330,
/* VFNMADDPSr231m */
},
{ /* 3239 */
MODIFIER_NONE,
0xbc,
331,
/* VFNMADDPSr231mY */
},
{ /* 3240 */
MODIFIER_NONE,
0xbc,
332,
/* VFNMADDPSr231r */
},
{ /* 3241 */
MODIFIER_NONE,
0xbc,
333,
/* VFNMADDPSr231rY */
},
{ /* 3242 */
MODIFIER_NONE,
0x7b,
334,
/* VFNMADDSD4mr */
},
{ /* 3243 */
MODIFIER_NONE,
0x00,
0,
/* VFNMADDSD4mr_Int */
},
{ /* 3244 */
MODIFIER_NONE,
0x7b,
335,
/* VFNMADDSD4rm */
},
{ /* 3245 */
MODIFIER_NONE,
0x00,
0,
/* VFNMADDSD4rm_Int */
},
{ /* 3246 */
MODIFIER_NONE,
0x7b,
336,
/* VFNMADDSD4rr */
},
{ /* 3247 */
MODIFIER_NONE,
0x00,
0,
/* VFNMADDSD4rr_Int */
},
{ /* 3248 */
MODIFIER_NONE,
0x7b,
337,
/* VFNMADDSD4rr_REV */
},
{ /* 3249 */
MODIFIER_NONE,
0x9d,
338,
/* VFNMADDSDr132m */
},
{ /* 3250 */
MODIFIER_NONE,
0x9d,
339,
/* VFNMADDSDr132r */
},
{ /* 3251 */
MODIFIER_NONE,
0xad,
338,
/* VFNMADDSDr213m */
},
{ /* 3252 */
MODIFIER_NONE,
0x00,
0,
/* VFNMADDSDr213m_Int */
},
{ /* 3253 */
MODIFIER_NONE,
0xad,
339,
/* VFNMADDSDr213r */
},
{ /* 3254 */
MODIFIER_NONE,
0x00,
0,
/* VFNMADDSDr213r_Int */
},
{ /* 3255 */
MODIFIER_NONE,
0xbd,
338,
/* VFNMADDSDr231m */
},
{ /* 3256 */
MODIFIER_NONE,
0xbd,
339,
/* VFNMADDSDr231r */
},
{ /* 3257 */
MODIFIER_NONE,
0x7a,
340,
/* VFNMADDSS4mr */
},
{ /* 3258 */
MODIFIER_NONE,
0x00,
0,
/* VFNMADDSS4mr_Int */
},
{ /* 3259 */
MODIFIER_NONE,
0x7a,
341,
/* VFNMADDSS4rm */
},
{ /* 3260 */
MODIFIER_NONE,
0x00,
0,
/* VFNMADDSS4rm_Int */
},
{ /* 3261 */
MODIFIER_NONE,
0x7a,
342,
/* VFNMADDSS4rr */
},
{ /* 3262 */
MODIFIER_NONE,
0x00,
0,
/* VFNMADDSS4rr_Int */
},
{ /* 3263 */
MODIFIER_NONE,
0x7a,
343,
/* VFNMADDSS4rr_REV */
},
{ /* 3264 */
MODIFIER_NONE,
0x9d,
344,
/* VFNMADDSSr132m */
},
{ /* 3265 */
MODIFIER_NONE,
0x9d,
345,
/* VFNMADDSSr132r */
},
{ /* 3266 */
MODIFIER_NONE,
0xad,
344,
/* VFNMADDSSr213m */
},
{ /* 3267 */
MODIFIER_NONE,
0x00,
0,
/* VFNMADDSSr213m_Int */
},
{ /* 3268 */
MODIFIER_NONE,
0xad,
345,
/* VFNMADDSSr213r */
},
{ /* 3269 */
MODIFIER_NONE,
0x00,
0,
/* VFNMADDSSr213r_Int */
},
{ /* 3270 */
MODIFIER_NONE,
0xbd,
344,
/* VFNMADDSSr231m */
},
{ /* 3271 */
MODIFIER_NONE,
0xbd,
345,
/* VFNMADDSSr231r */
},
{ /* 3272 */
MODIFIER_NONE,
0x7d,
283,
/* VFNMSUBPD4mr */
},
{ /* 3273 */
MODIFIER_NONE,
0x7d,
281,
/* VFNMSUBPD4mrY */
},
{ /* 3274 */
MODIFIER_NONE,
0x7d,
326,
/* VFNMSUBPD4rm */
},
{ /* 3275 */
MODIFIER_NONE,
0x7d,
327,
/* VFNMSUBPD4rmY */
},
{ /* 3276 */
MODIFIER_NONE,
0x7d,
328,
/* VFNMSUBPD4rr */
},
{ /* 3277 */
MODIFIER_NONE,
0x7d,
329,
/* VFNMSUBPD4rrY */
},
{ /* 3278 */
MODIFIER_NONE,
0x7d,
282,
/* VFNMSUBPD4rrY_REV */
},
{ /* 3279 */
MODIFIER_NONE,
0x7d,
284,
/* VFNMSUBPD4rr_REV */
},
{ /* 3280 */
MODIFIER_NONE,
0x9e,
330,
/* VFNMSUBPDr132m */
},
{ /* 3281 */
MODIFIER_NONE,
0x9e,
331,
/* VFNMSUBPDr132mY */
},
{ /* 3282 */
MODIFIER_NONE,
0x9e,
332,
/* VFNMSUBPDr132r */
},
{ /* 3283 */
MODIFIER_NONE,
0x9e,
333,
/* VFNMSUBPDr132rY */
},
{ /* 3284 */
MODIFIER_NONE,
0xae,
330,
/* VFNMSUBPDr213m */
},
{ /* 3285 */
MODIFIER_NONE,
0xae,
331,
/* VFNMSUBPDr213mY */
},
{ /* 3286 */
MODIFIER_NONE,
0xae,
332,
/* VFNMSUBPDr213r */
},
{ /* 3287 */
MODIFIER_NONE,
0xae,
333,
/* VFNMSUBPDr213rY */
},
{ /* 3288 */
MODIFIER_NONE,
0xbe,
330,
/* VFNMSUBPDr231m */
},
{ /* 3289 */
MODIFIER_NONE,
0xbe,
331,
/* VFNMSUBPDr231mY */
},
{ /* 3290 */
MODIFIER_NONE,
0xbe,
332,
/* VFNMSUBPDr231r */
},
{ /* 3291 */
MODIFIER_NONE,
0xbe,
333,
/* VFNMSUBPDr231rY */
},
{ /* 3292 */
MODIFIER_NONE,
0x7c,
283,
/* VFNMSUBPS4mr */
},
{ /* 3293 */
MODIFIER_NONE,
0x7c,
281,
/* VFNMSUBPS4mrY */
},
{ /* 3294 */
MODIFIER_NONE,
0x7c,
326,
/* VFNMSUBPS4rm */
},
{ /* 3295 */
MODIFIER_NONE,
0x7c,
327,
/* VFNMSUBPS4rmY */
},
{ /* 3296 */
MODIFIER_NONE,
0x7c,
328,
/* VFNMSUBPS4rr */
},
{ /* 3297 */
MODIFIER_NONE,
0x7c,
329,
/* VFNMSUBPS4rrY */
},
{ /* 3298 */
MODIFIER_NONE,
0x7c,
282,
/* VFNMSUBPS4rrY_REV */
},
{ /* 3299 */
MODIFIER_NONE,
0x7c,
284,
/* VFNMSUBPS4rr_REV */
},
{ /* 3300 */
MODIFIER_NONE,
0x9e,
330,
/* VFNMSUBPSr132m */
},
{ /* 3301 */
MODIFIER_NONE,
0x9e,
331,
/* VFNMSUBPSr132mY */
},
{ /* 3302 */
MODIFIER_NONE,
0x9e,
332,
/* VFNMSUBPSr132r */
},
{ /* 3303 */
MODIFIER_NONE,
0x9e,
333,
/* VFNMSUBPSr132rY */
},
{ /* 3304 */
MODIFIER_NONE,
0xae,
330,
/* VFNMSUBPSr213m */
},
{ /* 3305 */
MODIFIER_NONE,
0xae,
331,
/* VFNMSUBPSr213mY */
},
{ /* 3306 */
MODIFIER_NONE,
0xae,
332,
/* VFNMSUBPSr213r */
},
{ /* 3307 */
MODIFIER_NONE,
0xae,
333,
/* VFNMSUBPSr213rY */
},
{ /* 3308 */
MODIFIER_NONE,
0xbe,
330,
/* VFNMSUBPSr231m */
},
{ /* 3309 */
MODIFIER_NONE,
0xbe,
331,
/* VFNMSUBPSr231mY */
},
{ /* 3310 */
MODIFIER_NONE,
0xbe,
332,
/* VFNMSUBPSr231r */
},
{ /* 3311 */
MODIFIER_NONE,
0xbe,
333,
/* VFNMSUBPSr231rY */
},
{ /* 3312 */
MODIFIER_NONE,
0x7f,
334,
/* VFNMSUBSD4mr */
},
{ /* 3313 */
MODIFIER_NONE,
0x00,
0,
/* VFNMSUBSD4mr_Int */
},
{ /* 3314 */
MODIFIER_NONE,
0x7f,
335,
/* VFNMSUBSD4rm */
},
{ /* 3315 */
MODIFIER_NONE,
0x00,
0,
/* VFNMSUBSD4rm_Int */
},
{ /* 3316 */
MODIFIER_NONE,
0x7f,
336,
/* VFNMSUBSD4rr */
},
{ /* 3317 */
MODIFIER_NONE,
0x00,
0,
/* VFNMSUBSD4rr_Int */
},
{ /* 3318 */
MODIFIER_NONE,
0x7f,
337,
/* VFNMSUBSD4rr_REV */
},
{ /* 3319 */
MODIFIER_NONE,
0x9f,
338,
/* VFNMSUBSDr132m */
},
{ /* 3320 */
MODIFIER_NONE,
0x9f,
339,
/* VFNMSUBSDr132r */
},
{ /* 3321 */
MODIFIER_NONE,
0xaf,
338,
/* VFNMSUBSDr213m */
},
{ /* 3322 */
MODIFIER_NONE,
0x00,
0,
/* VFNMSUBSDr213m_Int */
},
{ /* 3323 */
MODIFIER_NONE,
0xaf,
339,
/* VFNMSUBSDr213r */
},
{ /* 3324 */
MODIFIER_NONE,
0x00,
0,
/* VFNMSUBSDr213r_Int */
},
{ /* 3325 */
MODIFIER_NONE,
0xbf,
338,
/* VFNMSUBSDr231m */
},
{ /* 3326 */
MODIFIER_NONE,
0xbf,
339,
/* VFNMSUBSDr231r */
},
{ /* 3327 */
MODIFIER_NONE,
0x7e,
340,
/* VFNMSUBSS4mr */
},
{ /* 3328 */
MODIFIER_NONE,
0x00,
0,
/* VFNMSUBSS4mr_Int */
},
{ /* 3329 */
MODIFIER_NONE,
0x7e,
341,
/* VFNMSUBSS4rm */
},
{ /* 3330 */
MODIFIER_NONE,
0x00,
0,
/* VFNMSUBSS4rm_Int */
},
{ /* 3331 */
MODIFIER_NONE,
0x7e,
342,
/* VFNMSUBSS4rr */
},
{ /* 3332 */
MODIFIER_NONE,
0x00,
0,
/* VFNMSUBSS4rr_Int */
},
{ /* 3333 */
MODIFIER_NONE,
0x7e,
343,
/* VFNMSUBSS4rr_REV */
},
{ /* 3334 */
MODIFIER_NONE,
0x9f,
344,
/* VFNMSUBSSr132m */
},
{ /* 3335 */
MODIFIER_NONE,
0x9f,
345,
/* VFNMSUBSSr132r */
},
{ /* 3336 */
MODIFIER_NONE,
0xaf,
344,
/* VFNMSUBSSr213m */
},
{ /* 3337 */
MODIFIER_NONE,
0x00,
0,
/* VFNMSUBSSr213m_Int */
},
{ /* 3338 */
MODIFIER_NONE,
0xaf,
345,
/* VFNMSUBSSr213r */
},
{ /* 3339 */
MODIFIER_NONE,
0x00,
0,
/* VFNMSUBSSr213r_Int */
},
{ /* 3340 */
MODIFIER_NONE,
0xbf,
344,
/* VFNMSUBSSr231m */
},
{ /* 3341 */
MODIFIER_NONE,
0xbf,
345,
/* VFNMSUBSSr231r */
},
{ /* 3342 */
MODIFIER_NONE,
0x00,
0,
/* */
},
{ /* 3343 */
MODIFIER_NONE,
0x00,
0,
/* */
},
{ /* 3344 */
MODIFIER_NONE,
0x00,
0,
/* */
},
{ /* 3345 */
MODIFIER_NONE,
0x00,
0,
/* */
},
{ /* 3346 */
MODIFIER_NONE,
0x00,
0,
/* */
},
{ /* 3347 */
MODIFIER_NONE,
0x00,
0,
/* */
},
{ /* 3348 */
MODIFIER_NONE,
0x00,
0,
/* */
},
{ /* 3349 */
MODIFIER_NONE,
0x00,
0,
/* */
},
{ /* 3350 */
MODIFIER_NONE,
0x00,
0,
/* */
},
{ /* 3351 */
MODIFIER_NONE,
0x00,
0,
/* */
},
{ /* 3352 */
MODIFIER_NONE,
0x00,
0,
/* */
},
{ /* 3353 */
MODIFIER_NONE,
0x00,
0,
/* */
},
{ /* 3354 */
MODIFIER_NONE,
0x55,
346,
/* VFsANDNPDrm */
},
{ /* 3355 */
MODIFIER_NONE,
0x55,
274,
/* VFsANDNPDrr */
},
{ /* 3356 */
MODIFIER_NONE,
0x55,
347,
/* VFsANDNPSrm */
},
{ /* 3357 */
MODIFIER_NONE,
0x55,
276,
/* VFsANDNPSrr */
},
{ /* 3358 */
MODIFIER_NONE,
0x54,
346,
/* VFsANDPDrm */
},
{ /* 3359 */
MODIFIER_NONE,
0x54,
274,
/* VFsANDPDrr */
},
{ /* 3360 */
MODIFIER_NONE,
0x54,
347,
/* VFsANDPSrm */
},
{ /* 3361 */
MODIFIER_NONE,
0x54,
276,
/* VFsANDPSrr */
},
{ /* 3362 */
MODIFIER_NONE,
0x56,
346,
/* VFsORPDrm */
},
{ /* 3363 */
MODIFIER_NONE,
0x56,
274,
/* VFsORPDrr */
},
{ /* 3364 */
MODIFIER_NONE,
0x56,
347,
/* VFsORPSrm */
},
{ /* 3365 */
MODIFIER_NONE,
0x56,
276,
/* VFsORPSrr */
},
{ /* 3366 */
MODIFIER_NONE,
0x57,
346,
/* VFsXORPDrm */
},
{ /* 3367 */
MODIFIER_NONE,
0x57,
274,
/* VFsXORPDrr */
},
{ /* 3368 */
MODIFIER_NONE,
0x57,
347,
/* VFsXORPSrm */
},
{ /* 3369 */
MODIFIER_NONE,
0x57,
276,
/* VFsXORPSrr */
},
{ /* 3370 */
MODIFIER_NONE,
0x92,
348,
/* VGATHERDPDYrm */
},
{ /* 3371 */
MODIFIER_NONE,
0x92,
349,
/* VGATHERDPDrm */
},
{ /* 3372 */
MODIFIER_NONE,
0x92,
350,
/* VGATHERDPSYrm */
},
{ /* 3373 */
MODIFIER_NONE,
0x92,
351,
/* VGATHERDPSrm */
},
{ /* 3374 */
MODIFIER_NONE,
0x93,
348,
/* VGATHERQPDYrm */
},
{ /* 3375 */
MODIFIER_NONE,
0x93,
349,
/* VGATHERQPDrm */
},
{ /* 3376 */
MODIFIER_NONE,
0x93,
351,
/* VGATHERQPSYrm */
},
{ /* 3377 */
MODIFIER_NONE,
0x93,
351,
/* VGATHERQPSrm */
},
{ /* 3378 */
MODIFIER_NONE,
0x7c,
269,
/* VHADDPDYrm */
},
{ /* 3379 */
MODIFIER_NONE,
0x7c,
270,
/* VHADDPDYrr */
},
{ /* 3380 */
MODIFIER_NONE,
0x7c,
271,
/* VHADDPDrm */
},
{ /* 3381 */
MODIFIER_NONE,
0x7c,
272,
/* VHADDPDrr */
},
{ /* 3382 */
MODIFIER_NONE,
0x7c,
269,
/* VHADDPSYrm */
},
{ /* 3383 */
MODIFIER_NONE,
0x7c,
270,
/* VHADDPSYrr */
},
{ /* 3384 */
MODIFIER_NONE,
0x7c,
271,
/* VHADDPSrm */
},
{ /* 3385 */
MODIFIER_NONE,
0x7c,
272,
/* VHADDPSrr */
},
{ /* 3386 */
MODIFIER_NONE,
0x7d,
269,
/* VHSUBPDYrm */
},
{ /* 3387 */
MODIFIER_NONE,
0x7d,
270,
/* VHSUBPDYrr */
},
{ /* 3388 */
MODIFIER_NONE,
0x7d,
271,
/* VHSUBPDrm */
},
{ /* 3389 */
MODIFIER_NONE,
0x7d,
272,
/* VHSUBPDrr */
},
{ /* 3390 */
MODIFIER_NONE,
0x7d,
269,
/* VHSUBPSYrm */
},
{ /* 3391 */
MODIFIER_NONE,
0x7d,
270,
/* VHSUBPSYrr */
},
{ /* 3392 */
MODIFIER_NONE,
0x7d,
271,
/* VHSUBPSrm */
},
{ /* 3393 */
MODIFIER_NONE,
0x7d,
272,
/* VHSUBPSrr */
},
{ /* 3394 */
MODIFIER_NONE,
0x18,
352,
/* VINSERTF128rm */
},
{ /* 3395 */
MODIFIER_NONE,
0x18,
353,
/* VINSERTF128rr */
},
{ /* 3396 */
MODIFIER_NONE,
0x38,
352,
/* VINSERTI128rm */
},
{ /* 3397 */
MODIFIER_NONE,
0x38,
353,
/* VINSERTI128rr */
},
{ /* 3398 */
MODIFIER_NONE,
0x21,
354,
/* VINSERTPSrm */
},
{ /* 3399 */
MODIFIER_NONE,
0x21,
280,
/* VINSERTPSrr */
},
{ /* 3400 */
MODIFIER_NONE,
0xf0,
306,
/* VLDDQUYrm */
},
{ /* 3401 */
MODIFIER_NONE,
0xf0,
44,
/* VLDDQUrm */
},
{ /* 3402 */
MODIFIER_NONE,
0xae,
40,
/* VLDMXCSR */
},
{ /* 3403 */
MODIFIER_NONE,
0xf7,
45,
/* VMASKMOVDQU */
},
{ /* 3404 */
MODIFIER_NONE,
0xf7,
45,
/* VMASKMOVDQU64 */
},
{ /* 3405 */
MODIFIER_NONE,
0x2f,
355,
/* VMASKMOVPDYmr */
},
{ /* 3406 */
MODIFIER_NONE,
0x2d,
269,
/* VMASKMOVPDYrm */
},
{ /* 3407 */
MODIFIER_NONE,
0x2f,
356,
/* VMASKMOVPDmr */
},
{ /* 3408 */
MODIFIER_NONE,
0x2d,
271,
/* VMASKMOVPDrm */
},
{ /* 3409 */
MODIFIER_NONE,
0x2e,
355,
/* VMASKMOVPSYmr */
},
{ /* 3410 */
MODIFIER_NONE,
0x2c,
269,
/* VMASKMOVPSYrm */
},
{ /* 3411 */
MODIFIER_NONE,
0x2e,
356,
/* VMASKMOVPSmr */
},
{ /* 3412 */
MODIFIER_NONE,
0x2c,
271,
/* VMASKMOVPSrm */
},
{ /* 3413 */
MODIFIER_NONE,
0x00,
0,
/* VMAXCPDYrm */
},
{ /* 3414 */
MODIFIER_NONE,
0x00,
0,
/* VMAXCPDYrr */
},
{ /* 3415 */
MODIFIER_NONE,
0x00,
0,
/* VMAXCPDrm */
},
{ /* 3416 */
MODIFIER_NONE,
0x00,
0,
/* VMAXCPDrr */
},
{ /* 3417 */
MODIFIER_NONE,
0x00,
0,
/* VMAXCPSYrm */
},
{ /* 3418 */
MODIFIER_NONE,
0x00,
0,
/* VMAXCPSYrr */
},
{ /* 3419 */
MODIFIER_NONE,
0x00,
0,
/* VMAXCPSrm */
},
{ /* 3420 */
MODIFIER_NONE,
0x00,
0,
/* VMAXCPSrr */
},
{ /* 3421 */
MODIFIER_NONE,
0x00,
0,
/* VMAXCSDrm */
},
{ /* 3422 */
MODIFIER_NONE,
0x00,
0,
/* VMAXCSDrr */
},
{ /* 3423 */
MODIFIER_NONE,
0x00,
0,
/* VMAXCSSrm */
},
{ /* 3424 */
MODIFIER_NONE,
0x00,
0,
/* VMAXCSSrr */
},
{ /* 3425 */
MODIFIER_NONE,
0x5f,
269,
/* VMAXPDYrm */
},
{ /* 3426 */
MODIFIER_NONE,
0x5f,
270,
/* VMAXPDYrr */
},
{ /* 3427 */
MODIFIER_NONE,
0x5f,
271,
/* VMAXPDrm */
},
{ /* 3428 */
MODIFIER_NONE,
0x5f,
272,
/* VMAXPDrr */
},
{ /* 3429 */
MODIFIER_NONE,
0x5f,
269,
/* VMAXPSYrm */
},
{ /* 3430 */
MODIFIER_NONE,
0x5f,
270,
/* VMAXPSYrr */
},
{ /* 3431 */
MODIFIER_NONE,
0x5f,
271,
/* VMAXPSrm */
},
{ /* 3432 */
MODIFIER_NONE,
0x5f,
272,
/* VMAXPSrr */
},
{ /* 3433 */
MODIFIER_NONE,
0x5f,
273,
/* VMAXSDrm */
},
{ /* 3434 */
MODIFIER_NONE,
0x00,
0,
/* VMAXSDrm_Int */
},
{ /* 3435 */
MODIFIER_NONE,
0x5f,
274,
/* VMAXSDrr */
},
{ /* 3436 */
MODIFIER_NONE,
0x00,
0,
/* VMAXSDrr_Int */
},
{ /* 3437 */
MODIFIER_NONE,
0x5f,
275,
/* VMAXSSrm */
},
{ /* 3438 */
MODIFIER_NONE,
0x00,
0,
/* VMAXSSrm_Int */
},
{ /* 3439 */
MODIFIER_NONE,
0x5f,
276,
/* VMAXSSrr */
},
{ /* 3440 */
MODIFIER_NONE,
0x00,
0,
/* VMAXSSrr_Int */
},
{ /* 3441 */
MODIFIER_NONE,
0x01,
0,
/* VMCALL */
},
{ /* 3442 */
MODIFIER_NONE,
0xc7,
40,
/* VMCLEARm */
},
{ /* 3443 */
MODIFIER_NONE,
0x01,
0,
/* VMFUNC */
},
{ /* 3444 */
MODIFIER_NONE,
0x00,
0,
/* VMINCPDYrm */
},
{ /* 3445 */
MODIFIER_NONE,
0x00,
0,
/* VMINCPDYrr */
},
{ /* 3446 */
MODIFIER_NONE,
0x00,
0,
/* VMINCPDrm */
},
{ /* 3447 */
MODIFIER_NONE,
0x00,
0,
/* VMINCPDrr */
},
{ /* 3448 */
MODIFIER_NONE,
0x00,
0,
/* VMINCPSYrm */
},
{ /* 3449 */
MODIFIER_NONE,
0x00,
0,
/* VMINCPSYrr */
},
{ /* 3450 */
MODIFIER_NONE,
0x00,
0,
/* VMINCPSrm */
},
{ /* 3451 */
MODIFIER_NONE,
0x00,
0,
/* VMINCPSrr */
},
{ /* 3452 */
MODIFIER_NONE,
0x00,
0,
/* VMINCSDrm */
},
{ /* 3453 */
MODIFIER_NONE,
0x00,
0,
/* VMINCSDrr */
},
{ /* 3454 */
MODIFIER_NONE,
0x00,
0,
/* VMINCSSrm */
},
{ /* 3455 */
MODIFIER_NONE,
0x00,
0,
/* VMINCSSrr */
},
{ /* 3456 */
MODIFIER_NONE,
0x5d,
269,
/* VMINPDYrm */
},
{ /* 3457 */
MODIFIER_NONE,
0x5d,
270,
/* VMINPDYrr */
},
{ /* 3458 */
MODIFIER_NONE,
0x5d,
271,
/* VMINPDrm */
},
{ /* 3459 */
MODIFIER_NONE,
0x5d,
272,
/* VMINPDrr */
},
{ /* 3460 */
MODIFIER_NONE,
0x5d,
269,
/* VMINPSYrm */
},
{ /* 3461 */
MODIFIER_NONE,
0x5d,
270,
/* VMINPSYrr */
},
{ /* 3462 */
MODIFIER_NONE,
0x5d,
271,
/* VMINPSrm */
},
{ /* 3463 */
MODIFIER_NONE,
0x5d,
272,
/* VMINPSrr */
},
{ /* 3464 */
MODIFIER_NONE,
0x5d,
273,
/* VMINSDrm */
},
{ /* 3465 */
MODIFIER_NONE,
0x00,
0,
/* VMINSDrm_Int */
},
{ /* 3466 */
MODIFIER_NONE,
0x5d,
274,
/* VMINSDrr */
},
{ /* 3467 */
MODIFIER_NONE,
0x00,
0,
/* VMINSDrr_Int */
},
{ /* 3468 */
MODIFIER_NONE,
0x5d,
275,
/* VMINSSrm */
},
{ /* 3469 */
MODIFIER_NONE,
0x00,
0,
/* VMINSSrm_Int */
},
{ /* 3470 */
MODIFIER_NONE,
0x5d,
276,
/* VMINSSrr */
},
{ /* 3471 */
MODIFIER_NONE,
0x00,
0,
/* VMINSSrr_Int */
},
{ /* 3472 */
MODIFIER_NONE,
0x01,
0,
/* VMLAUNCH */
},
{ /* 3473 */
MODIFIER_NONE,
0x01,
0,
/* VMLOAD32 */
},
{ /* 3474 */
MODIFIER_NONE,
0x01,
0,
/* VMLOAD64 */
},
{ /* 3475 */
MODIFIER_NONE,
0x01,
0,
/* VMMCALL */
},
{ /* 3476 */
MODIFIER_NONE,
0x6e,
211,
/* VMOV64toPQIrr */
},
{ /* 3477 */
MODIFIER_NONE,
0x00,
0,
/* VMOV64toSDrm */
},
{ /* 3478 */
MODIFIER_NONE,
0x00,
0,
/* VMOV64toSDrr */
},
{ /* 3479 */
MODIFIER_NONE,
0x29,
357,
/* VMOVAPDYmr */
},
{ /* 3480 */
MODIFIER_NONE,
0x28,
306,
/* VMOVAPDYrm */
},
{ /* 3481 */
MODIFIER_NONE,
0x28,
307,
/* VMOVAPDYrr */
},
{ /* 3482 */
MODIFIER_NONE,
0x29,
358,
/* VMOVAPDYrr_REV */
},
{ /* 3483 */
MODIFIER_NONE,
0x29,
214,
/* VMOVAPDmr */
},
{ /* 3484 */
MODIFIER_NONE,
0x28,
44,
/* VMOVAPDrm */
},
{ /* 3485 */
MODIFIER_NONE,
0x28,
45,
/* VMOVAPDrr */
},
{ /* 3486 */
MODIFIER_NONE,
0x29,
215,
/* VMOVAPDrr_REV */
},
{ /* 3487 */
MODIFIER_NONE,
0x29,
357,
/* VMOVAPSYmr */
},
{ /* 3488 */
MODIFIER_NONE,
0x28,
306,
/* VMOVAPSYrm */
},
{ /* 3489 */
MODIFIER_NONE,
0x28,
307,
/* VMOVAPSYrr */
},
{ /* 3490 */
MODIFIER_NONE,
0x29,
358,
/* VMOVAPSYrr_REV */
},
{ /* 3491 */
MODIFIER_NONE,
0x29,
214,
/* VMOVAPSmr */
},
{ /* 3492 */
MODIFIER_NONE,
0x28,
44,
/* VMOVAPSrm */
},
{ /* 3493 */
MODIFIER_NONE,
0x28,
45,
/* VMOVAPSrr */
},
{ /* 3494 */
MODIFIER_NONE,
0x29,
215,
/* VMOVAPSrr_REV */
},
{ /* 3495 */
MODIFIER_NONE,
0x12,
306,
/* VMOVDDUPYrm */
},
{ /* 3496 */
MODIFIER_NONE,
0x12,
307,
/* VMOVDDUPYrr */
},
{ /* 3497 */
MODIFIER_NONE,
0x12,
103,
/* VMOVDDUPrm */
},
{ /* 3498 */
MODIFIER_NONE,
0x12,
45,
/* VMOVDDUPrr */
},
{ /* 3499 */
MODIFIER_NONE,
0x6e,
102,
/* VMOVDI2PDIrm */
},
{ /* 3500 */
MODIFIER_NONE,
0x6e,
216,
/* VMOVDI2PDIrr */
},
{ /* 3501 */
MODIFIER_NONE,
0x00,
0,
/* VMOVDI2SSrm */
},
{ /* 3502 */
MODIFIER_NONE,
0x00,
0,
/* VMOVDI2SSrr */
},
{ /* 3503 */
MODIFIER_NONE,
0x7f,
357,
/* VMOVDQAYmr */
},
{ /* 3504 */
MODIFIER_NONE,
0x6f,
306,
/* VMOVDQAYrm */
},
{ /* 3505 */
MODIFIER_NONE,
0x6f,
307,
/* VMOVDQAYrr */
},
{ /* 3506 */
MODIFIER_NONE,
0x7f,
358,
/* VMOVDQAYrr_REV */
},
{ /* 3507 */
MODIFIER_NONE,
0x7f,
214,
/* VMOVDQAmr */
},
{ /* 3508 */
MODIFIER_NONE,
0x6f,
44,
/* VMOVDQArm */
},
{ /* 3509 */
MODIFIER_NONE,
0x6f,
45,
/* VMOVDQArr */
},
{ /* 3510 */
MODIFIER_NONE,
0x7f,
215,
/* VMOVDQArr_REV */
},
{ /* 3511 */
MODIFIER_NONE,
0x7f,
357,
/* VMOVDQUYmr */
},
{ /* 3512 */
MODIFIER_NONE,
0x6f,
306,
/* VMOVDQUYrm */
},
{ /* 3513 */
MODIFIER_NONE,
0x6f,
307,
/* VMOVDQUYrr */
},
{ /* 3514 */
MODIFIER_NONE,
0x7f,
358,
/* VMOVDQUYrr_REV */
},
{ /* 3515 */
MODIFIER_NONE,
0x7f,
214,
/* VMOVDQUmr */
},
{ /* 3516 */
MODIFIER_NONE,
0x6f,
44,
/* VMOVDQUrm */
},
{ /* 3517 */
MODIFIER_NONE,
0x6f,
45,
/* VMOVDQUrr */
},
{ /* 3518 */
MODIFIER_NONE,
0x7f,
215,
/* VMOVDQUrr_REV */
},
{ /* 3519 */
MODIFIER_NONE,
0x12,
272,
/* VMOVHLPSrr */
},
{ /* 3520 */
MODIFIER_NONE,
0x17,
217,
/* VMOVHPDmr */
},
{ /* 3521 */
MODIFIER_NONE,
0x16,
359,
/* VMOVHPDrm */
},
{ /* 3522 */
MODIFIER_NONE,
0x17,
217,
/* VMOVHPSmr */
},
{ /* 3523 */
MODIFIER_NONE,
0x16,
359,
/* VMOVHPSrm */
},
{ /* 3524 */
MODIFIER_NONE,
0x16,
272,
/* VMOVLHPSrr */
},
{ /* 3525 */
MODIFIER_NONE,
0x13,
217,
/* VMOVLPDmr */
},
{ /* 3526 */
MODIFIER_NONE,
0x12,
359,
/* VMOVLPDrm */
},
{ /* 3527 */
MODIFIER_NONE,
0x13,
217,
/* VMOVLPSmr */
},
{ /* 3528 */
MODIFIER_NONE,
0x12,
359,
/* VMOVLPSrm */
},
{ /* 3529 */
MODIFIER_NONE,
0xd6,
219,
/* VMOVLQ128mr */
},
{ /* 3530 */
MODIFIER_NONE,
0x50,
360,
/* VMOVMSKPDYr64r */
},
{ /* 3531 */
MODIFIER_NONE,
0x50,
361,
/* VMOVMSKPDYrr32 */
},
{ /* 3532 */
MODIFIER_NONE,
0x50,
360,
/* VMOVMSKPDYrr64 */
},
{ /* 3533 */
MODIFIER_NONE,
0x50,
105,
/* VMOVMSKPDr64r */
},
{ /* 3534 */
MODIFIER_NONE,
0x50,
220,
/* VMOVMSKPDrr32 */
},
{ /* 3535 */
MODIFIER_NONE,
0x50,
105,
/* VMOVMSKPDrr64 */
},
{ /* 3536 */
MODIFIER_NONE,
0x50,
360,
/* VMOVMSKPSYr64r */
},
{ /* 3537 */
MODIFIER_NONE,
0x50,
362,
/* VMOVMSKPSYrr32 */
},
{ /* 3538 */
MODIFIER_NONE,
0x50,
360,
/* VMOVMSKPSYrr64 */
},
{ /* 3539 */
MODIFIER_NONE,
0x50,
105,
/* VMOVMSKPSr64r */
},
{ /* 3540 */
MODIFIER_NONE,
0x50,
107,
/* VMOVMSKPSrr32 */
},
{ /* 3541 */
MODIFIER_NONE,
0x50,
105,
/* VMOVMSKPSrr64 */
},
{ /* 3542 */
MODIFIER_NONE,
0x2a,
306,
/* VMOVNTDQAYrm */
},
{ /* 3543 */
MODIFIER_NONE,
0x2a,
44,
/* VMOVNTDQArm */
},
{ /* 3544 */
MODIFIER_NONE,
0xe7,
357,
/* VMOVNTDQYmr */
},
{ /* 3545 */
MODIFIER_NONE,
0xe7,
214,
/* VMOVNTDQmr */
},
{ /* 3546 */
MODIFIER_NONE,
0x2b,
357,
/* VMOVNTPDYmr */
},
{ /* 3547 */
MODIFIER_NONE,
0x2b,
214,
/* VMOVNTPDmr */
},
{ /* 3548 */
MODIFIER_NONE,
0x2b,
357,
/* VMOVNTPSYmr */
},
{ /* 3549 */
MODIFIER_NONE,
0x2b,
214,
/* VMOVNTPSmr */
},
{ /* 3550 */
MODIFIER_NONE,
0x7e,
219,
/* VMOVPDI2DImr */
},
{ /* 3551 */
MODIFIER_NONE,
0x7e,
222,
/* VMOVPDI2DIrr */
},
{ /* 3552 */
MODIFIER_NONE,
0xd6,
219,
/* VMOVPQI2QImr */
},
{ /* 3553 */
MODIFIER_NONE,
0x7e,
223,
/* VMOVPQIto64rr */
},
{ /* 3554 */
MODIFIER_NONE,
0x7e,
102,
/* VMOVQI2PQIrm */
},
{ /* 3555 */
MODIFIER_NONE,
0x7e,
223,
/* VMOVQd64rr */
},
{ /* 3556 */
MODIFIER_NONE,
0x7e,
223,
/* VMOVQd64rr_alt */
},
{ /* 3557 */
MODIFIER_NONE,
0x6e,
211,
/* VMOVQs64rr */
},
{ /* 3558 */
MODIFIER_NONE,
0x7e,
45,
/* VMOVQxrxr */
},
{ /* 3559 */
MODIFIER_NONE,
0x11,
224,
/* VMOVSDmr */
},
{ /* 3560 */
MODIFIER_NONE,
0x10,
225,
/* VMOVSDrm */
},
{ /* 3561 */
MODIFIER_NONE,
0x10,
363,
/* VMOVSDrr */
},
{ /* 3562 */
MODIFIER_NONE,
0x11,
364,
/* VMOVSDrr_REV */
},
{ /* 3563 */
MODIFIER_NONE,
0x00,
0,
/* VMOVSDto64mr */
},
{ /* 3564 */
MODIFIER_NONE,
0x00,
0,
/* VMOVSDto64rr */
},
{ /* 3565 */
MODIFIER_NONE,
0x16,
306,
/* VMOVSHDUPYrm */
},
{ /* 3566 */
MODIFIER_NONE,
0x16,
307,
/* VMOVSHDUPYrr */
},
{ /* 3567 */
MODIFIER_NONE,
0x16,
44,
/* VMOVSHDUPrm */
},
{ /* 3568 */
MODIFIER_NONE,
0x16,
45,
/* VMOVSHDUPrr */
},
{ /* 3569 */
MODIFIER_NONE,
0x12,
306,
/* VMOVSLDUPYrm */
},
{ /* 3570 */
MODIFIER_NONE,
0x12,
307,
/* VMOVSLDUPYrr */
},
{ /* 3571 */
MODIFIER_NONE,
0x12,
44,
/* VMOVSLDUPrm */
},
{ /* 3572 */
MODIFIER_NONE,
0x12,
45,
/* VMOVSLDUPrr */
},
{ /* 3573 */
MODIFIER_NONE,
0x00,
0,
/* VMOVSS2DImr */
},
{ /* 3574 */
MODIFIER_NONE,
0x00,
0,
/* VMOVSS2DIrr */
},
{ /* 3575 */
MODIFIER_NONE,
0x11,
228,
/* VMOVSSmr */
},
{ /* 3576 */
MODIFIER_NONE,
0x10,
229,
/* VMOVSSrm */
},
{ /* 3577 */
MODIFIER_NONE,
0x10,
365,
/* VMOVSSrr */
},
{ /* 3578 */
MODIFIER_NONE,
0x11,
366,
/* VMOVSSrr_REV */
},
{ /* 3579 */
MODIFIER_NONE,
0x11,
357,
/* VMOVUPDYmr */
},
{ /* 3580 */
MODIFIER_NONE,
0x10,
306,
/* VMOVUPDYrm */
},
{ /* 3581 */
MODIFIER_NONE,
0x10,
307,
/* VMOVUPDYrr */
},
{ /* 3582 */
MODIFIER_NONE,
0x11,
358,
/* VMOVUPDYrr_REV */
},
{ /* 3583 */
MODIFIER_NONE,
0x11,
214,
/* VMOVUPDmr */
},
{ /* 3584 */
MODIFIER_NONE,
0x10,
44,
/* VMOVUPDrm */
},
{ /* 3585 */
MODIFIER_NONE,
0x10,
45,
/* VMOVUPDrr */
},
{ /* 3586 */
MODIFIER_NONE,
0x11,
215,
/* VMOVUPDrr_REV */
},
{ /* 3587 */
MODIFIER_NONE,
0x11,
357,
/* VMOVUPSYmr */
},
{ /* 3588 */
MODIFIER_NONE,
0x10,
306,
/* VMOVUPSYrm */
},
{ /* 3589 */
MODIFIER_NONE,
0x10,
307,
/* VMOVUPSYrr */
},
{ /* 3590 */
MODIFIER_NONE,
0x11,
358,
/* VMOVUPSYrr_REV */
},
{ /* 3591 */
MODIFIER_NONE,
0x11,
214,
/* VMOVUPSmr */
},
{ /* 3592 */
MODIFIER_NONE,
0x10,
44,
/* VMOVUPSrm */
},
{ /* 3593 */
MODIFIER_NONE,
0x10,
45,
/* VMOVUPSrr */
},
{ /* 3594 */
MODIFIER_NONE,
0x11,
215,
/* VMOVUPSrr_REV */
},
{ /* 3595 */
MODIFIER_NONE,
0x6e,
102,
/* VMOVZDI2PDIrm */
},
{ /* 3596 */
MODIFIER_NONE,
0x6e,
216,
/* VMOVZDI2PDIrr */
},
{ /* 3597 */
MODIFIER_NONE,
0x7e,
44,
/* VMOVZPQILo2PQIrm */
},
{ /* 3598 */
MODIFIER_NONE,
0x7e,
45,
/* VMOVZPQILo2PQIrr */
},
{ /* 3599 */
MODIFIER_NONE,
0x7e,
102,
/* VMOVZQI2PQIrm */
},
{ /* 3600 */
MODIFIER_NONE,
0x6e,
211,
/* VMOVZQI2PQIrr */
},
{ /* 3601 */
MODIFIER_NONE,
0x42,
277,
/* VMPSADBWYrmi */
},
{ /* 3602 */
MODIFIER_NONE,
0x42,
278,
/* VMPSADBWYrri */
},
{ /* 3603 */
MODIFIER_NONE,
0x42,
279,
/* VMPSADBWrmi */
},
{ /* 3604 */
MODIFIER_NONE,
0x42,
280,
/* VMPSADBWrri */
},
{ /* 3605 */
MODIFIER_NONE,
0xc7,
40,
/* VMPTRLDm */
},
{ /* 3606 */
MODIFIER_NONE,
0xc7,
40,
/* VMPTRSTm */
},
{ /* 3607 */
MODIFIER_NONE,
0x78,
5,
/* VMREAD32rm */
},
{ /* 3608 */
MODIFIER_NONE,
0x78,
67,
/* VMREAD32rr */
},
{ /* 3609 */
MODIFIER_NONE,
0x78,
16,
/* VMREAD64rm */
},
{ /* 3610 */
MODIFIER_NONE,
0x78,
70,
/* VMREAD64rr */
},
{ /* 3611 */
MODIFIER_NONE,
0x01,
0,
/* VMRESUME */
},
{ /* 3612 */
MODIFIER_NONE,
0x01,
0,
/* VMRUN32 */
},
{ /* 3613 */
MODIFIER_NONE,
0x01,
0,
/* VMRUN64 */
},
{ /* 3614 */
MODIFIER_NONE,
0x01,
0,
/* VMSAVE32 */
},
{ /* 3615 */
MODIFIER_NONE,
0x01,
0,
/* VMSAVE64 */
},
{ /* 3616 */
MODIFIER_NONE,
0x59,
269,
/* VMULPDYrm */
},
{ /* 3617 */
MODIFIER_NONE,
0x59,
270,
/* VMULPDYrr */
},
{ /* 3618 */
MODIFIER_NONE,
0x59,
271,
/* VMULPDrm */
},
{ /* 3619 */
MODIFIER_NONE,
0x59,
272,
/* VMULPDrr */
},
{ /* 3620 */
MODIFIER_NONE,
0x59,
269,
/* VMULPSYrm */
},
{ /* 3621 */
MODIFIER_NONE,
0x59,
270,
/* VMULPSYrr */
},
{ /* 3622 */
MODIFIER_NONE,
0x59,
271,
/* VMULPSrm */
},
{ /* 3623 */
MODIFIER_NONE,
0x59,
272,
/* VMULPSrr */
},
{ /* 3624 */
MODIFIER_NONE,
0x59,
273,
/* VMULSDrm */
},
{ /* 3625 */
MODIFIER_NONE,
0x00,
0,
/* VMULSDrm_Int */
},
{ /* 3626 */
MODIFIER_NONE,
0x59,
274,
/* VMULSDrr */
},
{ /* 3627 */
MODIFIER_NONE,
0x00,
0,
/* VMULSDrr_Int */
},
{ /* 3628 */
MODIFIER_NONE,
0x59,
275,
/* VMULSSrm */
},
{ /* 3629 */
MODIFIER_NONE,
0x00,
0,
/* VMULSSrm_Int */
},
{ /* 3630 */
MODIFIER_NONE,
0x59,
276,
/* VMULSSrr */
},
{ /* 3631 */
MODIFIER_NONE,
0x00,
0,
/* VMULSSrr_Int */
},
{ /* 3632 */
MODIFIER_NONE,
0x79,
42,
/* VMWRITE32rm */
},
{ /* 3633 */
MODIFIER_NONE,
0x79,
43,
/* VMWRITE32rr */
},
{ /* 3634 */
MODIFIER_NONE,
0x79,
30,
/* VMWRITE64rm */
},
{ /* 3635 */
MODIFIER_NONE,
0x79,
31,
/* VMWRITE64rr */
},
{ /* 3636 */
MODIFIER_NONE,
0x01,
0,
/* VMXOFF */
},
{ /* 3637 */
MODIFIER_NONE,
0xc7,
40,
/* VMXON */
},
{ /* 3638 */
MODIFIER_NONE,
0x56,
269,
/* VORPDYrm */
},
{ /* 3639 */
MODIFIER_NONE,
0x56,
270,
/* VORPDYrr */
},
{ /* 3640 */
MODIFIER_NONE,
0x56,
271,
/* VORPDrm */
},
{ /* 3641 */
MODIFIER_NONE,
0x56,
272,
/* VORPDrr */
},
{ /* 3642 */
MODIFIER_NONE,
0x56,
269,
/* VORPSYrm */
},
{ /* 3643 */
MODIFIER_NONE,
0x56,
270,
/* VORPSYrr */
},
{ /* 3644 */
MODIFIER_NONE,
0x56,
271,
/* VORPSrm */
},
{ /* 3645 */
MODIFIER_NONE,
0x56,
272,
/* VORPSrr */
},
{ /* 3646 */
MODIFIER_NONE,
0x1c,
44,
/* VPABSBrm128 */
},
{ /* 3647 */
MODIFIER_NONE,
0x1c,
306,
/* VPABSBrm256 */
},
{ /* 3648 */
MODIFIER_NONE,
0x1c,
45,
/* VPABSBrr128 */
},
{ /* 3649 */
MODIFIER_NONE,
0x1c,
307,
/* VPABSBrr256 */
},
{ /* 3650 */
MODIFIER_NONE,
0x1e,
44,
/* VPABSDrm128 */
},
{ /* 3651 */
MODIFIER_NONE,
0x1e,
306,
/* VPABSDrm256 */
},
{ /* 3652 */
MODIFIER_NONE,
0x1e,
45,
/* VPABSDrr128 */
},
{ /* 3653 */
MODIFIER_NONE,
0x1e,
307,
/* VPABSDrr256 */
},
{ /* 3654 */
MODIFIER_NONE,
0x1d,
44,
/* VPABSWrm128 */
},
{ /* 3655 */
MODIFIER_NONE,
0x1d,
306,
/* VPABSWrm256 */
},
{ /* 3656 */
MODIFIER_NONE,
0x1d,
45,
/* VPABSWrr128 */
},
{ /* 3657 */
MODIFIER_NONE,
0x1d,
307,
/* VPABSWrr256 */
},
{ /* 3658 */
MODIFIER_NONE,
0x6b,
269,
/* VPACKSSDWYrm */
},
{ /* 3659 */
MODIFIER_NONE,
0x6b,
270,
/* VPACKSSDWYrr */
},
{ /* 3660 */
MODIFIER_NONE,
0x6b,
271,
/* VPACKSSDWrm */
},
{ /* 3661 */
MODIFIER_NONE,
0x6b,
272,
/* VPACKSSDWrr */
},
{ /* 3662 */
MODIFIER_NONE,
0x63,
269,
/* VPACKSSWBYrm */
},
{ /* 3663 */
MODIFIER_NONE,
0x63,
270,
/* VPACKSSWBYrr */
},
{ /* 3664 */
MODIFIER_NONE,
0x63,
271,
/* VPACKSSWBrm */
},
{ /* 3665 */
MODIFIER_NONE,
0x63,
272,
/* VPACKSSWBrr */
},
{ /* 3666 */
MODIFIER_NONE,
0x2b,
269,
/* VPACKUSDWYrm */
},
{ /* 3667 */
MODIFIER_NONE,
0x2b,
270,
/* VPACKUSDWYrr */
},
{ /* 3668 */
MODIFIER_NONE,
0x2b,
271,
/* VPACKUSDWrm */
},
{ /* 3669 */
MODIFIER_NONE,
0x2b,
272,
/* VPACKUSDWrr */
},
{ /* 3670 */
MODIFIER_NONE,
0x67,
269,
/* VPACKUSWBYrm */
},
{ /* 3671 */
MODIFIER_NONE,
0x67,
270,
/* VPACKUSWBYrr */
},
{ /* 3672 */
MODIFIER_NONE,
0x67,
271,
/* VPACKUSWBrm */
},
{ /* 3673 */
MODIFIER_NONE,
0x67,
272,
/* VPACKUSWBrr */
},
{ /* 3674 */
MODIFIER_NONE,
0xfc,
269,
/* VPADDBYrm */
},
{ /* 3675 */
MODIFIER_NONE,
0xfc,
270,
/* VPADDBYrr */
},
{ /* 3676 */
MODIFIER_NONE,
0xfc,
271,
/* VPADDBrm */
},
{ /* 3677 */
MODIFIER_NONE,
0xfc,
272,
/* VPADDBrr */
},
{ /* 3678 */
MODIFIER_NONE,
0xfe,
269,
/* VPADDDYrm */
},
{ /* 3679 */
MODIFIER_NONE,
0xfe,
270,
/* VPADDDYrr */
},
{ /* 3680 */
MODIFIER_NONE,
0xfe,
271,
/* VPADDDrm */
},
{ /* 3681 */
MODIFIER_NONE,
0xfe,
272,
/* VPADDDrr */
},
{ /* 3682 */
MODIFIER_NONE,
0xd4,
269,
/* VPADDQYrm */
},
{ /* 3683 */
MODIFIER_NONE,
0xd4,
270,
/* VPADDQYrr */
},
{ /* 3684 */
MODIFIER_NONE,
0xd4,
271,
/* VPADDQrm */
},
{ /* 3685 */
MODIFIER_NONE,
0xd4,
272,
/* VPADDQrr */
},
{ /* 3686 */
MODIFIER_NONE,
0xec,
269,
/* VPADDSBYrm */
},
{ /* 3687 */
MODIFIER_NONE,
0xec,
270,
/* VPADDSBYrr */
},
{ /* 3688 */
MODIFIER_NONE,
0xec,
271,
/* VPADDSBrm */
},
{ /* 3689 */
MODIFIER_NONE,
0xec,
272,
/* VPADDSBrr */
},
{ /* 3690 */
MODIFIER_NONE,
0xed,
269,
/* VPADDSWYrm */
},
{ /* 3691 */
MODIFIER_NONE,
0xed,
270,
/* VPADDSWYrr */
},
{ /* 3692 */
MODIFIER_NONE,
0xed,
271,
/* VPADDSWrm */
},
{ /* 3693 */
MODIFIER_NONE,
0xed,
272,
/* VPADDSWrr */
},
{ /* 3694 */
MODIFIER_NONE,
0xdc,
269,
/* VPADDUSBYrm */
},
{ /* 3695 */
MODIFIER_NONE,
0xdc,
270,
/* VPADDUSBYrr */
},
{ /* 3696 */
MODIFIER_NONE,
0xdc,
271,
/* VPADDUSBrm */
},
{ /* 3697 */
MODIFIER_NONE,
0xdc,
272,
/* VPADDUSBrr */
},
{ /* 3698 */
MODIFIER_NONE,
0xdd,
269,
/* VPADDUSWYrm */
},
{ /* 3699 */
MODIFIER_NONE,
0xdd,
270,
/* VPADDUSWYrr */
},
{ /* 3700 */
MODIFIER_NONE,
0xdd,
271,
/* VPADDUSWrm */
},
{ /* 3701 */
MODIFIER_NONE,
0xdd,
272,
/* VPADDUSWrr */
},
{ /* 3702 */
MODIFIER_NONE,
0xfd,
269,
/* VPADDWYrm */
},
{ /* 3703 */
MODIFIER_NONE,
0xfd,
270,
/* VPADDWYrr */
},
{ /* 3704 */
MODIFIER_NONE,
0xfd,
271,
/* VPADDWrm */
},
{ /* 3705 */
MODIFIER_NONE,
0xfd,
272,
/* VPADDWrr */
},
{ /* 3706 */
MODIFIER_NONE,
0x0f,
295,
/* VPALIGNR128rm */
},
{ /* 3707 */
MODIFIER_NONE,
0x0f,
297,
/* VPALIGNR128rr */
},
{ /* 3708 */
MODIFIER_NONE,
0x0f,
291,
/* VPALIGNR256rm */
},
{ /* 3709 */
MODIFIER_NONE,
0x0f,
293,
/* VPALIGNR256rr */
},
{ /* 3710 */
MODIFIER_NONE,
0xdf,
269,
/* VPANDNYrm */
},
{ /* 3711 */
MODIFIER_NONE,
0xdf,
270,
/* VPANDNYrr */
},
{ /* 3712 */
MODIFIER_NONE,
0xdf,
271,
/* VPANDNrm */
},
{ /* 3713 */
MODIFIER_NONE,
0xdf,
272,
/* VPANDNrr */
},
{ /* 3714 */
MODIFIER_NONE,
0xdb,
269,
/* VPANDYrm */
},
{ /* 3715 */
MODIFIER_NONE,
0xdb,
270,
/* VPANDYrr */
},
{ /* 3716 */
MODIFIER_NONE,
0xdb,
271,
/* VPANDrm */
},
{ /* 3717 */
MODIFIER_NONE,
0xdb,
272,
/* VPANDrr */
},
{ /* 3718 */
MODIFIER_NONE,
0xe0,
269,
/* VPAVGBYrm */
},
{ /* 3719 */
MODIFIER_NONE,
0xe0,
270,
/* VPAVGBYrr */
},
{ /* 3720 */
MODIFIER_NONE,
0xe0,
271,
/* VPAVGBrm */
},
{ /* 3721 */
MODIFIER_NONE,
0xe0,
272,
/* VPAVGBrr */
},
{ /* 3722 */
MODIFIER_NONE,
0xe3,
269,
/* VPAVGWYrm */
},
{ /* 3723 */
MODIFIER_NONE,
0xe3,
270,
/* VPAVGWYrr */
},
{ /* 3724 */
MODIFIER_NONE,
0xe3,
271,
/* VPAVGWrm */
},
{ /* 3725 */
MODIFIER_NONE,
0xe3,
272,
/* VPAVGWrr */
},
{ /* 3726 */
MODIFIER_NONE,
0x02,
277,
/* VPBLENDDYrmi */
},
{ /* 3727 */
MODIFIER_NONE,
0x02,
278,
/* VPBLENDDYrri */
},
{ /* 3728 */
MODIFIER_NONE,
0x02,
279,
/* VPBLENDDrmi */
},
{ /* 3729 */
MODIFIER_NONE,
0x02,
280,
/* VPBLENDDrri */
},
{ /* 3730 */
MODIFIER_NONE,
0x4c,
281,
/* VPBLENDVBYrm */
},
{ /* 3731 */
MODIFIER_NONE,
0x4c,
282,
/* VPBLENDVBYrr */
},
{ /* 3732 */
MODIFIER_NONE,
0x4c,
283,
/* VPBLENDVBrm */
},
{ /* 3733 */
MODIFIER_NONE,
0x4c,
284,
/* VPBLENDVBrr */
},
{ /* 3734 */
MODIFIER_NONE,
0x0e,
277,
/* VPBLENDWYrmi */
},
{ /* 3735 */
MODIFIER_NONE,
0x0e,
278,
/* VPBLENDWYrri */
},
{ /* 3736 */
MODIFIER_NONE,
0x0e,
279,
/* VPBLENDWrmi */
},
{ /* 3737 */
MODIFIER_NONE,
0x0e,
280,
/* VPBLENDWrri */
},
{ /* 3738 */
MODIFIER_NONE,
0x78,
367,
/* VPBROADCASTBYrm */
},
{ /* 3739 */
MODIFIER_NONE,
0x78,
287,
/* VPBROADCASTBYrr */
},
{ /* 3740 */
MODIFIER_NONE,
0x78,
368,
/* VPBROADCASTBrm */
},
{ /* 3741 */
MODIFIER_NONE,
0x78,
45,
/* VPBROADCASTBrr */
},
{ /* 3742 */
MODIFIER_NONE,
0x58,
369,
/* VPBROADCASTDYrm */
},
{ /* 3743 */
MODIFIER_NONE,
0x58,
287,
/* VPBROADCASTDYrr */
},
{ /* 3744 */
MODIFIER_NONE,
0x58,
102,
/* VPBROADCASTDrm */
},
{ /* 3745 */
MODIFIER_NONE,
0x58,
45,
/* VPBROADCASTDrr */
},
{ /* 3746 */
MODIFIER_NONE,
0x59,
369,
/* VPBROADCASTQYrm */
},
{ /* 3747 */
MODIFIER_NONE,
0x59,
287,
/* VPBROADCASTQYrr */
},
{ /* 3748 */
MODIFIER_NONE,
0x59,
102,
/* VPBROADCASTQrm */
},
{ /* 3749 */
MODIFIER_NONE,
0x59,
45,
/* VPBROADCASTQrr */
},
{ /* 3750 */
MODIFIER_NONE,
0x79,
369,
/* VPBROADCASTWYrm */
},
{ /* 3751 */
MODIFIER_NONE,
0x79,
287,
/* VPBROADCASTWYrr */
},
{ /* 3752 */
MODIFIER_NONE,
0x79,
102,
/* VPBROADCASTWrm */
},
{ /* 3753 */
MODIFIER_NONE,
0x79,
45,
/* VPBROADCASTWrr */
},
{ /* 3754 */
MODIFIER_NONE,
0x44,
295,
/* VPCLMULQDQrm */
},
{ /* 3755 */
MODIFIER_NONE,
0x44,
297,
/* VPCLMULQDQrr */
},
{ /* 3756 */
MODIFIER_NONE,
0x00,
0,
/* */
},
{ /* 3757 */
MODIFIER_NONE,
0x00,
0,
/* */
},
{ /* 3758 */
MODIFIER_NONE,
0x00,
0,
/* */
},
{ /* 3759 */
MODIFIER_NONE,
0x00,
0,
/* */
},
{ /* 3760 */
MODIFIER_NONE,
0x00,
0,
/* */
},
{ /* 3761 */
MODIFIER_NONE,
0x00,
0,
/* */
},
{ /* 3762 */
MODIFIER_NONE,
0x74,
269,
/* VPCMPEQBYrm */
},
{ /* 3763 */
MODIFIER_NONE,
0x74,
270,
/* VPCMPEQBYrr */
},
{ /* 3764 */
MODIFIER_NONE,
0x74,
271,
/* VPCMPEQBrm */
},
{ /* 3765 */
MODIFIER_NONE,
0x74,
272,
/* VPCMPEQBrr */
},
{ /* 3766 */
MODIFIER_NONE,
0x76,
269,
/* VPCMPEQDYrm */
},
{ /* 3767 */
MODIFIER_NONE,
0x76,
270,
/* VPCMPEQDYrr */
},
{ /* 3768 */
MODIFIER_NONE,
0x76,
271,
/* VPCMPEQDrm */
},
{ /* 3769 */
MODIFIER_NONE,
0x76,
272,
/* VPCMPEQDrr */
},
{ /* 3770 */
MODIFIER_NONE,
0x29,
269,
/* VPCMPEQQYrm */
},
{ /* 3771 */
MODIFIER_NONE,
0x29,
270,
/* VPCMPEQQYrr */
},
{ /* 3772 */
MODIFIER_NONE,
0x29,
271,
/* VPCMPEQQrm */
},
{ /* 3773 */
MODIFIER_NONE,
0x29,
272,
/* VPCMPEQQrr */
},
{ /* 3774 */
MODIFIER_NONE,
0x75,
269,
/* VPCMPEQWYrm */
},
{ /* 3775 */
MODIFIER_NONE,
0x75,
270,
/* VPCMPEQWYrr */
},
{ /* 3776 */
MODIFIER_NONE,
0x75,
271,
/* VPCMPEQWrm */
},
{ /* 3777 */
MODIFIER_NONE,
0x75,
272,
/* VPCMPEQWrr */
},
{ /* 3778 */
MODIFIER_NONE,
0x00,
0,
/* VPCMPESTRIMEM */
},
{ /* 3779 */
MODIFIER_NONE,
0x00,
0,
/* VPCMPESTRIREG */
},
{ /* 3780 */
MODIFIER_NONE,
0x61,
46,
/* VPCMPESTRIrm */
},
{ /* 3781 */
MODIFIER_NONE,
0x61,
47,
/* VPCMPESTRIrr */
},
{ /* 3782 */
MODIFIER_NONE,
0x00,
0,
/* VPCMPESTRM128MEM */
},
{ /* 3783 */
MODIFIER_NONE,
0x00,
0,
/* VPCMPESTRM128REG */
},
{ /* 3784 */
MODIFIER_NONE,
0x60,
46,
/* VPCMPESTRM128rm */
},
{ /* 3785 */
MODIFIER_NONE,
0x60,
47,
/* VPCMPESTRM128rr */
},
{ /* 3786 */
MODIFIER_NONE,
0x64,
269,
/* VPCMPGTBYrm */
},
{ /* 3787 */
MODIFIER_NONE,
0x64,
270,
/* VPCMPGTBYrr */
},
{ /* 3788 */
MODIFIER_NONE,
0x64,
271,
/* VPCMPGTBrm */
},
{ /* 3789 */
MODIFIER_NONE,
0x64,
272,
/* VPCMPGTBrr */
},
{ /* 3790 */
MODIFIER_NONE,
0x66,
269,
/* VPCMPGTDYrm */
},
{ /* 3791 */
MODIFIER_NONE,
0x66,
270,
/* VPCMPGTDYrr */
},
{ /* 3792 */
MODIFIER_NONE,
0x66,
271,
/* VPCMPGTDrm */
},
{ /* 3793 */
MODIFIER_NONE,
0x66,
272,
/* VPCMPGTDrr */
},
{ /* 3794 */
MODIFIER_NONE,
0x37,
269,
/* VPCMPGTQYrm */
},
{ /* 3795 */
MODIFIER_NONE,
0x37,
270,
/* VPCMPGTQYrr */
},
{ /* 3796 */
MODIFIER_NONE,
0x37,
271,
/* VPCMPGTQrm */
},
{ /* 3797 */
MODIFIER_NONE,
0x37,
272,
/* VPCMPGTQrr */
},
{ /* 3798 */
MODIFIER_NONE,
0x65,
269,
/* VPCMPGTWYrm */
},
{ /* 3799 */
MODIFIER_NONE,
0x65,
270,
/* VPCMPGTWYrr */
},
{ /* 3800 */
MODIFIER_NONE,
0x65,
271,
/* VPCMPGTWrm */
},
{ /* 3801 */
MODIFIER_NONE,
0x65,
272,
/* VPCMPGTWrr */
},
{ /* 3802 */
MODIFIER_NONE,
0x00,
0,
/* VPCMPISTRIMEM */
},
{ /* 3803 */
MODIFIER_NONE,
0x00,
0,
/* VPCMPISTRIREG */
},
{ /* 3804 */
MODIFIER_NONE,
0x63,
46,
/* VPCMPISTRIrm */
},
{ /* 3805 */
MODIFIER_NONE,
0x63,
47,
/* VPCMPISTRIrr */
},
{ /* 3806 */
MODIFIER_NONE,
0x00,
0,
/* VPCMPISTRM128MEM */
},
{ /* 3807 */
MODIFIER_NONE,
0x00,
0,
/* VPCMPISTRM128REG */
},
{ /* 3808 */
MODIFIER_NONE,
0x62,
46,
/* VPCMPISTRM128rm */
},
{ /* 3809 */
MODIFIER_NONE,
0x62,
47,
/* VPCMPISTRM128rr */
},
{ /* 3810 */
MODIFIER_NONE,
0x00,
0,
/* */
},
{ /* 3811 */
MODIFIER_NONE,
0x00,
0,
/* */
},
{ /* 3812 */
MODIFIER_NONE,
0x00,
0,
/* */
},
{ /* 3813 */
MODIFIER_NONE,
0x00,
0,
/* */
},
{ /* 3814 */
MODIFIER_NONE,
0x00,
0,
/* */
},
{ /* 3815 */
MODIFIER_NONE,
0x00,
0,
/* */
},
{ /* 3816 */
MODIFIER_NONE,
0x00,
0,
/* */
},
{ /* 3817 */
MODIFIER_NONE,
0x00,
0,
/* */
},
{ /* 3818 */
MODIFIER_NONE,
0x00,
0,
/* */
},
{ /* 3819 */
MODIFIER_NONE,
0x00,
0,
/* */
},
{ /* 3820 */
MODIFIER_NONE,
0x00,
0,
/* */
},
{ /* 3821 */
MODIFIER_NONE,
0x00,
0,
/* */
},
{ /* 3822 */
MODIFIER_NONE,
0x00,
0,
/* */
},
{ /* 3823 */
MODIFIER_NONE,
0x00,
0,
/* */
},
{ /* 3824 */
MODIFIER_NONE,
0x00,
0,
/* */
},
{ /* 3825 */
MODIFIER_NONE,
0x00,
0,
/* */
},
{ /* 3826 */
MODIFIER_NONE,
0x06,
291,
/* VPERM2F128rm */
},
{ /* 3827 */
MODIFIER_NONE,
0x06,
293,
/* VPERM2F128rr */
},
{ /* 3828 */
MODIFIER_NONE,
0x46,
291,
/* VPERM2I128rm */
},
{ /* 3829 */
MODIFIER_NONE,
0x46,
293,
/* VPERM2I128rr */
},
{ /* 3830 */
MODIFIER_NONE,
0x36,
269,
/* VPERMDYrm */
},
{ /* 3831 */
MODIFIER_NONE,
0x36,
270,
/* VPERMDYrr */
},
{ /* 3832 */
MODIFIER_NONE,
0x49,
370,
/* VPERMIL2PDmr */
},
{ /* 3833 */
MODIFIER_NONE,
0x49,
371,
/* VPERMIL2PDmrY */
},
{ /* 3834 */
MODIFIER_NONE,
0x49,
372,
/* VPERMIL2PDrm */
},
{ /* 3835 */
MODIFIER_NONE,
0x49,
373,
/* VPERMIL2PDrmY */
},
{ /* 3836 */
MODIFIER_NONE,
0x49,
374,
/* VPERMIL2PDrr */
},
{ /* 3837 */
MODIFIER_NONE,
0x49,
375,
/* VPERMIL2PDrrY */
},
{ /* 3838 */
MODIFIER_NONE,
0x48,
370,
/* VPERMIL2PSmr */
},
{ /* 3839 */
MODIFIER_NONE,
0x48,
371,
/* VPERMIL2PSmrY */
},
{ /* 3840 */
MODIFIER_NONE,
0x48,
372,
/* VPERMIL2PSrm */
},
{ /* 3841 */
MODIFIER_NONE,
0x48,
373,
/* VPERMIL2PSrmY */
},
{ /* 3842 */
MODIFIER_NONE,
0x48,
374,
/* VPERMIL2PSrr */
},
{ /* 3843 */
MODIFIER_NONE,
0x48,
375,
/* VPERMIL2PSrrY */
},
{ /* 3844 */
MODIFIER_NONE,
0x05,
376,
/* VPERMILPDYmi */
},
{ /* 3845 */
MODIFIER_NONE,
0x05,
377,
/* VPERMILPDYri */
},
{ /* 3846 */
MODIFIER_NONE,
0x0d,
269,
/* VPERMILPDYrm */
},
{ /* 3847 */
MODIFIER_NONE,
0x0d,
270,
/* VPERMILPDYrr */
},
{ /* 3848 */
MODIFIER_NONE,
0x05,
46,
/* VPERMILPDmi */
},
{ /* 3849 */
MODIFIER_NONE,
0x05,
47,
/* VPERMILPDri */
},
{ /* 3850 */
MODIFIER_NONE,
0x0d,
271,
/* VPERMILPDrm */
},
{ /* 3851 */
MODIFIER_NONE,
0x0d,
272,
/* VPERMILPDrr */
},
{ /* 3852 */
MODIFIER_NONE,
0x04,
376,
/* VPERMILPSYmi */
},
{ /* 3853 */
MODIFIER_NONE,
0x04,
377,
/* VPERMILPSYri */
},
{ /* 3854 */
MODIFIER_NONE,
0x0c,
269,
/* VPERMILPSYrm */
},
{ /* 3855 */
MODIFIER_NONE,
0x0c,
270,
/* VPERMILPSYrr */
},
{ /* 3856 */
MODIFIER_NONE,
0x04,
46,
/* VPERMILPSmi */
},
{ /* 3857 */
MODIFIER_NONE,
0x04,
47,
/* VPERMILPSri */
},
{ /* 3858 */
MODIFIER_NONE,
0x0c,
271,
/* VPERMILPSrm */
},
{ /* 3859 */
MODIFIER_NONE,
0x0c,
272,
/* VPERMILPSrr */
},
{ /* 3860 */
MODIFIER_NONE,
0x01,
376,
/* VPERMPDYmi */
},
{ /* 3861 */
MODIFIER_NONE,
0x01,
377,
/* VPERMPDYri */
},
{ /* 3862 */
MODIFIER_NONE,
0x16,
269,
/* VPERMPSYrm */
},
{ /* 3863 */
MODIFIER_NONE,
0x16,
270,
/* VPERMPSYrr */
},
{ /* 3864 */
MODIFIER_NONE,
0x00,
376,
/* VPERMQYmi */
},
{ /* 3865 */
MODIFIER_NONE,
0x00,
377,
/* VPERMQYri */
},
{ /* 3866 */
MODIFIER_NONE,
0x14,
238,
/* VPEXTRBmr */
},
{ /* 3867 */
MODIFIER_NONE,
0x14,
130,
/* VPEXTRBrr */
},
{ /* 3868 */
MODIFIER_NONE,
0x14,
240,
/* VPEXTRBrr64 */
},
{ /* 3869 */
MODIFIER_NONE,
0x16,
239,
/* VPEXTRDmr */
},
{ /* 3870 */
MODIFIER_NONE,
0x16,
130,
/* VPEXTRDrr */
},
{ /* 3871 */
MODIFIER_NONE,
0x16,
239,
/* VPEXTRQmr */
},
{ /* 3872 */
MODIFIER_NONE,
0x16,
240,
/* VPEXTRQrr */
},
{ /* 3873 */
MODIFIER_NONE,
0x15,
239,
/* VPEXTRWmr */
},
{ /* 3874 */
MODIFIER_NONE,
0xc5,
241,
/* VPEXTRWri */
},
{ /* 3875 */
MODIFIER_NONE,
0x90,
350,
/* VPGATHERDDYrm */
},
{ /* 3876 */
MODIFIER_NONE,
0x90,
351,
/* VPGATHERDDrm */
},
{ /* 3877 */
MODIFIER_NONE,
0x90,
348,
/* VPGATHERDQYrm */
},
{ /* 3878 */
MODIFIER_NONE,
0x90,
349,
/* VPGATHERDQrm */
},
{ /* 3879 */
MODIFIER_NONE,
0x91,
351,
/* VPGATHERQDYrm */
},
{ /* 3880 */
MODIFIER_NONE,
0x91,
351,
/* VPGATHERQDrm */
},
{ /* 3881 */
MODIFIER_NONE,
0x91,
348,
/* VPGATHERQQYrm */
},
{ /* 3882 */
MODIFIER_NONE,
0x91,
349,
/* VPGATHERQQrm */
},
{ /* 3883 */
MODIFIER_NONE,
0x00,
0,
/* */
},
{ /* 3884 */
MODIFIER_NONE,
0x00,
0,
/* */
},
{ /* 3885 */
MODIFIER_NONE,
0x00,
0,
/* */
},
{ /* 3886 */
MODIFIER_NONE,
0x00,
0,
/* */
},
{ /* 3887 */
MODIFIER_NONE,
0x00,
0,
/* */
},
{ /* 3888 */
MODIFIER_NONE,
0x00,
0,
/* */
},
{ /* 3889 */
MODIFIER_NONE,
0x00,
0,
/* */
},
{ /* 3890 */
MODIFIER_NONE,
0x00,
0,
/* */
},
{ /* 3891 */
MODIFIER_NONE,
0x02,
269,
/* VPHADDDYrm */
},
{ /* 3892 */
MODIFIER_NONE,
0x02,
270,
/* VPHADDDYrr */
},
{ /* 3893 */
MODIFIER_NONE,
0x02,
271,
/* VPHADDDrm */
},
{ /* 3894 */
MODIFIER_NONE,
0x02,
272,
/* VPHADDDrr */
},
{ /* 3895 */
MODIFIER_NONE,
0x03,
271,
/* VPHADDSWrm128 */
},
{ /* 3896 */
MODIFIER_NONE,
0x03,
269,
/* VPHADDSWrm256 */
},
{ /* 3897 */
MODIFIER_NONE,
0x03,
272,
/* VPHADDSWrr128 */
},
{ /* 3898 */
MODIFIER_NONE,
0x03,
270,
/* VPHADDSWrr256 */
},
{ /* 3899 */
MODIFIER_NONE,
0x00,
0,
/* */
},
{ /* 3900 */
MODIFIER_NONE,
0x00,
0,
/* */
},
{ /* 3901 */
MODIFIER_NONE,
0x00,
0,
/* */
},
{ /* 3902 */
MODIFIER_NONE,
0x00,
0,
/* */
},
{ /* 3903 */
MODIFIER_NONE,
0x00,
0,
/* */
},
{ /* 3904 */
MODIFIER_NONE,
0x00,
0,
/* */
},
{ /* 3905 */
MODIFIER_NONE,
0x00,
0,
/* */
},
{ /* 3906 */
MODIFIER_NONE,
0x00,
0,
/* */
},
{ /* 3907 */
MODIFIER_NONE,
0x00,
0,
/* */
},
{ /* 3908 */
MODIFIER_NONE,
0x00,
0,
/* */
},
{ /* 3909 */
MODIFIER_NONE,
0x00,
0,
/* */
},
{ /* 3910 */
MODIFIER_NONE,
0x00,
0,
/* */
},
{ /* 3911 */
MODIFIER_NONE,
0x00,
0,
/* */
},
{ /* 3912 */
MODIFIER_NONE,
0x00,
0,
/* */
},
{ /* 3913 */
MODIFIER_NONE,
0x00,
0,
/* */
},
{ /* 3914 */
MODIFIER_NONE,
0x00,
0,
/* */
},
{ /* 3915 */
MODIFIER_NONE,
0x01,
269,
/* VPHADDWYrm */
},
{ /* 3916 */
MODIFIER_NONE,
0x01,
270,
/* VPHADDWYrr */
},
{ /* 3917 */
MODIFIER_NONE,
0x01,
271,
/* VPHADDWrm */
},
{ /* 3918 */
MODIFIER_NONE,
0x01,
272,
/* VPHADDWrr */
},
{ /* 3919 */
MODIFIER_NONE,
0x41,
44,
/* VPHMINPOSUWrm128 */
},
{ /* 3920 */
MODIFIER_NONE,
0x41,
45,
/* VPHMINPOSUWrr128 */
},
{ /* 3921 */
MODIFIER_NONE,
0x00,
0,
/* */
},
{ /* 3922 */
MODIFIER_NONE,
0x00,
0,
/* */
},
{ /* 3923 */
MODIFIER_NONE,
0x00,
0,
/* */
},
{ /* 3924 */
MODIFIER_NONE,
0x00,
0,
/* */
},
{ /* 3925 */
MODIFIER_NONE,
0x06,
269,
/* VPHSUBDYrm */
},
{ /* 3926 */
MODIFIER_NONE,
0x06,
270,
/* VPHSUBDYrr */
},
{ /* 3927 */
MODIFIER_NONE,
0x06,
271,
/* VPHSUBDrm */
},
{ /* 3928 */
MODIFIER_NONE,
0x06,
272,
/* VPHSUBDrr */
},
{ /* 3929 */
MODIFIER_NONE,
0x07,
271,
/* VPHSUBSWrm128 */
},
{ /* 3930 */
MODIFIER_NONE,
0x07,
269,
/* VPHSUBSWrm256 */
},
{ /* 3931 */
MODIFIER_NONE,
0x07,
272,
/* VPHSUBSWrr128 */
},
{ /* 3932 */
MODIFIER_NONE,
0x07,
270,
/* VPHSUBSWrr256 */
},
{ /* 3933 */
MODIFIER_NONE,
0x00,
0,
/* */
},
{ /* 3934 */
MODIFIER_NONE,
0x00,
0,
/* */
},
{ /* 3935 */
MODIFIER_NONE,
0x05,
269,
/* VPHSUBWYrm */
},
{ /* 3936 */
MODIFIER_NONE,
0x05,
270,
/* VPHSUBWYrr */
},
{ /* 3937 */
MODIFIER_NONE,
0x05,
271,
/* VPHSUBWrm */
},
{ /* 3938 */
MODIFIER_NONE,
0x05,
272,
/* VPHSUBWrr */
},
{ /* 3939 */
MODIFIER_NONE,
0x20,
378,
/* VPINSRBrm */
},
{ /* 3940 */
MODIFIER_NONE,
0x20,
379,
/* VPINSRBrr */
},
{ /* 3941 */
MODIFIER_NONE,
0x22,
380,
/* VPINSRDrm */
},
{ /* 3942 */
MODIFIER_NONE,
0x22,
379,
/* VPINSRDrr */
},
{ /* 3943 */
MODIFIER_NONE,
0x22,
380,
/* VPINSRQrm */
},
{ /* 3944 */
MODIFIER_NONE,
0x22,
381,
/* VPINSRQrr */
},
{ /* 3945 */
MODIFIER_NONE,
0xc4,
380,
/* VPINSRWrmi */
},
{ /* 3946 */
MODIFIER_NONE,
0xc4,
381,
/* VPINSRWrr64i */
},
{ /* 3947 */
MODIFIER_NONE,
0xc4,
379,
/* VPINSRWrri */
},
{ /* 3948 */
MODIFIER_NONE,
0x00,
0,
/* */
},
{ /* 3949 */
MODIFIER_NONE,
0x00,
0,
/* */
},
{ /* 3950 */
MODIFIER_NONE,
0x00,
0,
/* */
},
{ /* 3951 */
MODIFIER_NONE,
0x00,
0,
/* */
},
{ /* 3952 */
MODIFIER_NONE,
0x00,
0,
/* */
},
{ /* 3953 */
MODIFIER_NONE,
0x00,
0,
/* */
},
{ /* 3954 */
MODIFIER_NONE,
0x00,
0,
/* */
},
{ /* 3955 */
MODIFIER_NONE,
0x00,
0,
/* */
},
{ /* 3956 */
MODIFIER_NONE,
0x00,
0,
/* */
},
{ /* 3957 */
MODIFIER_NONE,
0x00,
0,
/* */
},
{ /* 3958 */
MODIFIER_NONE,
0x00,
0,
/* */
},
{ /* 3959 */
MODIFIER_NONE,
0x00,
0,
/* */
},
{ /* 3960 */
MODIFIER_NONE,
0x00,
0,
/* */
},
{ /* 3961 */
MODIFIER_NONE,
0x00,
0,
/* */
},
{ /* 3962 */
MODIFIER_NONE,
0x00,
0,
/* */
},
{ /* 3963 */
MODIFIER_NONE,
0x00,
0,
/* */
},
{ /* 3964 */
MODIFIER_NONE,
0x00,
0,
/* */
},
{ /* 3965 */
MODIFIER_NONE,
0x00,
0,
/* */
},
{ /* 3966 */
MODIFIER_NONE,
0x00,
0,
/* */
},
{ /* 3967 */
MODIFIER_NONE,
0x00,
0,
/* */
},
{ /* 3968 */
MODIFIER_NONE,
0x00,
0,
/* */
},
{ /* 3969 */
MODIFIER_NONE,
0x00,
0,
/* */
},
{ /* 3970 */
MODIFIER_NONE,
0x00,
0,
/* */
},
{ /* 3971 */
MODIFIER_NONE,
0x00,
0,
/* */
},
{ /* 3972 */
MODIFIER_NONE,
0x04,
271,
/* VPMADDUBSWrm128 */
},
{ /* 3973 */
MODIFIER_NONE,
0x04,
269,
/* VPMADDUBSWrm256 */
},
{ /* 3974 */
MODIFIER_NONE,
0x04,
272,
/* VPMADDUBSWrr128 */
},
{ /* 3975 */
MODIFIER_NONE,
0x04,
270,
/* VPMADDUBSWrr256 */
},
{ /* 3976 */
MODIFIER_NONE,
0xf5,
269,
/* VPMADDWDYrm */
},
{ /* 3977 */
MODIFIER_NONE,
0xf5,
270,
/* VPMADDWDYrr */
},
{ /* 3978 */
MODIFIER_NONE,
0xf5,
271,
/* VPMADDWDrm */
},
{ /* 3979 */
MODIFIER_NONE,
0xf5,
272,
/* VPMADDWDrr */
},
{ /* 3980 */
MODIFIER_NONE,
0x8e,
355,
/* VPMASKMOVDYmr */
},
{ /* 3981 */
MODIFIER_NONE,
0x8c,
269,
/* VPMASKMOVDYrm */
},
{ /* 3982 */
MODIFIER_NONE,
0x8e,
356,
/* VPMASKMOVDmr */
},
{ /* 3983 */
MODIFIER_NONE,
0x8c,
271,
/* VPMASKMOVDrm */
},
{ /* 3984 */
MODIFIER_NONE,
0x8e,
355,
/* VPMASKMOVQYmr */
},
{ /* 3985 */
MODIFIER_NONE,
0x8c,
269,
/* VPMASKMOVQYrm */
},
{ /* 3986 */
MODIFIER_NONE,
0x8e,
356,
/* VPMASKMOVQmr */
},
{ /* 3987 */
MODIFIER_NONE,
0x8c,
271,
/* VPMASKMOVQrm */
},
{ /* 3988 */
MODIFIER_NONE,
0x3c,
269,
/* VPMAXSBYrm */
},
{ /* 3989 */
MODIFIER_NONE,
0x3c,
270,
/* VPMAXSBYrr */
},
{ /* 3990 */
MODIFIER_NONE,
0x3c,
271,
/* VPMAXSBrm */
},
{ /* 3991 */
MODIFIER_NONE,
0x3c,
272,
/* VPMAXSBrr */
},
{ /* 3992 */
MODIFIER_NONE,
0x3d,
269,
/* VPMAXSDYrm */
},
{ /* 3993 */
MODIFIER_NONE,
0x3d,
270,
/* VPMAXSDYrr */
},
{ /* 3994 */
MODIFIER_NONE,
0x3d,
271,
/* VPMAXSDrm */
},
{ /* 3995 */
MODIFIER_NONE,
0x3d,
272,
/* VPMAXSDrr */
},
{ /* 3996 */
MODIFIER_NONE,
0xee,
269,
/* VPMAXSWYrm */
},
{ /* 3997 */
MODIFIER_NONE,
0xee,
270,
/* VPMAXSWYrr */
},
{ /* 3998 */
MODIFIER_NONE,
0xee,
271,
/* VPMAXSWrm */
},
{ /* 3999 */
MODIFIER_NONE,
0xee,
272,
/* VPMAXSWrr */
},
{ /* 4000 */
MODIFIER_NONE,
0xde,
269,
/* VPMAXUBYrm */
},
{ /* 4001 */
MODIFIER_NONE,
0xde,
270,
/* VPMAXUBYrr */
},
{ /* 4002 */
MODIFIER_NONE,
0xde,
271,
/* VPMAXUBrm */
},
{ /* 4003 */
MODIFIER_NONE,
0xde,
272,
/* VPMAXUBrr */
},
{ /* 4004 */
MODIFIER_NONE,
0x3f,
269,
/* VPMAXUDYrm */
},
{ /* 4005 */
MODIFIER_NONE,
0x3f,
270,
/* VPMAXUDYrr */
},
{ /* 4006 */
MODIFIER_NONE,
0x3f,
271,
/* VPMAXUDrm */
},
{ /* 4007 */
MODIFIER_NONE,
0x3f,
272,
/* VPMAXUDrr */
},
{ /* 4008 */
MODIFIER_NONE,
0x3e,
269,
/* VPMAXUWYrm */
},
{ /* 4009 */
MODIFIER_NONE,
0x3e,
270,
/* VPMAXUWYrr */
},
{ /* 4010 */
MODIFIER_NONE,
0x3e,
271,
/* VPMAXUWrm */
},
{ /* 4011 */
MODIFIER_NONE,
0x3e,
272,
/* VPMAXUWrr */
},
{ /* 4012 */
MODIFIER_NONE,
0x38,
269,
/* VPMINSBYrm */
},
{ /* 4013 */
MODIFIER_NONE,
0x38,
270,
/* VPMINSBYrr */
},
{ /* 4014 */
MODIFIER_NONE,
0x38,
271,
/* VPMINSBrm */
},
{ /* 4015 */
MODIFIER_NONE,
0x38,
272,
/* VPMINSBrr */
},
{ /* 4016 */
MODIFIER_NONE,
0x39,
269,
/* VPMINSDYrm */
},
{ /* 4017 */
MODIFIER_NONE,
0x39,
270,
/* VPMINSDYrr */
},
{ /* 4018 */
MODIFIER_NONE,
0x39,
271,
/* VPMINSDrm */
},
{ /* 4019 */
MODIFIER_NONE,
0x39,
272,
/* VPMINSDrr */
},
{ /* 4020 */
MODIFIER_NONE,
0xea,
269,
/* VPMINSWYrm */
},
{ /* 4021 */
MODIFIER_NONE,
0xea,
270,
/* VPMINSWYrr */
},
{ /* 4022 */
MODIFIER_NONE,
0xea,
271,
/* VPMINSWrm */
},
{ /* 4023 */
MODIFIER_NONE,
0xea,
272,
/* VPMINSWrr */
},
{ /* 4024 */
MODIFIER_NONE,
0xda,
269,
/* VPMINUBYrm */
},
{ /* 4025 */
MODIFIER_NONE,
0xda,
270,
/* VPMINUBYrr */
},
{ /* 4026 */
MODIFIER_NONE,
0xda,
271,
/* VPMINUBrm */
},
{ /* 4027 */
MODIFIER_NONE,
0xda,
272,
/* VPMINUBrr */
},
{ /* 4028 */
MODIFIER_NONE,
0x3b,
269,
/* VPMINUDYrm */
},
{ /* 4029 */
MODIFIER_NONE,
0x3b,
270,
/* VPMINUDYrr */
},
{ /* 4030 */
MODIFIER_NONE,
0x3b,
271,
/* VPMINUDrm */
},
{ /* 4031 */
MODIFIER_NONE,
0x3b,
272,
/* VPMINUDrr */
},
{ /* 4032 */
MODIFIER_NONE,
0x3a,
269,
/* VPMINUWYrm */
},
{ /* 4033 */
MODIFIER_NONE,
0x3a,
270,
/* VPMINUWYrr */
},
{ /* 4034 */
MODIFIER_NONE,
0x3a,
271,
/* VPMINUWrm */
},
{ /* 4035 */
MODIFIER_NONE,
0x3a,
272,
/* VPMINUWrr */
},
{ /* 4036 */
MODIFIER_NONE,
0xd7,
360,
/* VPMOVMSKBYr64r */
},
{ /* 4037 */
MODIFIER_NONE,
0xd7,
361,
/* VPMOVMSKBYrr */
},
{ /* 4038 */
MODIFIER_NONE,
0xd7,
105,
/* VPMOVMSKBr64r */
},
{ /* 4039 */
MODIFIER_NONE,
0xd7,
220,
/* VPMOVMSKBrr */
},
{ /* 4040 */
MODIFIER_NONE,
0x21,
369,
/* VPMOVSXBDYrm */
},
{ /* 4041 */
MODIFIER_NONE,
0x21,
287,
/* VPMOVSXBDYrr */
},
{ /* 4042 */
MODIFIER_NONE,
0x21,
102,
/* VPMOVSXBDrm */
},
{ /* 4043 */
MODIFIER_NONE,
0x21,
45,
/* VPMOVSXBDrr */
},
{ /* 4044 */
MODIFIER_NONE,
0x22,
369,
/* VPMOVSXBQYrm */
},
{ /* 4045 */
MODIFIER_NONE,
0x22,
287,
/* VPMOVSXBQYrr */
},
{ /* 4046 */
MODIFIER_NONE,
0x22,
102,
/* VPMOVSXBQrm */
},
{ /* 4047 */
MODIFIER_NONE,
0x22,
45,
/* VPMOVSXBQrr */
},
{ /* 4048 */
MODIFIER_NONE,
0x20,
285,
/* VPMOVSXBWYrm */
},
{ /* 4049 */
MODIFIER_NONE,
0x20,
287,
/* VPMOVSXBWYrr */
},
{ /* 4050 */
MODIFIER_NONE,
0x20,
102,
/* VPMOVSXBWrm */
},
{ /* 4051 */
MODIFIER_NONE,
0x20,
45,
/* VPMOVSXBWrr */
},
{ /* 4052 */
MODIFIER_NONE,
0x25,
285,
/* VPMOVSXDQYrm */
},
{ /* 4053 */
MODIFIER_NONE,
0x25,
287,
/* VPMOVSXDQYrr */
},
{ /* 4054 */
MODIFIER_NONE,
0x25,
102,
/* VPMOVSXDQrm */
},
{ /* 4055 */
MODIFIER_NONE,
0x25,
45,
/* VPMOVSXDQrr */
},
{ /* 4056 */
MODIFIER_NONE,
0x23,
285,
/* VPMOVSXWDYrm */
},
{ /* 4057 */
MODIFIER_NONE,
0x23,
287,
/* VPMOVSXWDYrr */
},
{ /* 4058 */
MODIFIER_NONE,
0x23,
102,
/* VPMOVSXWDrm */
},
{ /* 4059 */
MODIFIER_NONE,
0x23,
45,
/* VPMOVSXWDrr */
},
{ /* 4060 */
MODIFIER_NONE,
0x24,
369,
/* VPMOVSXWQYrm */
},
{ /* 4061 */
MODIFIER_NONE,
0x24,
287,
/* VPMOVSXWQYrr */
},
{ /* 4062 */
MODIFIER_NONE,
0x24,
102,
/* VPMOVSXWQrm */
},
{ /* 4063 */
MODIFIER_NONE,
0x24,
45,
/* VPMOVSXWQrr */
},
{ /* 4064 */
MODIFIER_NONE,
0x31,
369,
/* VPMOVZXBDYrm */
},
{ /* 4065 */
MODIFIER_NONE,
0x31,
287,
/* VPMOVZXBDYrr */
},
{ /* 4066 */
MODIFIER_NONE,
0x31,
102,
/* VPMOVZXBDrm */
},
{ /* 4067 */
MODIFIER_NONE,
0x31,
45,
/* VPMOVZXBDrr */
},
{ /* 4068 */
MODIFIER_NONE,
0x32,
369,
/* VPMOVZXBQYrm */
},
{ /* 4069 */
MODIFIER_NONE,
0x32,
287,
/* VPMOVZXBQYrr */
},
{ /* 4070 */
MODIFIER_NONE,
0x32,
102,
/* VPMOVZXBQrm */
},
{ /* 4071 */
MODIFIER_NONE,
0x32,
45,
/* VPMOVZXBQrr */
},
{ /* 4072 */
MODIFIER_NONE,
0x30,
285,
/* VPMOVZXBWYrm */
},
{ /* 4073 */
MODIFIER_NONE,
0x30,
287,
/* VPMOVZXBWYrr */
},
{ /* 4074 */
MODIFIER_NONE,
0x30,
102,
/* VPMOVZXBWrm */
},
{ /* 4075 */
MODIFIER_NONE,
0x30,
45,
/* VPMOVZXBWrr */
},
{ /* 4076 */
MODIFIER_NONE,
0x35,
285,
/* VPMOVZXDQYrm */
},
{ /* 4077 */
MODIFIER_NONE,
0x35,
287,
/* VPMOVZXDQYrr */
},
{ /* 4078 */
MODIFIER_NONE,
0x35,
102,
/* VPMOVZXDQrm */
},
{ /* 4079 */
MODIFIER_NONE,
0x35,
45,
/* VPMOVZXDQrr */
},
{ /* 4080 */
MODIFIER_NONE,
0x33,
285,
/* VPMOVZXWDYrm */
},
{ /* 4081 */
MODIFIER_NONE,
0x33,
287,
/* VPMOVZXWDYrr */
},
{ /* 4082 */
MODIFIER_NONE,
0x33,
102,
/* VPMOVZXWDrm */
},
{ /* 4083 */
MODIFIER_NONE,
0x33,
45,
/* VPMOVZXWDrr */
},
{ /* 4084 */
MODIFIER_NONE,
0x34,
369,
/* VPMOVZXWQYrm */
},
{ /* 4085 */
MODIFIER_NONE,
0x34,
287,
/* VPMOVZXWQYrr */
},
{ /* 4086 */
MODIFIER_NONE,
0x34,
102,
/* VPMOVZXWQrm */
},
{ /* 4087 */
MODIFIER_NONE,
0x34,
45,
/* VPMOVZXWQrr */
},
{ /* 4088 */
MODIFIER_NONE,
0x28,
269,
/* VPMULDQYrm */
},
{ /* 4089 */
MODIFIER_NONE,
0x28,
270,
/* VPMULDQYrr */
},
{ /* 4090 */
MODIFIER_NONE,
0x28,
271,
/* VPMULDQrm */
},
{ /* 4091 */
MODIFIER_NONE,
0x28,
272,
/* VPMULDQrr */
},
{ /* 4092 */
MODIFIER_NONE,
0x0b,
271,
/* VPMULHRSWrm128 */
},
{ /* 4093 */
MODIFIER_NONE,
0x0b,
269,
/* VPMULHRSWrm256 */
},
{ /* 4094 */
MODIFIER_NONE,
0x0b,
272,
/* VPMULHRSWrr128 */
},
{ /* 4095 */
MODIFIER_NONE,
0x0b,
270,
/* VPMULHRSWrr256 */
},
{ /* 4096 */
MODIFIER_NONE,
0xe4,
269,
/* VPMULHUWYrm */
},
{ /* 4097 */
MODIFIER_NONE,
0xe4,
270,
/* VPMULHUWYrr */
},
{ /* 4098 */
MODIFIER_NONE,
0xe4,
271,
/* VPMULHUWrm */
},
{ /* 4099 */
MODIFIER_NONE,
0xe4,
272,
/* VPMULHUWrr */
},
{ /* 4100 */
MODIFIER_NONE,
0xe5,
269,
/* VPMULHWYrm */
},
{ /* 4101 */
MODIFIER_NONE,
0xe5,
270,
/* VPMULHWYrr */
},
{ /* 4102 */
MODIFIER_NONE,
0xe5,
271,
/* VPMULHWrm */
},
{ /* 4103 */
MODIFIER_NONE,
0xe5,
272,
/* VPMULHWrr */
},
{ /* 4104 */
MODIFIER_NONE,
0x40,
269,
/* VPMULLDYrm */
},
{ /* 4105 */
MODIFIER_NONE,
0x40,
270,
/* VPMULLDYrr */
},
{ /* 4106 */
MODIFIER_NONE,
0x40,
271,
/* VPMULLDrm */
},
{ /* 4107 */
MODIFIER_NONE,
0x40,
272,
/* VPMULLDrr */
},
{ /* 4108 */
MODIFIER_NONE,
0xd5,
269,
/* VPMULLWYrm */
},
{ /* 4109 */
MODIFIER_NONE,
0xd5,
270,
/* VPMULLWYrr */
},
{ /* 4110 */
MODIFIER_NONE,
0xd5,
271,
/* VPMULLWrm */
},
{ /* 4111 */
MODIFIER_NONE,
0xd5,
272,
/* VPMULLWrr */
},
{ /* 4112 */
MODIFIER_NONE,
0xf4,
269,
/* VPMULUDQYrm */
},
{ /* 4113 */
MODIFIER_NONE,
0xf4,
270,
/* VPMULUDQYrr */
},
{ /* 4114 */
MODIFIER_NONE,
0xf4,
271,
/* VPMULUDQrm */
},
{ /* 4115 */
MODIFIER_NONE,
0xf4,
272,
/* VPMULUDQrr */
},
{ /* 4116 */
MODIFIER_NONE,
0xeb,
269,
/* VPORYrm */
},
{ /* 4117 */
MODIFIER_NONE,
0xeb,
270,
/* VPORYrr */
},
{ /* 4118 */
MODIFIER_NONE,
0xeb,
271,
/* VPORrm */
},
{ /* 4119 */
MODIFIER_NONE,
0xeb,
272,
/* VPORrr */
},
{ /* 4120 */
MODIFIER_NONE,
0x00,
0,
/* */
},
{ /* 4121 */
MODIFIER_NONE,
0x00,
0,
/* */
},
{ /* 4122 */
MODIFIER_NONE,
0x00,
0,
/* */
},
{ /* 4123 */
MODIFIER_NONE,
0x00,
0,
/* */
},
{ /* 4124 */
MODIFIER_NONE,
0x00,
0,
/* */
},
{ /* 4125 */
MODIFIER_NONE,
0x00,
0,
/* */
},
{ /* 4126 */
MODIFIER_NONE,
0x00,
0,
/* */
},
{ /* 4127 */
MODIFIER_NONE,
0x00,
0,
/* */
},
{ /* 4128 */
MODIFIER_NONE,
0x00,
0,
/* */
},
{ /* 4129 */
MODIFIER_NONE,
0x00,
0,
/* */
},
{ /* 4130 */
MODIFIER_NONE,
0x00,
0,
/* */
},
{ /* 4131 */
MODIFIER_NONE,
0x00,
0,
/* */
},
{ /* 4132 */
MODIFIER_NONE,
0x00,
0,
/* */
},
{ /* 4133 */
MODIFIER_NONE,
0x00,
0,
/* */
},
{ /* 4134 */
MODIFIER_NONE,
0x00,
0,
/* */
},
{ /* 4135 */
MODIFIER_NONE,
0x00,
0,
/* */
},
{ /* 4136 */
MODIFIER_NONE,
0x00,
0,
/* */
},
{ /* 4137 */
MODIFIER_NONE,
0x00,
0,
/* */
},
{ /* 4138 */
MODIFIER_NONE,
0x00,
0,
/* */
},
{ /* 4139 */
MODIFIER_NONE,
0x00,
0,
/* */
},
{ /* 4140 */
MODIFIER_NONE,
0x00,
0,
/* */
},
{ /* 4141 */
MODIFIER_NONE,
0x00,
0,
/* */
},
{ /* 4142 */
MODIFIER_NONE,
0x00,
0,
/* */
},
{ /* 4143 */
MODIFIER_NONE,
0xf6,
269,
/* VPSADBWYrm */
},
{ /* 4144 */
MODIFIER_NONE,
0xf6,
270,
/* VPSADBWYrr */
},
{ /* 4145 */
MODIFIER_NONE,
0xf6,
271,
/* VPSADBWrm */
},
{ /* 4146 */
MODIFIER_NONE,
0xf6,
272,
/* VPSADBWrr */
},
{ /* 4147 */
MODIFIER_NONE,
0x00,
0,
/* */
},
{ /* 4148 */
MODIFIER_NONE,
0x00,
0,
/* */
},
{ /* 4149 */
MODIFIER_NONE,
0x00,
0,
/* */
},
{ /* 4150 */
MODIFIER_NONE,
0x00,
0,
/* */
},
{ /* 4151 */
MODIFIER_NONE,
0x00,
0,
/* */
},
{ /* 4152 */
MODIFIER_NONE,
0x00,
0,
/* */
},
{ /* 4153 */
MODIFIER_NONE,
0x00,
0,
/* */
},
{ /* 4154 */
MODIFIER_NONE,
0x00,
0,
/* */
},
{ /* 4155 */
MODIFIER_NONE,
0x00,
0,
/* */
},
{ /* 4156 */
MODIFIER_NONE,
0x00,
0,
/* */
},
{ /* 4157 */
MODIFIER_NONE,
0x00,
0,
/* */
},
{ /* 4158 */
MODIFIER_NONE,
0x00,
0,
/* */
},
{ /* 4159 */
MODIFIER_NONE,
0x00,
0,
/* */
},
{ /* 4160 */
MODIFIER_NONE,
0x00,
0,
/* */
},
{ /* 4161 */
MODIFIER_NONE,
0x00,
0,
/* */
},
{ /* 4162 */
MODIFIER_NONE,
0x00,
0,
/* */
},
{ /* 4163 */
MODIFIER_NONE,
0x00,
0,
/* */
},
{ /* 4164 */
MODIFIER_NONE,
0x00,
0,
/* */
},
{ /* 4165 */
MODIFIER_NONE,
0x00,
0,
/* */
},
{ /* 4166 */
MODIFIER_NONE,
0x00,
0,
/* */
},
{ /* 4167 */
MODIFIER_NONE,
0x00,
0,
/* */
},
{ /* 4168 */
MODIFIER_NONE,
0x00,
0,
/* */
},
{ /* 4169 */
MODIFIER_NONE,
0x00,
0,
/* */
},
{ /* 4170 */
MODIFIER_NONE,
0x00,
0,
/* */
},
{ /* 4171 */
MODIFIER_NONE,
0x00,
269,
/* VPSHUFBYrm */
},
{ /* 4172 */
MODIFIER_NONE,
0x00,
270,
/* VPSHUFBYrr */
},
{ /* 4173 */
MODIFIER_NONE,
0x00,
271,
/* VPSHUFBrm */
},
{ /* 4174 */
MODIFIER_NONE,
0x00,
272,
/* VPSHUFBrr */
},
{ /* 4175 */
MODIFIER_NONE,
0x70,
376,
/* VPSHUFDYmi */
},
{ /* 4176 */
MODIFIER_NONE,
0x70,
377,
/* VPSHUFDYri */
},
{ /* 4177 */
MODIFIER_NONE,
0x70,
46,
/* VPSHUFDmi */
},
{ /* 4178 */
MODIFIER_NONE,
0x70,
47,
/* VPSHUFDri */
},
{ /* 4179 */
MODIFIER_NONE,
0x70,
376,
/* VPSHUFHWYmi */
},
{ /* 4180 */
MODIFIER_NONE,
0x70,
377,
/* VPSHUFHWYri */
},
{ /* 4181 */
MODIFIER_NONE,
0x70,
46,
/* VPSHUFHWmi */
},
{ /* 4182 */
MODIFIER_NONE,
0x70,
47,
/* VPSHUFHWri */
},
{ /* 4183 */
MODIFIER_NONE,
0x70,
376,
/* VPSHUFLWYmi */
},
{ /* 4184 */
MODIFIER_NONE,
0x70,
377,
/* VPSHUFLWYri */
},
{ /* 4185 */
MODIFIER_NONE,
0x70,
46,
/* VPSHUFLWmi */
},
{ /* 4186 */
MODIFIER_NONE,
0x70,
47,
/* VPSHUFLWri */
},
{ /* 4187 */
MODIFIER_NONE,
0x08,
269,
/* VPSIGNBYrm */
},
{ /* 4188 */
MODIFIER_NONE,
0x08,
270,
/* VPSIGNBYrr */
},
{ /* 4189 */
MODIFIER_NONE,
0x08,
271,
/* VPSIGNBrm */
},
{ /* 4190 */
MODIFIER_NONE,
0x08,
272,
/* VPSIGNBrr */
},
{ /* 4191 */
MODIFIER_NONE,
0x0a,
269,
/* VPSIGNDYrm */
},
{ /* 4192 */
MODIFIER_NONE,
0x0a,
270,
/* VPSIGNDYrr */
},
{ /* 4193 */
MODIFIER_NONE,
0x0a,
271,
/* VPSIGNDrm */
},
{ /* 4194 */
MODIFIER_NONE,
0x0a,
272,
/* VPSIGNDrr */
},
{ /* 4195 */
MODIFIER_NONE,
0x09,
269,
/* VPSIGNWYrm */
},
{ /* 4196 */
MODIFIER_NONE,
0x09,
270,
/* VPSIGNWYrr */
},
{ /* 4197 */
MODIFIER_NONE,
0x09,
271,
/* VPSIGNWrm */
},
{ /* 4198 */
MODIFIER_NONE,
0x09,
272,
/* VPSIGNWrr */
},
{ /* 4199 */
MODIFIER_NONE,
0x73,
382,
/* VPSLLDQYri */
},
{ /* 4200 */
MODIFIER_NONE,
0x73,
383,
/* VPSLLDQri */
},
{ /* 4201 */
MODIFIER_NONE,
0x72,
382,
/* VPSLLDYri */
},
{ /* 4202 */
MODIFIER_NONE,
0xf2,
384,
/* VPSLLDYrm */
},
{ /* 4203 */
MODIFIER_NONE,
0xf2,
385,
/* VPSLLDYrr */
},
{ /* 4204 */
MODIFIER_NONE,
0x72,
383,
/* VPSLLDri */
},
{ /* 4205 */
MODIFIER_NONE,
0xf2,
271,
/* VPSLLDrm */
},
{ /* 4206 */
MODIFIER_NONE,
0xf2,
272,
/* VPSLLDrr */
},
{ /* 4207 */
MODIFIER_NONE,
0x73,
382,
/* VPSLLQYri */
},
{ /* 4208 */
MODIFIER_NONE,
0xf3,
384,
/* VPSLLQYrm */
},
{ /* 4209 */
MODIFIER_NONE,
0xf3,
385,
/* VPSLLQYrr */
},
{ /* 4210 */
MODIFIER_NONE,
0x73,
383,
/* VPSLLQri */
},
{ /* 4211 */
MODIFIER_NONE,
0xf3,
271,
/* VPSLLQrm */
},
{ /* 4212 */
MODIFIER_NONE,
0xf3,
272,
/* VPSLLQrr */
},
{ /* 4213 */
MODIFIER_NONE,
0x47,
269,
/* VPSLLVDYrm */
},
{ /* 4214 */
MODIFIER_NONE,
0x47,
270,
/* VPSLLVDYrr */
},
{ /* 4215 */
MODIFIER_NONE,
0x47,
271,
/* VPSLLVDrm */
},
{ /* 4216 */
MODIFIER_NONE,
0x47,
272,
/* VPSLLVDrr */
},
{ /* 4217 */
MODIFIER_NONE,
0x47,
269,
/* VPSLLVQYrm */
},
{ /* 4218 */
MODIFIER_NONE,
0x47,
270,
/* VPSLLVQYrr */
},
{ /* 4219 */
MODIFIER_NONE,
0x47,
271,
/* VPSLLVQrm */
},
{ /* 4220 */
MODIFIER_NONE,
0x47,
272,
/* VPSLLVQrr */
},
{ /* 4221 */
MODIFIER_NONE,
0x71,
382,
/* VPSLLWYri */
},
{ /* 4222 */
MODIFIER_NONE,
0xf1,
384,
/* VPSLLWYrm */
},
{ /* 4223 */
MODIFIER_NONE,
0xf1,
385,
/* VPSLLWYrr */
},
{ /* 4224 */
MODIFIER_NONE,
0x71,
383,
/* VPSLLWri */
},
{ /* 4225 */
MODIFIER_NONE,
0xf1,
271,
/* VPSLLWrm */
},
{ /* 4226 */
MODIFIER_NONE,
0xf1,
272,
/* VPSLLWrr */
},
{ /* 4227 */
MODIFIER_NONE,
0x72,
382,
/* VPSRADYri */
},
{ /* 4228 */
MODIFIER_NONE,
0xe2,
384,
/* VPSRADYrm */
},
{ /* 4229 */
MODIFIER_NONE,
0xe2,
385,
/* VPSRADYrr */
},
{ /* 4230 */
MODIFIER_NONE,
0x72,
383,
/* VPSRADri */
},
{ /* 4231 */
MODIFIER_NONE,
0xe2,
271,
/* VPSRADrm */
},
{ /* 4232 */
MODIFIER_NONE,
0xe2,
272,
/* VPSRADrr */
},
{ /* 4233 */
MODIFIER_NONE,
0x46,
269,
/* VPSRAVDYrm */
},
{ /* 4234 */
MODIFIER_NONE,
0x46,
270,
/* VPSRAVDYrr */
},
{ /* 4235 */
MODIFIER_NONE,
0x46,
271,
/* VPSRAVDrm */
},
{ /* 4236 */
MODIFIER_NONE,
0x46,
272,
/* VPSRAVDrr */
},
{ /* 4237 */
MODIFIER_NONE,
0x71,
382,
/* VPSRAWYri */
},
{ /* 4238 */
MODIFIER_NONE,
0xe1,
384,
/* VPSRAWYrm */
},
{ /* 4239 */
MODIFIER_NONE,
0xe1,
385,
/* VPSRAWYrr */
},
{ /* 4240 */
MODIFIER_NONE,
0x71,
383,
/* VPSRAWri */
},
{ /* 4241 */
MODIFIER_NONE,
0xe1,
271,
/* VPSRAWrm */
},
{ /* 4242 */
MODIFIER_NONE,
0xe1,
272,
/* VPSRAWrr */
},
{ /* 4243 */
MODIFIER_NONE,
0x73,
382,
/* VPSRLDQYri */
},
{ /* 4244 */
MODIFIER_NONE,
0x73,
383,
/* VPSRLDQri */
},
{ /* 4245 */
MODIFIER_NONE,
0x72,
382,
/* VPSRLDYri */
},
{ /* 4246 */
MODIFIER_NONE,
0xd2,
384,
/* VPSRLDYrm */
},
{ /* 4247 */
MODIFIER_NONE,
0xd2,
385,
/* VPSRLDYrr */
},
{ /* 4248 */
MODIFIER_NONE,
0x72,
383,
/* VPSRLDri */
},
{ /* 4249 */
MODIFIER_NONE,
0xd2,
271,
/* VPSRLDrm */
},
{ /* 4250 */
MODIFIER_NONE,
0xd2,
272,
/* VPSRLDrr */
},
{ /* 4251 */
MODIFIER_NONE,
0x73,
382,
/* VPSRLQYri */
},
{ /* 4252 */
MODIFIER_NONE,
0xd3,
384,
/* VPSRLQYrm */
},
{ /* 4253 */
MODIFIER_NONE,
0xd3,
385,
/* VPSRLQYrr */
},
{ /* 4254 */
MODIFIER_NONE,
0x73,
383,
/* VPSRLQri */
},
{ /* 4255 */
MODIFIER_NONE,
0xd3,
271,
/* VPSRLQrm */
},
{ /* 4256 */
MODIFIER_NONE,
0xd3,
272,
/* VPSRLQrr */
},
{ /* 4257 */
MODIFIER_NONE,
0x45,
269,
/* VPSRLVDYrm */
},
{ /* 4258 */
MODIFIER_NONE,
0x45,
270,
/* VPSRLVDYrr */
},
{ /* 4259 */
MODIFIER_NONE,
0x45,
271,
/* VPSRLVDrm */
},
{ /* 4260 */
MODIFIER_NONE,
0x45,
272,
/* VPSRLVDrr */
},
{ /* 4261 */
MODIFIER_NONE,
0x45,
269,
/* VPSRLVQYrm */
},
{ /* 4262 */
MODIFIER_NONE,
0x45,
270,
/* VPSRLVQYrr */
},
{ /* 4263 */
MODIFIER_NONE,
0x45,
271,
/* VPSRLVQrm */
},
{ /* 4264 */
MODIFIER_NONE,
0x45,
272,
/* VPSRLVQrr */
},
{ /* 4265 */
MODIFIER_NONE,
0x71,
382,
/* VPSRLWYri */
},
{ /* 4266 */
MODIFIER_NONE,
0xd1,
384,
/* VPSRLWYrm */
},
{ /* 4267 */
MODIFIER_NONE,
0xd1,
385,
/* VPSRLWYrr */
},
{ /* 4268 */
MODIFIER_NONE,
0x71,
383,
/* VPSRLWri */
},
{ /* 4269 */
MODIFIER_NONE,
0xd1,
271,
/* VPSRLWrm */
},
{ /* 4270 */
MODIFIER_NONE,
0xd1,
272,
/* VPSRLWrr */
},
{ /* 4271 */
MODIFIER_NONE,
0xf8,
269,
/* VPSUBBYrm */
},
{ /* 4272 */
MODIFIER_NONE,
0xf8,
270,
/* VPSUBBYrr */
},
{ /* 4273 */
MODIFIER_NONE,
0xf8,
271,
/* VPSUBBrm */
},
{ /* 4274 */
MODIFIER_NONE,
0xf8,
272,
/* VPSUBBrr */
},
{ /* 4275 */
MODIFIER_NONE,
0xfa,
269,
/* VPSUBDYrm */
},
{ /* 4276 */
MODIFIER_NONE,
0xfa,
270,
/* VPSUBDYrr */
},
{ /* 4277 */
MODIFIER_NONE,
0xfa,
271,
/* VPSUBDrm */
},
{ /* 4278 */
MODIFIER_NONE,
0xfa,
272,
/* VPSUBDrr */
},
{ /* 4279 */
MODIFIER_NONE,
0xfb,
269,
/* VPSUBQYrm */
},
{ /* 4280 */
MODIFIER_NONE,
0xfb,
270,
/* VPSUBQYrr */
},
{ /* 4281 */
MODIFIER_NONE,
0xfb,
271,
/* VPSUBQrm */
},
{ /* 4282 */
MODIFIER_NONE,
0xfb,
272,
/* VPSUBQrr */
},
{ /* 4283 */
MODIFIER_NONE,
0xe8,
269,
/* VPSUBSBYrm */
},
{ /* 4284 */
MODIFIER_NONE,
0xe8,
270,
/* VPSUBSBYrr */
},
{ /* 4285 */
MODIFIER_NONE,
0xe8,
271,
/* VPSUBSBrm */
},
{ /* 4286 */
MODIFIER_NONE,
0xe8,
272,
/* VPSUBSBrr */
},
{ /* 4287 */
MODIFIER_NONE,
0xe9,
269,
/* VPSUBSWYrm */
},
{ /* 4288 */
MODIFIER_NONE,
0xe9,
270,
/* VPSUBSWYrr */
},
{ /* 4289 */
MODIFIER_NONE,
0xe9,
271,
/* VPSUBSWrm */
},
{ /* 4290 */
MODIFIER_NONE,
0xe9,
272,
/* VPSUBSWrr */
},
{ /* 4291 */
MODIFIER_NONE,
0xd8,
269,
/* VPSUBUSBYrm */
},
{ /* 4292 */
MODIFIER_NONE,
0xd8,
270,
/* VPSUBUSBYrr */
},
{ /* 4293 */
MODIFIER_NONE,
0xd8,
271,
/* VPSUBUSBrm */
},
{ /* 4294 */
MODIFIER_NONE,
0xd8,
272,
/* VPSUBUSBrr */
},
{ /* 4295 */
MODIFIER_NONE,
0xd9,
269,
/* VPSUBUSWYrm */
},
{ /* 4296 */
MODIFIER_NONE,
0xd9,
270,
/* VPSUBUSWYrr */
},
{ /* 4297 */
MODIFIER_NONE,
0xd9,
271,
/* VPSUBUSWrm */
},
{ /* 4298 */
MODIFIER_NONE,
0xd9,
272,
/* VPSUBUSWrr */
},
{ /* 4299 */
MODIFIER_NONE,
0xf9,
269,
/* VPSUBWYrm */
},
{ /* 4300 */
MODIFIER_NONE,
0xf9,
270,
/* VPSUBWYrr */
},
{ /* 4301 */
MODIFIER_NONE,
0xf9,
271,
/* VPSUBWrm */
},
{ /* 4302 */
MODIFIER_NONE,
0xf9,
272,
/* VPSUBWrr */
},
{ /* 4303 */
MODIFIER_NONE,
0x17,
306,
/* VPTESTYrm */
},
{ /* 4304 */
MODIFIER_NONE,
0x17,
307,
/* VPTESTYrr */
},
{ /* 4305 */
MODIFIER_NONE,
0x17,
44,
/* VPTESTrm */
},
{ /* 4306 */
MODIFIER_NONE,
0x17,
45,
/* VPTESTrr */
},
{ /* 4307 */
MODIFIER_NONE,
0x68,
269,
/* VPUNPCKHBWYrm */
},
{ /* 4308 */
MODIFIER_NONE,
0x68,
270,
/* VPUNPCKHBWYrr */
},
{ /* 4309 */
MODIFIER_NONE,
0x68,
271,
/* VPUNPCKHBWrm */
},
{ /* 4310 */
MODIFIER_NONE,
0x68,
272,
/* VPUNPCKHBWrr */
},
{ /* 4311 */
MODIFIER_NONE,
0x6a,
269,
/* VPUNPCKHDQYrm */
},
{ /* 4312 */
MODIFIER_NONE,
0x6a,
270,
/* VPUNPCKHDQYrr */
},
{ /* 4313 */
MODIFIER_NONE,
0x6a,
271,
/* VPUNPCKHDQrm */
},
{ /* 4314 */
MODIFIER_NONE,
0x6a,
272,
/* VPUNPCKHDQrr */
},
{ /* 4315 */
MODIFIER_NONE,
0x6d,
269,
/* VPUNPCKHQDQYrm */
},
{ /* 4316 */
MODIFIER_NONE,
0x6d,
270,
/* VPUNPCKHQDQYrr */
},
{ /* 4317 */
MODIFIER_NONE,
0x6d,
271,
/* VPUNPCKHQDQrm */
},
{ /* 4318 */
MODIFIER_NONE,
0x6d,
272,
/* VPUNPCKHQDQrr */
},
{ /* 4319 */
MODIFIER_NONE,
0x69,
269,
/* VPUNPCKHWDYrm */
},
{ /* 4320 */
MODIFIER_NONE,
0x69,
270,
/* VPUNPCKHWDYrr */
},
{ /* 4321 */
MODIFIER_NONE,
0x69,
271,
/* VPUNPCKHWDrm */
},
{ /* 4322 */
MODIFIER_NONE,
0x69,
272,
/* VPUNPCKHWDrr */
},
{ /* 4323 */
MODIFIER_NONE,
0x60,
269,
/* VPUNPCKLBWYrm */
},
{ /* 4324 */
MODIFIER_NONE,
0x60,
270,
/* VPUNPCKLBWYrr */
},
{ /* 4325 */
MODIFIER_NONE,
0x60,
271,
/* VPUNPCKLBWrm */
},
{ /* 4326 */
MODIFIER_NONE,
0x60,
272,
/* VPUNPCKLBWrr */
},
{ /* 4327 */
MODIFIER_NONE,
0x62,
269,
/* VPUNPCKLDQYrm */
},
{ /* 4328 */
MODIFIER_NONE,
0x62,
270,
/* VPUNPCKLDQYrr */
},
{ /* 4329 */
MODIFIER_NONE,
0x62,
271,
/* VPUNPCKLDQrm */
},
{ /* 4330 */
MODIFIER_NONE,
0x62,
272,
/* VPUNPCKLDQrr */
},
{ /* 4331 */
MODIFIER_NONE,
0x6c,
269,
/* VPUNPCKLQDQYrm */
},
{ /* 4332 */
MODIFIER_NONE,
0x6c,
270,
/* VPUNPCKLQDQYrr */
},
{ /* 4333 */
MODIFIER_NONE,
0x6c,
271,
/* VPUNPCKLQDQrm */
},
{ /* 4334 */
MODIFIER_NONE,
0x6c,
272,
/* VPUNPCKLQDQrr */
},
{ /* 4335 */
MODIFIER_NONE,
0x61,
269,
/* VPUNPCKLWDYrm */
},
{ /* 4336 */
MODIFIER_NONE,
0x61,
270,
/* VPUNPCKLWDYrr */
},
{ /* 4337 */
MODIFIER_NONE,
0x61,
271,
/* VPUNPCKLWDrm */
},
{ /* 4338 */
MODIFIER_NONE,
0x61,
272,
/* VPUNPCKLWDrr */
},
{ /* 4339 */
MODIFIER_NONE,
0xef,
269,
/* VPXORYrm */
},
{ /* 4340 */
MODIFIER_NONE,
0xef,
270,
/* VPXORYrr */
},
{ /* 4341 */
MODIFIER_NONE,
0xef,
271,
/* VPXORrm */
},
{ /* 4342 */
MODIFIER_NONE,
0xef,
272,
/* VPXORrr */
},
{ /* 4343 */
MODIFIER_NONE,
0x53,
306,
/* VRCPPSYm */
},
{ /* 4344 */
MODIFIER_NONE,
0x00,
0,
/* VRCPPSYm_Int */
},
{ /* 4345 */
MODIFIER_NONE,
0x53,
307,
/* VRCPPSYr */
},
{ /* 4346 */
MODIFIER_NONE,
0x00,
0,
/* VRCPPSYr_Int */
},
{ /* 4347 */
MODIFIER_NONE,
0x53,
44,
/* VRCPPSm */
},
{ /* 4348 */
MODIFIER_NONE,
0x00,
0,
/* VRCPPSm_Int */
},
{ /* 4349 */
MODIFIER_NONE,
0x53,
45,
/* VRCPPSr */
},
{ /* 4350 */
MODIFIER_NONE,
0x00,
0,
/* VRCPPSr_Int */
},
{ /* 4351 */
MODIFIER_NONE,
0x53,
275,
/* VRCPSSm */
},
{ /* 4352 */
MODIFIER_NONE,
0x00,
0,
/* VRCPSSm_Int */
},
{ /* 4353 */
MODIFIER_NONE,
0x53,
276,
/* VRCPSSr */
},
{ /* 4354 */
MODIFIER_NONE,
0x09,
258,
/* VROUNDPDm */
},
{ /* 4355 */
MODIFIER_NONE,
0x09,
259,
/* VROUNDPDr */
},
{ /* 4356 */
MODIFIER_NONE,
0x08,
258,
/* VROUNDPSm */
},
{ /* 4357 */
MODIFIER_NONE,
0x08,
259,
/* VROUNDPSr */
},
{ /* 4358 */
MODIFIER_NONE,
0x0b,
386,
/* VROUNDSDm */
},
{ /* 4359 */
MODIFIER_NONE,
0x0b,
387,
/* VROUNDSDr */
},
{ /* 4360 */
MODIFIER_NONE,
0x00,
0,
/* VROUNDSDr_Int */
},
{ /* 4361 */
MODIFIER_NONE,
0x0a,
354,
/* VROUNDSSm */
},
{ /* 4362 */
MODIFIER_NONE,
0x0a,
388,
/* VROUNDSSr */
},
{ /* 4363 */
MODIFIER_NONE,
0x00,
0,
/* VROUNDSSr_Int */
},
{ /* 4364 */
MODIFIER_NONE,
0x09,
389,
/* VROUNDYPDm */
},
{ /* 4365 */
MODIFIER_NONE,
0x09,
390,
/* VROUNDYPDr */
},
{ /* 4366 */
MODIFIER_NONE,
0x08,
389,
/* VROUNDYPSm */
},
{ /* 4367 */
MODIFIER_NONE,
0x08,
390,
/* VROUNDYPSr */
},
{ /* 4368 */
MODIFIER_NONE,
0x52,
306,
/* VRSQRTPSYm */
},
{ /* 4369 */
MODIFIER_NONE,
0x00,
0,
/* VRSQRTPSYm_Int */
},
{ /* 4370 */
MODIFIER_NONE,
0x52,
307,
/* VRSQRTPSYr */
},
{ /* 4371 */
MODIFIER_NONE,
0x00,
0,
/* VRSQRTPSYr_Int */
},
{ /* 4372 */
MODIFIER_NONE,
0x52,
44,
/* VRSQRTPSm */
},
{ /* 4373 */
MODIFIER_NONE,
0x00,
0,
/* VRSQRTPSm_Int */
},
{ /* 4374 */
MODIFIER_NONE,
0x52,
45,
/* VRSQRTPSr */
},
{ /* 4375 */
MODIFIER_NONE,
0x00,
0,
/* VRSQRTPSr_Int */
},
{ /* 4376 */
MODIFIER_NONE,
0x52,
275,
/* VRSQRTSSm */
},
{ /* 4377 */
MODIFIER_NONE,
0x00,
0,
/* VRSQRTSSm_Int */
},
{ /* 4378 */
MODIFIER_NONE,
0x52,
276,
/* VRSQRTSSr */
},
{ /* 4379 */
MODIFIER_NONE,
0xc6,
291,
/* VSHUFPDYrmi */
},
{ /* 4380 */
MODIFIER_NONE,
0xc6,
293,
/* VSHUFPDYrri */
},
{ /* 4381 */
MODIFIER_NONE,
0xc6,
295,
/* VSHUFPDrmi */
},
{ /* 4382 */
MODIFIER_NONE,
0xc6,
297,
/* VSHUFPDrri */
},
{ /* 4383 */
MODIFIER_NONE,
0xc6,
291,
/* VSHUFPSYrmi */
},
{ /* 4384 */
MODIFIER_NONE,
0xc6,
293,
/* VSHUFPSYrri */
},
{ /* 4385 */
MODIFIER_NONE,
0xc6,
295,
/* VSHUFPSrmi */
},
{ /* 4386 */
MODIFIER_NONE,
0xc6,
297,
/* VSHUFPSrri */
},
{ /* 4387 */
MODIFIER_NONE,
0x51,
306,
/* VSQRTPDYm */
},
{ /* 4388 */
MODIFIER_NONE,
0x51,
307,
/* VSQRTPDYr */
},
{ /* 4389 */
MODIFIER_NONE,
0x51,
44,
/* VSQRTPDm */
},
{ /* 4390 */
MODIFIER_NONE,
0x51,
45,
/* VSQRTPDr */
},
{ /* 4391 */
MODIFIER_NONE,
0x51,
306,
/* VSQRTPSYm */
},
{ /* 4392 */
MODIFIER_NONE,
0x51,
307,
/* VSQRTPSYr */
},
{ /* 4393 */
MODIFIER_NONE,
0x51,
44,
/* VSQRTPSm */
},
{ /* 4394 */
MODIFIER_NONE,
0x51,
45,
/* VSQRTPSr */
},
{ /* 4395 */
MODIFIER_NONE,
0x51,
273,
/* VSQRTSDm */
},
{ /* 4396 */
MODIFIER_NONE,
0x00,
0,
/* VSQRTSDm_Int */
},
{ /* 4397 */
MODIFIER_NONE,
0x51,
274,
/* VSQRTSDr */
},
{ /* 4398 */
MODIFIER_NONE,
0x51,
275,
/* VSQRTSSm */
},
{ /* 4399 */
MODIFIER_NONE,
0x00,
0,
/* VSQRTSSm_Int */
},
{ /* 4400 */
MODIFIER_NONE,
0x51,
276,
/* VSQRTSSr */
},
{ /* 4401 */
MODIFIER_NONE,
0xae,
40,
/* VSTMXCSR */
},
{ /* 4402 */
MODIFIER_NONE,
0x5c,
269,
/* VSUBPDYrm */
},
{ /* 4403 */
MODIFIER_NONE,
0x5c,
270,
/* VSUBPDYrr */
},
{ /* 4404 */
MODIFIER_NONE,
0x5c,
271,
/* VSUBPDrm */
},
{ /* 4405 */
MODIFIER_NONE,
0x5c,
272,
/* VSUBPDrr */
},
{ /* 4406 */
MODIFIER_NONE,
0x5c,
269,
/* VSUBPSYrm */
},
{ /* 4407 */
MODIFIER_NONE,
0x5c,
270,
/* VSUBPSYrr */
},
{ /* 4408 */
MODIFIER_NONE,
0x5c,
271,
/* VSUBPSrm */
},
{ /* 4409 */
MODIFIER_NONE,
0x5c,
272,
/* VSUBPSrr */
},
{ /* 4410 */
MODIFIER_NONE,
0x5c,
273,
/* VSUBSDrm */
},
{ /* 4411 */
MODIFIER_NONE,
0x00,
0,
/* VSUBSDrm_Int */
},
{ /* 4412 */
MODIFIER_NONE,
0x5c,
274,
/* VSUBSDrr */
},
{ /* 4413 */
MODIFIER_NONE,
0x00,
0,
/* VSUBSDrr_Int */
},
{ /* 4414 */
MODIFIER_NONE,
0x5c,
275,
/* VSUBSSrm */
},
{ /* 4415 */
MODIFIER_NONE,
0x00,
0,
/* VSUBSSrm_Int */
},
{ /* 4416 */
MODIFIER_NONE,
0x5c,
276,
/* VSUBSSrr */
},
{ /* 4417 */
MODIFIER_NONE,
0x00,
0,
/* VSUBSSrr_Int */
},
{ /* 4418 */
MODIFIER_NONE,
0x0f,
306,
/* VTESTPDYrm */
},
{ /* 4419 */
MODIFIER_NONE,
0x0f,
307,
/* VTESTPDYrr */
},
{ /* 4420 */
MODIFIER_NONE,
0x0f,
44,
/* VTESTPDrm */
},
{ /* 4421 */
MODIFIER_NONE,
0x0f,
45,
/* VTESTPDrr */
},
{ /* 4422 */
MODIFIER_NONE,
0x0e,
306,
/* VTESTPSYrm */
},
{ /* 4423 */
MODIFIER_NONE,
0x0e,
307,
/* VTESTPSYrr */
},
{ /* 4424 */
MODIFIER_NONE,
0x0e,
44,
/* VTESTPSrm */
},
{ /* 4425 */
MODIFIER_NONE,
0x0e,
45,
/* VTESTPSrr */
},
{ /* 4426 */
MODIFIER_NONE,
0x2e,
225,
/* VUCOMISDrm */
},
{ /* 4427 */
MODIFIER_NONE,
0x2e,
141,
/* VUCOMISDrr */
},
{ /* 4428 */
MODIFIER_NONE,
0x2e,
229,
/* VUCOMISSrm */
},
{ /* 4429 */
MODIFIER_NONE,
0x2e,
143,
/* VUCOMISSrr */
},
{ /* 4430 */
MODIFIER_NONE,
0x15,
269,
/* VUNPCKHPDYrm */
},
{ /* 4431 */
MODIFIER_NONE,
0x15,
270,
/* VUNPCKHPDYrr */
},
{ /* 4432 */
MODIFIER_NONE,
0x15,
271,
/* VUNPCKHPDrm */
},
{ /* 4433 */
MODIFIER_NONE,
0x15,
272,
/* VUNPCKHPDrr */
},
{ /* 4434 */
MODIFIER_NONE,
0x15,
269,
/* VUNPCKHPSYrm */
},
{ /* 4435 */
MODIFIER_NONE,
0x15,
270,
/* VUNPCKHPSYrr */
},
{ /* 4436 */
MODIFIER_NONE,
0x15,
271,
/* VUNPCKHPSrm */
},
{ /* 4437 */
MODIFIER_NONE,
0x15,
272,
/* VUNPCKHPSrr */
},
{ /* 4438 */
MODIFIER_NONE,
0x14,
269,
/* VUNPCKLPDYrm */
},
{ /* 4439 */
MODIFIER_NONE,
0x14,
270,
/* VUNPCKLPDYrr */
},
{ /* 4440 */
MODIFIER_NONE,
0x14,
271,
/* VUNPCKLPDrm */
},
{ /* 4441 */
MODIFIER_NONE,
0x14,
272,
/* VUNPCKLPDrr */
},
{ /* 4442 */
MODIFIER_NONE,
0x14,
269,
/* VUNPCKLPSYrm */
},
{ /* 4443 */
MODIFIER_NONE,
0x14,
270,
/* VUNPCKLPSYrr */
},
{ /* 4444 */
MODIFIER_NONE,
0x14,
271,
/* VUNPCKLPSrm */
},
{ /* 4445 */
MODIFIER_NONE,
0x14,
272,
/* VUNPCKLPSrr */
},
{ /* 4446 */
MODIFIER_NONE,
0x57,
269,
/* VXORPDYrm */
},
{ /* 4447 */
MODIFIER_NONE,
0x57,
270,
/* VXORPDYrr */
},
{ /* 4448 */
MODIFIER_NONE,
0x57,
271,
/* VXORPDrm */
},
{ /* 4449 */
MODIFIER_NONE,
0x57,
272,
/* VXORPDrr */
},
{ /* 4450 */
MODIFIER_NONE,
0x57,
269,
/* VXORPSYrm */
},
{ /* 4451 */
MODIFIER_NONE,
0x57,
270,
/* VXORPSYrr */
},
{ /* 4452 */
MODIFIER_NONE,
0x57,
271,
/* VXORPSrm */
},
{ /* 4453 */
MODIFIER_NONE,
0x57,
272,
/* VXORPSrr */
},
{ /* 4454 */
MODIFIER_NONE,
0x77,
0,
/* VZEROALL */
},
{ /* 4455 */
MODIFIER_NONE,
0x77,
0,
/* VZEROUPPER */
},
{ /* 4456 */
MODIFIER_NONE,
0x00,
0,
/* V_SET0 */
},
{ /* 4457 */
MODIFIER_NONE,
0x00,
0,
/* V_SETALLONES */
},
{ /* 4458 */
MODIFIER_NONE,
0x00,
0,
/* W64ALLOCA */
},
{ /* 4459 */
MODIFIER_NONE,
0x9b,
0,
/* WAIT */
},
{ /* 4460 */
MODIFIER_NONE,
0x09,
0,
/* WBINVD */
},
{ /* 4461 */
MODIFIER_NONE,
0x00,
0,
/* WIN_ALLOCA */
},
{ /* 4462 */
MODIFIER_NONE,
0x00,
0,
/* WIN_FTOL_32 */
},
{ /* 4463 */
MODIFIER_NONE,
0x00,
0,
/* WIN_FTOL_64 */
},
{ /* 4464 */
MODIFIER_NONE,
0xae,
71,
/* WRFSBASE */
},
{ /* 4465 */
MODIFIER_NONE,
0xae,
73,
/* WRFSBASE64 */
},
{ /* 4466 */
MODIFIER_NONE,
0xae,
71,
/* WRGSBASE */
},
{ /* 4467 */
MODIFIER_NONE,
0xae,
73,
/* WRGSBASE64 */
},
{ /* 4468 */
MODIFIER_NONE,
0x30,
0,
/* WRMSR */
},
{ /* 4469 */
MODIFIER_NONE,
0xc6,
1,
/* XABORT */
},
{ /* 4470 */
MODIFIER_NONE,
0xc1,
5,
/* XADD16rm */
},
{ /* 4471 */
MODIFIER_NONE,
0xc1,
67,
/* XADD16rr */
},
{ /* 4472 */
MODIFIER_NONE,
0xc1,
5,
/* XADD32rm */
},
{ /* 4473 */
MODIFIER_NONE,
0xc1,
67,
/* XADD32rr */
},
{ /* 4474 */
MODIFIER_NONE,
0xc1,
16,
/* XADD64rm */
},
{ /* 4475 */
MODIFIER_NONE,
0xc1,
70,
/* XADD64rr */
},
{ /* 4476 */
MODIFIER_NONE,
0xc0,
23,
/* XADD8rm */
},
{ /* 4477 */
MODIFIER_NONE,
0xc0,
80,
/* XADD8rr */
},
{ /* 4478 */
MODIFIER_NONE,
0x00,
0,
/* XBEGIN */
},
{ /* 4479 */
MODIFIER_NONE,
0xc7,
159,
/* XBEGIN_4 */
},
{ /* 4480 */
MODIFIER_OPCODE,
0x90,
246,
/* XCHG16ar */
},
{ /* 4481 */
MODIFIER_NONE,
0x87,
8,
/* XCHG16rm */
},
{ /* 4482 */
MODIFIER_NONE,
0x87,
10,
/* XCHG16rr */
},
{ /* 4483 */
MODIFIER_OPCODE,
0x90,
246,
/* XCHG32ar */
},
{ /* 4484 */
MODIFIER_OPCODE,
0x90,
246,
/* XCHG32ar64 */
},
{ /* 4485 */
MODIFIER_NONE,
0x87,
8,
/* XCHG32rm */
},
{ /* 4486 */
MODIFIER_NONE,
0x87,
10,
/* XCHG32rr */
},
{ /* 4487 */
MODIFIER_OPCODE,
0x90,
247,
/* XCHG64ar */
},
{ /* 4488 */
MODIFIER_NONE,
0x87,
19,
/* XCHG64rm */
},
{ /* 4489 */
MODIFIER_NONE,
0x87,
21,
/* XCHG64rr */
},
{ /* 4490 */
MODIFIER_NONE,
0x86,
25,
/* XCHG8rm */
},
{ /* 4491 */
MODIFIER_NONE,
0x86,
27,
/* XCHG8rr */
},
{ /* 4492 */
MODIFIER_MODRM,
0xc8,
41,
/* XCH_F */
},
{ /* 4493 */
MODIFIER_NONE,
0xd0,
0,
/* XCRYPTCBC */
},
{ /* 4494 */
MODIFIER_NONE,
0xe0,
0,
/* XCRYPTCFB */
},
{ /* 4495 */
MODIFIER_NONE,
0xd8,
0,
/* XCRYPTCTR */
},
{ /* 4496 */
MODIFIER_NONE,
0xc8,
0,
/* XCRYPTECB */
},
{ /* 4497 */
MODIFIER_NONE,
0xe8,
0,
/* XCRYPTOFB */
},
{ /* 4498 */
MODIFIER_NONE,
0x01,
0,
/* XEND */
},
{ /* 4499 */
MODIFIER_NONE,
0x01,
0,
/* XGETBV */
},
{ /* 4500 */
MODIFIER_NONE,
0xd7,
0,
/* XLAT */
},
{ /* 4501 */
MODIFIER_NONE,
0x35,
2,
/* XOR16i16 */
},
{ /* 4502 */
MODIFIER_NONE,
0x81,
3,
/* XOR16mi */
},
{ /* 4503 */
MODIFIER_NONE,
0x83,
4,
/* XOR16mi8 */
},
{ /* 4504 */
MODIFIER_NONE,
0x31,
5,
/* XOR16mr */
},
{ /* 4505 */
MODIFIER_NONE,
0x81,
6,
/* XOR16ri */
},
{ /* 4506 */
MODIFIER_NONE,
0x83,
7,
/* XOR16ri8 */
},
{ /* 4507 */
MODIFIER_NONE,
0x33,
8,
/* XOR16rm */
},
{ /* 4508 */
MODIFIER_NONE,
0x31,
9,
/* XOR16rr */
},
{ /* 4509 */
MODIFIER_NONE,
0x33,
10,
/* XOR16rr_REV */
},
{ /* 4510 */
MODIFIER_NONE,
0x35,
2,
/* XOR32i32 */
},
{ /* 4511 */
MODIFIER_NONE,
0x81,
3,
/* XOR32mi */
},
{ /* 4512 */
MODIFIER_NONE,
0x83,
11,
/* XOR32mi8 */
},
{ /* 4513 */
MODIFIER_NONE,
0x31,
5,
/* XOR32mr */
},
{ /* 4514 */
MODIFIER_NONE,
0x81,
6,
/* XOR32ri */
},
{ /* 4515 */
MODIFIER_NONE,
0x83,
12,
/* XOR32ri8 */
},
{ /* 4516 */
MODIFIER_NONE,
0x33,
8,
/* XOR32rm */
},
{ /* 4517 */
MODIFIER_NONE,
0x31,
9,
/* XOR32rr */
},
{ /* 4518 */
MODIFIER_NONE,
0x33,
10,
/* XOR32rr_REV */
},
{ /* 4519 */
MODIFIER_NONE,
0x35,
13,
/* XOR64i32 */
},
{ /* 4520 */
MODIFIER_NONE,
0x81,
14,
/* XOR64mi32 */
},
{ /* 4521 */
MODIFIER_NONE,
0x83,
15,
/* XOR64mi8 */
},
{ /* 4522 */
MODIFIER_NONE,
0x31,
16,
/* XOR64mr */
},
{ /* 4523 */
MODIFIER_NONE,
0x81,
17,
/* XOR64ri32 */
},
{ /* 4524 */
MODIFIER_NONE,
0x83,
18,
/* XOR64ri8 */
},
{ /* 4525 */
MODIFIER_NONE,
0x33,
19,
/* XOR64rm */
},
{ /* 4526 */
MODIFIER_NONE,
0x31,
20,
/* XOR64rr */
},
{ /* 4527 */
MODIFIER_NONE,
0x33,
21,
/* XOR64rr_REV */
},
{ /* 4528 */
MODIFIER_NONE,
0x34,
1,
/* XOR8i8 */
},
{ /* 4529 */
MODIFIER_NONE,
0x80,
22,
/* XOR8mi */
},
{ /* 4530 */
MODIFIER_NONE,
0x30,
23,
/* XOR8mr */
},
{ /* 4531 */
MODIFIER_NONE,
0x80,
24,
/* XOR8ri */
},
{ /* 4532 */
MODIFIER_NONE,
0x32,
25,
/* XOR8rm */
},
{ /* 4533 */
MODIFIER_NONE,
0x30,
26,
/* XOR8rr */
},
{ /* 4534 */
MODIFIER_NONE,
0x32,
27,
/* XOR8rr_REV */
},
{ /* 4535 */
MODIFIER_NONE,
0x57,
32,
/* XORPDrm */
},
{ /* 4536 */
MODIFIER_NONE,
0x57,
33,
/* XORPDrr */
},
{ /* 4537 */
MODIFIER_NONE,
0x57,
32,
/* XORPSrm */
},
{ /* 4538 */
MODIFIER_NONE,
0x57,
33,
/* XORPSrr */
},
{ /* 4539 */
MODIFIER_NONE,
0xae,
137,
/* XRSTOR */
},
{ /* 4540 */
MODIFIER_NONE,
0xae,
137,
/* XRSTOR64 */
},
{ /* 4541 */
MODIFIER_NONE,
0xae,
137,
/* XSAVE */
},
{ /* 4542 */
MODIFIER_NONE,
0xae,
137,
/* XSAVE64 */
},
{ /* 4543 */
MODIFIER_NONE,
0xae,
137,
/* XSAVEOPT */
},
{ /* 4544 */
MODIFIER_NONE,
0xae,
137,
/* XSAVEOPT64 */
},
{ /* 4545 */
MODIFIER_NONE,
0x01,
0,
/* XSETBV */
},
{ /* 4546 */
MODIFIER_NONE,
0xc8,
0,
/* XSHA1 */
},
{ /* 4547 */
MODIFIER_NONE,
0xd0,
0,
/* XSHA256 */
},
{ /* 4548 */
MODIFIER_NONE,
0xc0,
0,
/* XSTORE */
},
{ /* 4549 */
MODIFIER_NONE,
0x01,
0,
/* XTEST */
}
};
static const uint8_t x86DisassemblerContexts[256] = {
IC, /* 0 */
IC_64BIT, /* 1 */
IC_XS, /* 2 */
IC_64BIT_XS, /* 3 */
IC_XD, /* 4 */
IC_64BIT_XD, /* 5 */
IC_XS, /* 6 */
IC_64BIT_XS, /* 7 */
IC, /* 8 */
IC_64BIT_REXW, /* 9 */
IC_XS, /* 10 */
IC_64BIT_REXW_XS, /* 11 */
IC_XD, /* 12 */
IC_64BIT_REXW_XD, /* 13 */
IC_XS, /* 14 */
IC_64BIT_REXW_XS, /* 15 */
IC_OPSIZE, /* 16 */
IC_64BIT_OPSIZE, /* 17 */
IC_XS_OPSIZE, /* 18 */
IC_64BIT_XS_OPSIZE, /* 19 */
IC_XD_OPSIZE, /* 20 */
IC_64BIT_XD_OPSIZE, /* 21 */
IC_XS_OPSIZE, /* 22 */
IC_64BIT_XD_OPSIZE, /* 23 */
IC_OPSIZE, /* 24 */
IC_64BIT_REXW_OPSIZE, /* 25 */
IC_XS_OPSIZE, /* 26 */
IC_64BIT_REXW_XS, /* 27 */
IC_XD_OPSIZE, /* 28 */
IC_64BIT_REXW_XD, /* 29 */
IC_XS_OPSIZE, /* 30 */
IC_64BIT_REXW_XS, /* 31 */
IC_ADSIZE, /* 32 */
IC_64BIT_ADSIZE, /* 33 */
IC_XS, /* 34 */
IC_64BIT_XS, /* 35 */
IC_XD, /* 36 */
IC_64BIT_XD, /* 37 */
IC_XS, /* 38 */
IC_64BIT_XS, /* 39 */
IC_ADSIZE, /* 40 */
IC_64BIT_ADSIZE, /* 41 */
IC_XS, /* 42 */
IC_64BIT_REXW_XS, /* 43 */
IC_XD, /* 44 */
IC_64BIT_REXW_XD, /* 45 */
IC_XS, /* 46 */
IC_64BIT_REXW_XS, /* 47 */
IC_OPSIZE, /* 48 */
IC_64BIT_OPSIZE, /* 49 */
IC_XS_OPSIZE, /* 50 */
IC_64BIT_XS_OPSIZE, /* 51 */
IC_XD_OPSIZE, /* 52 */
IC_64BIT_XD_OPSIZE, /* 53 */
IC_XS_OPSIZE, /* 54 */
IC_64BIT_XD_OPSIZE, /* 55 */
IC_OPSIZE, /* 56 */
IC_64BIT_REXW_OPSIZE, /* 57 */
IC_XS_OPSIZE, /* 58 */
IC_64BIT_REXW_XS, /* 59 */
IC_XD_OPSIZE, /* 60 */
IC_64BIT_REXW_XD, /* 61 */
IC_XS_OPSIZE, /* 62 */
IC_64BIT_REXW_XS, /* 63 */
IC_VEX, /* 64 */
IC_VEX, /* 65 */
IC_VEX_XS, /* 66 */
IC_VEX_XS, /* 67 */
IC_VEX_XD, /* 68 */
IC_VEX_XD, /* 69 */
IC_VEX_XD, /* 70 */
IC_VEX_XD, /* 71 */
IC_VEX_W, /* 72 */
IC_VEX_W, /* 73 */
IC_VEX_W_XS, /* 74 */
IC_VEX_W_XS, /* 75 */
IC_VEX_W_XD, /* 76 */
IC_VEX_W_XD, /* 77 */
IC_VEX_W_XD, /* 78 */
IC_VEX_W_XD, /* 79 */
IC_VEX_OPSIZE, /* 80 */
IC_VEX_OPSIZE, /* 81 */
IC_VEX_OPSIZE, /* 82 */
IC_VEX_OPSIZE, /* 83 */
IC_VEX_OPSIZE, /* 84 */
IC_VEX_OPSIZE, /* 85 */
IC_VEX_OPSIZE, /* 86 */
IC_VEX_OPSIZE, /* 87 */
IC_VEX_W_OPSIZE, /* 88 */
IC_VEX_W_OPSIZE, /* 89 */
IC_VEX_W_OPSIZE, /* 90 */
IC_VEX_W_OPSIZE, /* 91 */
IC_VEX_W_OPSIZE, /* 92 */
IC_VEX_W_OPSIZE, /* 93 */
IC_VEX_W_OPSIZE, /* 94 */
IC_VEX_W_OPSIZE, /* 95 */
IC_VEX, /* 96 */
IC_VEX, /* 97 */
IC_VEX_XS, /* 98 */
IC_VEX_XS, /* 99 */
IC_VEX_XD, /* 100 */
IC_VEX_XD, /* 101 */
IC_VEX_XD, /* 102 */
IC_VEX_XD, /* 103 */
IC_VEX_W, /* 104 */
IC_VEX_W, /* 105 */
IC_VEX_W_XS, /* 106 */
IC_VEX_W_XS, /* 107 */
IC_VEX_W_XD, /* 108 */
IC_VEX_W_XD, /* 109 */
IC_VEX_W_XD, /* 110 */
IC_VEX_W_XD, /* 111 */
IC_VEX_OPSIZE, /* 112 */
IC_VEX_OPSIZE, /* 113 */
IC_VEX_OPSIZE, /* 114 */
IC_VEX_OPSIZE, /* 115 */
IC_VEX_OPSIZE, /* 116 */
IC_VEX_OPSIZE, /* 117 */
IC_VEX_OPSIZE, /* 118 */
IC_VEX_OPSIZE, /* 119 */
IC_VEX_W_OPSIZE, /* 120 */
IC_VEX_W_OPSIZE, /* 121 */
IC_VEX_W_OPSIZE, /* 122 */
IC_VEX_W_OPSIZE, /* 123 */
IC_VEX_W_OPSIZE, /* 124 */
IC_VEX_W_OPSIZE, /* 125 */
IC_VEX_W_OPSIZE, /* 126 */
IC_VEX_W_OPSIZE, /* 127 */
IC_VEX_L, /* 128 */
IC_VEX_L, /* 129 */
IC_VEX_L_XS, /* 130 */
IC_VEX_L_XS, /* 131 */
IC_VEX_L_XD, /* 132 */
IC_VEX_L_XD, /* 133 */
IC_VEX_L_XD, /* 134 */
IC_VEX_L_XD, /* 135 */
IC_VEX_L, /* 136 */
IC_VEX_L, /* 137 */
IC_VEX_L_XS, /* 138 */
IC_VEX_L_XS, /* 139 */
IC_VEX_L_XD, /* 140 */
IC_VEX_L_XD, /* 141 */
IC_VEX_L_XD, /* 142 */
IC_VEX_L_XD, /* 143 */
IC_VEX_L_OPSIZE, /* 144 */
IC_VEX_L_OPSIZE, /* 145 */
IC_VEX_L_OPSIZE, /* 146 */
IC_VEX_L_OPSIZE, /* 147 */
IC_VEX_L_OPSIZE, /* 148 */
IC_VEX_L_OPSIZE, /* 149 */
IC_VEX_L_OPSIZE, /* 150 */
IC_VEX_L_OPSIZE, /* 151 */
IC_VEX_L_W_OPSIZE, /* 152 */
IC_VEX_L_W_OPSIZE, /* 153 */
IC_VEX_L_W_OPSIZE, /* 154 */
IC_VEX_L_W_OPSIZE, /* 155 */
IC_VEX_L_W_OPSIZE, /* 156 */
IC_VEX_L_W_OPSIZE, /* 157 */
IC_VEX_L_W_OPSIZE, /* 158 */
IC_VEX_L_W_OPSIZE, /* 159 */
IC_VEX_L, /* 160 */
IC_VEX_L, /* 161 */
IC_VEX_L_XS, /* 162 */
IC_VEX_L_XS, /* 163 */
IC_VEX_L_XD, /* 164 */
IC_VEX_L_XD, /* 165 */
IC_VEX_L_XD, /* 166 */
IC_VEX_L_XD, /* 167 */
IC_VEX_L, /* 168 */
IC_VEX_L, /* 169 */
IC_VEX_L_XS, /* 170 */
IC_VEX_L_XS, /* 171 */
IC_VEX_L_XD, /* 172 */
IC_VEX_L_XD, /* 173 */
IC_VEX_L_XD, /* 174 */
IC_VEX_L_XD, /* 175 */
IC_VEX_L_OPSIZE, /* 176 */
IC_VEX_L_OPSIZE, /* 177 */
IC_VEX_L_OPSIZE, /* 178 */
IC_VEX_L_OPSIZE, /* 179 */
IC_VEX_L_OPSIZE, /* 180 */
IC_VEX_L_OPSIZE, /* 181 */
IC_VEX_L_OPSIZE, /* 182 */
IC_VEX_L_OPSIZE, /* 183 */
IC_VEX_L_W_OPSIZE, /* 184 */
IC_VEX_L_W_OPSIZE, /* 185 */
IC_VEX_L_W_OPSIZE, /* 186 */
IC_VEX_L_W_OPSIZE, /* 187 */
IC_VEX_L_W_OPSIZE, /* 188 */
IC_VEX_L_W_OPSIZE, /* 189 */
IC_VEX_L_W_OPSIZE, /* 190 */
IC_VEX_L_W_OPSIZE, /* 191 */
IC_VEX_L, /* 192 */
IC_VEX_L, /* 193 */
IC_VEX_L_XS, /* 194 */
IC_VEX_L_XS, /* 195 */
IC_VEX_L_XD, /* 196 */
IC_VEX_L_XD, /* 197 */
IC_VEX_L_XD, /* 198 */
IC_VEX_L_XD, /* 199 */
IC_VEX_L, /* 200 */
IC_VEX_L, /* 201 */
IC_VEX_L_XS, /* 202 */
IC_VEX_L_XS, /* 203 */
IC_VEX_L_XD, /* 204 */
IC_VEX_L_XD, /* 205 */
IC_VEX_L_XD, /* 206 */
IC_VEX_L_XD, /* 207 */
IC_VEX_L_OPSIZE, /* 208 */
IC_VEX_L_OPSIZE, /* 209 */
IC_VEX_L_OPSIZE, /* 210 */
IC_VEX_L_OPSIZE, /* 211 */
IC_VEX_L_OPSIZE, /* 212 */
IC_VEX_L_OPSIZE, /* 213 */
IC_VEX_L_OPSIZE, /* 214 */
IC_VEX_L_OPSIZE, /* 215 */
IC_VEX_L_W_OPSIZE, /* 216 */
IC_VEX_L_W_OPSIZE, /* 217 */
IC_VEX_L_W_OPSIZE, /* 218 */
IC_VEX_L_W_OPSIZE, /* 219 */
IC_VEX_L_W_OPSIZE, /* 220 */
IC_VEX_L_W_OPSIZE, /* 221 */
IC_VEX_L_W_OPSIZE, /* 222 */
IC_VEX_L_W_OPSIZE, /* 223 */
IC_VEX_L, /* 224 */
IC_VEX_L, /* 225 */
IC_VEX_L_XS, /* 226 */
IC_VEX_L_XS, /* 227 */
IC_VEX_L_XD, /* 228 */
IC_VEX_L_XD, /* 229 */
IC_VEX_L_XD, /* 230 */
IC_VEX_L_XD, /* 231 */
IC_VEX_L, /* 232 */
IC_VEX_L, /* 233 */
IC_VEX_L_XS, /* 234 */
IC_VEX_L_XS, /* 235 */
IC_VEX_L_XD, /* 236 */
IC_VEX_L_XD, /* 237 */
IC_VEX_L_XD, /* 238 */
IC_VEX_L_XD, /* 239 */
IC_VEX_L_OPSIZE, /* 240 */
IC_VEX_L_OPSIZE, /* 241 */
IC_VEX_L_OPSIZE, /* 242 */
IC_VEX_L_OPSIZE, /* 243 */
IC_VEX_L_OPSIZE, /* 244 */
IC_VEX_L_OPSIZE, /* 245 */
IC_VEX_L_OPSIZE, /* 246 */
IC_VEX_L_OPSIZE, /* 247 */
IC_VEX_L_W_OPSIZE, /* 248 */
IC_VEX_L_W_OPSIZE, /* 249 */
IC_VEX_L_W_OPSIZE, /* 250 */
IC_VEX_L_W_OPSIZE, /* 251 */
IC_VEX_L_W_OPSIZE, /* 252 */
IC_VEX_L_W_OPSIZE, /* 253 */
IC_VEX_L_W_OPSIZE, /* 254 */
IC_VEX_L_W_OPSIZE /* 255 */
};
static const InstrUID modRMTable[] = {
0x0, /* EmptyTable */
/* Table0 */
0x6d, /* ADD8mr*/
0x70, /* ADD8rr*/
/* Table1 */
0x56, /* ADD32mr*/
0x5c, /* ADD32rr*/
/* Table2 */
0x6f, /* ADD8rm*/
0x71, /* ADD8rr_REV*/
/* Table3 */
0x5b, /* ADD32rm*/
0x5e, /* ADD32rr_REV*/
/* Table4 */
0x6b, /* ADD8i8*/
/* Table5 */
0x53, /* ADD32i32*/
/* Table6 */
0x878, /* PUSHES32*/
/* Table7 */
0x804, /* POPES32*/
/* Table8 */
0x6f9, /* OR8mr*/
0x6fc, /* OR8rr*/
/* Table9 */
0x6e7, /* OR32mr*/
0x6ec, /* OR32rr*/
/* Table10 */
0x6fb, /* OR8rm*/
0x6fd, /* OR8rr_REV*/
/* Table11 */
0x6eb, /* OR32rm*/
0x6ed, /* OR32rr_REV*/
/* Table12 */
0x6f7, /* OR8i8*/
/* Table13 */
0x6e4, /* OR32i32*/
/* Table14 */
0x874, /* PUSHCS32*/
/* Table15 */
0x3e, /* ADC8mr*/
0x41, /* ADC8rr*/
/* Table16 */
0x2d, /* ADC32mr*/
0x31, /* ADC32rr*/
/* Table17 */
0x40, /* ADC8rm*/
0x42, /* ADC8rr_REV*/
/* Table18 */
0x30, /* ADC32rm*/
0x32, /* ADC32rr_REV*/
/* Table19 */
0x3c, /* ADC8i8*/
/* Table20 */
0x2a, /* ADC32i32*/
/* Table21 */
0x883, /* PUSHSS32*/
/* Table22 */
0x80f, /* POPSS32*/
/* Table23 */
0x969, /* SBB8mr*/
0x96c, /* SBB8rr*/
/* Table24 */
0x958, /* SBB32mr*/
0x95c, /* SBB32rr*/
/* Table25 */
0x96b, /* SBB8rm*/
0x96d, /* SBB8rr_REV*/
/* Table26 */
0x95b, /* SBB32rm*/
0x95d, /* SBB32rr_REV*/
/* Table27 */
0x967, /* SBB8i8*/
/* Table28 */
0x955, /* SBB32i32*/
/* Table29 */
0x876, /* PUSHDS32*/
/* Table30 */
0x802, /* POPDS32*/
/* Table31 */
0xc8, /* AND8mr*/
0xcb, /* AND8rr*/
/* Table32 */
0xb7, /* AND32mr*/
0xbb, /* AND32rr*/
/* Table33 */
0xca, /* AND8rm*/
0xcc, /* AND8rr_REV*/
/* Table34 */
0xba, /* AND32rm*/
0xbc, /* AND32rr_REV*/
/* Table35 */
0xc6, /* AND8i8*/
/* Table36 */
0xb4, /* AND32i32*/
/* Table37 */
0x2e6, /* ES_PREFIX*/
/* Table38 */
0x28f, /* DAA*/
/* Table39 */
0xa4d, /* SUB8mr*/
0xa50, /* SUB8rr*/
/* Table40 */
0xa3c, /* SUB32mr*/
0xa40, /* SUB32rr*/
/* Table41 */
0xa4f, /* SUB8rm*/
0xa51, /* SUB8rr_REV*/
/* Table42 */
0xa3f, /* SUB32rm*/
0xa41, /* SUB32rr_REV*/
/* Table43 */
0xa4b, /* SUB8i8*/
/* Table44 */
0xa39, /* SUB32i32*/
/* Table45 */
0x260, /* CS_PREFIX*/
/* Table46 */
0x290, /* DAS*/
/* Table47 */
0x11b2, /* XOR8mr*/
0x11b5, /* XOR8rr*/
/* Table48 */
0x11a1, /* XOR32mr*/
0x11a5, /* XOR32rr*/
/* Table49 */
0x11b4, /* XOR8rm*/
0x11b6, /* XOR8rr_REV*/
/* Table50 */
0x11a4, /* XOR32rm*/
0x11a6, /* XOR32rr_REV*/
/* Table51 */
0x11b0, /* XOR8i8*/
/* Table52 */
0x119e, /* XOR32i32*/
/* Table53 */
0xa0f, /* SS_PREFIX*/
/* Table54 */
0x15, /* AAA*/
/* Table55 */
0x225, /* CMP8mr*/
0x228, /* CMP8rr*/
/* Table56 */
0x214, /* CMP32mr*/
0x218, /* CMP32rr*/
/* Table57 */
0x227, /* CMP8rm*/
0x229, /* CMP8rr_REV*/
/* Table58 */
0x217, /* CMP32rm*/
0x219, /* CMP32rr_REV*/
/* Table59 */
0x223, /* CMP8i8*/
/* Table60 */
0x211, /* CMP32i32*/
/* Table61 */
0x2dd, /* DS_PREFIX*/
/* Table62 */
0x18, /* AAS*/
/* Table63 */
0x38d, /* INC32r*/
/* Table64 */
0x38d, /* INC32r*/
/* Table65 */
0x38d, /* INC32r*/
/* Table66 */
0x38d, /* INC32r*/
/* Table67 */
0x38d, /* INC32r*/
/* Table68 */
0x38d, /* INC32r*/
/* Table69 */
0x38d, /* INC32r*/
/* Table70 */
0x38d, /* INC32r*/
/* Table71 */
0x295, /* DEC32r*/
/* Table72 */
0x295, /* DEC32r*/
/* Table73 */
0x295, /* DEC32r*/
/* Table74 */
0x295, /* DEC32r*/
/* Table75 */
0x295, /* DEC32r*/
/* Table76 */
0x295, /* DEC32r*/
/* Table77 */
0x295, /* DEC32r*/
/* Table78 */
0x295, /* DEC32r*/
/* Table79 */
0x869, /* PUSH32r*/
/* Table80 */
0x869, /* PUSH32r*/
/* Table81 */
0x869, /* PUSH32r*/
/* Table82 */
0x869, /* PUSH32r*/
/* Table83 */
0x869, /* PUSH32r*/
/* Table84 */
0x869, /* PUSH32r*/
/* Table85 */
0x869, /* PUSH32r*/
/* Table86 */
0x869, /* PUSH32r*/
/* Table87 */
0x7f4, /* POP32r*/
/* Table88 */
0x7f4, /* POP32r*/
/* Table89 */
0x7f4, /* POP32r*/
/* Table90 */
0x7f4, /* POP32r*/
/* Table91 */
0x7f4, /* POP32r*/
/* Table92 */
0x7f4, /* POP32r*/
/* Table93 */
0x7f4, /* POP32r*/
/* Table94 */
0x7f4, /* POP32r*/
/* Table95 */
0x872, /* PUSHA32*/
/* Table96 */
0x7fa, /* POPA32*/
/* Table97 */
0x121, /* BOUNDS32rm*/
0, /* PHI*/
/* Table98 */
0xd9, /* ARPL16mr*/
0xda, /* ARPL16rr*/
/* Table99 */
0x325, /* FS_PREFIX*/
/* Table100 */
0x349, /* GS_PREFIX*/
/* Table101 */
0x291, /* DATA16_PREFIX*/
/* Table102 */
0x885, /* PUSHi32*/
/* Table103 */
0x372, /* IMUL32rmi*/
0x375, /* IMUL32rri*/
/* Table104 */
0x886, /* PUSHi8*/
/* Table105 */
0x373, /* IMUL32rmi8*/
0x376, /* IMUL32rri8*/
/* Table106 */
0x387, /* IN8*/
/* Table107 */
0x384, /* IN32*/
/* Table108 */
0x708, /* OUTSB*/
/* Table109 */
0x709, /* OUTSD*/
/* Table110 */
0x429, /* JO_1*/
/* Table111 */
0x423, /* JNO_1*/
/* Table112 */
0x40b, /* JB_1*/
/* Table113 */
0x405, /* JAE_1*/
/* Table114 */
0x410, /* JE_1*/
/* Table115 */
0x421, /* JNE_1*/
/* Table116 */
0x409, /* JBE_1*/
/* Table117 */
0x407, /* JA_1*/
/* Table118 */
0x42e, /* JS_1*/
/* Table119 */
0x427, /* JNS_1*/
/* Table120 */
0x42b, /* JP_1*/
/* Table121 */
0x425, /* JNP_1*/
/* Table122 */
0x418, /* JL_1*/
/* Table123 */
0x412, /* JGE_1*/
/* Table124 */
0x416, /* JLE_1*/
/* Table125 */
0x414, /* JG_1*/
/* Table126 */
0x6c, /* ADD8mi*/
0x6f8, /* OR8mi*/
0x3d, /* ADC8mi*/
0x968, /* SBB8mi*/
0xc7, /* AND8mi*/
0xa4c, /* SUB8mi*/
0x11b1, /* XOR8mi*/
0x224, /* CMP8mi*/
0x6e, /* ADD8ri*/
0x6fa, /* OR8ri*/
0x3f, /* ADC8ri*/
0x96a, /* SBB8ri*/
0xc9, /* AND8ri*/
0xa4e, /* SUB8ri*/
0x11b3, /* XOR8ri*/
0x226, /* CMP8ri*/
/* Table127 */
0x54, /* ADD32mi*/
0x6e5, /* OR32mi*/
0x2b, /* ADC32mi*/
0x956, /* SBB32mi*/
0xb5, /* AND32mi*/
0xa3a, /* SUB32mi*/
0x119f, /* XOR32mi*/
0x212, /* CMP32mi*/
0x57, /* ADD32ri*/
0x6e9, /* OR32ri*/
0x2e, /* ADC32ri*/
0x959, /* SBB32ri*/
0xb8, /* AND32ri*/
0xa3d, /* SUB32ri*/
0x11a2, /* XOR32ri*/
0x215, /* CMP32ri*/
/* Table128 */
0x55, /* ADD32mi8*/
0x6e6, /* OR32mi8*/
0x2c, /* ADC32mi8*/
0x957, /* SBB32mi8*/
0xb6, /* AND32mi8*/
0xa3b, /* SUB32mi8*/
0x11a0, /* XOR32mi8*/
0x213, /* CMP32mi8*/
0x58, /* ADD32ri8*/
0x6ea, /* OR32ri8*/
0x2f, /* ADC32ri8*/
0x95a, /* SBB32ri8*/
0xb9, /* AND32ri8*/
0xa3e, /* SUB32ri8*/
0x11a3, /* XOR32ri8*/
0x216, /* CMP32ri8*/
/* Table129 */
0xaab, /* TEST8rm*/
0xaac, /* TEST8rr*/
/* Table130 */
0xaa0, /* TEST32rm*/
0xaa1, /* TEST32rr*/
/* Table131 */
0x118a, /* XCHG8rm*/
0x118b, /* XCHG8rr*/
/* Table132 */
0x1185, /* XCHG32rm*/
0x1186, /* XCHG32rr*/
/* Table133 */
0x5eb, /* MOV8mr*/
0x5f2, /* MOV8rr*/
/* Table134 */
0x5c8, /* MOV32mr*/
0x5d0, /* MOV32rr*/
/* Table135 */
0x5f0, /* MOV8rm*/
0x5f4, /* MOV8rr_REV*/
/* Table136 */
0x5cf, /* MOV32rm*/
0x5d1, /* MOV32rr_REV*/
/* Table137 */
0x5c9, /* MOV32ms*/
0x5d2, /* MOV32rs*/
/* Table138 */
0x454, /* LEA32r*/
0, /* PHI*/
/* Table139 */
0x5d3, /* MOV32sm*/
0x5d4, /* MOV32sr*/
/* Table140 */
0x7f5, /* POP32rmm*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x7f6, /* POP32rmr*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
/* Table141 */
0x6d0, /* NOOP*/
/* Table142 */
0x1183, /* XCHG32ar*/
/* Table143 */
0x1183, /* XCHG32ar*/
/* Table144 */
0x1183, /* XCHG32ar*/
/* Table145 */
0x1183, /* XCHG32ar*/
/* Table146 */
0x1183, /* XCHG32ar*/
/* Table147 */
0x1183, /* XCHG32ar*/
/* Table148 */
0x1183, /* XCHG32ar*/
/* Table149 */
0x28e, /* CWDE*/
/* Table150 */
0x16c, /* CDQ*/
/* Table151 */
0x2ee, /* FARCALL32i*/
/* Table152 */
0x116b, /* WAIT*/
/* Table153 */
0x87a, /* PUSHF32*/
/* Table154 */
0x806, /* POPF32*/
/* Table155 */
0x92f, /* SAHF*/
/* Table156 */
0x430, /* LAHF*/
/* Table157 */
0x5ed, /* MOV8o8a*/
/* Table158 */
0x5ca, /* MOV32o32a*/
/* Table159 */
0x5e9, /* MOV8ao8*/
/* Table160 */
0x5c4, /* MOV32ao32*/
/* Table161 */
0x62f, /* MOVSB*/
/* Table162 */
0x630, /* MOVSD*/
/* Table163 */
0x235, /* CMPS8*/
/* Table164 */
0x233, /* CMPS32*/
/* Table165 */
0xaa7, /* TEST8i8*/
/* Table166 */
0xa9d, /* TEST32i32*/
/* Table167 */
0xa16, /* STOSB*/
/* Table168 */
0xa17, /* STOSD*/
/* Table169 */
0x4aa, /* LODSB*/
/* Table170 */
0x4ab, /* LODSD*/
/* Table171 */
0x971, /* SCAS8*/
/* Table172 */
0x96f, /* SCAS32*/
/* Table173 */
0x5ef, /* MOV8ri*/
/* Table174 */
0x5ef, /* MOV8ri*/
/* Table175 */
0x5ef, /* MOV8ri*/
/* Table176 */
0x5ef, /* MOV8ri*/
/* Table177 */
0x5ef, /* MOV8ri*/
/* Table178 */
0x5ef, /* MOV8ri*/
/* Table179 */
0x5ef, /* MOV8ri*/
/* Table180 */
0x5ef, /* MOV8ri*/
/* Table181 */
0x5ce, /* MOV32ri*/
/* Table182 */
0x5ce, /* MOV32ri*/
/* Table183 */
0x5ce, /* MOV32ri*/
/* Table184 */
0x5ce, /* MOV32ri*/
/* Table185 */
0x5ce, /* MOV32ri*/
/* Table186 */
0x5ce, /* MOV32ri*/
/* Table187 */
0x5ce, /* MOV32ri*/
/* Table188 */
0x5ce, /* MOV32ri*/
/* Table189 */
0x8fc, /* ROL8mi*/
0x914, /* ROR8mi*/
0x89d, /* RCL8mi*/
0x8bd, /* RCR8mi*/
0x9af, /* SHL8mi*/
0x9d7, /* SHR8mi*/
0, /* PHI*/
0x944, /* SAR8mi*/
0x8ff, /* ROL8ri*/
0x917, /* ROR8ri*/
0x8a0, /* RCL8ri*/
0x8c0, /* RCR8ri*/
0x9b2, /* SHL8ri*/
0x9da, /* SHR8ri*/
0, /* PHI*/
0x947, /* SAR8ri*/
/* Table190 */
0x8f0, /* ROL32mi*/
0x908, /* ROR32mi*/
0x891, /* RCL32mi*/
0x8b1, /* RCR32mi*/
0x9a3, /* SHL32mi*/
0x9cb, /* SHR32mi*/
0, /* PHI*/
0x938, /* SAR32mi*/
0x8f3, /* ROL32ri*/
0x90b, /* ROR32ri*/
0x894, /* RCL32ri*/
0x8b4, /* RCR32ri*/
0x9a6, /* SHL32ri*/
0x9ce, /* SHR32ri*/
0, /* PHI*/
0x93b, /* SAR32ri*/
/* Table191 */
0x8e4, /* RETI*/
/* Table192 */
0x8e3, /* RET*/
/* Table193 */
0x45a, /* LES32rm*/
0, /* PHI*/
/* Table194 */
0x440, /* LDS32rm*/
0, /* PHI*/
/* Table195 */
0x5ea, /* MOV8mi*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x1175, /* XABORT*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
/* Table196 */
0x5c7, /* MOV32mi*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x117f, /* XBEGIN_4*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
/* Table197 */
0x2e5, /* ENTER*/
/* Table198 */
0x457, /* LEAVE*/
/* Table199 */
0x4b1, /* LRETI*/
/* Table200 */
0x4b3, /* LRETL*/
/* Table201 */
0x39b, /* INT3*/
/* Table202 */
0x39a, /* INT*/
/* Table203 */
0x39c, /* INTO*/
/* Table204 */
0x3a8, /* IRET32*/
/* Table205 */
0x8fa, /* ROL8m1*/
0x912, /* ROR8m1*/
0x89b, /* RCL8m1*/
0x8bb, /* RCR8m1*/
0x9ad, /* SHL8m1*/
0x9d5, /* SHR8m1*/
0, /* PHI*/
0x942, /* SAR8m1*/
0x8fd, /* ROL8r1*/
0x915, /* ROR8r1*/
0x89e, /* RCL8r1*/
0x8be, /* RCR8r1*/
0x9b0, /* SHL8r1*/
0x9d8, /* SHR8r1*/
0, /* PHI*/
0x945, /* SAR8r1*/
/* Table206 */
0x8ee, /* ROL32m1*/
0x906, /* ROR32m1*/
0x88f, /* RCL32m1*/
0x8af, /* RCR32m1*/
0x9a1, /* SHL32m1*/
0x9c9, /* SHR32m1*/
0, /* PHI*/
0x936, /* SAR32m1*/
0x8f1, /* ROL32r1*/
0x909, /* ROR32r1*/
0x892, /* RCL32r1*/
0x8b2, /* RCR32r1*/
0x9a4, /* SHL32r1*/
0x9cc, /* SHR32r1*/
0, /* PHI*/
0x939, /* SAR32r1*/
/* Table207 */
0x8fb, /* ROL8mCL*/
0x913, /* ROR8mCL*/
0x89c, /* RCL8mCL*/
0x8bc, /* RCR8mCL*/
0x9ae, /* SHL8mCL*/
0x9d6, /* SHR8mCL*/
0, /* PHI*/
0x943, /* SAR8mCL*/
0x8fe, /* ROL8rCL*/
0x916, /* ROR8rCL*/
0x89f, /* RCL8rCL*/
0x8bf, /* RCR8rCL*/
0x9b1, /* SHL8rCL*/
0x9d9, /* SHR8rCL*/
0, /* PHI*/
0x946, /* SAR8rCL*/
/* Table208 */
0x8ef, /* ROL32mCL*/
0x907, /* ROR32mCL*/
0x890, /* RCL32mCL*/
0x8b0, /* RCR32mCL*/
0x9a2, /* SHL32mCL*/
0x9ca, /* SHR32mCL*/
0, /* PHI*/
0x937, /* SAR32mCL*/
0x8f2, /* ROL32rCL*/
0x90a, /* ROR32rCL*/
0x893, /* RCL32rCL*/
0x8b3, /* RCR32rCL*/
0x9a5, /* SHL32rCL*/
0x9cd, /* SHR32rCL*/
0, /* PHI*/
0x93a, /* SAR32rCL*/
/* Table209 */
0x17, /* AAM8i8*/
/* Table210 */
0x16, /* AAD8i8*/
/* Table211 */
0x1194, /* XLAT*/
/* Table212 */
0x82, /* ADD_F32m*/
0x689, /* MUL_F32m*/
0x2f8, /* FCOM32m*/
0x2fa, /* FCOMP32m*/
0xa70, /* SUB_F32m*/
0xa56, /* SUBR_F32m*/
0x2c4, /* DIV_F32m*/
0x2aa, /* DIVR_F32m*/
0x87, /* ADD_FST0r*/
0x68e, /* MUL_FST0r*/
0x24f, /* COM_FST0r*/
0x24c, /* COMP_FST0r*/
0xa75, /* SUB_FST0r*/
0xa5b, /* SUBR_FST0r*/
0x2c9, /* DIV_FST0r*/
0x2af, /* DIVR_FST0r*/
/* Table213 */
0x443, /* LD_F32m*/
0, /* PHI*/
0xa1e, /* ST_F32m*/
0xa20, /* ST_FP32m*/
0x306, /* FLDENVm*/
0x305, /* FLDCW16m*/
0x324, /* FSTENVm*/
0x30f, /* FNSTCW16m*/
0x452, /* LD_Frr*/
0x452, /* LD_Frr*/
0x452, /* LD_Frr*/
0x452, /* LD_Frr*/
0x452, /* LD_Frr*/
0x452, /* LD_Frr*/
0x452, /* LD_Frr*/
0x452, /* LD_Frr*/
0x118c, /* XCH_F*/
0x118c, /* XCH_F*/
0x118c, /* XCH_F*/
0x118c, /* XCH_F*/
0x118c, /* XCH_F*/
0x118c, /* XCH_F*/
0x118c, /* XCH_F*/
0x118c, /* XCH_F*/
0x30e, /* FNOP*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x16e, /* CHS_F*/
0x19, /* ABS_F*/
0, /* PHI*/
0, /* PHI*/
0xab5, /* TST_F*/
0x326, /* FXAM*/
0, /* PHI*/
0, /* PHI*/
0x442, /* LD_F1*/
0x308, /* FLDL2T*/
0x307, /* FLDL2E*/
0x30b, /* FLDPI*/
0x309, /* FLDLG2*/
0x30a, /* FLDLN2*/
0x441, /* LD_F0*/
0, /* PHI*/
0x2eb, /* F2XM1*/
0x32c, /* FYL2X*/
0x31e, /* FPTAN*/
0x31b, /* FPATAN*/
0x32b, /* FXTRACT*/
0x31d, /* FPREM1*/
0x2fd, /* FDECSTP*/
0x304, /* FINCSTP*/
0x31c, /* FPREM*/
0x32d, /* FYL2XP1*/
0xa0b, /* SQRT_F*/
0x323, /* FSINCOS*/
0x31f, /* FRNDINT*/
0x322, /* FSCALE*/
0x9f1, /* SIN_F*/
0x250, /* COS_F*/
/* Table214 */
0x85, /* ADD_FI32m*/
0x68c, /* MUL_FI32m*/
0x301, /* FICOM32m*/
0x303, /* FICOMP32m*/
0xa73, /* SUB_FI32m*/
0xa59, /* SUBR_FI32m*/
0x2c7, /* DIV_FI32m*/
0x2ad, /* DIVR_FI32m*/
0x196, /* CMOVB_F*/
0x196, /* CMOVB_F*/
0x196, /* CMOVB_F*/
0x196, /* CMOVB_F*/
0x196, /* CMOVB_F*/
0x196, /* CMOVB_F*/
0x196, /* CMOVB_F*/
0x196, /* CMOVB_F*/
0x1a0, /* CMOVE_F*/
0x1a0, /* CMOVE_F*/
0x1a0, /* CMOVE_F*/
0x1a0, /* CMOVE_F*/
0x1a0, /* CMOVE_F*/
0x1a0, /* CMOVE_F*/
0x1a0, /* CMOVE_F*/
0x1a0, /* CMOVE_F*/
0x192, /* CMOVBE_F*/
0x192, /* CMOVBE_F*/
0x192, /* CMOVBE_F*/
0x192, /* CMOVBE_F*/
0x192, /* CMOVBE_F*/
0x192, /* CMOVBE_F*/
0x192, /* CMOVBE_F*/
0x192, /* CMOVBE_F*/
0x1f0, /* CMOVP_F*/
0x1f0, /* CMOVP_F*/
0x1f0, /* CMOVP_F*/
0x1f0, /* CMOVP_F*/
0x1f0, /* CMOVP_F*/
0x1f0, /* CMOVP_F*/
0x1f0, /* CMOVP_F*/
0x1f0, /* CMOVP_F*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0xac5, /* UCOM_FPPr*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
/* Table215 */
0x35c, /* ILD_F32m*/
0x3ab, /* ISTT_FP32m*/
0x3b7, /* IST_F32m*/
0x3b9, /* IST_FP32m*/
0, /* PHI*/
0x445, /* LD_F80m*/
0, /* PHI*/
0xa22, /* ST_FP80m*/
0x1c0, /* CMOVNB_F*/
0x1c0, /* CMOVNB_F*/
0x1c0, /* CMOVNB_F*/
0x1c0, /* CMOVNB_F*/
0x1c0, /* CMOVNB_F*/
0x1c0, /* CMOVNB_F*/
0x1c0, /* CMOVNB_F*/
0x1c0, /* CMOVNB_F*/
0x1ca, /* CMOVNE_F*/
0x1ca, /* CMOVNE_F*/
0x1ca, /* CMOVNE_F*/
0x1ca, /* CMOVNE_F*/
0x1ca, /* CMOVNE_F*/
0x1ca, /* CMOVNE_F*/
0x1ca, /* CMOVNE_F*/
0x1ca, /* CMOVNE_F*/
0x1bc, /* CMOVNBE_F*/
0x1bc, /* CMOVNBE_F*/
0x1bc, /* CMOVNBE_F*/
0x1bc, /* CMOVNBE_F*/
0x1bc, /* CMOVNBE_F*/
0x1bc, /* CMOVNBE_F*/
0x1bc, /* CMOVNBE_F*/
0x1bc, /* CMOVNBE_F*/
0x1da, /* CMOVNP_F*/
0x1da, /* CMOVNP_F*/
0x1da, /* CMOVNP_F*/
0x1da, /* CMOVNP_F*/
0x1da, /* CMOVNP_F*/
0x1da, /* CMOVNP_F*/
0x1da, /* CMOVNP_F*/
0x1da, /* CMOVNP_F*/
0, /* PHI*/
0, /* PHI*/
0x30c, /* FNCLEX*/
0x30d, /* FNINIT*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0xac4, /* UCOM_FIr*/
0xac4, /* UCOM_FIr*/
0xac4, /* UCOM_FIr*/
0xac4, /* UCOM_FIr*/
0xac4, /* UCOM_FIr*/
0xac4, /* UCOM_FIr*/
0xac4, /* UCOM_FIr*/
0xac4, /* UCOM_FIr*/
0x24e, /* COM_FIr*/
0x24e, /* COM_FIr*/
0x24e, /* COM_FIr*/
0x24e, /* COM_FIr*/
0x24e, /* COM_FIr*/
0x24e, /* COM_FIr*/
0x24e, /* COM_FIr*/
0x24e, /* COM_FIr*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
/* Table216 */
0x83, /* ADD_F64m*/
0x68a, /* MUL_F64m*/
0x2f9, /* FCOM64m*/
0x2fb, /* FCOMP64m*/
0xa71, /* SUB_F64m*/
0xa57, /* SUBR_F64m*/
0x2c5, /* DIV_F64m*/
0x2ab, /* DIVR_F64m*/
0x96, /* ADD_FrST0*/
0x69d, /* MUL_FrST0*/
0, /* PHI*/
0, /* PHI*/
0xa67, /* SUBR_FrST0*/
0xa84, /* SUB_FrST0*/
0x2bb, /* DIVR_FrST0*/
0x2d8, /* DIV_FrST0*/
/* Table217 */
0x444, /* LD_F64m*/
0x3ac, /* ISTT_FP64m*/
0xa1f, /* ST_F64m*/
0xa21, /* ST_FP64m*/
0x320, /* FRSTORm*/
0, /* PHI*/
0x321, /* FSAVEm*/
0x311, /* FNSTSWm*/
0x2ff, /* FFREE*/
0, /* PHI*/
0xa2f, /* ST_Frr*/
0xa23, /* ST_FPrr*/
0xacd, /* UCOM_Fr*/
0xac6, /* UCOM_FPr*/
0, /* PHI*/
0, /* PHI*/
/* Table218 */
0x84, /* ADD_FI16m*/
0x68b, /* MUL_FI16m*/
0x300, /* FICOM16m*/
0x302, /* FICOMP16m*/
0xa72, /* SUB_FI16m*/
0xa58, /* SUBR_FI16m*/
0x2c6, /* DIV_FI16m*/
0x2ac, /* DIVR_FI16m*/
0x86, /* ADD_FPrST0*/
0x86, /* ADD_FPrST0*/
0x86, /* ADD_FPrST0*/
0x86, /* ADD_FPrST0*/
0x86, /* ADD_FPrST0*/
0x86, /* ADD_FPrST0*/
0x86, /* ADD_FPrST0*/
0x86, /* ADD_FPrST0*/
0x68d, /* MUL_FPrST0*/
0x68d, /* MUL_FPrST0*/
0x68d, /* MUL_FPrST0*/
0x68d, /* MUL_FPrST0*/
0x68d, /* MUL_FPrST0*/
0x68d, /* MUL_FPrST0*/
0x68d, /* MUL_FPrST0*/
0x68d, /* MUL_FPrST0*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x2fc, /* FCOMPP*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0xa5a, /* SUBR_FPrST0*/
0xa5a, /* SUBR_FPrST0*/
0xa5a, /* SUBR_FPrST0*/
0xa5a, /* SUBR_FPrST0*/
0xa5a, /* SUBR_FPrST0*/
0xa5a, /* SUBR_FPrST0*/
0xa5a, /* SUBR_FPrST0*/
0xa5a, /* SUBR_FPrST0*/
0xa74, /* SUB_FPrST0*/
0xa74, /* SUB_FPrST0*/
0xa74, /* SUB_FPrST0*/
0xa74, /* SUB_FPrST0*/
0xa74, /* SUB_FPrST0*/
0xa74, /* SUB_FPrST0*/
0xa74, /* SUB_FPrST0*/
0xa74, /* SUB_FPrST0*/
0x2ae, /* DIVR_FPrST0*/
0x2ae, /* DIVR_FPrST0*/
0x2ae, /* DIVR_FPrST0*/
0x2ae, /* DIVR_FPrST0*/
0x2ae, /* DIVR_FPrST0*/
0x2ae, /* DIVR_FPrST0*/
0x2ae, /* DIVR_FPrST0*/
0x2ae, /* DIVR_FPrST0*/
0x2c8, /* DIV_FPrST0*/
0x2c8, /* DIV_FPrST0*/
0x2c8, /* DIV_FPrST0*/
0x2c8, /* DIV_FPrST0*/
0x2c8, /* DIV_FPrST0*/
0x2c8, /* DIV_FPrST0*/
0x2c8, /* DIV_FPrST0*/
0x2c8, /* DIV_FPrST0*/
/* Table219 */
0x35b, /* ILD_F16m*/
0x3aa, /* ISTT_FP16m*/
0x3b6, /* IST_F16m*/
0x3b8, /* IST_FP16m*/
0x2f6, /* FBLDm*/
0x35d, /* ILD_F64m*/
0x2f7, /* FBSTPm*/
0x3ba, /* IST_FP64m*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x310, /* FNSTSW16r*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0xac3, /* UCOM_FIPr*/
0xac3, /* UCOM_FIPr*/
0xac3, /* UCOM_FIPr*/
0xac3, /* UCOM_FIPr*/
0xac3, /* UCOM_FIPr*/
0xac3, /* UCOM_FIPr*/
0xac3, /* UCOM_FIPr*/
0xac3, /* UCOM_FIPr*/
0x24d, /* COM_FIPr*/
0x24d, /* COM_FIPr*/
0x24d, /* COM_FIPr*/
0x24d, /* COM_FIPr*/
0x24d, /* COM_FIPr*/
0x24d, /* COM_FIPr*/
0x24d, /* COM_FIPr*/
0x24d, /* COM_FIPr*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
/* Table220 */
0x4b0, /* LOOPNE*/
/* Table221 */
0x4af, /* LOOPE*/
/* Table222 */
0x4ae, /* LOOP*/
/* Table223 */
0x40e, /* JECXZ_32*/
/* Table224 */
0x388, /* IN8ri*/
/* Table225 */
0x385, /* IN32ri*/
/* Table226 */
0x706, /* OUT8ir*/
/* Table227 */
0x704, /* OUT32ir*/
/* Table228 */
0x16a, /* CALLpcrel32*/
/* Table229 */
0x420, /* JMP_4*/
/* Table230 */
0x2f3, /* FARJMP32i*/
/* Table231 */
0x41f, /* JMP_1*/
/* Table232 */
0x389, /* IN8rr*/
/* Table233 */
0x386, /* IN32rr*/
/* Table234 */
0x707, /* OUT8rr*/
/* Table235 */
0x705, /* OUT32rr*/
/* Table236 */
0x493, /* LOCK_PREFIX*/
/* Table237 */
0x8d3, /* REPNE_PREFIX*/
/* Table238 */
0x8db, /* REP_PREFIX*/
/* Table239 */
0x34e, /* HLT*/
/* Table240 */
0x179, /* CMC*/
/* Table241 */
0xaa8, /* TEST8mi*/
0, /* PHI*/
0x6d9, /* NOT8m*/
0x6ce, /* NEG8m*/
0x677, /* MUL8m*/
0x37f, /* IMUL8m*/
0x2a4, /* DIV8m*/
0x359, /* IDIV8m*/
0xaa9, /* TEST8ri*/
0, /* PHI*/
0x6da, /* NOT8r*/
0x6cf, /* NEG8r*/
0x678, /* MUL8r*/
0x380, /* IMUL8r*/
0x2a5, /* DIV8r*/
0x35a, /* IDIV8r*/
/* Table242 */
0xa9e, /* TEST32mi*/
0, /* PHI*/
0x6d5, /* NOT32m*/
0x6ca, /* NEG32m*/
0x673, /* MUL32m*/
0x36f, /* IMUL32m*/
0x2a0, /* DIV32m*/
0x355, /* IDIV32m*/
0xa9f, /* TEST32ri*/
0, /* PHI*/
0x6d6, /* NOT32r*/
0x6cb, /* NEG32r*/
0x674, /* MUL32r*/
0x370, /* IMUL32r*/
0x2a1, /* DIV32r*/
0x356, /* IDIV32r*/
/* Table243 */
0x173, /* CLC*/
/* Table244 */
0xa11, /* STC*/
/* Table245 */
0x177, /* CLI*/
/* Table246 */
0xa14, /* STI*/
/* Table247 */
0x174, /* CLD*/
/* Table248 */
0xa12, /* STD*/
/* Table249 */
0x394, /* INC8m*/
0x29c, /* DEC8m*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x395, /* INC8r*/
0x29d, /* DEC8r*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
/* Table250 */
0x38c, /* INC32m*/
0x294, /* DEC32m*/
0x164, /* CALL32m*/
0x2ef, /* FARCALL32m*/
0x41a, /* JMP32m*/
0x2f4, /* FARJMP32m*/
0x86a, /* PUSH32rmm*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x165, /* CALL32r*/
0, /* PHI*/
0x41b, /* JMP32r*/
0, /* PHI*/
0x86b, /* PUSH32rmr*/
0, /* PHI*/
/* Table251 */
0x6d, /* ADD8mr*/
0x70, /* ADD8rr*/
/* Table252 */
0x56, /* ADD32mr*/
0x5c, /* ADD32rr*/
/* Table253 */
0x6f, /* ADD8rm*/
0x71, /* ADD8rr_REV*/
/* Table254 */
0x5b, /* ADD32rm*/
0x5e, /* ADD32rr_REV*/
/* Table255 */
0x6b, /* ADD8i8*/
/* Table256 */
0x53, /* ADD32i32*/
/* Table257 */
0x6f9, /* OR8mr*/
0x6fc, /* OR8rr*/
/* Table258 */
0x6e7, /* OR32mr*/
0x6ec, /* OR32rr*/
/* Table259 */
0x6fb, /* OR8rm*/
0x6fd, /* OR8rr_REV*/
/* Table260 */
0x6eb, /* OR32rm*/
0x6ed, /* OR32rr_REV*/
/* Table261 */
0x6f7, /* OR8i8*/
/* Table262 */
0x6e4, /* OR32i32*/
/* Table263 */
0x3e, /* ADC8mr*/
0x41, /* ADC8rr*/
/* Table264 */
0x2d, /* ADC32mr*/
0x31, /* ADC32rr*/
/* Table265 */
0x40, /* ADC8rm*/
0x42, /* ADC8rr_REV*/
/* Table266 */
0x30, /* ADC32rm*/
0x32, /* ADC32rr_REV*/
/* Table267 */
0x3c, /* ADC8i8*/
/* Table268 */
0x2a, /* ADC32i32*/
/* Table269 */
0x969, /* SBB8mr*/
0x96c, /* SBB8rr*/
/* Table270 */
0x958, /* SBB32mr*/
0x95c, /* SBB32rr*/
/* Table271 */
0x96b, /* SBB8rm*/
0x96d, /* SBB8rr_REV*/
/* Table272 */
0x95b, /* SBB32rm*/
0x95d, /* SBB32rr_REV*/
/* Table273 */
0x967, /* SBB8i8*/
/* Table274 */
0x955, /* SBB32i32*/
/* Table275 */
0xc8, /* AND8mr*/
0xcb, /* AND8rr*/
/* Table276 */
0xb7, /* AND32mr*/
0xbb, /* AND32rr*/
/* Table277 */
0xca, /* AND8rm*/
0xcc, /* AND8rr_REV*/
/* Table278 */
0xba, /* AND32rm*/
0xbc, /* AND32rr_REV*/
/* Table279 */
0xc6, /* AND8i8*/
/* Table280 */
0xb4, /* AND32i32*/
/* Table281 */
0x2e6, /* ES_PREFIX*/
/* Table282 */
0xa4d, /* SUB8mr*/
0xa50, /* SUB8rr*/
/* Table283 */
0xa3c, /* SUB32mr*/
0xa40, /* SUB32rr*/
/* Table284 */
0xa4f, /* SUB8rm*/
0xa51, /* SUB8rr_REV*/
/* Table285 */
0xa3f, /* SUB32rm*/
0xa41, /* SUB32rr_REV*/
/* Table286 */
0xa4b, /* SUB8i8*/
/* Table287 */
0xa39, /* SUB32i32*/
/* Table288 */
0x260, /* CS_PREFIX*/
/* Table289 */
0x11b2, /* XOR8mr*/
0x11b5, /* XOR8rr*/
/* Table290 */
0x11a1, /* XOR32mr*/
0x11a5, /* XOR32rr*/
/* Table291 */
0x11b4, /* XOR8rm*/
0x11b6, /* XOR8rr_REV*/
/* Table292 */
0x11a4, /* XOR32rm*/
0x11a6, /* XOR32rr_REV*/
/* Table293 */
0x11b0, /* XOR8i8*/
/* Table294 */
0x119e, /* XOR32i32*/
/* Table295 */
0xa0f, /* SS_PREFIX*/
/* Table296 */
0x225, /* CMP8mr*/
0x228, /* CMP8rr*/
/* Table297 */
0x214, /* CMP32mr*/
0x218, /* CMP32rr*/
/* Table298 */
0x227, /* CMP8rm*/
0x229, /* CMP8rr_REV*/
/* Table299 */
0x217, /* CMP32rm*/
0x219, /* CMP32rr_REV*/
/* Table300 */
0x223, /* CMP8i8*/
/* Table301 */
0x211, /* CMP32i32*/
/* Table302 */
0x2dd, /* DS_PREFIX*/
/* Table303 */
0x8e7, /* REX64_PREFIX*/
/* Table304 */
0x86f, /* PUSH64r*/
/* Table305 */
0x86f, /* PUSH64r*/
/* Table306 */
0x86f, /* PUSH64r*/
/* Table307 */
0x86f, /* PUSH64r*/
/* Table308 */
0x86f, /* PUSH64r*/
/* Table309 */
0x86f, /* PUSH64r*/
/* Table310 */
0x86f, /* PUSH64r*/
/* Table311 */
0x86f, /* PUSH64r*/
/* Table312 */
0x7f7, /* POP64r*/
/* Table313 */
0x7f7, /* POP64r*/
/* Table314 */
0x7f7, /* POP64r*/
/* Table315 */
0x7f7, /* POP64r*/
/* Table316 */
0x7f7, /* POP64r*/
/* Table317 */
0x7f7, /* POP64r*/
/* Table318 */
0x7f7, /* POP64r*/
/* Table319 */
0x7f7, /* POP64r*/
/* Table320 */
0x325, /* FS_PREFIX*/
/* Table321 */
0x349, /* GS_PREFIX*/
/* Table322 */
0x291, /* DATA16_PREFIX*/
/* Table323 */
0x86d, /* PUSH64i32*/
/* Table324 */
0x372, /* IMUL32rmi*/
0x375, /* IMUL32rri*/
/* Table325 */
0x86e, /* PUSH64i8*/
/* Table326 */
0x373, /* IMUL32rmi8*/
0x376, /* IMUL32rri8*/
/* Table327 */
0x387, /* IN8*/
/* Table328 */
0x384, /* IN32*/
/* Table329 */
0x708, /* OUTSB*/
/* Table330 */
0x709, /* OUTSD*/
/* Table331 */
0x429, /* JO_1*/
/* Table332 */
0x423, /* JNO_1*/
/* Table333 */
0x40b, /* JB_1*/
/* Table334 */
0x405, /* JAE_1*/
/* Table335 */
0x410, /* JE_1*/
/* Table336 */
0x421, /* JNE_1*/
/* Table337 */
0x409, /* JBE_1*/
/* Table338 */
0x407, /* JA_1*/
/* Table339 */
0x42e, /* JS_1*/
/* Table340 */
0x427, /* JNS_1*/
/* Table341 */
0x42b, /* JP_1*/
/* Table342 */
0x425, /* JNP_1*/
/* Table343 */
0x418, /* JL_1*/
/* Table344 */
0x412, /* JGE_1*/
/* Table345 */
0x416, /* JLE_1*/
/* Table346 */
0x414, /* JG_1*/
/* Table347 */
0x6c, /* ADD8mi*/
0x6f8, /* OR8mi*/
0x3d, /* ADC8mi*/
0x968, /* SBB8mi*/
0xc7, /* AND8mi*/
0xa4c, /* SUB8mi*/
0x11b1, /* XOR8mi*/
0x224, /* CMP8mi*/
0x6e, /* ADD8ri*/
0x6fa, /* OR8ri*/
0x3f, /* ADC8ri*/
0x96a, /* SBB8ri*/
0xc9, /* AND8ri*/
0xa4e, /* SUB8ri*/
0x11b3, /* XOR8ri*/
0x226, /* CMP8ri*/
/* Table348 */
0x54, /* ADD32mi*/
0x6e5, /* OR32mi*/
0x2b, /* ADC32mi*/
0x956, /* SBB32mi*/
0xb5, /* AND32mi*/
0xa3a, /* SUB32mi*/
0x119f, /* XOR32mi*/
0x212, /* CMP32mi*/
0x57, /* ADD32ri*/
0x6e9, /* OR32ri*/
0x2e, /* ADC32ri*/
0x959, /* SBB32ri*/
0xb8, /* AND32ri*/
0xa3d, /* SUB32ri*/
0x11a2, /* XOR32ri*/
0x215, /* CMP32ri*/
/* Table349 */
0x55, /* ADD32mi8*/
0x6e6, /* OR32mi8*/
0x2c, /* ADC32mi8*/
0x957, /* SBB32mi8*/
0xb6, /* AND32mi8*/
0xa3b, /* SUB32mi8*/
0x11a0, /* XOR32mi8*/
0x213, /* CMP32mi8*/
0x58, /* ADD32ri8*/
0x6ea, /* OR32ri8*/
0x2f, /* ADC32ri8*/
0x95a, /* SBB32ri8*/
0xb9, /* AND32ri8*/
0xa3e, /* SUB32ri8*/
0x11a3, /* XOR32ri8*/
0x216, /* CMP32ri8*/
/* Table350 */
0xaab, /* TEST8rm*/
0xaac, /* TEST8rr*/
/* Table351 */
0xaa0, /* TEST32rm*/
0xaa1, /* TEST32rr*/
/* Table352 */
0x118a, /* XCHG8rm*/
0x118b, /* XCHG8rr*/
/* Table353 */
0x1185, /* XCHG32rm*/
0x1186, /* XCHG32rr*/
/* Table354 */
0x5eb, /* MOV8mr*/
0x5f2, /* MOV8rr*/
/* Table355 */
0x5c8, /* MOV32mr*/
0x5d0, /* MOV32rr*/
/* Table356 */
0x5f0, /* MOV8rm*/
0x5f4, /* MOV8rr_REV*/
/* Table357 */
0x5cf, /* MOV32rm*/
0x5d1, /* MOV32rr_REV*/
/* Table358 */
0x5c9, /* MOV32ms*/
0x5d2, /* MOV32rs*/
/* Table359 */
0x455, /* LEA64_32r*/
0, /* PHI*/
/* Table360 */
0x5d3, /* MOV32sm*/
0x5d4, /* MOV32sr*/
/* Table361 */
0x7f8, /* POP64rmm*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x7f9, /* POP64rmr*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
/* Table362 */
0x6d0, /* NOOP*/
/* Table363 */
0x1184, /* XCHG32ar64*/
/* Table364 */
0x1184, /* XCHG32ar64*/
/* Table365 */
0x1184, /* XCHG32ar64*/
/* Table366 */
0x1184, /* XCHG32ar64*/
/* Table367 */
0x1184, /* XCHG32ar64*/
/* Table368 */
0x1184, /* XCHG32ar64*/
/* Table369 */
0x1184, /* XCHG32ar64*/
/* Table370 */
0x28e, /* CWDE*/
/* Table371 */
0x16c, /* CDQ*/
/* Table372 */
0x2ee, /* FARCALL32i*/
/* Table373 */
0x116b, /* WAIT*/
/* Table374 */
0x87b, /* PUSHF64*/
/* Table375 */
0x807, /* POPF64*/
/* Table376 */
0x92f, /* SAHF*/
/* Table377 */
0x430, /* LAHF*/
/* Table378 */
0x62f, /* MOVSB*/
/* Table379 */
0x630, /* MOVSD*/
/* Table380 */
0x235, /* CMPS8*/
/* Table381 */
0x233, /* CMPS32*/
/* Table382 */
0xaa7, /* TEST8i8*/
/* Table383 */
0xa9d, /* TEST32i32*/
/* Table384 */
0xa16, /* STOSB*/
/* Table385 */
0xa17, /* STOSD*/
/* Table386 */
0x4aa, /* LODSB*/
/* Table387 */
0x4ab, /* LODSD*/
/* Table388 */
0x971, /* SCAS8*/
/* Table389 */
0x96f, /* SCAS32*/
/* Table390 */
0x5ef, /* MOV8ri*/
/* Table391 */
0x5ef, /* MOV8ri*/
/* Table392 */
0x5ef, /* MOV8ri*/
/* Table393 */
0x5ef, /* MOV8ri*/
/* Table394 */
0x5ef, /* MOV8ri*/
/* Table395 */
0x5ef, /* MOV8ri*/
/* Table396 */
0x5ef, /* MOV8ri*/
/* Table397 */
0x5ef, /* MOV8ri*/
/* Table398 */
0x5ce, /* MOV32ri*/
/* Table399 */
0x5ce, /* MOV32ri*/
/* Table400 */
0x5ce, /* MOV32ri*/
/* Table401 */
0x5ce, /* MOV32ri*/
/* Table402 */
0x5ce, /* MOV32ri*/
/* Table403 */
0x5ce, /* MOV32ri*/
/* Table404 */
0x5ce, /* MOV32ri*/
/* Table405 */
0x5ce, /* MOV32ri*/
/* Table406 */
0x8fc, /* ROL8mi*/
0x914, /* ROR8mi*/
0x89d, /* RCL8mi*/
0x8bd, /* RCR8mi*/
0x9af, /* SHL8mi*/
0x9d7, /* SHR8mi*/
0, /* PHI*/
0x944, /* SAR8mi*/
0x8ff, /* ROL8ri*/
0x917, /* ROR8ri*/
0x8a0, /* RCL8ri*/
0x8c0, /* RCR8ri*/
0x9b2, /* SHL8ri*/
0x9da, /* SHR8ri*/
0, /* PHI*/
0x947, /* SAR8ri*/
/* Table407 */
0x8f0, /* ROL32mi*/
0x908, /* ROR32mi*/
0x891, /* RCL32mi*/
0x8b1, /* RCR32mi*/
0x9a3, /* SHL32mi*/
0x9cb, /* SHR32mi*/
0, /* PHI*/
0x938, /* SAR32mi*/
0x8f3, /* ROL32ri*/
0x90b, /* ROR32ri*/
0x894, /* RCL32ri*/
0x8b4, /* RCR32ri*/
0x9a6, /* SHL32ri*/
0x9ce, /* SHR32ri*/
0, /* PHI*/
0x93b, /* SAR32ri*/
/* Table408 */
0x8e4, /* RETI*/
/* Table409 */
0x8e3, /* RET*/
/* Table410 */
0x45a, /* LES32rm*/
0, /* PHI*/
/* Table411 */
0x440, /* LDS32rm*/
0, /* PHI*/
/* Table412 */
0x5ea, /* MOV8mi*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x1175, /* XABORT*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
/* Table413 */
0x5c7, /* MOV32mi*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x117f, /* XBEGIN_4*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
/* Table414 */
0x2e5, /* ENTER*/
/* Table415 */
0x458, /* LEAVE64*/
/* Table416 */
0x4b1, /* LRETI*/
/* Table417 */
0x4b3, /* LRETL*/
/* Table418 */
0x39b, /* INT3*/
/* Table419 */
0x39a, /* INT*/
/* Table420 */
0x39c, /* INTO*/
/* Table421 */
0x3a8, /* IRET32*/
/* Table422 */
0x8fa, /* ROL8m1*/
0x912, /* ROR8m1*/
0x89b, /* RCL8m1*/
0x8bb, /* RCR8m1*/
0x9ad, /* SHL8m1*/
0x9d5, /* SHR8m1*/
0, /* PHI*/
0x942, /* SAR8m1*/
0x8fd, /* ROL8r1*/
0x915, /* ROR8r1*/
0x89e, /* RCL8r1*/
0x8be, /* RCR8r1*/
0x9b0, /* SHL8r1*/
0x9d8, /* SHR8r1*/
0, /* PHI*/
0x945, /* SAR8r1*/
/* Table423 */
0x8ee, /* ROL32m1*/
0x906, /* ROR32m1*/
0x88f, /* RCL32m1*/
0x8af, /* RCR32m1*/
0x9a1, /* SHL32m1*/
0x9c9, /* SHR32m1*/
0, /* PHI*/
0x936, /* SAR32m1*/
0x8f1, /* ROL32r1*/
0x909, /* ROR32r1*/
0x892, /* RCL32r1*/
0x8b2, /* RCR32r1*/
0x9a4, /* SHL32r1*/
0x9cc, /* SHR32r1*/
0, /* PHI*/
0x939, /* SAR32r1*/
/* Table424 */
0x8fb, /* ROL8mCL*/
0x913, /* ROR8mCL*/
0x89c, /* RCL8mCL*/
0x8bc, /* RCR8mCL*/
0x9ae, /* SHL8mCL*/
0x9d6, /* SHR8mCL*/
0, /* PHI*/
0x943, /* SAR8mCL*/
0x8fe, /* ROL8rCL*/
0x916, /* ROR8rCL*/
0x89f, /* RCL8rCL*/
0x8bf, /* RCR8rCL*/
0x9b1, /* SHL8rCL*/
0x9d9, /* SHR8rCL*/
0, /* PHI*/
0x946, /* SAR8rCL*/
/* Table425 */
0x8ef, /* ROL32mCL*/
0x907, /* ROR32mCL*/
0x890, /* RCL32mCL*/
0x8b0, /* RCR32mCL*/
0x9a2, /* SHL32mCL*/
0x9ca, /* SHR32mCL*/
0, /* PHI*/
0x937, /* SAR32mCL*/
0x8f2, /* ROL32rCL*/
0x90a, /* ROR32rCL*/
0x893, /* RCL32rCL*/
0x8b3, /* RCR32rCL*/
0x9a5, /* SHL32rCL*/
0x9cd, /* SHR32rCL*/
0, /* PHI*/
0x93a, /* SAR32rCL*/
/* Table426 */
0x1194, /* XLAT*/
/* Table427 */
0x82, /* ADD_F32m*/
0x689, /* MUL_F32m*/
0x2f8, /* FCOM32m*/
0x2fa, /* FCOMP32m*/
0xa70, /* SUB_F32m*/
0xa56, /* SUBR_F32m*/
0x2c4, /* DIV_F32m*/
0x2aa, /* DIVR_F32m*/
0x87, /* ADD_FST0r*/
0x68e, /* MUL_FST0r*/
0x24f, /* COM_FST0r*/
0x24c, /* COMP_FST0r*/
0xa75, /* SUB_FST0r*/
0xa5b, /* SUBR_FST0r*/
0x2c9, /* DIV_FST0r*/
0x2af, /* DIVR_FST0r*/
/* Table428 */
0x443, /* LD_F32m*/
0, /* PHI*/
0xa1e, /* ST_F32m*/
0xa20, /* ST_FP32m*/
0x306, /* FLDENVm*/
0x305, /* FLDCW16m*/
0x324, /* FSTENVm*/
0x30f, /* FNSTCW16m*/
0x452, /* LD_Frr*/
0x452, /* LD_Frr*/
0x452, /* LD_Frr*/
0x452, /* LD_Frr*/
0x452, /* LD_Frr*/
0x452, /* LD_Frr*/
0x452, /* LD_Frr*/
0x452, /* LD_Frr*/
0x118c, /* XCH_F*/
0x118c, /* XCH_F*/
0x118c, /* XCH_F*/
0x118c, /* XCH_F*/
0x118c, /* XCH_F*/
0x118c, /* XCH_F*/
0x118c, /* XCH_F*/
0x118c, /* XCH_F*/
0x30e, /* FNOP*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x16e, /* CHS_F*/
0x19, /* ABS_F*/
0, /* PHI*/
0, /* PHI*/
0xab5, /* TST_F*/
0x326, /* FXAM*/
0, /* PHI*/
0, /* PHI*/
0x442, /* LD_F1*/
0x308, /* FLDL2T*/
0x307, /* FLDL2E*/
0x30b, /* FLDPI*/
0x309, /* FLDLG2*/
0x30a, /* FLDLN2*/
0x441, /* LD_F0*/
0, /* PHI*/
0x2eb, /* F2XM1*/
0x32c, /* FYL2X*/
0x31e, /* FPTAN*/
0x31b, /* FPATAN*/
0x32b, /* FXTRACT*/
0x31d, /* FPREM1*/
0x2fd, /* FDECSTP*/
0x304, /* FINCSTP*/
0x31c, /* FPREM*/
0x32d, /* FYL2XP1*/
0xa0b, /* SQRT_F*/
0x323, /* FSINCOS*/
0x31f, /* FRNDINT*/
0x322, /* FSCALE*/
0x9f1, /* SIN_F*/
0x250, /* COS_F*/
/* Table429 */
0x85, /* ADD_FI32m*/
0x68c, /* MUL_FI32m*/
0x301, /* FICOM32m*/
0x303, /* FICOMP32m*/
0xa73, /* SUB_FI32m*/
0xa59, /* SUBR_FI32m*/
0x2c7, /* DIV_FI32m*/
0x2ad, /* DIVR_FI32m*/
0x196, /* CMOVB_F*/
0x196, /* CMOVB_F*/
0x196, /* CMOVB_F*/
0x196, /* CMOVB_F*/
0x196, /* CMOVB_F*/
0x196, /* CMOVB_F*/
0x196, /* CMOVB_F*/
0x196, /* CMOVB_F*/
0x1a0, /* CMOVE_F*/
0x1a0, /* CMOVE_F*/
0x1a0, /* CMOVE_F*/
0x1a0, /* CMOVE_F*/
0x1a0, /* CMOVE_F*/
0x1a0, /* CMOVE_F*/
0x1a0, /* CMOVE_F*/
0x1a0, /* CMOVE_F*/
0x192, /* CMOVBE_F*/
0x192, /* CMOVBE_F*/
0x192, /* CMOVBE_F*/
0x192, /* CMOVBE_F*/
0x192, /* CMOVBE_F*/
0x192, /* CMOVBE_F*/
0x192, /* CMOVBE_F*/
0x192, /* CMOVBE_F*/
0x1f0, /* CMOVP_F*/
0x1f0, /* CMOVP_F*/
0x1f0, /* CMOVP_F*/
0x1f0, /* CMOVP_F*/
0x1f0, /* CMOVP_F*/
0x1f0, /* CMOVP_F*/
0x1f0, /* CMOVP_F*/
0x1f0, /* CMOVP_F*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0xac5, /* UCOM_FPPr*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
/* Table430 */
0x35c, /* ILD_F32m*/
0x3ab, /* ISTT_FP32m*/
0x3b7, /* IST_F32m*/
0x3b9, /* IST_FP32m*/
0, /* PHI*/
0x445, /* LD_F80m*/
0, /* PHI*/
0xa22, /* ST_FP80m*/
0x1c0, /* CMOVNB_F*/
0x1c0, /* CMOVNB_F*/
0x1c0, /* CMOVNB_F*/
0x1c0, /* CMOVNB_F*/
0x1c0, /* CMOVNB_F*/
0x1c0, /* CMOVNB_F*/
0x1c0, /* CMOVNB_F*/
0x1c0, /* CMOVNB_F*/
0x1ca, /* CMOVNE_F*/
0x1ca, /* CMOVNE_F*/
0x1ca, /* CMOVNE_F*/
0x1ca, /* CMOVNE_F*/
0x1ca, /* CMOVNE_F*/
0x1ca, /* CMOVNE_F*/
0x1ca, /* CMOVNE_F*/
0x1ca, /* CMOVNE_F*/
0x1bc, /* CMOVNBE_F*/
0x1bc, /* CMOVNBE_F*/
0x1bc, /* CMOVNBE_F*/
0x1bc, /* CMOVNBE_F*/
0x1bc, /* CMOVNBE_F*/
0x1bc, /* CMOVNBE_F*/
0x1bc, /* CMOVNBE_F*/
0x1bc, /* CMOVNBE_F*/
0x1da, /* CMOVNP_F*/
0x1da, /* CMOVNP_F*/
0x1da, /* CMOVNP_F*/
0x1da, /* CMOVNP_F*/
0x1da, /* CMOVNP_F*/
0x1da, /* CMOVNP_F*/
0x1da, /* CMOVNP_F*/
0x1da, /* CMOVNP_F*/
0, /* PHI*/
0, /* PHI*/
0x30c, /* FNCLEX*/
0x30d, /* FNINIT*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0xac4, /* UCOM_FIr*/
0xac4, /* UCOM_FIr*/
0xac4, /* UCOM_FIr*/
0xac4, /* UCOM_FIr*/
0xac4, /* UCOM_FIr*/
0xac4, /* UCOM_FIr*/
0xac4, /* UCOM_FIr*/
0xac4, /* UCOM_FIr*/
0x24e, /* COM_FIr*/
0x24e, /* COM_FIr*/
0x24e, /* COM_FIr*/
0x24e, /* COM_FIr*/
0x24e, /* COM_FIr*/
0x24e, /* COM_FIr*/
0x24e, /* COM_FIr*/
0x24e, /* COM_FIr*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
/* Table431 */
0x83, /* ADD_F64m*/
0x68a, /* MUL_F64m*/
0x2f9, /* FCOM64m*/
0x2fb, /* FCOMP64m*/
0xa71, /* SUB_F64m*/
0xa57, /* SUBR_F64m*/
0x2c5, /* DIV_F64m*/
0x2ab, /* DIVR_F64m*/
0x96, /* ADD_FrST0*/
0x69d, /* MUL_FrST0*/
0, /* PHI*/
0, /* PHI*/
0xa67, /* SUBR_FrST0*/
0xa84, /* SUB_FrST0*/
0x2bb, /* DIVR_FrST0*/
0x2d8, /* DIV_FrST0*/
/* Table432 */
0x444, /* LD_F64m*/
0x3ac, /* ISTT_FP64m*/
0xa1f, /* ST_F64m*/
0xa21, /* ST_FP64m*/
0x320, /* FRSTORm*/
0, /* PHI*/
0x321, /* FSAVEm*/
0x311, /* FNSTSWm*/
0x2ff, /* FFREE*/
0, /* PHI*/
0xa2f, /* ST_Frr*/
0xa23, /* ST_FPrr*/
0xacd, /* UCOM_Fr*/
0xac6, /* UCOM_FPr*/
0, /* PHI*/
0, /* PHI*/
/* Table433 */
0x84, /* ADD_FI16m*/
0x68b, /* MUL_FI16m*/
0x300, /* FICOM16m*/
0x302, /* FICOMP16m*/
0xa72, /* SUB_FI16m*/
0xa58, /* SUBR_FI16m*/
0x2c6, /* DIV_FI16m*/
0x2ac, /* DIVR_FI16m*/
0x86, /* ADD_FPrST0*/
0x86, /* ADD_FPrST0*/
0x86, /* ADD_FPrST0*/
0x86, /* ADD_FPrST0*/
0x86, /* ADD_FPrST0*/
0x86, /* ADD_FPrST0*/
0x86, /* ADD_FPrST0*/
0x86, /* ADD_FPrST0*/
0x68d, /* MUL_FPrST0*/
0x68d, /* MUL_FPrST0*/
0x68d, /* MUL_FPrST0*/
0x68d, /* MUL_FPrST0*/
0x68d, /* MUL_FPrST0*/
0x68d, /* MUL_FPrST0*/
0x68d, /* MUL_FPrST0*/
0x68d, /* MUL_FPrST0*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x2fc, /* FCOMPP*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0xa5a, /* SUBR_FPrST0*/
0xa5a, /* SUBR_FPrST0*/
0xa5a, /* SUBR_FPrST0*/
0xa5a, /* SUBR_FPrST0*/
0xa5a, /* SUBR_FPrST0*/
0xa5a, /* SUBR_FPrST0*/
0xa5a, /* SUBR_FPrST0*/
0xa5a, /* SUBR_FPrST0*/
0xa74, /* SUB_FPrST0*/
0xa74, /* SUB_FPrST0*/
0xa74, /* SUB_FPrST0*/
0xa74, /* SUB_FPrST0*/
0xa74, /* SUB_FPrST0*/
0xa74, /* SUB_FPrST0*/
0xa74, /* SUB_FPrST0*/
0xa74, /* SUB_FPrST0*/
0x2ae, /* DIVR_FPrST0*/
0x2ae, /* DIVR_FPrST0*/
0x2ae, /* DIVR_FPrST0*/
0x2ae, /* DIVR_FPrST0*/
0x2ae, /* DIVR_FPrST0*/
0x2ae, /* DIVR_FPrST0*/
0x2ae, /* DIVR_FPrST0*/
0x2ae, /* DIVR_FPrST0*/
0x2c8, /* DIV_FPrST0*/
0x2c8, /* DIV_FPrST0*/
0x2c8, /* DIV_FPrST0*/
0x2c8, /* DIV_FPrST0*/
0x2c8, /* DIV_FPrST0*/
0x2c8, /* DIV_FPrST0*/
0x2c8, /* DIV_FPrST0*/
0x2c8, /* DIV_FPrST0*/
/* Table434 */
0x35b, /* ILD_F16m*/
0x3aa, /* ISTT_FP16m*/
0x3b6, /* IST_F16m*/
0x3b8, /* IST_FP16m*/
0x2f6, /* FBLDm*/
0x35d, /* ILD_F64m*/
0x2f7, /* FBSTPm*/
0x3ba, /* IST_FP64m*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x310, /* FNSTSW16r*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0xac3, /* UCOM_FIPr*/
0xac3, /* UCOM_FIPr*/
0xac3, /* UCOM_FIPr*/
0xac3, /* UCOM_FIPr*/
0xac3, /* UCOM_FIPr*/
0xac3, /* UCOM_FIPr*/
0xac3, /* UCOM_FIPr*/
0xac3, /* UCOM_FIPr*/
0x24d, /* COM_FIPr*/
0x24d, /* COM_FIPr*/
0x24d, /* COM_FIPr*/
0x24d, /* COM_FIPr*/
0x24d, /* COM_FIPr*/
0x24d, /* COM_FIPr*/
0x24d, /* COM_FIPr*/
0x24d, /* COM_FIPr*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
/* Table435 */
0x4b0, /* LOOPNE*/
/* Table436 */
0x4af, /* LOOPE*/
/* Table437 */
0x4ae, /* LOOP*/
/* Table438 */
0x42d, /* JRCXZ*/
/* Table439 */
0x388, /* IN8ri*/
/* Table440 */
0x385, /* IN32ri*/
/* Table441 */
0x706, /* OUT8ir*/
/* Table442 */
0x704, /* OUT32ir*/
/* Table443 */
0x167, /* CALL64pcrel32*/
/* Table444 */
0x41d, /* JMP64pcrel32*/
/* Table445 */
0x2f3, /* FARJMP32i*/
/* Table446 */
0x41f, /* JMP_1*/
/* Table447 */
0x389, /* IN8rr*/
/* Table448 */
0x386, /* IN32rr*/
/* Table449 */
0x707, /* OUT8rr*/
/* Table450 */
0x705, /* OUT32rr*/
/* Table451 */
0x493, /* LOCK_PREFIX*/
/* Table452 */
0x8d3, /* REPNE_PREFIX*/
/* Table453 */
0x8db, /* REP_PREFIX*/
/* Table454 */
0x34e, /* HLT*/
/* Table455 */
0x179, /* CMC*/
/* Table456 */
0xaa8, /* TEST8mi*/
0, /* PHI*/
0x6d9, /* NOT8m*/
0x6ce, /* NEG8m*/
0x677, /* MUL8m*/
0x37f, /* IMUL8m*/
0x2a4, /* DIV8m*/
0x359, /* IDIV8m*/
0xaa9, /* TEST8ri*/
0, /* PHI*/
0x6da, /* NOT8r*/
0x6cf, /* NEG8r*/
0x678, /* MUL8r*/
0x380, /* IMUL8r*/
0x2a5, /* DIV8r*/
0x35a, /* IDIV8r*/
/* Table457 */
0xa9e, /* TEST32mi*/
0, /* PHI*/
0x6d5, /* NOT32m*/
0x6ca, /* NEG32m*/
0x673, /* MUL32m*/
0x36f, /* IMUL32m*/
0x2a0, /* DIV32m*/
0x355, /* IDIV32m*/
0xa9f, /* TEST32ri*/
0, /* PHI*/
0x6d6, /* NOT32r*/
0x6cb, /* NEG32r*/
0x674, /* MUL32r*/
0x370, /* IMUL32r*/
0x2a1, /* DIV32r*/
0x356, /* IDIV32r*/
/* Table458 */
0x173, /* CLC*/
/* Table459 */
0xa11, /* STC*/
/* Table460 */
0x177, /* CLI*/
/* Table461 */
0xa14, /* STI*/
/* Table462 */
0x174, /* CLD*/
/* Table463 */
0xa12, /* STD*/
/* Table464 */
0x394, /* INC8m*/
0x29c, /* DEC8m*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x395, /* INC8r*/
0x29d, /* DEC8r*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
/* Table465 */
0x390, /* INC64_32m*/
0x298, /* DEC64_32m*/
0x166, /* CALL64m*/
0x2ef, /* FARCALL32m*/
0x41c, /* JMP64m*/
0x2f4, /* FARJMP32m*/
0x870, /* PUSH64rmm*/
0, /* PHI*/
0x391, /* INC64_32r*/
0x299, /* DEC64_32r*/
0x168, /* CALL64r*/
0, /* PHI*/
0x41e, /* JMP64r*/
0, /* PHI*/
0x871, /* PUSH64rmr*/
0, /* PHI*/
/* Table466 */
0x6d, /* ADD8mr*/
0x70, /* ADD8rr*/
/* Table467 */
0x4a, /* ADD16mr*/
0x50, /* ADD16rr*/
/* Table468 */
0x6f, /* ADD8rm*/
0x71, /* ADD8rr_REV*/
/* Table469 */
0x4f, /* ADD16rm*/
0x52, /* ADD16rr_REV*/
/* Table470 */
0x6b, /* ADD8i8*/
/* Table471 */
0x47, /* ADD16i16*/
/* Table472 */
0x877, /* PUSHES16*/
/* Table473 */
0x803, /* POPES16*/
/* Table474 */
0x6f9, /* OR8mr*/
0x6fc, /* OR8rr*/
/* Table475 */
0x6de, /* OR16mr*/
0x6e2, /* OR16rr*/
/* Table476 */
0x6fb, /* OR8rm*/
0x6fd, /* OR8rr_REV*/
/* Table477 */
0x6e1, /* OR16rm*/
0x6e3, /* OR16rr_REV*/
/* Table478 */
0x6f7, /* OR8i8*/
/* Table479 */
0x6db, /* OR16i16*/
/* Table480 */
0x873, /* PUSHCS16*/
/* Table481 */
0x3e, /* ADC8mr*/
0x41, /* ADC8rr*/
/* Table482 */
0x24, /* ADC16mr*/
0x28, /* ADC16rr*/
/* Table483 */
0x40, /* ADC8rm*/
0x42, /* ADC8rr_REV*/
/* Table484 */
0x27, /* ADC16rm*/
0x29, /* ADC16rr_REV*/
/* Table485 */
0x3c, /* ADC8i8*/
/* Table486 */
0x21, /* ADC16i16*/
/* Table487 */
0x882, /* PUSHSS16*/
/* Table488 */
0x80e, /* POPSS16*/
/* Table489 */
0x969, /* SBB8mr*/
0x96c, /* SBB8rr*/
/* Table490 */
0x94f, /* SBB16mr*/
0x953, /* SBB16rr*/
/* Table491 */
0x96b, /* SBB8rm*/
0x96d, /* SBB8rr_REV*/
/* Table492 */
0x952, /* SBB16rm*/
0x954, /* SBB16rr_REV*/
/* Table493 */
0x967, /* SBB8i8*/
/* Table494 */
0x94c, /* SBB16i16*/
/* Table495 */
0x875, /* PUSHDS16*/
/* Table496 */
0x801, /* POPDS16*/
/* Table497 */
0xc8, /* AND8mr*/
0xcb, /* AND8rr*/
/* Table498 */
0xae, /* AND16mr*/
0xb2, /* AND16rr*/
/* Table499 */
0xca, /* AND8rm*/
0xcc, /* AND8rr_REV*/
/* Table500 */
0xb1, /* AND16rm*/
0xb3, /* AND16rr_REV*/
/* Table501 */
0xc6, /* AND8i8*/
/* Table502 */
0xab, /* AND16i16*/
/* Table503 */
0x2e6, /* ES_PREFIX*/
/* Table504 */
0x28f, /* DAA*/
/* Table505 */
0xa4d, /* SUB8mr*/
0xa50, /* SUB8rr*/
/* Table506 */
0xa33, /* SUB16mr*/
0xa37, /* SUB16rr*/
/* Table507 */
0xa4f, /* SUB8rm*/
0xa51, /* SUB8rr_REV*/
/* Table508 */
0xa36, /* SUB16rm*/
0xa38, /* SUB16rr_REV*/
/* Table509 */
0xa4b, /* SUB8i8*/
/* Table510 */
0xa30, /* SUB16i16*/
/* Table511 */
0x260, /* CS_PREFIX*/
/* Table512 */
0x290, /* DAS*/
/* Table513 */
0x11b2, /* XOR8mr*/
0x11b5, /* XOR8rr*/
/* Table514 */
0x1198, /* XOR16mr*/
0x119c, /* XOR16rr*/
/* Table515 */
0x11b4, /* XOR8rm*/
0x11b6, /* XOR8rr_REV*/
/* Table516 */
0x119b, /* XOR16rm*/
0x119d, /* XOR16rr_REV*/
/* Table517 */
0x11b0, /* XOR8i8*/
/* Table518 */
0x1195, /* XOR16i16*/
/* Table519 */
0xa0f, /* SS_PREFIX*/
/* Table520 */
0x15, /* AAA*/
/* Table521 */
0x225, /* CMP8mr*/
0x228, /* CMP8rr*/
/* Table522 */
0x20b, /* CMP16mr*/
0x20f, /* CMP16rr*/
/* Table523 */
0x227, /* CMP8rm*/
0x229, /* CMP8rr_REV*/
/* Table524 */
0x20e, /* CMP16rm*/
0x210, /* CMP16rr_REV*/
/* Table525 */
0x223, /* CMP8i8*/
/* Table526 */
0x208, /* CMP16i16*/
/* Table527 */
0x2dd, /* DS_PREFIX*/
/* Table528 */
0x18, /* AAS*/
/* Table529 */
0x38b, /* INC16r*/
/* Table530 */
0x38b, /* INC16r*/
/* Table531 */
0x38b, /* INC16r*/
/* Table532 */
0x38b, /* INC16r*/
/* Table533 */
0x38b, /* INC16r*/
/* Table534 */
0x38b, /* INC16r*/
/* Table535 */
0x38b, /* INC16r*/
/* Table536 */
0x38b, /* INC16r*/
/* Table537 */
0x293, /* DEC16r*/
/* Table538 */
0x293, /* DEC16r*/
/* Table539 */
0x293, /* DEC16r*/
/* Table540 */
0x293, /* DEC16r*/
/* Table541 */
0x293, /* DEC16r*/
/* Table542 */
0x293, /* DEC16r*/
/* Table543 */
0x293, /* DEC16r*/
/* Table544 */
0x293, /* DEC16r*/
/* Table545 */
0x866, /* PUSH16r*/
/* Table546 */
0x866, /* PUSH16r*/
/* Table547 */
0x866, /* PUSH16r*/
/* Table548 */
0x866, /* PUSH16r*/
/* Table549 */
0x866, /* PUSH16r*/
/* Table550 */
0x866, /* PUSH16r*/
/* Table551 */
0x866, /* PUSH16r*/
/* Table552 */
0x866, /* PUSH16r*/
/* Table553 */
0x7f1, /* POP16r*/
/* Table554 */
0x7f1, /* POP16r*/
/* Table555 */
0x7f1, /* POP16r*/
/* Table556 */
0x7f1, /* POP16r*/
/* Table557 */
0x7f1, /* POP16r*/
/* Table558 */
0x7f1, /* POP16r*/
/* Table559 */
0x7f1, /* POP16r*/
/* Table560 */
0x7f1, /* POP16r*/
/* Table561 */
0x872, /* PUSHA32*/
/* Table562 */
0x7fa, /* POPA32*/
/* Table563 */
0x120, /* BOUNDS16rm*/
0, /* PHI*/
/* Table564 */
0xd9, /* ARPL16mr*/
0xda, /* ARPL16rr*/
/* Table565 */
0x325, /* FS_PREFIX*/
/* Table566 */
0x349, /* GS_PREFIX*/
/* Table567 */
0x291, /* DATA16_PREFIX*/
/* Table568 */
0x884, /* PUSHi16*/
/* Table569 */
0x36a, /* IMUL16rmi*/
0x36d, /* IMUL16rri*/
/* Table570 */
0x886, /* PUSHi8*/
/* Table571 */
0x36b, /* IMUL16rmi8*/
0x36e, /* IMUL16rri8*/
/* Table572 */
0x387, /* IN8*/
/* Table573 */
0x381, /* IN16*/
/* Table574 */
0x708, /* OUTSB*/
/* Table575 */
0x70a, /* OUTSW*/
/* Table576 */
0x429, /* JO_1*/
/* Table577 */
0x423, /* JNO_1*/
/* Table578 */
0x40b, /* JB_1*/
/* Table579 */
0x405, /* JAE_1*/
/* Table580 */
0x410, /* JE_1*/
/* Table581 */
0x421, /* JNE_1*/
/* Table582 */
0x409, /* JBE_1*/
/* Table583 */
0x407, /* JA_1*/
/* Table584 */
0x42e, /* JS_1*/
/* Table585 */
0x427, /* JNS_1*/
/* Table586 */
0x42b, /* JP_1*/
/* Table587 */
0x425, /* JNP_1*/
/* Table588 */
0x418, /* JL_1*/
/* Table589 */
0x412, /* JGE_1*/
/* Table590 */
0x416, /* JLE_1*/
/* Table591 */
0x414, /* JG_1*/
/* Table592 */
0x6c, /* ADD8mi*/
0x6f8, /* OR8mi*/
0x3d, /* ADC8mi*/
0x968, /* SBB8mi*/
0xc7, /* AND8mi*/
0xa4c, /* SUB8mi*/
0x11b1, /* XOR8mi*/
0x224, /* CMP8mi*/
0x6e, /* ADD8ri*/
0x6fa, /* OR8ri*/
0x3f, /* ADC8ri*/
0x96a, /* SBB8ri*/
0xc9, /* AND8ri*/
0xa4e, /* SUB8ri*/
0x11b3, /* XOR8ri*/
0x226, /* CMP8ri*/
/* Table593 */
0x48, /* ADD16mi*/
0x6dc, /* OR16mi*/
0x22, /* ADC16mi*/
0x94d, /* SBB16mi*/
0xac, /* AND16mi*/
0xa31, /* SUB16mi*/
0x1196, /* XOR16mi*/
0x209, /* CMP16mi*/
0x4b, /* ADD16ri*/
0x6df, /* OR16ri*/
0x25, /* ADC16ri*/
0x950, /* SBB16ri*/
0xaf, /* AND16ri*/
0xa34, /* SUB16ri*/
0x1199, /* XOR16ri*/
0x20c, /* CMP16ri*/
/* Table594 */
0x49, /* ADD16mi8*/
0x6dd, /* OR16mi8*/
0x23, /* ADC16mi8*/
0x94e, /* SBB16mi8*/
0xad, /* AND16mi8*/
0xa32, /* SUB16mi8*/
0x1197, /* XOR16mi8*/
0x20a, /* CMP16mi8*/
0x4c, /* ADD16ri8*/
0x6e0, /* OR16ri8*/
0x26, /* ADC16ri8*/
0x951, /* SBB16ri8*/
0xb0, /* AND16ri8*/
0xa35, /* SUB16ri8*/
0x119a, /* XOR16ri8*/
0x20d, /* CMP16ri8*/
/* Table595 */
0xaab, /* TEST8rm*/
0xaac, /* TEST8rr*/
/* Table596 */
0xa9b, /* TEST16rm*/
0xa9c, /* TEST16rr*/
/* Table597 */
0x118a, /* XCHG8rm*/
0x118b, /* XCHG8rr*/
/* Table598 */
0x1181, /* XCHG16rm*/
0x1182, /* XCHG16rr*/
/* Table599 */
0x5eb, /* MOV8mr*/
0x5f2, /* MOV8rr*/
/* Table600 */
0x5b9, /* MOV16mr*/
0x5bf, /* MOV16rr*/
/* Table601 */
0x5f0, /* MOV8rm*/
0x5f4, /* MOV8rr_REV*/
/* Table602 */
0x5be, /* MOV16rm*/
0x5c0, /* MOV16rr_REV*/
/* Table603 */
0x5ba, /* MOV16ms*/
0x5c1, /* MOV16rs*/
/* Table604 */
0x453, /* LEA16r*/
0, /* PHI*/
/* Table605 */
0x5c2, /* MOV16sm*/
0x5c3, /* MOV16sr*/
/* Table606 */
0x7f2, /* POP16rmm*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x7f3, /* POP16rmr*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
/* Table607 */
0x6d0, /* NOOP*/
/* Table608 */
0x1180, /* XCHG16ar*/
/* Table609 */
0x1180, /* XCHG16ar*/
/* Table610 */
0x1180, /* XCHG16ar*/
/* Table611 */
0x1180, /* XCHG16ar*/
/* Table612 */
0x1180, /* XCHG16ar*/
/* Table613 */
0x1180, /* XCHG16ar*/
/* Table614 */
0x1180, /* XCHG16ar*/
/* Table615 */
0x16b, /* CBW*/
/* Table616 */
0x28d, /* CWD*/
/* Table617 */
0x2ec, /* FARCALL16i*/
/* Table618 */
0x116b, /* WAIT*/
/* Table619 */
0x879, /* PUSHF16*/
/* Table620 */
0x805, /* POPF16*/
/* Table621 */
0x92f, /* SAHF*/
/* Table622 */
0x430, /* LAHF*/
/* Table623 */
0x5ed, /* MOV8o8a*/
/* Table624 */
0x5bb, /* MOV16o16a*/
/* Table625 */
0x5e9, /* MOV8ao8*/
/* Table626 */
0x5b7, /* MOV16ao16*/
/* Table627 */
0x62f, /* MOVSB*/
/* Table628 */
0x642, /* MOVSW*/
/* Table629 */
0x235, /* CMPS8*/
/* Table630 */
0x232, /* CMPS16*/
/* Table631 */
0xaa7, /* TEST8i8*/
/* Table632 */
0xa98, /* TEST16i16*/
/* Table633 */
0xa16, /* STOSB*/
/* Table634 */
0xa19, /* STOSW*/
/* Table635 */
0x4aa, /* LODSB*/
/* Table636 */
0x4ad, /* LODSW*/
/* Table637 */
0x971, /* SCAS8*/
/* Table638 */
0x96e, /* SCAS16*/
/* Table639 */
0x5ef, /* MOV8ri*/
/* Table640 */
0x5ef, /* MOV8ri*/
/* Table641 */
0x5ef, /* MOV8ri*/
/* Table642 */
0x5ef, /* MOV8ri*/
/* Table643 */
0x5ef, /* MOV8ri*/
/* Table644 */
0x5ef, /* MOV8ri*/
/* Table645 */
0x5ef, /* MOV8ri*/
/* Table646 */
0x5ef, /* MOV8ri*/
/* Table647 */
0x5bd, /* MOV16ri*/
/* Table648 */
0x5bd, /* MOV16ri*/
/* Table649 */
0x5bd, /* MOV16ri*/
/* Table650 */
0x5bd, /* MOV16ri*/
/* Table651 */
0x5bd, /* MOV16ri*/
/* Table652 */
0x5bd, /* MOV16ri*/
/* Table653 */
0x5bd, /* MOV16ri*/
/* Table654 */
0x5bd, /* MOV16ri*/
/* Table655 */
0x8fc, /* ROL8mi*/
0x914, /* ROR8mi*/
0x89d, /* RCL8mi*/
0x8bd, /* RCR8mi*/
0x9af, /* SHL8mi*/
0x9d7, /* SHR8mi*/
0, /* PHI*/
0x944, /* SAR8mi*/
0x8ff, /* ROL8ri*/
0x917, /* ROR8ri*/
0x8a0, /* RCL8ri*/
0x8c0, /* RCR8ri*/
0x9b2, /* SHL8ri*/
0x9da, /* SHR8ri*/
0, /* PHI*/
0x947, /* SAR8ri*/
/* Table656 */
0x8ea, /* ROL16mi*/
0x902, /* ROR16mi*/
0x88b, /* RCL16mi*/
0x8ab, /* RCR16mi*/
0x99d, /* SHL16mi*/
0x9c5, /* SHR16mi*/
0, /* PHI*/
0x932, /* SAR16mi*/
0x8ed, /* ROL16ri*/
0x905, /* ROR16ri*/
0x88e, /* RCL16ri*/
0x8ae, /* RCR16ri*/
0x9a0, /* SHL16ri*/
0x9c8, /* SHR16ri*/
0, /* PHI*/
0x935, /* SAR16ri*/
/* Table657 */
0x8e5, /* RETIW*/
/* Table658 */
0x8e6, /* RETW*/
/* Table659 */
0x459, /* LES16rm*/
0, /* PHI*/
/* Table660 */
0x43f, /* LDS16rm*/
0, /* PHI*/
/* Table661 */
0x5ea, /* MOV8mi*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x1175, /* XABORT*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
/* Table662 */
0x5b8, /* MOV16mi*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x117f, /* XBEGIN_4*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
/* Table663 */
0x2e5, /* ENTER*/
/* Table664 */
0x457, /* LEAVE*/
/* Table665 */
0x4b2, /* LRETIW*/
/* Table666 */
0x4b5, /* LRETW*/
/* Table667 */
0x39b, /* INT3*/
/* Table668 */
0x39a, /* INT*/
/* Table669 */
0x39c, /* INTO*/
/* Table670 */
0x3a7, /* IRET16*/
/* Table671 */
0x8fa, /* ROL8m1*/
0x912, /* ROR8m1*/
0x89b, /* RCL8m1*/
0x8bb, /* RCR8m1*/
0x9ad, /* SHL8m1*/
0x9d5, /* SHR8m1*/
0, /* PHI*/
0x942, /* SAR8m1*/
0x8fd, /* ROL8r1*/
0x915, /* ROR8r1*/
0x89e, /* RCL8r1*/
0x8be, /* RCR8r1*/
0x9b0, /* SHL8r1*/
0x9d8, /* SHR8r1*/
0, /* PHI*/
0x945, /* SAR8r1*/
/* Table672 */
0x8e8, /* ROL16m1*/
0x900, /* ROR16m1*/
0x889, /* RCL16m1*/
0x8a9, /* RCR16m1*/
0x99b, /* SHL16m1*/
0x9c3, /* SHR16m1*/
0, /* PHI*/
0x930, /* SAR16m1*/
0x8eb, /* ROL16r1*/
0x903, /* ROR16r1*/
0x88c, /* RCL16r1*/
0x8ac, /* RCR16r1*/
0x99e, /* SHL16r1*/
0x9c6, /* SHR16r1*/
0, /* PHI*/
0x933, /* SAR16r1*/
/* Table673 */
0x8fb, /* ROL8mCL*/
0x913, /* ROR8mCL*/
0x89c, /* RCL8mCL*/
0x8bc, /* RCR8mCL*/
0x9ae, /* SHL8mCL*/
0x9d6, /* SHR8mCL*/
0, /* PHI*/
0x943, /* SAR8mCL*/
0x8fe, /* ROL8rCL*/
0x916, /* ROR8rCL*/
0x89f, /* RCL8rCL*/
0x8bf, /* RCR8rCL*/
0x9b1, /* SHL8rCL*/
0x9d9, /* SHR8rCL*/
0, /* PHI*/
0x946, /* SAR8rCL*/
/* Table674 */
0x8e9, /* ROL16mCL*/
0x901, /* ROR16mCL*/
0x88a, /* RCL16mCL*/
0x8aa, /* RCR16mCL*/
0x99c, /* SHL16mCL*/
0x9c4, /* SHR16mCL*/
0, /* PHI*/
0x931, /* SAR16mCL*/
0x8ec, /* ROL16rCL*/
0x904, /* ROR16rCL*/
0x88d, /* RCL16rCL*/
0x8ad, /* RCR16rCL*/
0x99f, /* SHL16rCL*/
0x9c7, /* SHR16rCL*/
0, /* PHI*/
0x934, /* SAR16rCL*/
/* Table675 */
0x17, /* AAM8i8*/
/* Table676 */
0x16, /* AAD8i8*/
/* Table677 */
0x1194, /* XLAT*/
/* Table678 */
0x82, /* ADD_F32m*/
0x689, /* MUL_F32m*/
0x2f8, /* FCOM32m*/
0x2fa, /* FCOMP32m*/
0xa70, /* SUB_F32m*/
0xa56, /* SUBR_F32m*/
0x2c4, /* DIV_F32m*/
0x2aa, /* DIVR_F32m*/
0x87, /* ADD_FST0r*/
0x68e, /* MUL_FST0r*/
0x24f, /* COM_FST0r*/
0x24c, /* COMP_FST0r*/
0xa75, /* SUB_FST0r*/
0xa5b, /* SUBR_FST0r*/
0x2c9, /* DIV_FST0r*/
0x2af, /* DIVR_FST0r*/
/* Table679 */
0x443, /* LD_F32m*/
0, /* PHI*/
0xa1e, /* ST_F32m*/
0xa20, /* ST_FP32m*/
0x306, /* FLDENVm*/
0x305, /* FLDCW16m*/
0x324, /* FSTENVm*/
0x30f, /* FNSTCW16m*/
0x452, /* LD_Frr*/
0x452, /* LD_Frr*/
0x452, /* LD_Frr*/
0x452, /* LD_Frr*/
0x452, /* LD_Frr*/
0x452, /* LD_Frr*/
0x452, /* LD_Frr*/
0x452, /* LD_Frr*/
0x118c, /* XCH_F*/
0x118c, /* XCH_F*/
0x118c, /* XCH_F*/
0x118c, /* XCH_F*/
0x118c, /* XCH_F*/
0x118c, /* XCH_F*/
0x118c, /* XCH_F*/
0x118c, /* XCH_F*/
0x30e, /* FNOP*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x16e, /* CHS_F*/
0x19, /* ABS_F*/
0, /* PHI*/
0, /* PHI*/
0xab5, /* TST_F*/
0x326, /* FXAM*/
0, /* PHI*/
0, /* PHI*/
0x442, /* LD_F1*/
0x308, /* FLDL2T*/
0x307, /* FLDL2E*/
0x30b, /* FLDPI*/
0x309, /* FLDLG2*/
0x30a, /* FLDLN2*/
0x441, /* LD_F0*/
0, /* PHI*/
0x2eb, /* F2XM1*/
0x32c, /* FYL2X*/
0x31e, /* FPTAN*/
0x31b, /* FPATAN*/
0x32b, /* FXTRACT*/
0x31d, /* FPREM1*/
0x2fd, /* FDECSTP*/
0x304, /* FINCSTP*/
0x31c, /* FPREM*/
0x32d, /* FYL2XP1*/
0xa0b, /* SQRT_F*/
0x323, /* FSINCOS*/
0x31f, /* FRNDINT*/
0x322, /* FSCALE*/
0x9f1, /* SIN_F*/
0x250, /* COS_F*/
/* Table680 */
0x85, /* ADD_FI32m*/
0x68c, /* MUL_FI32m*/
0x301, /* FICOM32m*/
0x303, /* FICOMP32m*/
0xa73, /* SUB_FI32m*/
0xa59, /* SUBR_FI32m*/
0x2c7, /* DIV_FI32m*/
0x2ad, /* DIVR_FI32m*/
0x196, /* CMOVB_F*/
0x196, /* CMOVB_F*/
0x196, /* CMOVB_F*/
0x196, /* CMOVB_F*/
0x196, /* CMOVB_F*/
0x196, /* CMOVB_F*/
0x196, /* CMOVB_F*/
0x196, /* CMOVB_F*/
0x1a0, /* CMOVE_F*/
0x1a0, /* CMOVE_F*/
0x1a0, /* CMOVE_F*/
0x1a0, /* CMOVE_F*/
0x1a0, /* CMOVE_F*/
0x1a0, /* CMOVE_F*/
0x1a0, /* CMOVE_F*/
0x1a0, /* CMOVE_F*/
0x192, /* CMOVBE_F*/
0x192, /* CMOVBE_F*/
0x192, /* CMOVBE_F*/
0x192, /* CMOVBE_F*/
0x192, /* CMOVBE_F*/
0x192, /* CMOVBE_F*/
0x192, /* CMOVBE_F*/
0x192, /* CMOVBE_F*/
0x1f0, /* CMOVP_F*/
0x1f0, /* CMOVP_F*/
0x1f0, /* CMOVP_F*/
0x1f0, /* CMOVP_F*/
0x1f0, /* CMOVP_F*/
0x1f0, /* CMOVP_F*/
0x1f0, /* CMOVP_F*/
0x1f0, /* CMOVP_F*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0xac5, /* UCOM_FPPr*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
/* Table681 */
0x35c, /* ILD_F32m*/
0x3ab, /* ISTT_FP32m*/
0x3b7, /* IST_F32m*/
0x3b9, /* IST_FP32m*/
0, /* PHI*/
0x445, /* LD_F80m*/
0, /* PHI*/
0xa22, /* ST_FP80m*/
0x1c0, /* CMOVNB_F*/
0x1c0, /* CMOVNB_F*/
0x1c0, /* CMOVNB_F*/
0x1c0, /* CMOVNB_F*/
0x1c0, /* CMOVNB_F*/
0x1c0, /* CMOVNB_F*/
0x1c0, /* CMOVNB_F*/
0x1c0, /* CMOVNB_F*/
0x1ca, /* CMOVNE_F*/
0x1ca, /* CMOVNE_F*/
0x1ca, /* CMOVNE_F*/
0x1ca, /* CMOVNE_F*/
0x1ca, /* CMOVNE_F*/
0x1ca, /* CMOVNE_F*/
0x1ca, /* CMOVNE_F*/
0x1ca, /* CMOVNE_F*/
0x1bc, /* CMOVNBE_F*/
0x1bc, /* CMOVNBE_F*/
0x1bc, /* CMOVNBE_F*/
0x1bc, /* CMOVNBE_F*/
0x1bc, /* CMOVNBE_F*/
0x1bc, /* CMOVNBE_F*/
0x1bc, /* CMOVNBE_F*/
0x1bc, /* CMOVNBE_F*/
0x1da, /* CMOVNP_F*/
0x1da, /* CMOVNP_F*/
0x1da, /* CMOVNP_F*/
0x1da, /* CMOVNP_F*/
0x1da, /* CMOVNP_F*/
0x1da, /* CMOVNP_F*/
0x1da, /* CMOVNP_F*/
0x1da, /* CMOVNP_F*/
0, /* PHI*/
0, /* PHI*/
0x30c, /* FNCLEX*/
0x30d, /* FNINIT*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0xac4, /* UCOM_FIr*/
0xac4, /* UCOM_FIr*/
0xac4, /* UCOM_FIr*/
0xac4, /* UCOM_FIr*/
0xac4, /* UCOM_FIr*/
0xac4, /* UCOM_FIr*/
0xac4, /* UCOM_FIr*/
0xac4, /* UCOM_FIr*/
0x24e, /* COM_FIr*/
0x24e, /* COM_FIr*/
0x24e, /* COM_FIr*/
0x24e, /* COM_FIr*/
0x24e, /* COM_FIr*/
0x24e, /* COM_FIr*/
0x24e, /* COM_FIr*/
0x24e, /* COM_FIr*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
/* Table682 */
0x83, /* ADD_F64m*/
0x68a, /* MUL_F64m*/
0x2f9, /* FCOM64m*/
0x2fb, /* FCOMP64m*/
0xa71, /* SUB_F64m*/
0xa57, /* SUBR_F64m*/
0x2c5, /* DIV_F64m*/
0x2ab, /* DIVR_F64m*/
0x96, /* ADD_FrST0*/
0x69d, /* MUL_FrST0*/
0, /* PHI*/
0, /* PHI*/
0xa67, /* SUBR_FrST0*/
0xa84, /* SUB_FrST0*/
0x2bb, /* DIVR_FrST0*/
0x2d8, /* DIV_FrST0*/
/* Table683 */
0x444, /* LD_F64m*/
0x3ac, /* ISTT_FP64m*/
0xa1f, /* ST_F64m*/
0xa21, /* ST_FP64m*/
0x320, /* FRSTORm*/
0, /* PHI*/
0x321, /* FSAVEm*/
0x311, /* FNSTSWm*/
0x2ff, /* FFREE*/
0, /* PHI*/
0xa2f, /* ST_Frr*/
0xa23, /* ST_FPrr*/
0xacd, /* UCOM_Fr*/
0xac6, /* UCOM_FPr*/
0, /* PHI*/
0, /* PHI*/
/* Table684 */
0x84, /* ADD_FI16m*/
0x68b, /* MUL_FI16m*/
0x300, /* FICOM16m*/
0x302, /* FICOMP16m*/
0xa72, /* SUB_FI16m*/
0xa58, /* SUBR_FI16m*/
0x2c6, /* DIV_FI16m*/
0x2ac, /* DIVR_FI16m*/
0x86, /* ADD_FPrST0*/
0x86, /* ADD_FPrST0*/
0x86, /* ADD_FPrST0*/
0x86, /* ADD_FPrST0*/
0x86, /* ADD_FPrST0*/
0x86, /* ADD_FPrST0*/
0x86, /* ADD_FPrST0*/
0x86, /* ADD_FPrST0*/
0x68d, /* MUL_FPrST0*/
0x68d, /* MUL_FPrST0*/
0x68d, /* MUL_FPrST0*/
0x68d, /* MUL_FPrST0*/
0x68d, /* MUL_FPrST0*/
0x68d, /* MUL_FPrST0*/
0x68d, /* MUL_FPrST0*/
0x68d, /* MUL_FPrST0*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x2fc, /* FCOMPP*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0xa5a, /* SUBR_FPrST0*/
0xa5a, /* SUBR_FPrST0*/
0xa5a, /* SUBR_FPrST0*/
0xa5a, /* SUBR_FPrST0*/
0xa5a, /* SUBR_FPrST0*/
0xa5a, /* SUBR_FPrST0*/
0xa5a, /* SUBR_FPrST0*/
0xa5a, /* SUBR_FPrST0*/
0xa74, /* SUB_FPrST0*/
0xa74, /* SUB_FPrST0*/
0xa74, /* SUB_FPrST0*/
0xa74, /* SUB_FPrST0*/
0xa74, /* SUB_FPrST0*/
0xa74, /* SUB_FPrST0*/
0xa74, /* SUB_FPrST0*/
0xa74, /* SUB_FPrST0*/
0x2ae, /* DIVR_FPrST0*/
0x2ae, /* DIVR_FPrST0*/
0x2ae, /* DIVR_FPrST0*/
0x2ae, /* DIVR_FPrST0*/
0x2ae, /* DIVR_FPrST0*/
0x2ae, /* DIVR_FPrST0*/
0x2ae, /* DIVR_FPrST0*/
0x2ae, /* DIVR_FPrST0*/
0x2c8, /* DIV_FPrST0*/
0x2c8, /* DIV_FPrST0*/
0x2c8, /* DIV_FPrST0*/
0x2c8, /* DIV_FPrST0*/
0x2c8, /* DIV_FPrST0*/
0x2c8, /* DIV_FPrST0*/
0x2c8, /* DIV_FPrST0*/
0x2c8, /* DIV_FPrST0*/
/* Table685 */
0x35b, /* ILD_F16m*/
0x3aa, /* ISTT_FP16m*/
0x3b6, /* IST_F16m*/
0x3b8, /* IST_FP16m*/
0x2f6, /* FBLDm*/
0x35d, /* ILD_F64m*/
0x2f7, /* FBSTPm*/
0x3ba, /* IST_FP64m*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x310, /* FNSTSW16r*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0xac3, /* UCOM_FIPr*/
0xac3, /* UCOM_FIPr*/
0xac3, /* UCOM_FIPr*/
0xac3, /* UCOM_FIPr*/
0xac3, /* UCOM_FIPr*/
0xac3, /* UCOM_FIPr*/
0xac3, /* UCOM_FIPr*/
0xac3, /* UCOM_FIPr*/
0x24d, /* COM_FIPr*/
0x24d, /* COM_FIPr*/
0x24d, /* COM_FIPr*/
0x24d, /* COM_FIPr*/
0x24d, /* COM_FIPr*/
0x24d, /* COM_FIPr*/
0x24d, /* COM_FIPr*/
0x24d, /* COM_FIPr*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
/* Table686 */
0x4b0, /* LOOPNE*/
/* Table687 */
0x4af, /* LOOPE*/
/* Table688 */
0x4ae, /* LOOP*/
/* Table689 */
0x40e, /* JECXZ_32*/
/* Table690 */
0x388, /* IN8ri*/
/* Table691 */
0x382, /* IN16ri*/
/* Table692 */
0x706, /* OUT8ir*/
/* Table693 */
0x702, /* OUT16ir*/
/* Table694 */
0x16a, /* CALLpcrel32*/
/* Table695 */
0x420, /* JMP_4*/
/* Table696 */
0x2f1, /* FARJMP16i*/
/* Table697 */
0x41f, /* JMP_1*/
/* Table698 */
0x389, /* IN8rr*/
/* Table699 */
0x383, /* IN16rr*/
/* Table700 */
0x707, /* OUT8rr*/
/* Table701 */
0x703, /* OUT16rr*/
/* Table702 */
0x493, /* LOCK_PREFIX*/
/* Table703 */
0x8d3, /* REPNE_PREFIX*/
/* Table704 */
0x8db, /* REP_PREFIX*/
/* Table705 */
0x34e, /* HLT*/
/* Table706 */
0x179, /* CMC*/
/* Table707 */
0xaa8, /* TEST8mi*/
0, /* PHI*/
0x6d9, /* NOT8m*/
0x6ce, /* NEG8m*/
0x677, /* MUL8m*/
0x37f, /* IMUL8m*/
0x2a4, /* DIV8m*/
0x359, /* IDIV8m*/
0xaa9, /* TEST8ri*/
0, /* PHI*/
0x6da, /* NOT8r*/
0x6cf, /* NEG8r*/
0x678, /* MUL8r*/
0x380, /* IMUL8r*/
0x2a5, /* DIV8r*/
0x35a, /* IDIV8r*/
/* Table708 */
0xa99, /* TEST16mi*/
0, /* PHI*/
0x6d3, /* NOT16m*/
0x6c8, /* NEG16m*/
0x671, /* MUL16m*/
0x367, /* IMUL16m*/
0x29e, /* DIV16m*/
0x353, /* IDIV16m*/
0xa9a, /* TEST16ri*/
0, /* PHI*/
0x6d4, /* NOT16r*/
0x6c9, /* NEG16r*/
0x672, /* MUL16r*/
0x368, /* IMUL16r*/
0x29f, /* DIV16r*/
0x354, /* IDIV16r*/
/* Table709 */
0x173, /* CLC*/
/* Table710 */
0xa11, /* STC*/
/* Table711 */
0x177, /* CLI*/
/* Table712 */
0xa14, /* STI*/
/* Table713 */
0x174, /* CLD*/
/* Table714 */
0xa12, /* STD*/
/* Table715 */
0x394, /* INC8m*/
0x29c, /* DEC8m*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x395, /* INC8r*/
0x29d, /* DEC8r*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
/* Table716 */
0x38a, /* INC16m*/
0x292, /* DEC16m*/
0x164, /* CALL32m*/
0x2ed, /* FARCALL16m*/
0x41a, /* JMP32m*/
0x2f2, /* FARJMP16m*/
0x867, /* PUSH16rmm*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x165, /* CALL32r*/
0, /* PHI*/
0x41b, /* JMP32r*/
0, /* PHI*/
0x868, /* PUSH16rmr*/
0, /* PHI*/
/* Table717 */
0x6d, /* ADD8mr*/
0x70, /* ADD8rr*/
/* Table718 */
0x56, /* ADD32mr*/
0x5c, /* ADD32rr*/
/* Table719 */
0x6f, /* ADD8rm*/
0x71, /* ADD8rr_REV*/
/* Table720 */
0x5b, /* ADD32rm*/
0x5e, /* ADD32rr_REV*/
/* Table721 */
0x6b, /* ADD8i8*/
/* Table722 */
0x53, /* ADD32i32*/
/* Table723 */
0x878, /* PUSHES32*/
/* Table724 */
0x804, /* POPES32*/
/* Table725 */
0x6f9, /* OR8mr*/
0x6fc, /* OR8rr*/
/* Table726 */
0x6e7, /* OR32mr*/
0x6ec, /* OR32rr*/
/* Table727 */
0x6fb, /* OR8rm*/
0x6fd, /* OR8rr_REV*/
/* Table728 */
0x6eb, /* OR32rm*/
0x6ed, /* OR32rr_REV*/
/* Table729 */
0x6f7, /* OR8i8*/
/* Table730 */
0x6e4, /* OR32i32*/
/* Table731 */
0x874, /* PUSHCS32*/
/* Table732 */
0x3e, /* ADC8mr*/
0x41, /* ADC8rr*/
/* Table733 */
0x2d, /* ADC32mr*/
0x31, /* ADC32rr*/
/* Table734 */
0x40, /* ADC8rm*/
0x42, /* ADC8rr_REV*/
/* Table735 */
0x30, /* ADC32rm*/
0x32, /* ADC32rr_REV*/
/* Table736 */
0x3c, /* ADC8i8*/
/* Table737 */
0x2a, /* ADC32i32*/
/* Table738 */
0x883, /* PUSHSS32*/
/* Table739 */
0x80f, /* POPSS32*/
/* Table740 */
0x969, /* SBB8mr*/
0x96c, /* SBB8rr*/
/* Table741 */
0x958, /* SBB32mr*/
0x95c, /* SBB32rr*/
/* Table742 */
0x96b, /* SBB8rm*/
0x96d, /* SBB8rr_REV*/
/* Table743 */
0x95b, /* SBB32rm*/
0x95d, /* SBB32rr_REV*/
/* Table744 */
0x967, /* SBB8i8*/
/* Table745 */
0x955, /* SBB32i32*/
/* Table746 */
0x876, /* PUSHDS32*/
/* Table747 */
0x802, /* POPDS32*/
/* Table748 */
0xc8, /* AND8mr*/
0xcb, /* AND8rr*/
/* Table749 */
0xb7, /* AND32mr*/
0xbb, /* AND32rr*/
/* Table750 */
0xca, /* AND8rm*/
0xcc, /* AND8rr_REV*/
/* Table751 */
0xba, /* AND32rm*/
0xbc, /* AND32rr_REV*/
/* Table752 */
0xc6, /* AND8i8*/
/* Table753 */
0xb4, /* AND32i32*/
/* Table754 */
0x2e6, /* ES_PREFIX*/
/* Table755 */
0x28f, /* DAA*/
/* Table756 */
0xa4d, /* SUB8mr*/
0xa50, /* SUB8rr*/
/* Table757 */
0xa3c, /* SUB32mr*/
0xa40, /* SUB32rr*/
/* Table758 */
0xa4f, /* SUB8rm*/
0xa51, /* SUB8rr_REV*/
/* Table759 */
0xa3f, /* SUB32rm*/
0xa41, /* SUB32rr_REV*/
/* Table760 */
0xa4b, /* SUB8i8*/
/* Table761 */
0xa39, /* SUB32i32*/
/* Table762 */
0x260, /* CS_PREFIX*/
/* Table763 */
0x290, /* DAS*/
/* Table764 */
0x11b2, /* XOR8mr*/
0x11b5, /* XOR8rr*/
/* Table765 */
0x11a1, /* XOR32mr*/
0x11a5, /* XOR32rr*/
/* Table766 */
0x11b4, /* XOR8rm*/
0x11b6, /* XOR8rr_REV*/
/* Table767 */
0x11a4, /* XOR32rm*/
0x11a6, /* XOR32rr_REV*/
/* Table768 */
0x11b0, /* XOR8i8*/
/* Table769 */
0x119e, /* XOR32i32*/
/* Table770 */
0xa0f, /* SS_PREFIX*/
/* Table771 */
0x15, /* AAA*/
/* Table772 */
0x225, /* CMP8mr*/
0x228, /* CMP8rr*/
/* Table773 */
0x214, /* CMP32mr*/
0x218, /* CMP32rr*/
/* Table774 */
0x227, /* CMP8rm*/
0x229, /* CMP8rr_REV*/
/* Table775 */
0x217, /* CMP32rm*/
0x219, /* CMP32rr_REV*/
/* Table776 */
0x223, /* CMP8i8*/
/* Table777 */
0x211, /* CMP32i32*/
/* Table778 */
0x2dd, /* DS_PREFIX*/
/* Table779 */
0x18, /* AAS*/
/* Table780 */
0x38d, /* INC32r*/
/* Table781 */
0x38d, /* INC32r*/
/* Table782 */
0x38d, /* INC32r*/
/* Table783 */
0x38d, /* INC32r*/
/* Table784 */
0x38d, /* INC32r*/
/* Table785 */
0x38d, /* INC32r*/
/* Table786 */
0x38d, /* INC32r*/
/* Table787 */
0x38d, /* INC32r*/
/* Table788 */
0x295, /* DEC32r*/
/* Table789 */
0x295, /* DEC32r*/
/* Table790 */
0x295, /* DEC32r*/
/* Table791 */
0x295, /* DEC32r*/
/* Table792 */
0x295, /* DEC32r*/
/* Table793 */
0x295, /* DEC32r*/
/* Table794 */
0x295, /* DEC32r*/
/* Table795 */
0x295, /* DEC32r*/
/* Table796 */
0x869, /* PUSH32r*/
/* Table797 */
0x869, /* PUSH32r*/
/* Table798 */
0x869, /* PUSH32r*/
/* Table799 */
0x869, /* PUSH32r*/
/* Table800 */
0x869, /* PUSH32r*/
/* Table801 */
0x869, /* PUSH32r*/
/* Table802 */
0x869, /* PUSH32r*/
/* Table803 */
0x869, /* PUSH32r*/
/* Table804 */
0x7f4, /* POP32r*/
/* Table805 */
0x7f4, /* POP32r*/
/* Table806 */
0x7f4, /* POP32r*/
/* Table807 */
0x7f4, /* POP32r*/
/* Table808 */
0x7f4, /* POP32r*/
/* Table809 */
0x7f4, /* POP32r*/
/* Table810 */
0x7f4, /* POP32r*/
/* Table811 */
0x7f4, /* POP32r*/
/* Table812 */
0x872, /* PUSHA32*/
/* Table813 */
0x7fa, /* POPA32*/
/* Table814 */
0x121, /* BOUNDS32rm*/
0, /* PHI*/
/* Table815 */
0xd9, /* ARPL16mr*/
0xda, /* ARPL16rr*/
/* Table816 */
0x325, /* FS_PREFIX*/
/* Table817 */
0x349, /* GS_PREFIX*/
/* Table818 */
0x291, /* DATA16_PREFIX*/
/* Table819 */
0x885, /* PUSHi32*/
/* Table820 */
0x372, /* IMUL32rmi*/
0x375, /* IMUL32rri*/
/* Table821 */
0x886, /* PUSHi8*/
/* Table822 */
0x373, /* IMUL32rmi8*/
0x376, /* IMUL32rri8*/
/* Table823 */
0x387, /* IN8*/
/* Table824 */
0x384, /* IN32*/
/* Table825 */
0x708, /* OUTSB*/
/* Table826 */
0x709, /* OUTSD*/
/* Table827 */
0x429, /* JO_1*/
/* Table828 */
0x423, /* JNO_1*/
/* Table829 */
0x40b, /* JB_1*/
/* Table830 */
0x405, /* JAE_1*/
/* Table831 */
0x410, /* JE_1*/
/* Table832 */
0x421, /* JNE_1*/
/* Table833 */
0x409, /* JBE_1*/
/* Table834 */
0x407, /* JA_1*/
/* Table835 */
0x42e, /* JS_1*/
/* Table836 */
0x427, /* JNS_1*/
/* Table837 */
0x42b, /* JP_1*/
/* Table838 */
0x425, /* JNP_1*/
/* Table839 */
0x418, /* JL_1*/
/* Table840 */
0x412, /* JGE_1*/
/* Table841 */
0x416, /* JLE_1*/
/* Table842 */
0x414, /* JG_1*/
/* Table843 */
0x6c, /* ADD8mi*/
0x6f8, /* OR8mi*/
0x3d, /* ADC8mi*/
0x968, /* SBB8mi*/
0xc7, /* AND8mi*/
0xa4c, /* SUB8mi*/
0x11b1, /* XOR8mi*/
0x224, /* CMP8mi*/
0x6e, /* ADD8ri*/
0x6fa, /* OR8ri*/
0x3f, /* ADC8ri*/
0x96a, /* SBB8ri*/
0xc9, /* AND8ri*/
0xa4e, /* SUB8ri*/
0x11b3, /* XOR8ri*/
0x226, /* CMP8ri*/
/* Table844 */
0x54, /* ADD32mi*/
0x6e5, /* OR32mi*/
0x2b, /* ADC32mi*/
0x956, /* SBB32mi*/
0xb5, /* AND32mi*/
0xa3a, /* SUB32mi*/
0x119f, /* XOR32mi*/
0x212, /* CMP32mi*/
0x57, /* ADD32ri*/
0x6e9, /* OR32ri*/
0x2e, /* ADC32ri*/
0x959, /* SBB32ri*/
0xb8, /* AND32ri*/
0xa3d, /* SUB32ri*/
0x11a2, /* XOR32ri*/
0x215, /* CMP32ri*/
/* Table845 */
0x55, /* ADD32mi8*/
0x6e6, /* OR32mi8*/
0x2c, /* ADC32mi8*/
0x957, /* SBB32mi8*/
0xb6, /* AND32mi8*/
0xa3b, /* SUB32mi8*/
0x11a0, /* XOR32mi8*/
0x213, /* CMP32mi8*/
0x58, /* ADD32ri8*/
0x6ea, /* OR32ri8*/
0x2f, /* ADC32ri8*/
0x95a, /* SBB32ri8*/
0xb9, /* AND32ri8*/
0xa3e, /* SUB32ri8*/
0x11a3, /* XOR32ri8*/
0x216, /* CMP32ri8*/
/* Table846 */
0xaab, /* TEST8rm*/
0xaac, /* TEST8rr*/
/* Table847 */
0xaa0, /* TEST32rm*/
0xaa1, /* TEST32rr*/
/* Table848 */
0x118a, /* XCHG8rm*/
0x118b, /* XCHG8rr*/
/* Table849 */
0x1185, /* XCHG32rm*/
0x1186, /* XCHG32rr*/
/* Table850 */
0x5eb, /* MOV8mr*/
0x5f2, /* MOV8rr*/
/* Table851 */
0x5c8, /* MOV32mr*/
0x5d0, /* MOV32rr*/
/* Table852 */
0x5f0, /* MOV8rm*/
0x5f4, /* MOV8rr_REV*/
/* Table853 */
0x5cf, /* MOV32rm*/
0x5d1, /* MOV32rr_REV*/
/* Table854 */
0x5c9, /* MOV32ms*/
0x5d2, /* MOV32rs*/
/* Table855 */
0x454, /* LEA32r*/
0, /* PHI*/
/* Table856 */
0x5d3, /* MOV32sm*/
0x5d4, /* MOV32sr*/
/* Table857 */
0x7f5, /* POP32rmm*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x7f6, /* POP32rmr*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
/* Table858 */
0x6d0, /* NOOP*/
/* Table859 */
0x1183, /* XCHG32ar*/
/* Table860 */
0x1183, /* XCHG32ar*/
/* Table861 */
0x1183, /* XCHG32ar*/
/* Table862 */
0x1183, /* XCHG32ar*/
/* Table863 */
0x1183, /* XCHG32ar*/
/* Table864 */
0x1183, /* XCHG32ar*/
/* Table865 */
0x1183, /* XCHG32ar*/
/* Table866 */
0x28e, /* CWDE*/
/* Table867 */
0x16c, /* CDQ*/
/* Table868 */
0x2ee, /* FARCALL32i*/
/* Table869 */
0x116b, /* WAIT*/
/* Table870 */
0x87a, /* PUSHF32*/
/* Table871 */
0x806, /* POPF32*/
/* Table872 */
0x92f, /* SAHF*/
/* Table873 */
0x430, /* LAHF*/
/* Table874 */
0x5ed, /* MOV8o8a*/
/* Table875 */
0x5ca, /* MOV32o32a*/
/* Table876 */
0x5e9, /* MOV8ao8*/
/* Table877 */
0x5c4, /* MOV32ao32*/
/* Table878 */
0x62f, /* MOVSB*/
/* Table879 */
0x630, /* MOVSD*/
/* Table880 */
0x235, /* CMPS8*/
/* Table881 */
0x233, /* CMPS32*/
/* Table882 */
0xaa7, /* TEST8i8*/
/* Table883 */
0xa9d, /* TEST32i32*/
/* Table884 */
0xa16, /* STOSB*/
/* Table885 */
0xa17, /* STOSD*/
/* Table886 */
0x4aa, /* LODSB*/
/* Table887 */
0x4ab, /* LODSD*/
/* Table888 */
0x971, /* SCAS8*/
/* Table889 */
0x96f, /* SCAS32*/
/* Table890 */
0x5ef, /* MOV8ri*/
/* Table891 */
0x5ef, /* MOV8ri*/
/* Table892 */
0x5ef, /* MOV8ri*/
/* Table893 */
0x5ef, /* MOV8ri*/
/* Table894 */
0x5ef, /* MOV8ri*/
/* Table895 */
0x5ef, /* MOV8ri*/
/* Table896 */
0x5ef, /* MOV8ri*/
/* Table897 */
0x5ef, /* MOV8ri*/
/* Table898 */
0x5ce, /* MOV32ri*/
/* Table899 */
0x5ce, /* MOV32ri*/
/* Table900 */
0x5ce, /* MOV32ri*/
/* Table901 */
0x5ce, /* MOV32ri*/
/* Table902 */
0x5ce, /* MOV32ri*/
/* Table903 */
0x5ce, /* MOV32ri*/
/* Table904 */
0x5ce, /* MOV32ri*/
/* Table905 */
0x5ce, /* MOV32ri*/
/* Table906 */
0x8fc, /* ROL8mi*/
0x914, /* ROR8mi*/
0x89d, /* RCL8mi*/
0x8bd, /* RCR8mi*/
0x9af, /* SHL8mi*/
0x9d7, /* SHR8mi*/
0, /* PHI*/
0x944, /* SAR8mi*/
0x8ff, /* ROL8ri*/
0x917, /* ROR8ri*/
0x8a0, /* RCL8ri*/
0x8c0, /* RCR8ri*/
0x9b2, /* SHL8ri*/
0x9da, /* SHR8ri*/
0, /* PHI*/
0x947, /* SAR8ri*/
/* Table907 */
0x8f0, /* ROL32mi*/
0x908, /* ROR32mi*/
0x891, /* RCL32mi*/
0x8b1, /* RCR32mi*/
0x9a3, /* SHL32mi*/
0x9cb, /* SHR32mi*/
0, /* PHI*/
0x938, /* SAR32mi*/
0x8f3, /* ROL32ri*/
0x90b, /* ROR32ri*/
0x894, /* RCL32ri*/
0x8b4, /* RCR32ri*/
0x9a6, /* SHL32ri*/
0x9ce, /* SHR32ri*/
0, /* PHI*/
0x93b, /* SAR32ri*/
/* Table908 */
0x8e4, /* RETI*/
/* Table909 */
0x8e3, /* RET*/
/* Table910 */
0x45a, /* LES32rm*/
0, /* PHI*/
/* Table911 */
0x440, /* LDS32rm*/
0, /* PHI*/
/* Table912 */
0x5ea, /* MOV8mi*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x1175, /* XABORT*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
/* Table913 */
0x5c7, /* MOV32mi*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x117f, /* XBEGIN_4*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
/* Table914 */
0x2e5, /* ENTER*/
/* Table915 */
0x457, /* LEAVE*/
/* Table916 */
0x4b1, /* LRETI*/
/* Table917 */
0x4b3, /* LRETL*/
/* Table918 */
0x39b, /* INT3*/
/* Table919 */
0x39a, /* INT*/
/* Table920 */
0x39c, /* INTO*/
/* Table921 */
0x3a8, /* IRET32*/
/* Table922 */
0x8fa, /* ROL8m1*/
0x912, /* ROR8m1*/
0x89b, /* RCL8m1*/
0x8bb, /* RCR8m1*/
0x9ad, /* SHL8m1*/
0x9d5, /* SHR8m1*/
0, /* PHI*/
0x942, /* SAR8m1*/
0x8fd, /* ROL8r1*/
0x915, /* ROR8r1*/
0x89e, /* RCL8r1*/
0x8be, /* RCR8r1*/
0x9b0, /* SHL8r1*/
0x9d8, /* SHR8r1*/
0, /* PHI*/
0x945, /* SAR8r1*/
/* Table923 */
0x8ee, /* ROL32m1*/
0x906, /* ROR32m1*/
0x88f, /* RCL32m1*/
0x8af, /* RCR32m1*/
0x9a1, /* SHL32m1*/
0x9c9, /* SHR32m1*/
0, /* PHI*/
0x936, /* SAR32m1*/
0x8f1, /* ROL32r1*/
0x909, /* ROR32r1*/
0x892, /* RCL32r1*/
0x8b2, /* RCR32r1*/
0x9a4, /* SHL32r1*/
0x9cc, /* SHR32r1*/
0, /* PHI*/
0x939, /* SAR32r1*/
/* Table924 */
0x8fb, /* ROL8mCL*/
0x913, /* ROR8mCL*/
0x89c, /* RCL8mCL*/
0x8bc, /* RCR8mCL*/
0x9ae, /* SHL8mCL*/
0x9d6, /* SHR8mCL*/
0, /* PHI*/
0x943, /* SAR8mCL*/
0x8fe, /* ROL8rCL*/
0x916, /* ROR8rCL*/
0x89f, /* RCL8rCL*/
0x8bf, /* RCR8rCL*/
0x9b1, /* SHL8rCL*/
0x9d9, /* SHR8rCL*/
0, /* PHI*/
0x946, /* SAR8rCL*/
/* Table925 */
0x8ef, /* ROL32mCL*/
0x907, /* ROR32mCL*/
0x890, /* RCL32mCL*/
0x8b0, /* RCR32mCL*/
0x9a2, /* SHL32mCL*/
0x9ca, /* SHR32mCL*/
0, /* PHI*/
0x937, /* SAR32mCL*/
0x8f2, /* ROL32rCL*/
0x90a, /* ROR32rCL*/
0x893, /* RCL32rCL*/
0x8b3, /* RCR32rCL*/
0x9a5, /* SHL32rCL*/
0x9cd, /* SHR32rCL*/
0, /* PHI*/
0x93a, /* SAR32rCL*/
/* Table926 */
0x17, /* AAM8i8*/
/* Table927 */
0x16, /* AAD8i8*/
/* Table928 */
0x1194, /* XLAT*/
/* Table929 */
0x82, /* ADD_F32m*/
0x689, /* MUL_F32m*/
0x2f8, /* FCOM32m*/
0x2fa, /* FCOMP32m*/
0xa70, /* SUB_F32m*/
0xa56, /* SUBR_F32m*/
0x2c4, /* DIV_F32m*/
0x2aa, /* DIVR_F32m*/
0x87, /* ADD_FST0r*/
0x68e, /* MUL_FST0r*/
0x24f, /* COM_FST0r*/
0x24c, /* COMP_FST0r*/
0xa75, /* SUB_FST0r*/
0xa5b, /* SUBR_FST0r*/
0x2c9, /* DIV_FST0r*/
0x2af, /* DIVR_FST0r*/
/* Table930 */
0x443, /* LD_F32m*/
0, /* PHI*/
0xa1e, /* ST_F32m*/
0xa20, /* ST_FP32m*/
0x306, /* FLDENVm*/
0x305, /* FLDCW16m*/
0x324, /* FSTENVm*/
0x30f, /* FNSTCW16m*/
0x452, /* LD_Frr*/
0x452, /* LD_Frr*/
0x452, /* LD_Frr*/
0x452, /* LD_Frr*/
0x452, /* LD_Frr*/
0x452, /* LD_Frr*/
0x452, /* LD_Frr*/
0x452, /* LD_Frr*/
0x118c, /* XCH_F*/
0x118c, /* XCH_F*/
0x118c, /* XCH_F*/
0x118c, /* XCH_F*/
0x118c, /* XCH_F*/
0x118c, /* XCH_F*/
0x118c, /* XCH_F*/
0x118c, /* XCH_F*/
0x30e, /* FNOP*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x16e, /* CHS_F*/
0x19, /* ABS_F*/
0, /* PHI*/
0, /* PHI*/
0xab5, /* TST_F*/
0x326, /* FXAM*/
0, /* PHI*/
0, /* PHI*/
0x442, /* LD_F1*/
0x308, /* FLDL2T*/
0x307, /* FLDL2E*/
0x30b, /* FLDPI*/
0x309, /* FLDLG2*/
0x30a, /* FLDLN2*/
0x441, /* LD_F0*/
0, /* PHI*/
0x2eb, /* F2XM1*/
0x32c, /* FYL2X*/
0x31e, /* FPTAN*/
0x31b, /* FPATAN*/
0x32b, /* FXTRACT*/
0x31d, /* FPREM1*/
0x2fd, /* FDECSTP*/
0x304, /* FINCSTP*/
0x31c, /* FPREM*/
0x32d, /* FYL2XP1*/
0xa0b, /* SQRT_F*/
0x323, /* FSINCOS*/
0x31f, /* FRNDINT*/
0x322, /* FSCALE*/
0x9f1, /* SIN_F*/
0x250, /* COS_F*/
/* Table931 */
0x85, /* ADD_FI32m*/
0x68c, /* MUL_FI32m*/
0x301, /* FICOM32m*/
0x303, /* FICOMP32m*/
0xa73, /* SUB_FI32m*/
0xa59, /* SUBR_FI32m*/
0x2c7, /* DIV_FI32m*/
0x2ad, /* DIVR_FI32m*/
0x196, /* CMOVB_F*/
0x196, /* CMOVB_F*/
0x196, /* CMOVB_F*/
0x196, /* CMOVB_F*/
0x196, /* CMOVB_F*/
0x196, /* CMOVB_F*/
0x196, /* CMOVB_F*/
0x196, /* CMOVB_F*/
0x1a0, /* CMOVE_F*/
0x1a0, /* CMOVE_F*/
0x1a0, /* CMOVE_F*/
0x1a0, /* CMOVE_F*/
0x1a0, /* CMOVE_F*/
0x1a0, /* CMOVE_F*/
0x1a0, /* CMOVE_F*/
0x1a0, /* CMOVE_F*/
0x192, /* CMOVBE_F*/
0x192, /* CMOVBE_F*/
0x192, /* CMOVBE_F*/
0x192, /* CMOVBE_F*/
0x192, /* CMOVBE_F*/
0x192, /* CMOVBE_F*/
0x192, /* CMOVBE_F*/
0x192, /* CMOVBE_F*/
0x1f0, /* CMOVP_F*/
0x1f0, /* CMOVP_F*/
0x1f0, /* CMOVP_F*/
0x1f0, /* CMOVP_F*/
0x1f0, /* CMOVP_F*/
0x1f0, /* CMOVP_F*/
0x1f0, /* CMOVP_F*/
0x1f0, /* CMOVP_F*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0xac5, /* UCOM_FPPr*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
/* Table932 */
0x35c, /* ILD_F32m*/
0x3ab, /* ISTT_FP32m*/
0x3b7, /* IST_F32m*/
0x3b9, /* IST_FP32m*/
0, /* PHI*/
0x445, /* LD_F80m*/
0, /* PHI*/
0xa22, /* ST_FP80m*/
0x1c0, /* CMOVNB_F*/
0x1c0, /* CMOVNB_F*/
0x1c0, /* CMOVNB_F*/
0x1c0, /* CMOVNB_F*/
0x1c0, /* CMOVNB_F*/
0x1c0, /* CMOVNB_F*/
0x1c0, /* CMOVNB_F*/
0x1c0, /* CMOVNB_F*/
0x1ca, /* CMOVNE_F*/
0x1ca, /* CMOVNE_F*/
0x1ca, /* CMOVNE_F*/
0x1ca, /* CMOVNE_F*/
0x1ca, /* CMOVNE_F*/
0x1ca, /* CMOVNE_F*/
0x1ca, /* CMOVNE_F*/
0x1ca, /* CMOVNE_F*/
0x1bc, /* CMOVNBE_F*/
0x1bc, /* CMOVNBE_F*/
0x1bc, /* CMOVNBE_F*/
0x1bc, /* CMOVNBE_F*/
0x1bc, /* CMOVNBE_F*/
0x1bc, /* CMOVNBE_F*/
0x1bc, /* CMOVNBE_F*/
0x1bc, /* CMOVNBE_F*/
0x1da, /* CMOVNP_F*/
0x1da, /* CMOVNP_F*/
0x1da, /* CMOVNP_F*/
0x1da, /* CMOVNP_F*/
0x1da, /* CMOVNP_F*/
0x1da, /* CMOVNP_F*/
0x1da, /* CMOVNP_F*/
0x1da, /* CMOVNP_F*/
0, /* PHI*/
0, /* PHI*/
0x30c, /* FNCLEX*/
0x30d, /* FNINIT*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0xac4, /* UCOM_FIr*/
0xac4, /* UCOM_FIr*/
0xac4, /* UCOM_FIr*/
0xac4, /* UCOM_FIr*/
0xac4, /* UCOM_FIr*/
0xac4, /* UCOM_FIr*/
0xac4, /* UCOM_FIr*/
0xac4, /* UCOM_FIr*/
0x24e, /* COM_FIr*/
0x24e, /* COM_FIr*/
0x24e, /* COM_FIr*/
0x24e, /* COM_FIr*/
0x24e, /* COM_FIr*/
0x24e, /* COM_FIr*/
0x24e, /* COM_FIr*/
0x24e, /* COM_FIr*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
/* Table933 */
0x83, /* ADD_F64m*/
0x68a, /* MUL_F64m*/
0x2f9, /* FCOM64m*/
0x2fb, /* FCOMP64m*/
0xa71, /* SUB_F64m*/
0xa57, /* SUBR_F64m*/
0x2c5, /* DIV_F64m*/
0x2ab, /* DIVR_F64m*/
0x96, /* ADD_FrST0*/
0x69d, /* MUL_FrST0*/
0, /* PHI*/
0, /* PHI*/
0xa67, /* SUBR_FrST0*/
0xa84, /* SUB_FrST0*/
0x2bb, /* DIVR_FrST0*/
0x2d8, /* DIV_FrST0*/
/* Table934 */
0x444, /* LD_F64m*/
0x3ac, /* ISTT_FP64m*/
0xa1f, /* ST_F64m*/
0xa21, /* ST_FP64m*/
0x320, /* FRSTORm*/
0, /* PHI*/
0x321, /* FSAVEm*/
0x311, /* FNSTSWm*/
0x2ff, /* FFREE*/
0, /* PHI*/
0xa2f, /* ST_Frr*/
0xa23, /* ST_FPrr*/
0xacd, /* UCOM_Fr*/
0xac6, /* UCOM_FPr*/
0, /* PHI*/
0, /* PHI*/
/* Table935 */
0x84, /* ADD_FI16m*/
0x68b, /* MUL_FI16m*/
0x300, /* FICOM16m*/
0x302, /* FICOMP16m*/
0xa72, /* SUB_FI16m*/
0xa58, /* SUBR_FI16m*/
0x2c6, /* DIV_FI16m*/
0x2ac, /* DIVR_FI16m*/
0x86, /* ADD_FPrST0*/
0x86, /* ADD_FPrST0*/
0x86, /* ADD_FPrST0*/
0x86, /* ADD_FPrST0*/
0x86, /* ADD_FPrST0*/
0x86, /* ADD_FPrST0*/
0x86, /* ADD_FPrST0*/
0x86, /* ADD_FPrST0*/
0x68d, /* MUL_FPrST0*/
0x68d, /* MUL_FPrST0*/
0x68d, /* MUL_FPrST0*/
0x68d, /* MUL_FPrST0*/
0x68d, /* MUL_FPrST0*/
0x68d, /* MUL_FPrST0*/
0x68d, /* MUL_FPrST0*/
0x68d, /* MUL_FPrST0*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x2fc, /* FCOMPP*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0xa5a, /* SUBR_FPrST0*/
0xa5a, /* SUBR_FPrST0*/
0xa5a, /* SUBR_FPrST0*/
0xa5a, /* SUBR_FPrST0*/
0xa5a, /* SUBR_FPrST0*/
0xa5a, /* SUBR_FPrST0*/
0xa5a, /* SUBR_FPrST0*/
0xa5a, /* SUBR_FPrST0*/
0xa74, /* SUB_FPrST0*/
0xa74, /* SUB_FPrST0*/
0xa74, /* SUB_FPrST0*/
0xa74, /* SUB_FPrST0*/
0xa74, /* SUB_FPrST0*/
0xa74, /* SUB_FPrST0*/
0xa74, /* SUB_FPrST0*/
0xa74, /* SUB_FPrST0*/
0x2ae, /* DIVR_FPrST0*/
0x2ae, /* DIVR_FPrST0*/
0x2ae, /* DIVR_FPrST0*/
0x2ae, /* DIVR_FPrST0*/
0x2ae, /* DIVR_FPrST0*/
0x2ae, /* DIVR_FPrST0*/
0x2ae, /* DIVR_FPrST0*/
0x2ae, /* DIVR_FPrST0*/
0x2c8, /* DIV_FPrST0*/
0x2c8, /* DIV_FPrST0*/
0x2c8, /* DIV_FPrST0*/
0x2c8, /* DIV_FPrST0*/
0x2c8, /* DIV_FPrST0*/
0x2c8, /* DIV_FPrST0*/
0x2c8, /* DIV_FPrST0*/
0x2c8, /* DIV_FPrST0*/
/* Table936 */
0x35b, /* ILD_F16m*/
0x3aa, /* ISTT_FP16m*/
0x3b6, /* IST_F16m*/
0x3b8, /* IST_FP16m*/
0x2f6, /* FBLDm*/
0x35d, /* ILD_F64m*/
0x2f7, /* FBSTPm*/
0x3ba, /* IST_FP64m*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x310, /* FNSTSW16r*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0xac3, /* UCOM_FIPr*/
0xac3, /* UCOM_FIPr*/
0xac3, /* UCOM_FIPr*/
0xac3, /* UCOM_FIPr*/
0xac3, /* UCOM_FIPr*/
0xac3, /* UCOM_FIPr*/
0xac3, /* UCOM_FIPr*/
0xac3, /* UCOM_FIPr*/
0x24d, /* COM_FIPr*/
0x24d, /* COM_FIPr*/
0x24d, /* COM_FIPr*/
0x24d, /* COM_FIPr*/
0x24d, /* COM_FIPr*/
0x24d, /* COM_FIPr*/
0x24d, /* COM_FIPr*/
0x24d, /* COM_FIPr*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
/* Table937 */
0x4b0, /* LOOPNE*/
/* Table938 */
0x4af, /* LOOPE*/
/* Table939 */
0x4ae, /* LOOP*/
/* Table940 */
0x40d, /* JCXZ*/
/* Table941 */
0x388, /* IN8ri*/
/* Table942 */
0x385, /* IN32ri*/
/* Table943 */
0x706, /* OUT8ir*/
/* Table944 */
0x704, /* OUT32ir*/
/* Table945 */
0x16a, /* CALLpcrel32*/
/* Table946 */
0x420, /* JMP_4*/
/* Table947 */
0x2f3, /* FARJMP32i*/
/* Table948 */
0x41f, /* JMP_1*/
/* Table949 */
0x389, /* IN8rr*/
/* Table950 */
0x386, /* IN32rr*/
/* Table951 */
0x707, /* OUT8rr*/
/* Table952 */
0x705, /* OUT32rr*/
/* Table953 */
0x493, /* LOCK_PREFIX*/
/* Table954 */
0x8d3, /* REPNE_PREFIX*/
/* Table955 */
0x8db, /* REP_PREFIX*/
/* Table956 */
0x34e, /* HLT*/
/* Table957 */
0x179, /* CMC*/
/* Table958 */
0xaa8, /* TEST8mi*/
0, /* PHI*/
0x6d9, /* NOT8m*/
0x6ce, /* NEG8m*/
0x677, /* MUL8m*/
0x37f, /* IMUL8m*/
0x2a4, /* DIV8m*/
0x359, /* IDIV8m*/
0xaa9, /* TEST8ri*/
0, /* PHI*/
0x6da, /* NOT8r*/
0x6cf, /* NEG8r*/
0x678, /* MUL8r*/
0x380, /* IMUL8r*/
0x2a5, /* DIV8r*/
0x35a, /* IDIV8r*/
/* Table959 */
0xa9e, /* TEST32mi*/
0, /* PHI*/
0x6d5, /* NOT32m*/
0x6ca, /* NEG32m*/
0x673, /* MUL32m*/
0x36f, /* IMUL32m*/
0x2a0, /* DIV32m*/
0x355, /* IDIV32m*/
0xa9f, /* TEST32ri*/
0, /* PHI*/
0x6d6, /* NOT32r*/
0x6cb, /* NEG32r*/
0x674, /* MUL32r*/
0x370, /* IMUL32r*/
0x2a1, /* DIV32r*/
0x356, /* IDIV32r*/
/* Table960 */
0x173, /* CLC*/
/* Table961 */
0xa11, /* STC*/
/* Table962 */
0x177, /* CLI*/
/* Table963 */
0xa14, /* STI*/
/* Table964 */
0x174, /* CLD*/
/* Table965 */
0xa12, /* STD*/
/* Table966 */
0x394, /* INC8m*/
0x29c, /* DEC8m*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x395, /* INC8r*/
0x29d, /* DEC8r*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
/* Table967 */
0x38c, /* INC32m*/
0x294, /* DEC32m*/
0x164, /* CALL32m*/
0x2ef, /* FARCALL32m*/
0x41a, /* JMP32m*/
0x2f4, /* FARJMP32m*/
0x86a, /* PUSH32rmm*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x165, /* CALL32r*/
0, /* PHI*/
0x41b, /* JMP32r*/
0, /* PHI*/
0x86b, /* PUSH32rmr*/
0, /* PHI*/
/* Table968 */
0x6d, /* ADD8mr*/
0x70, /* ADD8rr*/
/* Table969 */
0x56, /* ADD32mr*/
0x5c, /* ADD32rr*/
/* Table970 */
0x6f, /* ADD8rm*/
0x71, /* ADD8rr_REV*/
/* Table971 */
0x5b, /* ADD32rm*/
0x5e, /* ADD32rr_REV*/
/* Table972 */
0x6b, /* ADD8i8*/
/* Table973 */
0x53, /* ADD32i32*/
/* Table974 */
0x878, /* PUSHES32*/
/* Table975 */
0x804, /* POPES32*/
/* Table976 */
0x6f9, /* OR8mr*/
0x6fc, /* OR8rr*/
/* Table977 */
0x6e7, /* OR32mr*/
0x6ec, /* OR32rr*/
/* Table978 */
0x6fb, /* OR8rm*/
0x6fd, /* OR8rr_REV*/
/* Table979 */
0x6eb, /* OR32rm*/
0x6ed, /* OR32rr_REV*/
/* Table980 */
0x6f7, /* OR8i8*/
/* Table981 */
0x6e4, /* OR32i32*/
/* Table982 */
0x874, /* PUSHCS32*/
/* Table983 */
0x3e, /* ADC8mr*/
0x41, /* ADC8rr*/
/* Table984 */
0x2d, /* ADC32mr*/
0x31, /* ADC32rr*/
/* Table985 */
0x40, /* ADC8rm*/
0x42, /* ADC8rr_REV*/
/* Table986 */
0x30, /* ADC32rm*/
0x32, /* ADC32rr_REV*/
/* Table987 */
0x3c, /* ADC8i8*/
/* Table988 */
0x2a, /* ADC32i32*/
/* Table989 */
0x883, /* PUSHSS32*/
/* Table990 */
0x80f, /* POPSS32*/
/* Table991 */
0x969, /* SBB8mr*/
0x96c, /* SBB8rr*/
/* Table992 */
0x958, /* SBB32mr*/
0x95c, /* SBB32rr*/
/* Table993 */
0x96b, /* SBB8rm*/
0x96d, /* SBB8rr_REV*/
/* Table994 */
0x95b, /* SBB32rm*/
0x95d, /* SBB32rr_REV*/
/* Table995 */
0x967, /* SBB8i8*/
/* Table996 */
0x955, /* SBB32i32*/
/* Table997 */
0x876, /* PUSHDS32*/
/* Table998 */
0x802, /* POPDS32*/
/* Table999 */
0xc8, /* AND8mr*/
0xcb, /* AND8rr*/
/* Table1000 */
0xb7, /* AND32mr*/
0xbb, /* AND32rr*/
/* Table1001 */
0xca, /* AND8rm*/
0xcc, /* AND8rr_REV*/
/* Table1002 */
0xba, /* AND32rm*/
0xbc, /* AND32rr_REV*/
/* Table1003 */
0xc6, /* AND8i8*/
/* Table1004 */
0xb4, /* AND32i32*/
/* Table1005 */
0x2e6, /* ES_PREFIX*/
/* Table1006 */
0x28f, /* DAA*/
/* Table1007 */
0xa4d, /* SUB8mr*/
0xa50, /* SUB8rr*/
/* Table1008 */
0xa3c, /* SUB32mr*/
0xa40, /* SUB32rr*/
/* Table1009 */
0xa4f, /* SUB8rm*/
0xa51, /* SUB8rr_REV*/
/* Table1010 */
0xa3f, /* SUB32rm*/
0xa41, /* SUB32rr_REV*/
/* Table1011 */
0xa4b, /* SUB8i8*/
/* Table1012 */
0xa39, /* SUB32i32*/
/* Table1013 */
0x260, /* CS_PREFIX*/
/* Table1014 */
0x290, /* DAS*/
/* Table1015 */
0x11b2, /* XOR8mr*/
0x11b5, /* XOR8rr*/
/* Table1016 */
0x11a1, /* XOR32mr*/
0x11a5, /* XOR32rr*/
/* Table1017 */
0x11b4, /* XOR8rm*/
0x11b6, /* XOR8rr_REV*/
/* Table1018 */
0x11a4, /* XOR32rm*/
0x11a6, /* XOR32rr_REV*/
/* Table1019 */
0x11b0, /* XOR8i8*/
/* Table1020 */
0x119e, /* XOR32i32*/
/* Table1021 */
0xa0f, /* SS_PREFIX*/
/* Table1022 */
0x15, /* AAA*/
/* Table1023 */
0x225, /* CMP8mr*/
0x228, /* CMP8rr*/
/* Table1024 */
0x214, /* CMP32mr*/
0x218, /* CMP32rr*/
/* Table1025 */
0x227, /* CMP8rm*/
0x229, /* CMP8rr_REV*/
/* Table1026 */
0x217, /* CMP32rm*/
0x219, /* CMP32rr_REV*/
/* Table1027 */
0x223, /* CMP8i8*/
/* Table1028 */
0x211, /* CMP32i32*/
/* Table1029 */
0x2dd, /* DS_PREFIX*/
/* Table1030 */
0x18, /* AAS*/
/* Table1031 */
0x38d, /* INC32r*/
/* Table1032 */
0x38d, /* INC32r*/
/* Table1033 */
0x38d, /* INC32r*/
/* Table1034 */
0x38d, /* INC32r*/
/* Table1035 */
0x38d, /* INC32r*/
/* Table1036 */
0x38d, /* INC32r*/
/* Table1037 */
0x38d, /* INC32r*/
/* Table1038 */
0x38d, /* INC32r*/
/* Table1039 */
0x295, /* DEC32r*/
/* Table1040 */
0x295, /* DEC32r*/
/* Table1041 */
0x295, /* DEC32r*/
/* Table1042 */
0x295, /* DEC32r*/
/* Table1043 */
0x295, /* DEC32r*/
/* Table1044 */
0x295, /* DEC32r*/
/* Table1045 */
0x295, /* DEC32r*/
/* Table1046 */
0x295, /* DEC32r*/
/* Table1047 */
0x869, /* PUSH32r*/
/* Table1048 */
0x869, /* PUSH32r*/
/* Table1049 */
0x869, /* PUSH32r*/
/* Table1050 */
0x869, /* PUSH32r*/
/* Table1051 */
0x869, /* PUSH32r*/
/* Table1052 */
0x869, /* PUSH32r*/
/* Table1053 */
0x869, /* PUSH32r*/
/* Table1054 */
0x869, /* PUSH32r*/
/* Table1055 */
0x7f4, /* POP32r*/
/* Table1056 */
0x7f4, /* POP32r*/
/* Table1057 */
0x7f4, /* POP32r*/
/* Table1058 */
0x7f4, /* POP32r*/
/* Table1059 */
0x7f4, /* POP32r*/
/* Table1060 */
0x7f4, /* POP32r*/
/* Table1061 */
0x7f4, /* POP32r*/
/* Table1062 */
0x7f4, /* POP32r*/
/* Table1063 */
0x872, /* PUSHA32*/
/* Table1064 */
0x7fa, /* POPA32*/
/* Table1065 */
0x121, /* BOUNDS32rm*/
0, /* PHI*/
/* Table1066 */
0xd9, /* ARPL16mr*/
0xda, /* ARPL16rr*/
/* Table1067 */
0x325, /* FS_PREFIX*/
/* Table1068 */
0x349, /* GS_PREFIX*/
/* Table1069 */
0x291, /* DATA16_PREFIX*/
/* Table1070 */
0x885, /* PUSHi32*/
/* Table1071 */
0x372, /* IMUL32rmi*/
0x375, /* IMUL32rri*/
/* Table1072 */
0x886, /* PUSHi8*/
/* Table1073 */
0x373, /* IMUL32rmi8*/
0x376, /* IMUL32rri8*/
/* Table1074 */
0x387, /* IN8*/
/* Table1075 */
0x384, /* IN32*/
/* Table1076 */
0x708, /* OUTSB*/
/* Table1077 */
0x709, /* OUTSD*/
/* Table1078 */
0x429, /* JO_1*/
/* Table1079 */
0x423, /* JNO_1*/
/* Table1080 */
0x40b, /* JB_1*/
/* Table1081 */
0x405, /* JAE_1*/
/* Table1082 */
0x410, /* JE_1*/
/* Table1083 */
0x421, /* JNE_1*/
/* Table1084 */
0x409, /* JBE_1*/
/* Table1085 */
0x407, /* JA_1*/
/* Table1086 */
0x42e, /* JS_1*/
/* Table1087 */
0x427, /* JNS_1*/
/* Table1088 */
0x42b, /* JP_1*/
/* Table1089 */
0x425, /* JNP_1*/
/* Table1090 */
0x418, /* JL_1*/
/* Table1091 */
0x412, /* JGE_1*/
/* Table1092 */
0x416, /* JLE_1*/
/* Table1093 */
0x414, /* JG_1*/
/* Table1094 */
0x6c, /* ADD8mi*/
0x6f8, /* OR8mi*/
0x3d, /* ADC8mi*/
0x968, /* SBB8mi*/
0xc7, /* AND8mi*/
0xa4c, /* SUB8mi*/
0x11b1, /* XOR8mi*/
0x224, /* CMP8mi*/
0x6e, /* ADD8ri*/
0x6fa, /* OR8ri*/
0x3f, /* ADC8ri*/
0x96a, /* SBB8ri*/
0xc9, /* AND8ri*/
0xa4e, /* SUB8ri*/
0x11b3, /* XOR8ri*/
0x226, /* CMP8ri*/
/* Table1095 */
0x54, /* ADD32mi*/
0x6e5, /* OR32mi*/
0x2b, /* ADC32mi*/
0x956, /* SBB32mi*/
0xb5, /* AND32mi*/
0xa3a, /* SUB32mi*/
0x119f, /* XOR32mi*/
0x212, /* CMP32mi*/
0x57, /* ADD32ri*/
0x6e9, /* OR32ri*/
0x2e, /* ADC32ri*/
0x959, /* SBB32ri*/
0xb8, /* AND32ri*/
0xa3d, /* SUB32ri*/
0x11a2, /* XOR32ri*/
0x215, /* CMP32ri*/
/* Table1096 */
0x55, /* ADD32mi8*/
0x6e6, /* OR32mi8*/
0x2c, /* ADC32mi8*/
0x957, /* SBB32mi8*/
0xb6, /* AND32mi8*/
0xa3b, /* SUB32mi8*/
0x11a0, /* XOR32mi8*/
0x213, /* CMP32mi8*/
0x58, /* ADD32ri8*/
0x6ea, /* OR32ri8*/
0x2f, /* ADC32ri8*/
0x95a, /* SBB32ri8*/
0xb9, /* AND32ri8*/
0xa3e, /* SUB32ri8*/
0x11a3, /* XOR32ri8*/
0x216, /* CMP32ri8*/
/* Table1097 */
0xaab, /* TEST8rm*/
0xaac, /* TEST8rr*/
/* Table1098 */
0xaa0, /* TEST32rm*/
0xaa1, /* TEST32rr*/
/* Table1099 */
0x118a, /* XCHG8rm*/
0x118b, /* XCHG8rr*/
/* Table1100 */
0x1185, /* XCHG32rm*/
0x1186, /* XCHG32rr*/
/* Table1101 */
0x5eb, /* MOV8mr*/
0x5f2, /* MOV8rr*/
/* Table1102 */
0x5c8, /* MOV32mr*/
0x5d0, /* MOV32rr*/
/* Table1103 */
0x5f0, /* MOV8rm*/
0x5f4, /* MOV8rr_REV*/
/* Table1104 */
0x5cf, /* MOV32rm*/
0x5d1, /* MOV32rr_REV*/
/* Table1105 */
0x5c9, /* MOV32ms*/
0x5d2, /* MOV32rs*/
/* Table1106 */
0x454, /* LEA32r*/
0, /* PHI*/
/* Table1107 */
0x5d3, /* MOV32sm*/
0x5d4, /* MOV32sr*/
/* Table1108 */
0x7f5, /* POP32rmm*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x7f6, /* POP32rmr*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
/* Table1109 */
0x6d0, /* NOOP*/
/* Table1110 */
0x1183, /* XCHG32ar*/
/* Table1111 */
0x1183, /* XCHG32ar*/
/* Table1112 */
0x1183, /* XCHG32ar*/
/* Table1113 */
0x1183, /* XCHG32ar*/
/* Table1114 */
0x1183, /* XCHG32ar*/
/* Table1115 */
0x1183, /* XCHG32ar*/
/* Table1116 */
0x1183, /* XCHG32ar*/
/* Table1117 */
0x28e, /* CWDE*/
/* Table1118 */
0x16c, /* CDQ*/
/* Table1119 */
0x2ee, /* FARCALL32i*/
/* Table1120 */
0x116b, /* WAIT*/
/* Table1121 */
0x87a, /* PUSHF32*/
/* Table1122 */
0x806, /* POPF32*/
/* Table1123 */
0x92f, /* SAHF*/
/* Table1124 */
0x430, /* LAHF*/
/* Table1125 */
0x5ed, /* MOV8o8a*/
/* Table1126 */
0x5ca, /* MOV32o32a*/
/* Table1127 */
0x5e9, /* MOV8ao8*/
/* Table1128 */
0x5c4, /* MOV32ao32*/
/* Table1129 */
0x62f, /* MOVSB*/
/* Table1130 */
0x630, /* MOVSD*/
/* Table1131 */
0x235, /* CMPS8*/
/* Table1132 */
0x233, /* CMPS32*/
/* Table1133 */
0xaa7, /* TEST8i8*/
/* Table1134 */
0xa9d, /* TEST32i32*/
/* Table1135 */
0xa16, /* STOSB*/
/* Table1136 */
0xa17, /* STOSD*/
/* Table1137 */
0x4aa, /* LODSB*/
/* Table1138 */
0x4ab, /* LODSD*/
/* Table1139 */
0x971, /* SCAS8*/
/* Table1140 */
0x96f, /* SCAS32*/
/* Table1141 */
0x5ef, /* MOV8ri*/
/* Table1142 */
0x5ef, /* MOV8ri*/
/* Table1143 */
0x5ef, /* MOV8ri*/
/* Table1144 */
0x5ef, /* MOV8ri*/
/* Table1145 */
0x5ef, /* MOV8ri*/
/* Table1146 */
0x5ef, /* MOV8ri*/
/* Table1147 */
0x5ef, /* MOV8ri*/
/* Table1148 */
0x5ef, /* MOV8ri*/
/* Table1149 */
0x5ce, /* MOV32ri*/
/* Table1150 */
0x5ce, /* MOV32ri*/
/* Table1151 */
0x5ce, /* MOV32ri*/
/* Table1152 */
0x5ce, /* MOV32ri*/
/* Table1153 */
0x5ce, /* MOV32ri*/
/* Table1154 */
0x5ce, /* MOV32ri*/
/* Table1155 */
0x5ce, /* MOV32ri*/
/* Table1156 */
0x5ce, /* MOV32ri*/
/* Table1157 */
0x8fc, /* ROL8mi*/
0x914, /* ROR8mi*/
0x89d, /* RCL8mi*/
0x8bd, /* RCR8mi*/
0x9af, /* SHL8mi*/
0x9d7, /* SHR8mi*/
0, /* PHI*/
0x944, /* SAR8mi*/
0x8ff, /* ROL8ri*/
0x917, /* ROR8ri*/
0x8a0, /* RCL8ri*/
0x8c0, /* RCR8ri*/
0x9b2, /* SHL8ri*/
0x9da, /* SHR8ri*/
0, /* PHI*/
0x947, /* SAR8ri*/
/* Table1158 */
0x8f0, /* ROL32mi*/
0x908, /* ROR32mi*/
0x891, /* RCL32mi*/
0x8b1, /* RCR32mi*/
0x9a3, /* SHL32mi*/
0x9cb, /* SHR32mi*/
0, /* PHI*/
0x938, /* SAR32mi*/
0x8f3, /* ROL32ri*/
0x90b, /* ROR32ri*/
0x894, /* RCL32ri*/
0x8b4, /* RCR32ri*/
0x9a6, /* SHL32ri*/
0x9ce, /* SHR32ri*/
0, /* PHI*/
0x93b, /* SAR32ri*/
/* Table1159 */
0x8e4, /* RETI*/
/* Table1160 */
0x8e3, /* RET*/
/* Table1161 */
0x45a, /* LES32rm*/
0, /* PHI*/
/* Table1162 */
0x440, /* LDS32rm*/
0, /* PHI*/
/* Table1163 */
0x5ea, /* MOV8mi*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x1175, /* XABORT*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
/* Table1164 */
0x5c7, /* MOV32mi*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x117f, /* XBEGIN_4*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
/* Table1165 */
0x2e5, /* ENTER*/
/* Table1166 */
0x457, /* LEAVE*/
/* Table1167 */
0x4b1, /* LRETI*/
/* Table1168 */
0x4b3, /* LRETL*/
/* Table1169 */
0x39b, /* INT3*/
/* Table1170 */
0x39a, /* INT*/
/* Table1171 */
0x39c, /* INTO*/
/* Table1172 */
0x3a8, /* IRET32*/
/* Table1173 */
0x8fa, /* ROL8m1*/
0x912, /* ROR8m1*/
0x89b, /* RCL8m1*/
0x8bb, /* RCR8m1*/
0x9ad, /* SHL8m1*/
0x9d5, /* SHR8m1*/
0, /* PHI*/
0x942, /* SAR8m1*/
0x8fd, /* ROL8r1*/
0x915, /* ROR8r1*/
0x89e, /* RCL8r1*/
0x8be, /* RCR8r1*/
0x9b0, /* SHL8r1*/
0x9d8, /* SHR8r1*/
0, /* PHI*/
0x945, /* SAR8r1*/
/* Table1174 */
0x8ee, /* ROL32m1*/
0x906, /* ROR32m1*/
0x88f, /* RCL32m1*/
0x8af, /* RCR32m1*/
0x9a1, /* SHL32m1*/
0x9c9, /* SHR32m1*/
0, /* PHI*/
0x936, /* SAR32m1*/
0x8f1, /* ROL32r1*/
0x909, /* ROR32r1*/
0x892, /* RCL32r1*/
0x8b2, /* RCR32r1*/
0x9a4, /* SHL32r1*/
0x9cc, /* SHR32r1*/
0, /* PHI*/
0x939, /* SAR32r1*/
/* Table1175 */
0x8fb, /* ROL8mCL*/
0x913, /* ROR8mCL*/
0x89c, /* RCL8mCL*/
0x8bc, /* RCR8mCL*/
0x9ae, /* SHL8mCL*/
0x9d6, /* SHR8mCL*/
0, /* PHI*/
0x943, /* SAR8mCL*/
0x8fe, /* ROL8rCL*/
0x916, /* ROR8rCL*/
0x89f, /* RCL8rCL*/
0x8bf, /* RCR8rCL*/
0x9b1, /* SHL8rCL*/
0x9d9, /* SHR8rCL*/
0, /* PHI*/
0x946, /* SAR8rCL*/
/* Table1176 */
0x8ef, /* ROL32mCL*/
0x907, /* ROR32mCL*/
0x890, /* RCL32mCL*/
0x8b0, /* RCR32mCL*/
0x9a2, /* SHL32mCL*/
0x9ca, /* SHR32mCL*/
0, /* PHI*/
0x937, /* SAR32mCL*/
0x8f2, /* ROL32rCL*/
0x90a, /* ROR32rCL*/
0x893, /* RCL32rCL*/
0x8b3, /* RCR32rCL*/
0x9a5, /* SHL32rCL*/
0x9cd, /* SHR32rCL*/
0, /* PHI*/
0x93a, /* SAR32rCL*/
/* Table1177 */
0x17, /* AAM8i8*/
/* Table1178 */
0x16, /* AAD8i8*/
/* Table1179 */
0x1194, /* XLAT*/
/* Table1180 */
0x82, /* ADD_F32m*/
0x689, /* MUL_F32m*/
0x2f8, /* FCOM32m*/
0x2fa, /* FCOMP32m*/
0xa70, /* SUB_F32m*/
0xa56, /* SUBR_F32m*/
0x2c4, /* DIV_F32m*/
0x2aa, /* DIVR_F32m*/
0x87, /* ADD_FST0r*/
0x68e, /* MUL_FST0r*/
0x24f, /* COM_FST0r*/
0x24c, /* COMP_FST0r*/
0xa75, /* SUB_FST0r*/
0xa5b, /* SUBR_FST0r*/
0x2c9, /* DIV_FST0r*/
0x2af, /* DIVR_FST0r*/
/* Table1181 */
0x443, /* LD_F32m*/
0, /* PHI*/
0xa1e, /* ST_F32m*/
0xa20, /* ST_FP32m*/
0x306, /* FLDENVm*/
0x305, /* FLDCW16m*/
0x324, /* FSTENVm*/
0x30f, /* FNSTCW16m*/
0x452, /* LD_Frr*/
0x452, /* LD_Frr*/
0x452, /* LD_Frr*/
0x452, /* LD_Frr*/
0x452, /* LD_Frr*/
0x452, /* LD_Frr*/
0x452, /* LD_Frr*/
0x452, /* LD_Frr*/
0x118c, /* XCH_F*/
0x118c, /* XCH_F*/
0x118c, /* XCH_F*/
0x118c, /* XCH_F*/
0x118c, /* XCH_F*/
0x118c, /* XCH_F*/
0x118c, /* XCH_F*/
0x118c, /* XCH_F*/
0x30e, /* FNOP*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x16e, /* CHS_F*/
0x19, /* ABS_F*/
0, /* PHI*/
0, /* PHI*/
0xab5, /* TST_F*/
0x326, /* FXAM*/
0, /* PHI*/
0, /* PHI*/
0x442, /* LD_F1*/
0x308, /* FLDL2T*/
0x307, /* FLDL2E*/
0x30b, /* FLDPI*/
0x309, /* FLDLG2*/
0x30a, /* FLDLN2*/
0x441, /* LD_F0*/
0, /* PHI*/
0x2eb, /* F2XM1*/
0x32c, /* FYL2X*/
0x31e, /* FPTAN*/
0x31b, /* FPATAN*/
0x32b, /* FXTRACT*/
0x31d, /* FPREM1*/
0x2fd, /* FDECSTP*/
0x304, /* FINCSTP*/
0x31c, /* FPREM*/
0x32d, /* FYL2XP1*/
0xa0b, /* SQRT_F*/
0x323, /* FSINCOS*/
0x31f, /* FRNDINT*/
0x322, /* FSCALE*/
0x9f1, /* SIN_F*/
0x250, /* COS_F*/
/* Table1182 */
0x85, /* ADD_FI32m*/
0x68c, /* MUL_FI32m*/
0x301, /* FICOM32m*/
0x303, /* FICOMP32m*/
0xa73, /* SUB_FI32m*/
0xa59, /* SUBR_FI32m*/
0x2c7, /* DIV_FI32m*/
0x2ad, /* DIVR_FI32m*/
0x196, /* CMOVB_F*/
0x196, /* CMOVB_F*/
0x196, /* CMOVB_F*/
0x196, /* CMOVB_F*/
0x196, /* CMOVB_F*/
0x196, /* CMOVB_F*/
0x196, /* CMOVB_F*/
0x196, /* CMOVB_F*/
0x1a0, /* CMOVE_F*/
0x1a0, /* CMOVE_F*/
0x1a0, /* CMOVE_F*/
0x1a0, /* CMOVE_F*/
0x1a0, /* CMOVE_F*/
0x1a0, /* CMOVE_F*/
0x1a0, /* CMOVE_F*/
0x1a0, /* CMOVE_F*/
0x192, /* CMOVBE_F*/
0x192, /* CMOVBE_F*/
0x192, /* CMOVBE_F*/
0x192, /* CMOVBE_F*/
0x192, /* CMOVBE_F*/
0x192, /* CMOVBE_F*/
0x192, /* CMOVBE_F*/
0x192, /* CMOVBE_F*/
0x1f0, /* CMOVP_F*/
0x1f0, /* CMOVP_F*/
0x1f0, /* CMOVP_F*/
0x1f0, /* CMOVP_F*/
0x1f0, /* CMOVP_F*/
0x1f0, /* CMOVP_F*/
0x1f0, /* CMOVP_F*/
0x1f0, /* CMOVP_F*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0xac5, /* UCOM_FPPr*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
/* Table1183 */
0x35c, /* ILD_F32m*/
0x3ab, /* ISTT_FP32m*/
0x3b7, /* IST_F32m*/
0x3b9, /* IST_FP32m*/
0, /* PHI*/
0x445, /* LD_F80m*/
0, /* PHI*/
0xa22, /* ST_FP80m*/
0x1c0, /* CMOVNB_F*/
0x1c0, /* CMOVNB_F*/
0x1c0, /* CMOVNB_F*/
0x1c0, /* CMOVNB_F*/
0x1c0, /* CMOVNB_F*/
0x1c0, /* CMOVNB_F*/
0x1c0, /* CMOVNB_F*/
0x1c0, /* CMOVNB_F*/
0x1ca, /* CMOVNE_F*/
0x1ca, /* CMOVNE_F*/
0x1ca, /* CMOVNE_F*/
0x1ca, /* CMOVNE_F*/
0x1ca, /* CMOVNE_F*/
0x1ca, /* CMOVNE_F*/
0x1ca, /* CMOVNE_F*/
0x1ca, /* CMOVNE_F*/
0x1bc, /* CMOVNBE_F*/
0x1bc, /* CMOVNBE_F*/
0x1bc, /* CMOVNBE_F*/
0x1bc, /* CMOVNBE_F*/
0x1bc, /* CMOVNBE_F*/
0x1bc, /* CMOVNBE_F*/
0x1bc, /* CMOVNBE_F*/
0x1bc, /* CMOVNBE_F*/
0x1da, /* CMOVNP_F*/
0x1da, /* CMOVNP_F*/
0x1da, /* CMOVNP_F*/
0x1da, /* CMOVNP_F*/
0x1da, /* CMOVNP_F*/
0x1da, /* CMOVNP_F*/
0x1da, /* CMOVNP_F*/
0x1da, /* CMOVNP_F*/
0, /* PHI*/
0, /* PHI*/
0x30c, /* FNCLEX*/
0x30d, /* FNINIT*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0xac4, /* UCOM_FIr*/
0xac4, /* UCOM_FIr*/
0xac4, /* UCOM_FIr*/
0xac4, /* UCOM_FIr*/
0xac4, /* UCOM_FIr*/
0xac4, /* UCOM_FIr*/
0xac4, /* UCOM_FIr*/
0xac4, /* UCOM_FIr*/
0x24e, /* COM_FIr*/
0x24e, /* COM_FIr*/
0x24e, /* COM_FIr*/
0x24e, /* COM_FIr*/
0x24e, /* COM_FIr*/
0x24e, /* COM_FIr*/
0x24e, /* COM_FIr*/
0x24e, /* COM_FIr*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
/* Table1184 */
0x83, /* ADD_F64m*/
0x68a, /* MUL_F64m*/
0x2f9, /* FCOM64m*/
0x2fb, /* FCOMP64m*/
0xa71, /* SUB_F64m*/
0xa57, /* SUBR_F64m*/
0x2c5, /* DIV_F64m*/
0x2ab, /* DIVR_F64m*/
0x96, /* ADD_FrST0*/
0x69d, /* MUL_FrST0*/
0, /* PHI*/
0, /* PHI*/
0xa67, /* SUBR_FrST0*/
0xa84, /* SUB_FrST0*/
0x2bb, /* DIVR_FrST0*/
0x2d8, /* DIV_FrST0*/
/* Table1185 */
0x444, /* LD_F64m*/
0x3ac, /* ISTT_FP64m*/
0xa1f, /* ST_F64m*/
0xa21, /* ST_FP64m*/
0x320, /* FRSTORm*/
0, /* PHI*/
0x321, /* FSAVEm*/
0x311, /* FNSTSWm*/
0x2ff, /* FFREE*/
0, /* PHI*/
0xa2f, /* ST_Frr*/
0xa23, /* ST_FPrr*/
0xacd, /* UCOM_Fr*/
0xac6, /* UCOM_FPr*/
0, /* PHI*/
0, /* PHI*/
/* Table1186 */
0x84, /* ADD_FI16m*/
0x68b, /* MUL_FI16m*/
0x300, /* FICOM16m*/
0x302, /* FICOMP16m*/
0xa72, /* SUB_FI16m*/
0xa58, /* SUBR_FI16m*/
0x2c6, /* DIV_FI16m*/
0x2ac, /* DIVR_FI16m*/
0x86, /* ADD_FPrST0*/
0x86, /* ADD_FPrST0*/
0x86, /* ADD_FPrST0*/
0x86, /* ADD_FPrST0*/
0x86, /* ADD_FPrST0*/
0x86, /* ADD_FPrST0*/
0x86, /* ADD_FPrST0*/
0x86, /* ADD_FPrST0*/
0x68d, /* MUL_FPrST0*/
0x68d, /* MUL_FPrST0*/
0x68d, /* MUL_FPrST0*/
0x68d, /* MUL_FPrST0*/
0x68d, /* MUL_FPrST0*/
0x68d, /* MUL_FPrST0*/
0x68d, /* MUL_FPrST0*/
0x68d, /* MUL_FPrST0*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x2fc, /* FCOMPP*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0xa5a, /* SUBR_FPrST0*/
0xa5a, /* SUBR_FPrST0*/
0xa5a, /* SUBR_FPrST0*/
0xa5a, /* SUBR_FPrST0*/
0xa5a, /* SUBR_FPrST0*/
0xa5a, /* SUBR_FPrST0*/
0xa5a, /* SUBR_FPrST0*/
0xa5a, /* SUBR_FPrST0*/
0xa74, /* SUB_FPrST0*/
0xa74, /* SUB_FPrST0*/
0xa74, /* SUB_FPrST0*/
0xa74, /* SUB_FPrST0*/
0xa74, /* SUB_FPrST0*/
0xa74, /* SUB_FPrST0*/
0xa74, /* SUB_FPrST0*/
0xa74, /* SUB_FPrST0*/
0x2ae, /* DIVR_FPrST0*/
0x2ae, /* DIVR_FPrST0*/
0x2ae, /* DIVR_FPrST0*/
0x2ae, /* DIVR_FPrST0*/
0x2ae, /* DIVR_FPrST0*/
0x2ae, /* DIVR_FPrST0*/
0x2ae, /* DIVR_FPrST0*/
0x2ae, /* DIVR_FPrST0*/
0x2c8, /* DIV_FPrST0*/
0x2c8, /* DIV_FPrST0*/
0x2c8, /* DIV_FPrST0*/
0x2c8, /* DIV_FPrST0*/
0x2c8, /* DIV_FPrST0*/
0x2c8, /* DIV_FPrST0*/
0x2c8, /* DIV_FPrST0*/
0x2c8, /* DIV_FPrST0*/
/* Table1187 */
0x35b, /* ILD_F16m*/
0x3aa, /* ISTT_FP16m*/
0x3b6, /* IST_F16m*/
0x3b8, /* IST_FP16m*/
0x2f6, /* FBLDm*/
0x35d, /* ILD_F64m*/
0x2f7, /* FBSTPm*/
0x3ba, /* IST_FP64m*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x310, /* FNSTSW16r*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0xac3, /* UCOM_FIPr*/
0xac3, /* UCOM_FIPr*/
0xac3, /* UCOM_FIPr*/
0xac3, /* UCOM_FIPr*/
0xac3, /* UCOM_FIPr*/
0xac3, /* UCOM_FIPr*/
0xac3, /* UCOM_FIPr*/
0xac3, /* UCOM_FIPr*/
0x24d, /* COM_FIPr*/
0x24d, /* COM_FIPr*/
0x24d, /* COM_FIPr*/
0x24d, /* COM_FIPr*/
0x24d, /* COM_FIPr*/
0x24d, /* COM_FIPr*/
0x24d, /* COM_FIPr*/
0x24d, /* COM_FIPr*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
/* Table1188 */
0x4b0, /* LOOPNE*/
/* Table1189 */
0x4af, /* LOOPE*/
/* Table1190 */
0x4ae, /* LOOP*/
/* Table1191 */
0x40e, /* JECXZ_32*/
/* Table1192 */
0x388, /* IN8ri*/
/* Table1193 */
0x385, /* IN32ri*/
/* Table1194 */
0x706, /* OUT8ir*/
/* Table1195 */
0x704, /* OUT32ir*/
/* Table1196 */
0x16a, /* CALLpcrel32*/
/* Table1197 */
0x420, /* JMP_4*/
/* Table1198 */
0x2f3, /* FARJMP32i*/
/* Table1199 */
0x41f, /* JMP_1*/
/* Table1200 */
0x389, /* IN8rr*/
/* Table1201 */
0x386, /* IN32rr*/
/* Table1202 */
0x707, /* OUT8rr*/
/* Table1203 */
0x705, /* OUT32rr*/
/* Table1204 */
0x493, /* LOCK_PREFIX*/
/* Table1205 */
0x8d3, /* REPNE_PREFIX*/
/* Table1206 */
0x8db, /* REP_PREFIX*/
/* Table1207 */
0x34e, /* HLT*/
/* Table1208 */
0x179, /* CMC*/
/* Table1209 */
0xaa8, /* TEST8mi*/
0, /* PHI*/
0x6d9, /* NOT8m*/
0x6ce, /* NEG8m*/
0x677, /* MUL8m*/
0x37f, /* IMUL8m*/
0x2a4, /* DIV8m*/
0x359, /* IDIV8m*/
0xaa9, /* TEST8ri*/
0, /* PHI*/
0x6da, /* NOT8r*/
0x6cf, /* NEG8r*/
0x678, /* MUL8r*/
0x380, /* IMUL8r*/
0x2a5, /* DIV8r*/
0x35a, /* IDIV8r*/
/* Table1210 */
0xa9e, /* TEST32mi*/
0, /* PHI*/
0x6d5, /* NOT32m*/
0x6ca, /* NEG32m*/
0x673, /* MUL32m*/
0x36f, /* IMUL32m*/
0x2a0, /* DIV32m*/
0x355, /* IDIV32m*/
0xa9f, /* TEST32ri*/
0, /* PHI*/
0x6d6, /* NOT32r*/
0x6cb, /* NEG32r*/
0x674, /* MUL32r*/
0x370, /* IMUL32r*/
0x2a1, /* DIV32r*/
0x356, /* IDIV32r*/
/* Table1211 */
0x173, /* CLC*/
/* Table1212 */
0xa11, /* STC*/
/* Table1213 */
0x177, /* CLI*/
/* Table1214 */
0xa14, /* STI*/
/* Table1215 */
0x174, /* CLD*/
/* Table1216 */
0xa12, /* STD*/
/* Table1217 */
0x394, /* INC8m*/
0x29c, /* DEC8m*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x395, /* INC8r*/
0x29d, /* DEC8r*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
/* Table1218 */
0x38c, /* INC32m*/
0x294, /* DEC32m*/
0x164, /* CALL32m*/
0x2ef, /* FARCALL32m*/
0x41a, /* JMP32m*/
0x2f4, /* FARJMP32m*/
0x86a, /* PUSH32rmm*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x165, /* CALL32r*/
0, /* PHI*/
0x41b, /* JMP32r*/
0, /* PHI*/
0x86b, /* PUSH32rmr*/
0, /* PHI*/
/* Table1219 */
0x6d, /* ADD8mr*/
0x70, /* ADD8rr*/
/* Table1220 */
0x56, /* ADD32mr*/
0x5c, /* ADD32rr*/
/* Table1221 */
0x6f, /* ADD8rm*/
0x71, /* ADD8rr_REV*/
/* Table1222 */
0x5b, /* ADD32rm*/
0x5e, /* ADD32rr_REV*/
/* Table1223 */
0x6b, /* ADD8i8*/
/* Table1224 */
0x53, /* ADD32i32*/
/* Table1225 */
0x878, /* PUSHES32*/
/* Table1226 */
0x804, /* POPES32*/
/* Table1227 */
0x6f9, /* OR8mr*/
0x6fc, /* OR8rr*/
/* Table1228 */
0x6e7, /* OR32mr*/
0x6ec, /* OR32rr*/
/* Table1229 */
0x6fb, /* OR8rm*/
0x6fd, /* OR8rr_REV*/
/* Table1230 */
0x6eb, /* OR32rm*/
0x6ed, /* OR32rr_REV*/
/* Table1231 */
0x6f7, /* OR8i8*/
/* Table1232 */
0x6e4, /* OR32i32*/
/* Table1233 */
0x874, /* PUSHCS32*/
/* Table1234 */
0x3e, /* ADC8mr*/
0x41, /* ADC8rr*/
/* Table1235 */
0x2d, /* ADC32mr*/
0x31, /* ADC32rr*/
/* Table1236 */
0x40, /* ADC8rm*/
0x42, /* ADC8rr_REV*/
/* Table1237 */
0x30, /* ADC32rm*/
0x32, /* ADC32rr_REV*/
/* Table1238 */
0x3c, /* ADC8i8*/
/* Table1239 */
0x2a, /* ADC32i32*/
/* Table1240 */
0x883, /* PUSHSS32*/
/* Table1241 */
0x80f, /* POPSS32*/
/* Table1242 */
0x969, /* SBB8mr*/
0x96c, /* SBB8rr*/
/* Table1243 */
0x958, /* SBB32mr*/
0x95c, /* SBB32rr*/
/* Table1244 */
0x96b, /* SBB8rm*/
0x96d, /* SBB8rr_REV*/
/* Table1245 */
0x95b, /* SBB32rm*/
0x95d, /* SBB32rr_REV*/
/* Table1246 */
0x967, /* SBB8i8*/
/* Table1247 */
0x955, /* SBB32i32*/
/* Table1248 */
0x876, /* PUSHDS32*/
/* Table1249 */
0x802, /* POPDS32*/
/* Table1250 */
0xc8, /* AND8mr*/
0xcb, /* AND8rr*/
/* Table1251 */
0xb7, /* AND32mr*/
0xbb, /* AND32rr*/
/* Table1252 */
0xca, /* AND8rm*/
0xcc, /* AND8rr_REV*/
/* Table1253 */
0xba, /* AND32rm*/
0xbc, /* AND32rr_REV*/
/* Table1254 */
0xc6, /* AND8i8*/
/* Table1255 */
0xb4, /* AND32i32*/
/* Table1256 */
0x2e6, /* ES_PREFIX*/
/* Table1257 */
0x28f, /* DAA*/
/* Table1258 */
0xa4d, /* SUB8mr*/
0xa50, /* SUB8rr*/
/* Table1259 */
0xa3c, /* SUB32mr*/
0xa40, /* SUB32rr*/
/* Table1260 */
0xa4f, /* SUB8rm*/
0xa51, /* SUB8rr_REV*/
/* Table1261 */
0xa3f, /* SUB32rm*/
0xa41, /* SUB32rr_REV*/
/* Table1262 */
0xa4b, /* SUB8i8*/
/* Table1263 */
0xa39, /* SUB32i32*/
/* Table1264 */
0x260, /* CS_PREFIX*/
/* Table1265 */
0x290, /* DAS*/
/* Table1266 */
0x11b2, /* XOR8mr*/
0x11b5, /* XOR8rr*/
/* Table1267 */
0x11a1, /* XOR32mr*/
0x11a5, /* XOR32rr*/
/* Table1268 */
0x11b4, /* XOR8rm*/
0x11b6, /* XOR8rr_REV*/
/* Table1269 */
0x11a4, /* XOR32rm*/
0x11a6, /* XOR32rr_REV*/
/* Table1270 */
0x11b0, /* XOR8i8*/
/* Table1271 */
0x119e, /* XOR32i32*/
/* Table1272 */
0xa0f, /* SS_PREFIX*/
/* Table1273 */
0x15, /* AAA*/
/* Table1274 */
0x225, /* CMP8mr*/
0x228, /* CMP8rr*/
/* Table1275 */
0x214, /* CMP32mr*/
0x218, /* CMP32rr*/
/* Table1276 */
0x227, /* CMP8rm*/
0x229, /* CMP8rr_REV*/
/* Table1277 */
0x217, /* CMP32rm*/
0x219, /* CMP32rr_REV*/
/* Table1278 */
0x223, /* CMP8i8*/
/* Table1279 */
0x211, /* CMP32i32*/
/* Table1280 */
0x2dd, /* DS_PREFIX*/
/* Table1281 */
0x18, /* AAS*/
/* Table1282 */
0x38d, /* INC32r*/
/* Table1283 */
0x38d, /* INC32r*/
/* Table1284 */
0x38d, /* INC32r*/
/* Table1285 */
0x38d, /* INC32r*/
/* Table1286 */
0x38d, /* INC32r*/
/* Table1287 */
0x38d, /* INC32r*/
/* Table1288 */
0x38d, /* INC32r*/
/* Table1289 */
0x38d, /* INC32r*/
/* Table1290 */
0x295, /* DEC32r*/
/* Table1291 */
0x295, /* DEC32r*/
/* Table1292 */
0x295, /* DEC32r*/
/* Table1293 */
0x295, /* DEC32r*/
/* Table1294 */
0x295, /* DEC32r*/
/* Table1295 */
0x295, /* DEC32r*/
/* Table1296 */
0x295, /* DEC32r*/
/* Table1297 */
0x295, /* DEC32r*/
/* Table1298 */
0x869, /* PUSH32r*/
/* Table1299 */
0x869, /* PUSH32r*/
/* Table1300 */
0x869, /* PUSH32r*/
/* Table1301 */
0x869, /* PUSH32r*/
/* Table1302 */
0x869, /* PUSH32r*/
/* Table1303 */
0x869, /* PUSH32r*/
/* Table1304 */
0x869, /* PUSH32r*/
/* Table1305 */
0x869, /* PUSH32r*/
/* Table1306 */
0x7f4, /* POP32r*/
/* Table1307 */
0x7f4, /* POP32r*/
/* Table1308 */
0x7f4, /* POP32r*/
/* Table1309 */
0x7f4, /* POP32r*/
/* Table1310 */
0x7f4, /* POP32r*/
/* Table1311 */
0x7f4, /* POP32r*/
/* Table1312 */
0x7f4, /* POP32r*/
/* Table1313 */
0x7f4, /* POP32r*/
/* Table1314 */
0x872, /* PUSHA32*/
/* Table1315 */
0x7fa, /* POPA32*/
/* Table1316 */
0x121, /* BOUNDS32rm*/
0, /* PHI*/
/* Table1317 */
0xd9, /* ARPL16mr*/
0xda, /* ARPL16rr*/
/* Table1318 */
0x325, /* FS_PREFIX*/
/* Table1319 */
0x349, /* GS_PREFIX*/
/* Table1320 */
0x291, /* DATA16_PREFIX*/
/* Table1321 */
0x885, /* PUSHi32*/
/* Table1322 */
0x372, /* IMUL32rmi*/
0x375, /* IMUL32rri*/
/* Table1323 */
0x886, /* PUSHi8*/
/* Table1324 */
0x373, /* IMUL32rmi8*/
0x376, /* IMUL32rri8*/
/* Table1325 */
0x387, /* IN8*/
/* Table1326 */
0x384, /* IN32*/
/* Table1327 */
0x708, /* OUTSB*/
/* Table1328 */
0x709, /* OUTSD*/
/* Table1329 */
0x429, /* JO_1*/
/* Table1330 */
0x423, /* JNO_1*/
/* Table1331 */
0x40b, /* JB_1*/
/* Table1332 */
0x405, /* JAE_1*/
/* Table1333 */
0x410, /* JE_1*/
/* Table1334 */
0x421, /* JNE_1*/
/* Table1335 */
0x409, /* JBE_1*/
/* Table1336 */
0x407, /* JA_1*/
/* Table1337 */
0x42e, /* JS_1*/
/* Table1338 */
0x427, /* JNS_1*/
/* Table1339 */
0x42b, /* JP_1*/
/* Table1340 */
0x425, /* JNP_1*/
/* Table1341 */
0x418, /* JL_1*/
/* Table1342 */
0x412, /* JGE_1*/
/* Table1343 */
0x416, /* JLE_1*/
/* Table1344 */
0x414, /* JG_1*/
/* Table1345 */
0x6c, /* ADD8mi*/
0x6f8, /* OR8mi*/
0x3d, /* ADC8mi*/
0x968, /* SBB8mi*/
0xc7, /* AND8mi*/
0xa4c, /* SUB8mi*/
0x11b1, /* XOR8mi*/
0x224, /* CMP8mi*/
0x6e, /* ADD8ri*/
0x6fa, /* OR8ri*/
0x3f, /* ADC8ri*/
0x96a, /* SBB8ri*/
0xc9, /* AND8ri*/
0xa4e, /* SUB8ri*/
0x11b3, /* XOR8ri*/
0x226, /* CMP8ri*/
/* Table1346 */
0x54, /* ADD32mi*/
0x6e5, /* OR32mi*/
0x2b, /* ADC32mi*/
0x956, /* SBB32mi*/
0xb5, /* AND32mi*/
0xa3a, /* SUB32mi*/
0x119f, /* XOR32mi*/
0x212, /* CMP32mi*/
0x57, /* ADD32ri*/
0x6e9, /* OR32ri*/
0x2e, /* ADC32ri*/
0x959, /* SBB32ri*/
0xb8, /* AND32ri*/
0xa3d, /* SUB32ri*/
0x11a2, /* XOR32ri*/
0x215, /* CMP32ri*/
/* Table1347 */
0x55, /* ADD32mi8*/
0x6e6, /* OR32mi8*/
0x2c, /* ADC32mi8*/
0x957, /* SBB32mi8*/
0xb6, /* AND32mi8*/
0xa3b, /* SUB32mi8*/
0x11a0, /* XOR32mi8*/
0x213, /* CMP32mi8*/
0x58, /* ADD32ri8*/
0x6ea, /* OR32ri8*/
0x2f, /* ADC32ri8*/
0x95a, /* SBB32ri8*/
0xb9, /* AND32ri8*/
0xa3e, /* SUB32ri8*/
0x11a3, /* XOR32ri8*/
0x216, /* CMP32ri8*/
/* Table1348 */
0xaab, /* TEST8rm*/
0xaac, /* TEST8rr*/
/* Table1349 */
0xaa0, /* TEST32rm*/
0xaa1, /* TEST32rr*/
/* Table1350 */
0x118a, /* XCHG8rm*/
0x118b, /* XCHG8rr*/
/* Table1351 */
0x1185, /* XCHG32rm*/
0x1186, /* XCHG32rr*/
/* Table1352 */
0x5eb, /* MOV8mr*/
0x5f2, /* MOV8rr*/
/* Table1353 */
0x5c8, /* MOV32mr*/
0x5d0, /* MOV32rr*/
/* Table1354 */
0x5f0, /* MOV8rm*/
0x5f4, /* MOV8rr_REV*/
/* Table1355 */
0x5cf, /* MOV32rm*/
0x5d1, /* MOV32rr_REV*/
/* Table1356 */
0x5c9, /* MOV32ms*/
0x5d2, /* MOV32rs*/
/* Table1357 */
0x454, /* LEA32r*/
0, /* PHI*/
/* Table1358 */
0x5d3, /* MOV32sm*/
0x5d4, /* MOV32sr*/
/* Table1359 */
0x7f5, /* POP32rmm*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x7f6, /* POP32rmr*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
/* Table1360 */
0x72f, /* PAUSE*/
/* Table1361 */
0x1183, /* XCHG32ar*/
/* Table1362 */
0x1183, /* XCHG32ar*/
/* Table1363 */
0x1183, /* XCHG32ar*/
/* Table1364 */
0x1183, /* XCHG32ar*/
/* Table1365 */
0x1183, /* XCHG32ar*/
/* Table1366 */
0x1183, /* XCHG32ar*/
/* Table1367 */
0x1183, /* XCHG32ar*/
/* Table1368 */
0x28e, /* CWDE*/
/* Table1369 */
0x16c, /* CDQ*/
/* Table1370 */
0x2ee, /* FARCALL32i*/
/* Table1371 */
0x116b, /* WAIT*/
/* Table1372 */
0x87a, /* PUSHF32*/
/* Table1373 */
0x806, /* POPF32*/
/* Table1374 */
0x92f, /* SAHF*/
/* Table1375 */
0x430, /* LAHF*/
/* Table1376 */
0x5ed, /* MOV8o8a*/
/* Table1377 */
0x5ca, /* MOV32o32a*/
/* Table1378 */
0x5e9, /* MOV8ao8*/
/* Table1379 */
0x5c4, /* MOV32ao32*/
/* Table1380 */
0x62f, /* MOVSB*/
/* Table1381 */
0x630, /* MOVSD*/
/* Table1382 */
0x235, /* CMPS8*/
/* Table1383 */
0x233, /* CMPS32*/
/* Table1384 */
0xaa7, /* TEST8i8*/
/* Table1385 */
0xa9d, /* TEST32i32*/
/* Table1386 */
0xa16, /* STOSB*/
/* Table1387 */
0xa17, /* STOSD*/
/* Table1388 */
0x4aa, /* LODSB*/
/* Table1389 */
0x4ab, /* LODSD*/
/* Table1390 */
0x971, /* SCAS8*/
/* Table1391 */
0x96f, /* SCAS32*/
/* Table1392 */
0x5ef, /* MOV8ri*/
/* Table1393 */
0x5ef, /* MOV8ri*/
/* Table1394 */
0x5ef, /* MOV8ri*/
/* Table1395 */
0x5ef, /* MOV8ri*/
/* Table1396 */
0x5ef, /* MOV8ri*/
/* Table1397 */
0x5ef, /* MOV8ri*/
/* Table1398 */
0x5ef, /* MOV8ri*/
/* Table1399 */
0x5ef, /* MOV8ri*/
/* Table1400 */
0x5ce, /* MOV32ri*/
/* Table1401 */
0x5ce, /* MOV32ri*/
/* Table1402 */
0x5ce, /* MOV32ri*/
/* Table1403 */
0x5ce, /* MOV32ri*/
/* Table1404 */
0x5ce, /* MOV32ri*/
/* Table1405 */
0x5ce, /* MOV32ri*/
/* Table1406 */
0x5ce, /* MOV32ri*/
/* Table1407 */
0x5ce, /* MOV32ri*/
/* Table1408 */
0x8fc, /* ROL8mi*/
0x914, /* ROR8mi*/
0x89d, /* RCL8mi*/
0x8bd, /* RCR8mi*/
0x9af, /* SHL8mi*/
0x9d7, /* SHR8mi*/
0, /* PHI*/
0x944, /* SAR8mi*/
0x8ff, /* ROL8ri*/
0x917, /* ROR8ri*/
0x8a0, /* RCL8ri*/
0x8c0, /* RCR8ri*/
0x9b2, /* SHL8ri*/
0x9da, /* SHR8ri*/
0, /* PHI*/
0x947, /* SAR8ri*/
/* Table1409 */
0x8f0, /* ROL32mi*/
0x908, /* ROR32mi*/
0x891, /* RCL32mi*/
0x8b1, /* RCR32mi*/
0x9a3, /* SHL32mi*/
0x9cb, /* SHR32mi*/
0, /* PHI*/
0x938, /* SAR32mi*/
0x8f3, /* ROL32ri*/
0x90b, /* ROR32ri*/
0x894, /* RCL32ri*/
0x8b4, /* RCR32ri*/
0x9a6, /* SHL32ri*/
0x9ce, /* SHR32ri*/
0, /* PHI*/
0x93b, /* SAR32ri*/
/* Table1410 */
0x8e4, /* RETI*/
/* Table1411 */
0x8e3, /* RET*/
/* Table1412 */
0x45a, /* LES32rm*/
0, /* PHI*/
/* Table1413 */
0x440, /* LDS32rm*/
0, /* PHI*/
/* Table1414 */
0x5ea, /* MOV8mi*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x1175, /* XABORT*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
/* Table1415 */
0x5c7, /* MOV32mi*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x117f, /* XBEGIN_4*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
/* Table1416 */
0x2e5, /* ENTER*/
/* Table1417 */
0x457, /* LEAVE*/
/* Table1418 */
0x4b1, /* LRETI*/
/* Table1419 */
0x4b3, /* LRETL*/
/* Table1420 */
0x39b, /* INT3*/
/* Table1421 */
0x39a, /* INT*/
/* Table1422 */
0x39c, /* INTO*/
/* Table1423 */
0x3a8, /* IRET32*/
/* Table1424 */
0x8fa, /* ROL8m1*/
0x912, /* ROR8m1*/
0x89b, /* RCL8m1*/
0x8bb, /* RCR8m1*/
0x9ad, /* SHL8m1*/
0x9d5, /* SHR8m1*/
0, /* PHI*/
0x942, /* SAR8m1*/
0x8fd, /* ROL8r1*/
0x915, /* ROR8r1*/
0x89e, /* RCL8r1*/
0x8be, /* RCR8r1*/
0x9b0, /* SHL8r1*/
0x9d8, /* SHR8r1*/
0, /* PHI*/
0x945, /* SAR8r1*/
/* Table1425 */
0x8ee, /* ROL32m1*/
0x906, /* ROR32m1*/
0x88f, /* RCL32m1*/
0x8af, /* RCR32m1*/
0x9a1, /* SHL32m1*/
0x9c9, /* SHR32m1*/
0, /* PHI*/
0x936, /* SAR32m1*/
0x8f1, /* ROL32r1*/
0x909, /* ROR32r1*/
0x892, /* RCL32r1*/
0x8b2, /* RCR32r1*/
0x9a4, /* SHL32r1*/
0x9cc, /* SHR32r1*/
0, /* PHI*/
0x939, /* SAR32r1*/
/* Table1426 */
0x8fb, /* ROL8mCL*/
0x913, /* ROR8mCL*/
0x89c, /* RCL8mCL*/
0x8bc, /* RCR8mCL*/
0x9ae, /* SHL8mCL*/
0x9d6, /* SHR8mCL*/
0, /* PHI*/
0x943, /* SAR8mCL*/
0x8fe, /* ROL8rCL*/
0x916, /* ROR8rCL*/
0x89f, /* RCL8rCL*/
0x8bf, /* RCR8rCL*/
0x9b1, /* SHL8rCL*/
0x9d9, /* SHR8rCL*/
0, /* PHI*/
0x946, /* SAR8rCL*/
/* Table1427 */
0x8ef, /* ROL32mCL*/
0x907, /* ROR32mCL*/
0x890, /* RCL32mCL*/
0x8b0, /* RCR32mCL*/
0x9a2, /* SHL32mCL*/
0x9ca, /* SHR32mCL*/
0, /* PHI*/
0x937, /* SAR32mCL*/
0x8f2, /* ROL32rCL*/
0x90a, /* ROR32rCL*/
0x893, /* RCL32rCL*/
0x8b3, /* RCR32rCL*/
0x9a5, /* SHL32rCL*/
0x9cd, /* SHR32rCL*/
0, /* PHI*/
0x93a, /* SAR32rCL*/
/* Table1428 */
0x17, /* AAM8i8*/
/* Table1429 */
0x16, /* AAD8i8*/
/* Table1430 */
0x1194, /* XLAT*/
/* Table1431 */
0x82, /* ADD_F32m*/
0x689, /* MUL_F32m*/
0x2f8, /* FCOM32m*/
0x2fa, /* FCOMP32m*/
0xa70, /* SUB_F32m*/
0xa56, /* SUBR_F32m*/
0x2c4, /* DIV_F32m*/
0x2aa, /* DIVR_F32m*/
0x87, /* ADD_FST0r*/
0x68e, /* MUL_FST0r*/
0x24f, /* COM_FST0r*/
0x24c, /* COMP_FST0r*/
0xa75, /* SUB_FST0r*/
0xa5b, /* SUBR_FST0r*/
0x2c9, /* DIV_FST0r*/
0x2af, /* DIVR_FST0r*/
/* Table1432 */
0x443, /* LD_F32m*/
0, /* PHI*/
0xa1e, /* ST_F32m*/
0xa20, /* ST_FP32m*/
0x306, /* FLDENVm*/
0x305, /* FLDCW16m*/
0x324, /* FSTENVm*/
0x30f, /* FNSTCW16m*/
0x452, /* LD_Frr*/
0x452, /* LD_Frr*/
0x452, /* LD_Frr*/
0x452, /* LD_Frr*/
0x452, /* LD_Frr*/
0x452, /* LD_Frr*/
0x452, /* LD_Frr*/
0x452, /* LD_Frr*/
0x118c, /* XCH_F*/
0x118c, /* XCH_F*/
0x118c, /* XCH_F*/
0x118c, /* XCH_F*/
0x118c, /* XCH_F*/
0x118c, /* XCH_F*/
0x118c, /* XCH_F*/
0x118c, /* XCH_F*/
0x30e, /* FNOP*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x16e, /* CHS_F*/
0x19, /* ABS_F*/
0, /* PHI*/
0, /* PHI*/
0xab5, /* TST_F*/
0x326, /* FXAM*/
0, /* PHI*/
0, /* PHI*/
0x442, /* LD_F1*/
0x308, /* FLDL2T*/
0x307, /* FLDL2E*/
0x30b, /* FLDPI*/
0x309, /* FLDLG2*/
0x30a, /* FLDLN2*/
0x441, /* LD_F0*/
0, /* PHI*/
0x2eb, /* F2XM1*/
0x32c, /* FYL2X*/
0x31e, /* FPTAN*/
0x31b, /* FPATAN*/
0x32b, /* FXTRACT*/
0x31d, /* FPREM1*/
0x2fd, /* FDECSTP*/
0x304, /* FINCSTP*/
0x31c, /* FPREM*/
0x32d, /* FYL2XP1*/
0xa0b, /* SQRT_F*/
0x323, /* FSINCOS*/
0x31f, /* FRNDINT*/
0x322, /* FSCALE*/
0x9f1, /* SIN_F*/
0x250, /* COS_F*/
/* Table1433 */
0x85, /* ADD_FI32m*/
0x68c, /* MUL_FI32m*/
0x301, /* FICOM32m*/
0x303, /* FICOMP32m*/
0xa73, /* SUB_FI32m*/
0xa59, /* SUBR_FI32m*/
0x2c7, /* DIV_FI32m*/
0x2ad, /* DIVR_FI32m*/
0x196, /* CMOVB_F*/
0x196, /* CMOVB_F*/
0x196, /* CMOVB_F*/
0x196, /* CMOVB_F*/
0x196, /* CMOVB_F*/
0x196, /* CMOVB_F*/
0x196, /* CMOVB_F*/
0x196, /* CMOVB_F*/
0x1a0, /* CMOVE_F*/
0x1a0, /* CMOVE_F*/
0x1a0, /* CMOVE_F*/
0x1a0, /* CMOVE_F*/
0x1a0, /* CMOVE_F*/
0x1a0, /* CMOVE_F*/
0x1a0, /* CMOVE_F*/
0x1a0, /* CMOVE_F*/
0x192, /* CMOVBE_F*/
0x192, /* CMOVBE_F*/
0x192, /* CMOVBE_F*/
0x192, /* CMOVBE_F*/
0x192, /* CMOVBE_F*/
0x192, /* CMOVBE_F*/
0x192, /* CMOVBE_F*/
0x192, /* CMOVBE_F*/
0x1f0, /* CMOVP_F*/
0x1f0, /* CMOVP_F*/
0x1f0, /* CMOVP_F*/
0x1f0, /* CMOVP_F*/
0x1f0, /* CMOVP_F*/
0x1f0, /* CMOVP_F*/
0x1f0, /* CMOVP_F*/
0x1f0, /* CMOVP_F*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0xac5, /* UCOM_FPPr*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
/* Table1434 */
0x35c, /* ILD_F32m*/
0x3ab, /* ISTT_FP32m*/
0x3b7, /* IST_F32m*/
0x3b9, /* IST_FP32m*/
0, /* PHI*/
0x445, /* LD_F80m*/
0, /* PHI*/
0xa22, /* ST_FP80m*/
0x1c0, /* CMOVNB_F*/
0x1c0, /* CMOVNB_F*/
0x1c0, /* CMOVNB_F*/
0x1c0, /* CMOVNB_F*/
0x1c0, /* CMOVNB_F*/
0x1c0, /* CMOVNB_F*/
0x1c0, /* CMOVNB_F*/
0x1c0, /* CMOVNB_F*/
0x1ca, /* CMOVNE_F*/
0x1ca, /* CMOVNE_F*/
0x1ca, /* CMOVNE_F*/
0x1ca, /* CMOVNE_F*/
0x1ca, /* CMOVNE_F*/
0x1ca, /* CMOVNE_F*/
0x1ca, /* CMOVNE_F*/
0x1ca, /* CMOVNE_F*/
0x1bc, /* CMOVNBE_F*/
0x1bc, /* CMOVNBE_F*/
0x1bc, /* CMOVNBE_F*/
0x1bc, /* CMOVNBE_F*/
0x1bc, /* CMOVNBE_F*/
0x1bc, /* CMOVNBE_F*/
0x1bc, /* CMOVNBE_F*/
0x1bc, /* CMOVNBE_F*/
0x1da, /* CMOVNP_F*/
0x1da, /* CMOVNP_F*/
0x1da, /* CMOVNP_F*/
0x1da, /* CMOVNP_F*/
0x1da, /* CMOVNP_F*/
0x1da, /* CMOVNP_F*/
0x1da, /* CMOVNP_F*/
0x1da, /* CMOVNP_F*/
0, /* PHI*/
0, /* PHI*/
0x30c, /* FNCLEX*/
0x30d, /* FNINIT*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0xac4, /* UCOM_FIr*/
0xac4, /* UCOM_FIr*/
0xac4, /* UCOM_FIr*/
0xac4, /* UCOM_FIr*/
0xac4, /* UCOM_FIr*/
0xac4, /* UCOM_FIr*/
0xac4, /* UCOM_FIr*/
0xac4, /* UCOM_FIr*/
0x24e, /* COM_FIr*/
0x24e, /* COM_FIr*/
0x24e, /* COM_FIr*/
0x24e, /* COM_FIr*/
0x24e, /* COM_FIr*/
0x24e, /* COM_FIr*/
0x24e, /* COM_FIr*/
0x24e, /* COM_FIr*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
/* Table1435 */
0x83, /* ADD_F64m*/
0x68a, /* MUL_F64m*/
0x2f9, /* FCOM64m*/
0x2fb, /* FCOMP64m*/
0xa71, /* SUB_F64m*/
0xa57, /* SUBR_F64m*/
0x2c5, /* DIV_F64m*/
0x2ab, /* DIVR_F64m*/
0x96, /* ADD_FrST0*/
0x69d, /* MUL_FrST0*/
0, /* PHI*/
0, /* PHI*/
0xa67, /* SUBR_FrST0*/
0xa84, /* SUB_FrST0*/
0x2bb, /* DIVR_FrST0*/
0x2d8, /* DIV_FrST0*/
/* Table1436 */
0x444, /* LD_F64m*/
0x3ac, /* ISTT_FP64m*/
0xa1f, /* ST_F64m*/
0xa21, /* ST_FP64m*/
0x320, /* FRSTORm*/
0, /* PHI*/
0x321, /* FSAVEm*/
0x311, /* FNSTSWm*/
0x2ff, /* FFREE*/
0, /* PHI*/
0xa2f, /* ST_Frr*/
0xa23, /* ST_FPrr*/
0xacd, /* UCOM_Fr*/
0xac6, /* UCOM_FPr*/
0, /* PHI*/
0, /* PHI*/
/* Table1437 */
0x84, /* ADD_FI16m*/
0x68b, /* MUL_FI16m*/
0x300, /* FICOM16m*/
0x302, /* FICOMP16m*/
0xa72, /* SUB_FI16m*/
0xa58, /* SUBR_FI16m*/
0x2c6, /* DIV_FI16m*/
0x2ac, /* DIVR_FI16m*/
0x86, /* ADD_FPrST0*/
0x86, /* ADD_FPrST0*/
0x86, /* ADD_FPrST0*/
0x86, /* ADD_FPrST0*/
0x86, /* ADD_FPrST0*/
0x86, /* ADD_FPrST0*/
0x86, /* ADD_FPrST0*/
0x86, /* ADD_FPrST0*/
0x68d, /* MUL_FPrST0*/
0x68d, /* MUL_FPrST0*/
0x68d, /* MUL_FPrST0*/
0x68d, /* MUL_FPrST0*/
0x68d, /* MUL_FPrST0*/
0x68d, /* MUL_FPrST0*/
0x68d, /* MUL_FPrST0*/
0x68d, /* MUL_FPrST0*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x2fc, /* FCOMPP*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0xa5a, /* SUBR_FPrST0*/
0xa5a, /* SUBR_FPrST0*/
0xa5a, /* SUBR_FPrST0*/
0xa5a, /* SUBR_FPrST0*/
0xa5a, /* SUBR_FPrST0*/
0xa5a, /* SUBR_FPrST0*/
0xa5a, /* SUBR_FPrST0*/
0xa5a, /* SUBR_FPrST0*/
0xa74, /* SUB_FPrST0*/
0xa74, /* SUB_FPrST0*/
0xa74, /* SUB_FPrST0*/
0xa74, /* SUB_FPrST0*/
0xa74, /* SUB_FPrST0*/
0xa74, /* SUB_FPrST0*/
0xa74, /* SUB_FPrST0*/
0xa74, /* SUB_FPrST0*/
0x2ae, /* DIVR_FPrST0*/
0x2ae, /* DIVR_FPrST0*/
0x2ae, /* DIVR_FPrST0*/
0x2ae, /* DIVR_FPrST0*/
0x2ae, /* DIVR_FPrST0*/
0x2ae, /* DIVR_FPrST0*/
0x2ae, /* DIVR_FPrST0*/
0x2ae, /* DIVR_FPrST0*/
0x2c8, /* DIV_FPrST0*/
0x2c8, /* DIV_FPrST0*/
0x2c8, /* DIV_FPrST0*/
0x2c8, /* DIV_FPrST0*/
0x2c8, /* DIV_FPrST0*/
0x2c8, /* DIV_FPrST0*/
0x2c8, /* DIV_FPrST0*/
0x2c8, /* DIV_FPrST0*/
/* Table1438 */
0x35b, /* ILD_F16m*/
0x3aa, /* ISTT_FP16m*/
0x3b6, /* IST_F16m*/
0x3b8, /* IST_FP16m*/
0x2f6, /* FBLDm*/
0x35d, /* ILD_F64m*/
0x2f7, /* FBSTPm*/
0x3ba, /* IST_FP64m*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x310, /* FNSTSW16r*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0xac3, /* UCOM_FIPr*/
0xac3, /* UCOM_FIPr*/
0xac3, /* UCOM_FIPr*/
0xac3, /* UCOM_FIPr*/
0xac3, /* UCOM_FIPr*/
0xac3, /* UCOM_FIPr*/
0xac3, /* UCOM_FIPr*/
0xac3, /* UCOM_FIPr*/
0x24d, /* COM_FIPr*/
0x24d, /* COM_FIPr*/
0x24d, /* COM_FIPr*/
0x24d, /* COM_FIPr*/
0x24d, /* COM_FIPr*/
0x24d, /* COM_FIPr*/
0x24d, /* COM_FIPr*/
0x24d, /* COM_FIPr*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
/* Table1439 */
0x4b0, /* LOOPNE*/
/* Table1440 */
0x4af, /* LOOPE*/
/* Table1441 */
0x4ae, /* LOOP*/
/* Table1442 */
0x40e, /* JECXZ_32*/
/* Table1443 */
0x388, /* IN8ri*/
/* Table1444 */
0x385, /* IN32ri*/
/* Table1445 */
0x706, /* OUT8ir*/
/* Table1446 */
0x704, /* OUT32ir*/
/* Table1447 */
0x16a, /* CALLpcrel32*/
/* Table1448 */
0x420, /* JMP_4*/
/* Table1449 */
0x2f3, /* FARJMP32i*/
/* Table1450 */
0x41f, /* JMP_1*/
/* Table1451 */
0x389, /* IN8rr*/
/* Table1452 */
0x386, /* IN32rr*/
/* Table1453 */
0x707, /* OUT8rr*/
/* Table1454 */
0x705, /* OUT32rr*/
/* Table1455 */
0x493, /* LOCK_PREFIX*/
/* Table1456 */
0x8d3, /* REPNE_PREFIX*/
/* Table1457 */
0x8db, /* REP_PREFIX*/
/* Table1458 */
0x34e, /* HLT*/
/* Table1459 */
0x179, /* CMC*/
/* Table1460 */
0xaa8, /* TEST8mi*/
0, /* PHI*/
0x6d9, /* NOT8m*/
0x6ce, /* NEG8m*/
0x677, /* MUL8m*/
0x37f, /* IMUL8m*/
0x2a4, /* DIV8m*/
0x359, /* IDIV8m*/
0xaa9, /* TEST8ri*/
0, /* PHI*/
0x6da, /* NOT8r*/
0x6cf, /* NEG8r*/
0x678, /* MUL8r*/
0x380, /* IMUL8r*/
0x2a5, /* DIV8r*/
0x35a, /* IDIV8r*/
/* Table1461 */
0xa9e, /* TEST32mi*/
0, /* PHI*/
0x6d5, /* NOT32m*/
0x6ca, /* NEG32m*/
0x673, /* MUL32m*/
0x36f, /* IMUL32m*/
0x2a0, /* DIV32m*/
0x355, /* IDIV32m*/
0xa9f, /* TEST32ri*/
0, /* PHI*/
0x6d6, /* NOT32r*/
0x6cb, /* NEG32r*/
0x674, /* MUL32r*/
0x370, /* IMUL32r*/
0x2a1, /* DIV32r*/
0x356, /* IDIV32r*/
/* Table1462 */
0x173, /* CLC*/
/* Table1463 */
0xa11, /* STC*/
/* Table1464 */
0x177, /* CLI*/
/* Table1465 */
0xa14, /* STI*/
/* Table1466 */
0x174, /* CLD*/
/* Table1467 */
0xa12, /* STD*/
/* Table1468 */
0x394, /* INC8m*/
0x29c, /* DEC8m*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x395, /* INC8r*/
0x29d, /* DEC8r*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
/* Table1469 */
0x38c, /* INC32m*/
0x294, /* DEC32m*/
0x164, /* CALL32m*/
0x2ef, /* FARCALL32m*/
0x41a, /* JMP32m*/
0x2f4, /* FARJMP32m*/
0x86a, /* PUSH32rmm*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x165, /* CALL32r*/
0, /* PHI*/
0x41b, /* JMP32r*/
0, /* PHI*/
0x86b, /* PUSH32rmr*/
0, /* PHI*/
/* Table1470 */
0x6d, /* ADD8mr*/
0x70, /* ADD8rr*/
/* Table1471 */
0x62, /* ADD64mr*/
0x68, /* ADD64rr*/
/* Table1472 */
0x6f, /* ADD8rm*/
0x71, /* ADD8rr_REV*/
/* Table1473 */
0x67, /* ADD64rm*/
0x6a, /* ADD64rr_REV*/
/* Table1474 */
0x6b, /* ADD8i8*/
/* Table1475 */
0x5f, /* ADD64i32*/
/* Table1476 */
0x6f9, /* OR8mr*/
0x6fc, /* OR8rr*/
/* Table1477 */
0x6f1, /* OR64mr*/
0x6f5, /* OR64rr*/
/* Table1478 */
0x6fb, /* OR8rm*/
0x6fd, /* OR8rr_REV*/
/* Table1479 */
0x6f4, /* OR64rm*/
0x6f6, /* OR64rr_REV*/
/* Table1480 */
0x6f7, /* OR8i8*/
/* Table1481 */
0x6ee, /* OR64i32*/
/* Table1482 */
0x3e, /* ADC8mr*/
0x41, /* ADC8rr*/
/* Table1483 */
0x36, /* ADC64mr*/
0x3a, /* ADC64rr*/
/* Table1484 */
0x40, /* ADC8rm*/
0x42, /* ADC8rr_REV*/
/* Table1485 */
0x39, /* ADC64rm*/
0x3b, /* ADC64rr_REV*/
/* Table1486 */
0x3c, /* ADC8i8*/
/* Table1487 */
0x33, /* ADC64i32*/
/* Table1488 */
0x969, /* SBB8mr*/
0x96c, /* SBB8rr*/
/* Table1489 */
0x961, /* SBB64mr*/
0x965, /* SBB64rr*/
/* Table1490 */
0x96b, /* SBB8rm*/
0x96d, /* SBB8rr_REV*/
/* Table1491 */
0x964, /* SBB64rm*/
0x966, /* SBB64rr_REV*/
/* Table1492 */
0x967, /* SBB8i8*/
/* Table1493 */
0x95e, /* SBB64i32*/
/* Table1494 */
0xc8, /* AND8mr*/
0xcb, /* AND8rr*/
/* Table1495 */
0xc0, /* AND64mr*/
0xc4, /* AND64rr*/
/* Table1496 */
0xca, /* AND8rm*/
0xcc, /* AND8rr_REV*/
/* Table1497 */
0xc3, /* AND64rm*/
0xc5, /* AND64rr_REV*/
/* Table1498 */
0xc6, /* AND8i8*/
/* Table1499 */
0xbd, /* AND64i32*/
/* Table1500 */
0x2e6, /* ES_PREFIX*/
/* Table1501 */
0xa4d, /* SUB8mr*/
0xa50, /* SUB8rr*/
/* Table1502 */
0xa45, /* SUB64mr*/
0xa49, /* SUB64rr*/
/* Table1503 */
0xa4f, /* SUB8rm*/
0xa51, /* SUB8rr_REV*/
/* Table1504 */
0xa48, /* SUB64rm*/
0xa4a, /* SUB64rr_REV*/
/* Table1505 */
0xa4b, /* SUB8i8*/
/* Table1506 */
0xa42, /* SUB64i32*/
/* Table1507 */
0x260, /* CS_PREFIX*/
/* Table1508 */
0x11b2, /* XOR8mr*/
0x11b5, /* XOR8rr*/
/* Table1509 */
0x11aa, /* XOR64mr*/
0x11ae, /* XOR64rr*/
/* Table1510 */
0x11b4, /* XOR8rm*/
0x11b6, /* XOR8rr_REV*/
/* Table1511 */
0x11ad, /* XOR64rm*/
0x11af, /* XOR64rr_REV*/
/* Table1512 */
0x11b0, /* XOR8i8*/
/* Table1513 */
0x11a7, /* XOR64i32*/
/* Table1514 */
0xa0f, /* SS_PREFIX*/
/* Table1515 */
0x225, /* CMP8mr*/
0x228, /* CMP8rr*/
/* Table1516 */
0x21d, /* CMP64mr*/
0x221, /* CMP64rr*/
/* Table1517 */
0x227, /* CMP8rm*/
0x229, /* CMP8rr_REV*/
/* Table1518 */
0x220, /* CMP64rm*/
0x222, /* CMP64rr_REV*/
/* Table1519 */
0x223, /* CMP8i8*/
/* Table1520 */
0x21a, /* CMP64i32*/
/* Table1521 */
0x2dd, /* DS_PREFIX*/
/* Table1522 */
0x8e7, /* REX64_PREFIX*/
/* Table1523 */
0x86f, /* PUSH64r*/
/* Table1524 */
0x86f, /* PUSH64r*/
/* Table1525 */
0x86f, /* PUSH64r*/
/* Table1526 */
0x86f, /* PUSH64r*/
/* Table1527 */
0x86f, /* PUSH64r*/
/* Table1528 */
0x86f, /* PUSH64r*/
/* Table1529 */
0x86f, /* PUSH64r*/
/* Table1530 */
0x86f, /* PUSH64r*/
/* Table1531 */
0x7f7, /* POP64r*/
/* Table1532 */
0x7f7, /* POP64r*/
/* Table1533 */
0x7f7, /* POP64r*/
/* Table1534 */
0x7f7, /* POP64r*/
/* Table1535 */
0x7f7, /* POP64r*/
/* Table1536 */
0x7f7, /* POP64r*/
/* Table1537 */
0x7f7, /* POP64r*/
/* Table1538 */
0x7f7, /* POP64r*/
/* Table1539 */
0x64a, /* MOVSX64rm32*/
0x64d, /* MOVSX64rr32*/
/* Table1540 */
0x325, /* FS_PREFIX*/
/* Table1541 */
0x349, /* GS_PREFIX*/
/* Table1542 */
0x291, /* DATA16_PREFIX*/
/* Table1543 */
0x86d, /* PUSH64i32*/
/* Table1544 */
0x37a, /* IMUL64rmi32*/
0x37d, /* IMUL64rri32*/
/* Table1545 */
0x86e, /* PUSH64i8*/
/* Table1546 */
0x37b, /* IMUL64rmi8*/
0x37e, /* IMUL64rri8*/
/* Table1547 */
0x387, /* IN8*/
/* Table1548 */
0x384, /* IN32*/
/* Table1549 */
0x708, /* OUTSB*/
/* Table1550 */
0x709, /* OUTSD*/
/* Table1551 */
0x429, /* JO_1*/
/* Table1552 */
0x423, /* JNO_1*/
/* Table1553 */
0x40b, /* JB_1*/
/* Table1554 */
0x405, /* JAE_1*/
/* Table1555 */
0x410, /* JE_1*/
/* Table1556 */
0x421, /* JNE_1*/
/* Table1557 */
0x409, /* JBE_1*/
/* Table1558 */
0x407, /* JA_1*/
/* Table1559 */
0x42e, /* JS_1*/
/* Table1560 */
0x427, /* JNS_1*/
/* Table1561 */
0x42b, /* JP_1*/
/* Table1562 */
0x425, /* JNP_1*/
/* Table1563 */
0x418, /* JL_1*/
/* Table1564 */
0x412, /* JGE_1*/
/* Table1565 */
0x416, /* JLE_1*/
/* Table1566 */
0x414, /* JG_1*/
/* Table1567 */
0x6c, /* ADD8mi*/
0x6f8, /* OR8mi*/
0x3d, /* ADC8mi*/
0x968, /* SBB8mi*/
0xc7, /* AND8mi*/
0xa4c, /* SUB8mi*/
0x11b1, /* XOR8mi*/
0x224, /* CMP8mi*/
0x6e, /* ADD8ri*/
0x6fa, /* OR8ri*/
0x3f, /* ADC8ri*/
0x96a, /* SBB8ri*/
0xc9, /* AND8ri*/
0xa4e, /* SUB8ri*/
0x11b3, /* XOR8ri*/
0x226, /* CMP8ri*/
/* Table1568 */
0x60, /* ADD64mi32*/
0x6ef, /* OR64mi32*/
0x34, /* ADC64mi32*/
0x95f, /* SBB64mi32*/
0xbe, /* AND64mi32*/
0xa43, /* SUB64mi32*/
0x11a8, /* XOR64mi32*/
0x21b, /* CMP64mi32*/
0x63, /* ADD64ri32*/
0x6f2, /* OR64ri32*/
0x37, /* ADC64ri32*/
0x962, /* SBB64ri32*/
0xc1, /* AND64ri32*/
0xa46, /* SUB64ri32*/
0x11ab, /* XOR64ri32*/
0x21e, /* CMP64ri32*/
/* Table1569 */
0x61, /* ADD64mi8*/
0x6f0, /* OR64mi8*/
0x35, /* ADC64mi8*/
0x960, /* SBB64mi8*/
0xbf, /* AND64mi8*/
0xa44, /* SUB64mi8*/
0x11a9, /* XOR64mi8*/
0x21c, /* CMP64mi8*/
0x65, /* ADD64ri8*/
0x6f3, /* OR64ri8*/
0x38, /* ADC64ri8*/
0x963, /* SBB64ri8*/
0xc2, /* AND64ri8*/
0xa47, /* SUB64ri8*/
0x11ac, /* XOR64ri8*/
0x21f, /* CMP64ri8*/
/* Table1570 */
0xaab, /* TEST8rm*/
0xaac, /* TEST8rr*/
/* Table1571 */
0xaa5, /* TEST64rm*/
0xaa6, /* TEST64rr*/
/* Table1572 */
0x118a, /* XCHG8rm*/
0x118b, /* XCHG8rr*/
/* Table1573 */
0x1188, /* XCHG64rm*/
0x1189, /* XCHG64rr*/
/* Table1574 */
0x5eb, /* MOV8mr*/
0x5f2, /* MOV8rr*/
/* Table1575 */
0x5d8, /* MOV64mr*/
0x5e1, /* MOV64rr*/
/* Table1576 */
0x5f0, /* MOV8rm*/
0x5f4, /* MOV8rr_REV*/
/* Table1577 */
0x5e0, /* MOV64rm*/
0x5e2, /* MOV64rr_REV*/
/* Table1578 */
0x5d9, /* MOV64ms*/
0x5e3, /* MOV64rs*/
/* Table1579 */
0x456, /* LEA64r*/
0, /* PHI*/
/* Table1580 */
0x5e4, /* MOV64sm*/
0x5e5, /* MOV64sr*/
/* Table1581 */
0x7f8, /* POP64rmm*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x7f9, /* POP64rmr*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
/* Table1582 */
0x6d0, /* NOOP*/
/* Table1583 */
0x1187, /* XCHG64ar*/
/* Table1584 */
0x1187, /* XCHG64ar*/
/* Table1585 */
0x1187, /* XCHG64ar*/
/* Table1586 */
0x1187, /* XCHG64ar*/
/* Table1587 */
0x1187, /* XCHG64ar*/
/* Table1588 */
0x1187, /* XCHG64ar*/
/* Table1589 */
0x1187, /* XCHG64ar*/
/* Table1590 */
0x16d, /* CDQE*/
/* Table1591 */
0x255, /* CQO*/
/* Table1592 */
0x2ee, /* FARCALL32i*/
/* Table1593 */
0x116b, /* WAIT*/
/* Table1594 */
0x87b, /* PUSHF64*/
/* Table1595 */
0x807, /* POPF64*/
/* Table1596 */
0x92f, /* SAHF*/
/* Table1597 */
0x430, /* LAHF*/
/* Table1598 */
0x62f, /* MOVSB*/
/* Table1599 */
0x63b, /* MOVSQ*/
/* Table1600 */
0x235, /* CMPS8*/
/* Table1601 */
0x234, /* CMPS64*/
/* Table1602 */
0xaa7, /* TEST8i8*/
/* Table1603 */
0xaa2, /* TEST64i32*/
/* Table1604 */
0xa16, /* STOSB*/
/* Table1605 */
0xa18, /* STOSQ*/
/* Table1606 */
0x4aa, /* LODSB*/
/* Table1607 */
0x4ac, /* LODSQ*/
/* Table1608 */
0x971, /* SCAS8*/
/* Table1609 */
0x970, /* SCAS64*/
/* Table1610 */
0x5ef, /* MOV8ri*/
/* Table1611 */
0x5ef, /* MOV8ri*/
/* Table1612 */
0x5ef, /* MOV8ri*/
/* Table1613 */
0x5ef, /* MOV8ri*/
/* Table1614 */
0x5ef, /* MOV8ri*/
/* Table1615 */
0x5ef, /* MOV8ri*/
/* Table1616 */
0x5ef, /* MOV8ri*/
/* Table1617 */
0x5ef, /* MOV8ri*/
/* Table1618 */
0x5dd, /* MOV64ri*/
/* Table1619 */
0x5dd, /* MOV64ri*/
/* Table1620 */
0x5dd, /* MOV64ri*/
/* Table1621 */
0x5dd, /* MOV64ri*/
/* Table1622 */
0x5dd, /* MOV64ri*/
/* Table1623 */
0x5dd, /* MOV64ri*/
/* Table1624 */
0x5dd, /* MOV64ri*/
/* Table1625 */
0x5dd, /* MOV64ri*/
/* Table1626 */
0x8fc, /* ROL8mi*/
0x914, /* ROR8mi*/
0x89d, /* RCL8mi*/
0x8bd, /* RCR8mi*/
0x9af, /* SHL8mi*/
0x9d7, /* SHR8mi*/
0, /* PHI*/
0x944, /* SAR8mi*/
0x8ff, /* ROL8ri*/
0x917, /* ROR8ri*/
0x8a0, /* RCL8ri*/
0x8c0, /* RCR8ri*/
0x9b2, /* SHL8ri*/
0x9da, /* SHR8ri*/
0, /* PHI*/
0x947, /* SAR8ri*/
/* Table1627 */
0x8f6, /* ROL64mi*/
0x90e, /* ROR64mi*/
0x897, /* RCL64mi*/
0x8b7, /* RCR64mi*/
0x9a9, /* SHL64mi*/
0x9d1, /* SHR64mi*/
0, /* PHI*/
0x93e, /* SAR64mi*/
0x8f9, /* ROL64ri*/
0x911, /* ROR64ri*/
0x89a, /* RCL64ri*/
0x8ba, /* RCR64ri*/
0x9ac, /* SHL64ri*/
0x9d4, /* SHR64ri*/
0, /* PHI*/
0x941, /* SAR64ri*/
/* Table1628 */
0x8e4, /* RETI*/
/* Table1629 */
0x8e3, /* RET*/
/* Table1630 */
0x45a, /* LES32rm*/
0, /* PHI*/
/* Table1631 */
0x440, /* LDS32rm*/
0, /* PHI*/
/* Table1632 */
0x5ea, /* MOV8mi*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x1175, /* XABORT*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
/* Table1633 */
0x5d7, /* MOV64mi32*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x5de, /* MOV64ri32*/
0x5de, /* MOV64ri32*/
0x5de, /* MOV64ri32*/
0x5de, /* MOV64ri32*/
0x5de, /* MOV64ri32*/
0x5de, /* MOV64ri32*/
0x5de, /* MOV64ri32*/
0x5de, /* MOV64ri32*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x117f, /* XBEGIN_4*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
/* Table1634 */
0x2e5, /* ENTER*/
/* Table1635 */
0x458, /* LEAVE64*/
/* Table1636 */
0x4b1, /* LRETI*/
/* Table1637 */
0x4b4, /* LRETQ*/
/* Table1638 */
0x39b, /* INT3*/
/* Table1639 */
0x39a, /* INT*/
/* Table1640 */
0x39c, /* INTO*/
/* Table1641 */
0x3a9, /* IRET64*/
/* Table1642 */
0x8fa, /* ROL8m1*/
0x912, /* ROR8m1*/
0x89b, /* RCL8m1*/
0x8bb, /* RCR8m1*/
0x9ad, /* SHL8m1*/
0x9d5, /* SHR8m1*/
0, /* PHI*/
0x942, /* SAR8m1*/
0x8fd, /* ROL8r1*/
0x915, /* ROR8r1*/
0x89e, /* RCL8r1*/
0x8be, /* RCR8r1*/
0x9b0, /* SHL8r1*/
0x9d8, /* SHR8r1*/
0, /* PHI*/
0x945, /* SAR8r1*/
/* Table1643 */
0x8f4, /* ROL64m1*/
0x90c, /* ROR64m1*/
0x895, /* RCL64m1*/
0x8b5, /* RCR64m1*/
0x9a7, /* SHL64m1*/
0x9cf, /* SHR64m1*/
0, /* PHI*/
0x93c, /* SAR64m1*/
0x8f7, /* ROL64r1*/
0x90f, /* ROR64r1*/
0x898, /* RCL64r1*/
0x8b8, /* RCR64r1*/
0x9aa, /* SHL64r1*/
0x9d2, /* SHR64r1*/
0, /* PHI*/
0x93f, /* SAR64r1*/
/* Table1644 */
0x8fb, /* ROL8mCL*/
0x913, /* ROR8mCL*/
0x89c, /* RCL8mCL*/
0x8bc, /* RCR8mCL*/
0x9ae, /* SHL8mCL*/
0x9d6, /* SHR8mCL*/
0, /* PHI*/
0x943, /* SAR8mCL*/
0x8fe, /* ROL8rCL*/
0x916, /* ROR8rCL*/
0x89f, /* RCL8rCL*/
0x8bf, /* RCR8rCL*/
0x9b1, /* SHL8rCL*/
0x9d9, /* SHR8rCL*/
0, /* PHI*/
0x946, /* SAR8rCL*/
/* Table1645 */
0x8f5, /* ROL64mCL*/
0x90d, /* ROR64mCL*/
0x896, /* RCL64mCL*/
0x8b6, /* RCR64mCL*/
0x9a8, /* SHL64mCL*/
0x9d0, /* SHR64mCL*/
0, /* PHI*/
0x93d, /* SAR64mCL*/
0x8f8, /* ROL64rCL*/
0x910, /* ROR64rCL*/
0x899, /* RCL64rCL*/
0x8b9, /* RCR64rCL*/
0x9ab, /* SHL64rCL*/
0x9d3, /* SHR64rCL*/
0, /* PHI*/
0x940, /* SAR64rCL*/
/* Table1646 */
0x1194, /* XLAT*/
/* Table1647 */
0x82, /* ADD_F32m*/
0x689, /* MUL_F32m*/
0x2f8, /* FCOM32m*/
0x2fa, /* FCOMP32m*/
0xa70, /* SUB_F32m*/
0xa56, /* SUBR_F32m*/
0x2c4, /* DIV_F32m*/
0x2aa, /* DIVR_F32m*/
0x87, /* ADD_FST0r*/
0x68e, /* MUL_FST0r*/
0x24f, /* COM_FST0r*/
0x24c, /* COMP_FST0r*/
0xa75, /* SUB_FST0r*/
0xa5b, /* SUBR_FST0r*/
0x2c9, /* DIV_FST0r*/
0x2af, /* DIVR_FST0r*/
/* Table1648 */
0x443, /* LD_F32m*/
0, /* PHI*/
0xa1e, /* ST_F32m*/
0xa20, /* ST_FP32m*/
0x306, /* FLDENVm*/
0x305, /* FLDCW16m*/
0x324, /* FSTENVm*/
0x30f, /* FNSTCW16m*/
0x452, /* LD_Frr*/
0x452, /* LD_Frr*/
0x452, /* LD_Frr*/
0x452, /* LD_Frr*/
0x452, /* LD_Frr*/
0x452, /* LD_Frr*/
0x452, /* LD_Frr*/
0x452, /* LD_Frr*/
0x118c, /* XCH_F*/
0x118c, /* XCH_F*/
0x118c, /* XCH_F*/
0x118c, /* XCH_F*/
0x118c, /* XCH_F*/
0x118c, /* XCH_F*/
0x118c, /* XCH_F*/
0x118c, /* XCH_F*/
0x30e, /* FNOP*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x16e, /* CHS_F*/
0x19, /* ABS_F*/
0, /* PHI*/
0, /* PHI*/
0xab5, /* TST_F*/
0x326, /* FXAM*/
0, /* PHI*/
0, /* PHI*/
0x442, /* LD_F1*/
0x308, /* FLDL2T*/
0x307, /* FLDL2E*/
0x30b, /* FLDPI*/
0x309, /* FLDLG2*/
0x30a, /* FLDLN2*/
0x441, /* LD_F0*/
0, /* PHI*/
0x2eb, /* F2XM1*/
0x32c, /* FYL2X*/
0x31e, /* FPTAN*/
0x31b, /* FPATAN*/
0x32b, /* FXTRACT*/
0x31d, /* FPREM1*/
0x2fd, /* FDECSTP*/
0x304, /* FINCSTP*/
0x31c, /* FPREM*/
0x32d, /* FYL2XP1*/
0xa0b, /* SQRT_F*/
0x323, /* FSINCOS*/
0x31f, /* FRNDINT*/
0x322, /* FSCALE*/
0x9f1, /* SIN_F*/
0x250, /* COS_F*/
/* Table1649 */
0x85, /* ADD_FI32m*/
0x68c, /* MUL_FI32m*/
0x301, /* FICOM32m*/
0x303, /* FICOMP32m*/
0xa73, /* SUB_FI32m*/
0xa59, /* SUBR_FI32m*/
0x2c7, /* DIV_FI32m*/
0x2ad, /* DIVR_FI32m*/
0x196, /* CMOVB_F*/
0x196, /* CMOVB_F*/
0x196, /* CMOVB_F*/
0x196, /* CMOVB_F*/
0x196, /* CMOVB_F*/
0x196, /* CMOVB_F*/
0x196, /* CMOVB_F*/
0x196, /* CMOVB_F*/
0x1a0, /* CMOVE_F*/
0x1a0, /* CMOVE_F*/
0x1a0, /* CMOVE_F*/
0x1a0, /* CMOVE_F*/
0x1a0, /* CMOVE_F*/
0x1a0, /* CMOVE_F*/
0x1a0, /* CMOVE_F*/
0x1a0, /* CMOVE_F*/
0x192, /* CMOVBE_F*/
0x192, /* CMOVBE_F*/
0x192, /* CMOVBE_F*/
0x192, /* CMOVBE_F*/
0x192, /* CMOVBE_F*/
0x192, /* CMOVBE_F*/
0x192, /* CMOVBE_F*/
0x192, /* CMOVBE_F*/
0x1f0, /* CMOVP_F*/
0x1f0, /* CMOVP_F*/
0x1f0, /* CMOVP_F*/
0x1f0, /* CMOVP_F*/
0x1f0, /* CMOVP_F*/
0x1f0, /* CMOVP_F*/
0x1f0, /* CMOVP_F*/
0x1f0, /* CMOVP_F*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0xac5, /* UCOM_FPPr*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
/* Table1650 */
0x35c, /* ILD_F32m*/
0x3ab, /* ISTT_FP32m*/
0x3b7, /* IST_F32m*/
0x3b9, /* IST_FP32m*/
0, /* PHI*/
0x445, /* LD_F80m*/
0, /* PHI*/
0xa22, /* ST_FP80m*/
0x1c0, /* CMOVNB_F*/
0x1c0, /* CMOVNB_F*/
0x1c0, /* CMOVNB_F*/
0x1c0, /* CMOVNB_F*/
0x1c0, /* CMOVNB_F*/
0x1c0, /* CMOVNB_F*/
0x1c0, /* CMOVNB_F*/
0x1c0, /* CMOVNB_F*/
0x1ca, /* CMOVNE_F*/
0x1ca, /* CMOVNE_F*/
0x1ca, /* CMOVNE_F*/
0x1ca, /* CMOVNE_F*/
0x1ca, /* CMOVNE_F*/
0x1ca, /* CMOVNE_F*/
0x1ca, /* CMOVNE_F*/
0x1ca, /* CMOVNE_F*/
0x1bc, /* CMOVNBE_F*/
0x1bc, /* CMOVNBE_F*/
0x1bc, /* CMOVNBE_F*/
0x1bc, /* CMOVNBE_F*/
0x1bc, /* CMOVNBE_F*/
0x1bc, /* CMOVNBE_F*/
0x1bc, /* CMOVNBE_F*/
0x1bc, /* CMOVNBE_F*/
0x1da, /* CMOVNP_F*/
0x1da, /* CMOVNP_F*/
0x1da, /* CMOVNP_F*/
0x1da, /* CMOVNP_F*/
0x1da, /* CMOVNP_F*/
0x1da, /* CMOVNP_F*/
0x1da, /* CMOVNP_F*/
0x1da, /* CMOVNP_F*/
0, /* PHI*/
0, /* PHI*/
0x30c, /* FNCLEX*/
0x30d, /* FNINIT*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0xac4, /* UCOM_FIr*/
0xac4, /* UCOM_FIr*/
0xac4, /* UCOM_FIr*/
0xac4, /* UCOM_FIr*/
0xac4, /* UCOM_FIr*/
0xac4, /* UCOM_FIr*/
0xac4, /* UCOM_FIr*/
0xac4, /* UCOM_FIr*/
0x24e, /* COM_FIr*/
0x24e, /* COM_FIr*/
0x24e, /* COM_FIr*/
0x24e, /* COM_FIr*/
0x24e, /* COM_FIr*/
0x24e, /* COM_FIr*/
0x24e, /* COM_FIr*/
0x24e, /* COM_FIr*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
/* Table1651 */
0x83, /* ADD_F64m*/
0x68a, /* MUL_F64m*/
0x2f9, /* FCOM64m*/
0x2fb, /* FCOMP64m*/
0xa71, /* SUB_F64m*/
0xa57, /* SUBR_F64m*/
0x2c5, /* DIV_F64m*/
0x2ab, /* DIVR_F64m*/
0x96, /* ADD_FrST0*/
0x69d, /* MUL_FrST0*/
0, /* PHI*/
0, /* PHI*/
0xa67, /* SUBR_FrST0*/
0xa84, /* SUB_FrST0*/
0x2bb, /* DIVR_FrST0*/
0x2d8, /* DIV_FrST0*/
/* Table1652 */
0x444, /* LD_F64m*/
0x3ac, /* ISTT_FP64m*/
0xa1f, /* ST_F64m*/
0xa21, /* ST_FP64m*/
0x320, /* FRSTORm*/
0, /* PHI*/
0x321, /* FSAVEm*/
0x311, /* FNSTSWm*/
0x2ff, /* FFREE*/
0, /* PHI*/
0xa2f, /* ST_Frr*/
0xa23, /* ST_FPrr*/
0xacd, /* UCOM_Fr*/
0xac6, /* UCOM_FPr*/
0, /* PHI*/
0, /* PHI*/
/* Table1653 */
0x84, /* ADD_FI16m*/
0x68b, /* MUL_FI16m*/
0x300, /* FICOM16m*/
0x302, /* FICOMP16m*/
0xa72, /* SUB_FI16m*/
0xa58, /* SUBR_FI16m*/
0x2c6, /* DIV_FI16m*/
0x2ac, /* DIVR_FI16m*/
0x86, /* ADD_FPrST0*/
0x86, /* ADD_FPrST0*/
0x86, /* ADD_FPrST0*/
0x86, /* ADD_FPrST0*/
0x86, /* ADD_FPrST0*/
0x86, /* ADD_FPrST0*/
0x86, /* ADD_FPrST0*/
0x86, /* ADD_FPrST0*/
0x68d, /* MUL_FPrST0*/
0x68d, /* MUL_FPrST0*/
0x68d, /* MUL_FPrST0*/
0x68d, /* MUL_FPrST0*/
0x68d, /* MUL_FPrST0*/
0x68d, /* MUL_FPrST0*/
0x68d, /* MUL_FPrST0*/
0x68d, /* MUL_FPrST0*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x2fc, /* FCOMPP*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0xa5a, /* SUBR_FPrST0*/
0xa5a, /* SUBR_FPrST0*/
0xa5a, /* SUBR_FPrST0*/
0xa5a, /* SUBR_FPrST0*/
0xa5a, /* SUBR_FPrST0*/
0xa5a, /* SUBR_FPrST0*/
0xa5a, /* SUBR_FPrST0*/
0xa5a, /* SUBR_FPrST0*/
0xa74, /* SUB_FPrST0*/
0xa74, /* SUB_FPrST0*/
0xa74, /* SUB_FPrST0*/
0xa74, /* SUB_FPrST0*/
0xa74, /* SUB_FPrST0*/
0xa74, /* SUB_FPrST0*/
0xa74, /* SUB_FPrST0*/
0xa74, /* SUB_FPrST0*/
0x2ae, /* DIVR_FPrST0*/
0x2ae, /* DIVR_FPrST0*/
0x2ae, /* DIVR_FPrST0*/
0x2ae, /* DIVR_FPrST0*/
0x2ae, /* DIVR_FPrST0*/
0x2ae, /* DIVR_FPrST0*/
0x2ae, /* DIVR_FPrST0*/
0x2ae, /* DIVR_FPrST0*/
0x2c8, /* DIV_FPrST0*/
0x2c8, /* DIV_FPrST0*/
0x2c8, /* DIV_FPrST0*/
0x2c8, /* DIV_FPrST0*/
0x2c8, /* DIV_FPrST0*/
0x2c8, /* DIV_FPrST0*/
0x2c8, /* DIV_FPrST0*/
0x2c8, /* DIV_FPrST0*/
/* Table1654 */
0x35b, /* ILD_F16m*/
0x3aa, /* ISTT_FP16m*/
0x3b6, /* IST_F16m*/
0x3b8, /* IST_FP16m*/
0x2f6, /* FBLDm*/
0x35d, /* ILD_F64m*/
0x2f7, /* FBSTPm*/
0x3ba, /* IST_FP64m*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x310, /* FNSTSW16r*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0xac3, /* UCOM_FIPr*/
0xac3, /* UCOM_FIPr*/
0xac3, /* UCOM_FIPr*/
0xac3, /* UCOM_FIPr*/
0xac3, /* UCOM_FIPr*/
0xac3, /* UCOM_FIPr*/
0xac3, /* UCOM_FIPr*/
0xac3, /* UCOM_FIPr*/
0x24d, /* COM_FIPr*/
0x24d, /* COM_FIPr*/
0x24d, /* COM_FIPr*/
0x24d, /* COM_FIPr*/
0x24d, /* COM_FIPr*/
0x24d, /* COM_FIPr*/
0x24d, /* COM_FIPr*/
0x24d, /* COM_FIPr*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
/* Table1655 */
0x4b0, /* LOOPNE*/
/* Table1656 */
0x4af, /* LOOPE*/
/* Table1657 */
0x4ae, /* LOOP*/
/* Table1658 */
0x42d, /* JRCXZ*/
/* Table1659 */
0x388, /* IN8ri*/
/* Table1660 */
0x385, /* IN32ri*/
/* Table1661 */
0x706, /* OUT8ir*/
/* Table1662 */
0x704, /* OUT32ir*/
/* Table1663 */
0x167, /* CALL64pcrel32*/
/* Table1664 */
0x41d, /* JMP64pcrel32*/
/* Table1665 */
0x2f3, /* FARJMP32i*/
/* Table1666 */
0x41f, /* JMP_1*/
/* Table1667 */
0x389, /* IN8rr*/
/* Table1668 */
0x386, /* IN32rr*/
/* Table1669 */
0x707, /* OUT8rr*/
/* Table1670 */
0x705, /* OUT32rr*/
/* Table1671 */
0x493, /* LOCK_PREFIX*/
/* Table1672 */
0x8d3, /* REPNE_PREFIX*/
/* Table1673 */
0x8db, /* REP_PREFIX*/
/* Table1674 */
0x34e, /* HLT*/
/* Table1675 */
0x179, /* CMC*/
/* Table1676 */
0xaa8, /* TEST8mi*/
0, /* PHI*/
0x6d9, /* NOT8m*/
0x6ce, /* NEG8m*/
0x677, /* MUL8m*/
0x37f, /* IMUL8m*/
0x2a4, /* DIV8m*/
0x359, /* IDIV8m*/
0xaa9, /* TEST8ri*/
0, /* PHI*/
0x6da, /* NOT8r*/
0x6cf, /* NEG8r*/
0x678, /* MUL8r*/
0x380, /* IMUL8r*/
0x2a5, /* DIV8r*/
0x35a, /* IDIV8r*/
/* Table1677 */
0xaa3, /* TEST64mi32*/
0, /* PHI*/
0x6d7, /* NOT64m*/
0x6cc, /* NEG64m*/
0x675, /* MUL64m*/
0x377, /* IMUL64m*/
0x2a2, /* DIV64m*/
0x357, /* IDIV64m*/
0xaa4, /* TEST64ri32*/
0, /* PHI*/
0x6d8, /* NOT64r*/
0x6cd, /* NEG64r*/
0x676, /* MUL64r*/
0x378, /* IMUL64r*/
0x2a3, /* DIV64r*/
0x358, /* IDIV64r*/
/* Table1678 */
0x173, /* CLC*/
/* Table1679 */
0xa11, /* STC*/
/* Table1680 */
0x177, /* CLI*/
/* Table1681 */
0xa14, /* STI*/
/* Table1682 */
0x174, /* CLD*/
/* Table1683 */
0xa12, /* STD*/
/* Table1684 */
0x394, /* INC8m*/
0x29c, /* DEC8m*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x395, /* INC8r*/
0x29d, /* DEC8r*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
/* Table1685 */
0x392, /* INC64m*/
0x29a, /* DEC64m*/
0x166, /* CALL64m*/
0x2f0, /* FARCALL64*/
0x41c, /* JMP64m*/
0x2f5, /* FARJMP64*/
0x870, /* PUSH64rmm*/
0, /* PHI*/
0x393, /* INC64r*/
0x29b, /* DEC64r*/
0x168, /* CALL64r*/
0, /* PHI*/
0x41e, /* JMP64r*/
0, /* PHI*/
0x871, /* PUSH64rmr*/
0, /* PHI*/
/* Table1686 */
0x6d, /* ADD8mr*/
0x70, /* ADD8rr*/
/* Table1687 */
0x4a, /* ADD16mr*/
0x50, /* ADD16rr*/
/* Table1688 */
0x6f, /* ADD8rm*/
0x71, /* ADD8rr_REV*/
/* Table1689 */
0x4f, /* ADD16rm*/
0x52, /* ADD16rr_REV*/
/* Table1690 */
0x6b, /* ADD8i8*/
/* Table1691 */
0x47, /* ADD16i16*/
/* Table1692 */
0x6f9, /* OR8mr*/
0x6fc, /* OR8rr*/
/* Table1693 */
0x6de, /* OR16mr*/
0x6e2, /* OR16rr*/
/* Table1694 */
0x6fb, /* OR8rm*/
0x6fd, /* OR8rr_REV*/
/* Table1695 */
0x6e1, /* OR16rm*/
0x6e3, /* OR16rr_REV*/
/* Table1696 */
0x6f7, /* OR8i8*/
/* Table1697 */
0x6db, /* OR16i16*/
/* Table1698 */
0x3e, /* ADC8mr*/
0x41, /* ADC8rr*/
/* Table1699 */
0x24, /* ADC16mr*/
0x28, /* ADC16rr*/
/* Table1700 */
0x40, /* ADC8rm*/
0x42, /* ADC8rr_REV*/
/* Table1701 */
0x27, /* ADC16rm*/
0x29, /* ADC16rr_REV*/
/* Table1702 */
0x3c, /* ADC8i8*/
/* Table1703 */
0x21, /* ADC16i16*/
/* Table1704 */
0x969, /* SBB8mr*/
0x96c, /* SBB8rr*/
/* Table1705 */
0x94f, /* SBB16mr*/
0x953, /* SBB16rr*/
/* Table1706 */
0x96b, /* SBB8rm*/
0x96d, /* SBB8rr_REV*/
/* Table1707 */
0x952, /* SBB16rm*/
0x954, /* SBB16rr_REV*/
/* Table1708 */
0x967, /* SBB8i8*/
/* Table1709 */
0x94c, /* SBB16i16*/
/* Table1710 */
0xc8, /* AND8mr*/
0xcb, /* AND8rr*/
/* Table1711 */
0xae, /* AND16mr*/
0xb2, /* AND16rr*/
/* Table1712 */
0xca, /* AND8rm*/
0xcc, /* AND8rr_REV*/
/* Table1713 */
0xb1, /* AND16rm*/
0xb3, /* AND16rr_REV*/
/* Table1714 */
0xc6, /* AND8i8*/
/* Table1715 */
0xab, /* AND16i16*/
/* Table1716 */
0x2e6, /* ES_PREFIX*/
/* Table1717 */
0xa4d, /* SUB8mr*/
0xa50, /* SUB8rr*/
/* Table1718 */
0xa33, /* SUB16mr*/
0xa37, /* SUB16rr*/
/* Table1719 */
0xa4f, /* SUB8rm*/
0xa51, /* SUB8rr_REV*/
/* Table1720 */
0xa36, /* SUB16rm*/
0xa38, /* SUB16rr_REV*/
/* Table1721 */
0xa4b, /* SUB8i8*/
/* Table1722 */
0xa30, /* SUB16i16*/
/* Table1723 */
0x260, /* CS_PREFIX*/
/* Table1724 */
0x11b2, /* XOR8mr*/
0x11b5, /* XOR8rr*/
/* Table1725 */
0x1198, /* XOR16mr*/
0x119c, /* XOR16rr*/
/* Table1726 */
0x11b4, /* XOR8rm*/
0x11b6, /* XOR8rr_REV*/
/* Table1727 */
0x119b, /* XOR16rm*/
0x119d, /* XOR16rr_REV*/
/* Table1728 */
0x11b0, /* XOR8i8*/
/* Table1729 */
0x1195, /* XOR16i16*/
/* Table1730 */
0xa0f, /* SS_PREFIX*/
/* Table1731 */
0x225, /* CMP8mr*/
0x228, /* CMP8rr*/
/* Table1732 */
0x20b, /* CMP16mr*/
0x20f, /* CMP16rr*/
/* Table1733 */
0x227, /* CMP8rm*/
0x229, /* CMP8rr_REV*/
/* Table1734 */
0x20e, /* CMP16rm*/
0x210, /* CMP16rr_REV*/
/* Table1735 */
0x223, /* CMP8i8*/
/* Table1736 */
0x208, /* CMP16i16*/
/* Table1737 */
0x2dd, /* DS_PREFIX*/
/* Table1738 */
0x8e7, /* REX64_PREFIX*/
/* Table1739 */
0x866, /* PUSH16r*/
/* Table1740 */
0x866, /* PUSH16r*/
/* Table1741 */
0x866, /* PUSH16r*/
/* Table1742 */
0x866, /* PUSH16r*/
/* Table1743 */
0x866, /* PUSH16r*/
/* Table1744 */
0x866, /* PUSH16r*/
/* Table1745 */
0x866, /* PUSH16r*/
/* Table1746 */
0x866, /* PUSH16r*/
/* Table1747 */
0x7f1, /* POP16r*/
/* Table1748 */
0x7f1, /* POP16r*/
/* Table1749 */
0x7f1, /* POP16r*/
/* Table1750 */
0x7f1, /* POP16r*/
/* Table1751 */
0x7f1, /* POP16r*/
/* Table1752 */
0x7f1, /* POP16r*/
/* Table1753 */
0x7f1, /* POP16r*/
/* Table1754 */
0x7f1, /* POP16r*/
/* Table1755 */
0x325, /* FS_PREFIX*/
/* Table1756 */
0x349, /* GS_PREFIX*/
/* Table1757 */
0x291, /* DATA16_PREFIX*/
/* Table1758 */
0x884, /* PUSHi16*/
/* Table1759 */
0x36a, /* IMUL16rmi*/
0x36d, /* IMUL16rri*/
/* Table1760 */
0x86e, /* PUSH64i8*/
/* Table1761 */
0x36b, /* IMUL16rmi8*/
0x36e, /* IMUL16rri8*/
/* Table1762 */
0x387, /* IN8*/
/* Table1763 */
0x381, /* IN16*/
/* Table1764 */
0x708, /* OUTSB*/
/* Table1765 */
0x70a, /* OUTSW*/
/* Table1766 */
0x429, /* JO_1*/
/* Table1767 */
0x423, /* JNO_1*/
/* Table1768 */
0x40b, /* JB_1*/
/* Table1769 */
0x405, /* JAE_1*/
/* Table1770 */
0x410, /* JE_1*/
/* Table1771 */
0x421, /* JNE_1*/
/* Table1772 */
0x409, /* JBE_1*/
/* Table1773 */
0x407, /* JA_1*/
/* Table1774 */
0x42e, /* JS_1*/
/* Table1775 */
0x427, /* JNS_1*/
/* Table1776 */
0x42b, /* JP_1*/
/* Table1777 */
0x425, /* JNP_1*/
/* Table1778 */
0x418, /* JL_1*/
/* Table1779 */
0x412, /* JGE_1*/
/* Table1780 */
0x416, /* JLE_1*/
/* Table1781 */
0x414, /* JG_1*/
/* Table1782 */
0x6c, /* ADD8mi*/
0x6f8, /* OR8mi*/
0x3d, /* ADC8mi*/
0x968, /* SBB8mi*/
0xc7, /* AND8mi*/
0xa4c, /* SUB8mi*/
0x11b1, /* XOR8mi*/
0x224, /* CMP8mi*/
0x6e, /* ADD8ri*/
0x6fa, /* OR8ri*/
0x3f, /* ADC8ri*/
0x96a, /* SBB8ri*/
0xc9, /* AND8ri*/
0xa4e, /* SUB8ri*/
0x11b3, /* XOR8ri*/
0x226, /* CMP8ri*/
/* Table1783 */
0x48, /* ADD16mi*/
0x6dc, /* OR16mi*/
0x22, /* ADC16mi*/
0x94d, /* SBB16mi*/
0xac, /* AND16mi*/
0xa31, /* SUB16mi*/
0x1196, /* XOR16mi*/
0x209, /* CMP16mi*/
0x4b, /* ADD16ri*/
0x6df, /* OR16ri*/
0x25, /* ADC16ri*/
0x950, /* SBB16ri*/
0xaf, /* AND16ri*/
0xa34, /* SUB16ri*/
0x1199, /* XOR16ri*/
0x20c, /* CMP16ri*/
/* Table1784 */
0x49, /* ADD16mi8*/
0x6dd, /* OR16mi8*/
0x23, /* ADC16mi8*/
0x94e, /* SBB16mi8*/
0xad, /* AND16mi8*/
0xa32, /* SUB16mi8*/
0x1197, /* XOR16mi8*/
0x20a, /* CMP16mi8*/
0x4c, /* ADD16ri8*/
0x6e0, /* OR16ri8*/
0x26, /* ADC16ri8*/
0x951, /* SBB16ri8*/
0xb0, /* AND16ri8*/
0xa35, /* SUB16ri8*/
0x119a, /* XOR16ri8*/
0x20d, /* CMP16ri8*/
/* Table1785 */
0xaab, /* TEST8rm*/
0xaac, /* TEST8rr*/
/* Table1786 */
0xa9b, /* TEST16rm*/
0xa9c, /* TEST16rr*/
/* Table1787 */
0x118a, /* XCHG8rm*/
0x118b, /* XCHG8rr*/
/* Table1788 */
0x1181, /* XCHG16rm*/
0x1182, /* XCHG16rr*/
/* Table1789 */
0x5eb, /* MOV8mr*/
0x5f2, /* MOV8rr*/
/* Table1790 */
0x5b9, /* MOV16mr*/
0x5bf, /* MOV16rr*/
/* Table1791 */
0x5f0, /* MOV8rm*/
0x5f4, /* MOV8rr_REV*/
/* Table1792 */
0x5be, /* MOV16rm*/
0x5c0, /* MOV16rr_REV*/
/* Table1793 */
0x5ba, /* MOV16ms*/
0x5c1, /* MOV16rs*/
/* Table1794 */
0x453, /* LEA16r*/
0, /* PHI*/
/* Table1795 */
0x5c2, /* MOV16sm*/
0x5c3, /* MOV16sr*/
/* Table1796 */
0x7f2, /* POP16rmm*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x7f3, /* POP16rmr*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
/* Table1797 */
0x6d0, /* NOOP*/
/* Table1798 */
0x1180, /* XCHG16ar*/
/* Table1799 */
0x1180, /* XCHG16ar*/
/* Table1800 */
0x1180, /* XCHG16ar*/
/* Table1801 */
0x1180, /* XCHG16ar*/
/* Table1802 */
0x1180, /* XCHG16ar*/
/* Table1803 */
0x1180, /* XCHG16ar*/
/* Table1804 */
0x1180, /* XCHG16ar*/
/* Table1805 */
0x16b, /* CBW*/
/* Table1806 */
0x28d, /* CWD*/
/* Table1807 */
0x2ec, /* FARCALL16i*/
/* Table1808 */
0x116b, /* WAIT*/
/* Table1809 */
0x879, /* PUSHF16*/
/* Table1810 */
0x805, /* POPF16*/
/* Table1811 */
0x92f, /* SAHF*/
/* Table1812 */
0x430, /* LAHF*/
/* Table1813 */
0x62f, /* MOVSB*/
/* Table1814 */
0x642, /* MOVSW*/
/* Table1815 */
0x235, /* CMPS8*/
/* Table1816 */
0x232, /* CMPS16*/
/* Table1817 */
0xaa7, /* TEST8i8*/
/* Table1818 */
0xa98, /* TEST16i16*/
/* Table1819 */
0xa16, /* STOSB*/
/* Table1820 */
0xa19, /* STOSW*/
/* Table1821 */
0x4aa, /* LODSB*/
/* Table1822 */
0x4ad, /* LODSW*/
/* Table1823 */
0x971, /* SCAS8*/
/* Table1824 */
0x96e, /* SCAS16*/
/* Table1825 */
0x5ef, /* MOV8ri*/
/* Table1826 */
0x5ef, /* MOV8ri*/
/* Table1827 */
0x5ef, /* MOV8ri*/
/* Table1828 */
0x5ef, /* MOV8ri*/
/* Table1829 */
0x5ef, /* MOV8ri*/
/* Table1830 */
0x5ef, /* MOV8ri*/
/* Table1831 */
0x5ef, /* MOV8ri*/
/* Table1832 */
0x5ef, /* MOV8ri*/
/* Table1833 */
0x5bd, /* MOV16ri*/
/* Table1834 */
0x5bd, /* MOV16ri*/
/* Table1835 */
0x5bd, /* MOV16ri*/
/* Table1836 */
0x5bd, /* MOV16ri*/
/* Table1837 */
0x5bd, /* MOV16ri*/
/* Table1838 */
0x5bd, /* MOV16ri*/
/* Table1839 */
0x5bd, /* MOV16ri*/
/* Table1840 */
0x5bd, /* MOV16ri*/
/* Table1841 */
0x8fc, /* ROL8mi*/
0x914, /* ROR8mi*/
0x89d, /* RCL8mi*/
0x8bd, /* RCR8mi*/
0x9af, /* SHL8mi*/
0x9d7, /* SHR8mi*/
0, /* PHI*/
0x944, /* SAR8mi*/
0x8ff, /* ROL8ri*/
0x917, /* ROR8ri*/
0x8a0, /* RCL8ri*/
0x8c0, /* RCR8ri*/
0x9b2, /* SHL8ri*/
0x9da, /* SHR8ri*/
0, /* PHI*/
0x947, /* SAR8ri*/
/* Table1842 */
0x8ea, /* ROL16mi*/
0x902, /* ROR16mi*/
0x88b, /* RCL16mi*/
0x8ab, /* RCR16mi*/
0x99d, /* SHL16mi*/
0x9c5, /* SHR16mi*/
0, /* PHI*/
0x932, /* SAR16mi*/
0x8ed, /* ROL16ri*/
0x905, /* ROR16ri*/
0x88e, /* RCL16ri*/
0x8ae, /* RCR16ri*/
0x9a0, /* SHL16ri*/
0x9c8, /* SHR16ri*/
0, /* PHI*/
0x935, /* SAR16ri*/
/* Table1843 */
0x8e5, /* RETIW*/
/* Table1844 */
0x8e6, /* RETW*/
/* Table1845 */
0x459, /* LES16rm*/
0, /* PHI*/
/* Table1846 */
0x43f, /* LDS16rm*/
0, /* PHI*/
/* Table1847 */
0x5ea, /* MOV8mi*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x1175, /* XABORT*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
/* Table1848 */
0x5b8, /* MOV16mi*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x117f, /* XBEGIN_4*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
/* Table1849 */
0x2e5, /* ENTER*/
/* Table1850 */
0x458, /* LEAVE64*/
/* Table1851 */
0x4b2, /* LRETIW*/
/* Table1852 */
0x4b5, /* LRETW*/
/* Table1853 */
0x39b, /* INT3*/
/* Table1854 */
0x39a, /* INT*/
/* Table1855 */
0x39c, /* INTO*/
/* Table1856 */
0x3a7, /* IRET16*/
/* Table1857 */
0x8fa, /* ROL8m1*/
0x912, /* ROR8m1*/
0x89b, /* RCL8m1*/
0x8bb, /* RCR8m1*/
0x9ad, /* SHL8m1*/
0x9d5, /* SHR8m1*/
0, /* PHI*/
0x942, /* SAR8m1*/
0x8fd, /* ROL8r1*/
0x915, /* ROR8r1*/
0x89e, /* RCL8r1*/
0x8be, /* RCR8r1*/
0x9b0, /* SHL8r1*/
0x9d8, /* SHR8r1*/
0, /* PHI*/
0x945, /* SAR8r1*/
/* Table1858 */
0x8e8, /* ROL16m1*/
0x900, /* ROR16m1*/
0x889, /* RCL16m1*/
0x8a9, /* RCR16m1*/
0x99b, /* SHL16m1*/
0x9c3, /* SHR16m1*/
0, /* PHI*/
0x930, /* SAR16m1*/
0x8eb, /* ROL16r1*/
0x903, /* ROR16r1*/
0x88c, /* RCL16r1*/
0x8ac, /* RCR16r1*/
0x99e, /* SHL16r1*/
0x9c6, /* SHR16r1*/
0, /* PHI*/
0x933, /* SAR16r1*/
/* Table1859 */
0x8fb, /* ROL8mCL*/
0x913, /* ROR8mCL*/
0x89c, /* RCL8mCL*/
0x8bc, /* RCR8mCL*/
0x9ae, /* SHL8mCL*/
0x9d6, /* SHR8mCL*/
0, /* PHI*/
0x943, /* SAR8mCL*/
0x8fe, /* ROL8rCL*/
0x916, /* ROR8rCL*/
0x89f, /* RCL8rCL*/
0x8bf, /* RCR8rCL*/
0x9b1, /* SHL8rCL*/
0x9d9, /* SHR8rCL*/
0, /* PHI*/
0x946, /* SAR8rCL*/
/* Table1860 */
0x8e9, /* ROL16mCL*/
0x901, /* ROR16mCL*/
0x88a, /* RCL16mCL*/
0x8aa, /* RCR16mCL*/
0x99c, /* SHL16mCL*/
0x9c4, /* SHR16mCL*/
0, /* PHI*/
0x931, /* SAR16mCL*/
0x8ec, /* ROL16rCL*/
0x904, /* ROR16rCL*/
0x88d, /* RCL16rCL*/
0x8ad, /* RCR16rCL*/
0x99f, /* SHL16rCL*/
0x9c7, /* SHR16rCL*/
0, /* PHI*/
0x934, /* SAR16rCL*/
/* Table1861 */
0x1194, /* XLAT*/
/* Table1862 */
0x82, /* ADD_F32m*/
0x689, /* MUL_F32m*/
0x2f8, /* FCOM32m*/
0x2fa, /* FCOMP32m*/
0xa70, /* SUB_F32m*/
0xa56, /* SUBR_F32m*/
0x2c4, /* DIV_F32m*/
0x2aa, /* DIVR_F32m*/
0x87, /* ADD_FST0r*/
0x68e, /* MUL_FST0r*/
0x24f, /* COM_FST0r*/
0x24c, /* COMP_FST0r*/
0xa75, /* SUB_FST0r*/
0xa5b, /* SUBR_FST0r*/
0x2c9, /* DIV_FST0r*/
0x2af, /* DIVR_FST0r*/
/* Table1863 */
0x443, /* LD_F32m*/
0, /* PHI*/
0xa1e, /* ST_F32m*/
0xa20, /* ST_FP32m*/
0x306, /* FLDENVm*/
0x305, /* FLDCW16m*/
0x324, /* FSTENVm*/
0x30f, /* FNSTCW16m*/
0x452, /* LD_Frr*/
0x452, /* LD_Frr*/
0x452, /* LD_Frr*/
0x452, /* LD_Frr*/
0x452, /* LD_Frr*/
0x452, /* LD_Frr*/
0x452, /* LD_Frr*/
0x452, /* LD_Frr*/
0x118c, /* XCH_F*/
0x118c, /* XCH_F*/
0x118c, /* XCH_F*/
0x118c, /* XCH_F*/
0x118c, /* XCH_F*/
0x118c, /* XCH_F*/
0x118c, /* XCH_F*/
0x118c, /* XCH_F*/
0x30e, /* FNOP*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x16e, /* CHS_F*/
0x19, /* ABS_F*/
0, /* PHI*/
0, /* PHI*/
0xab5, /* TST_F*/
0x326, /* FXAM*/
0, /* PHI*/
0, /* PHI*/
0x442, /* LD_F1*/
0x308, /* FLDL2T*/
0x307, /* FLDL2E*/
0x30b, /* FLDPI*/
0x309, /* FLDLG2*/
0x30a, /* FLDLN2*/
0x441, /* LD_F0*/
0, /* PHI*/
0x2eb, /* F2XM1*/
0x32c, /* FYL2X*/
0x31e, /* FPTAN*/
0x31b, /* FPATAN*/
0x32b, /* FXTRACT*/
0x31d, /* FPREM1*/
0x2fd, /* FDECSTP*/
0x304, /* FINCSTP*/
0x31c, /* FPREM*/
0x32d, /* FYL2XP1*/
0xa0b, /* SQRT_F*/
0x323, /* FSINCOS*/
0x31f, /* FRNDINT*/
0x322, /* FSCALE*/
0x9f1, /* SIN_F*/
0x250, /* COS_F*/
/* Table1864 */
0x85, /* ADD_FI32m*/
0x68c, /* MUL_FI32m*/
0x301, /* FICOM32m*/
0x303, /* FICOMP32m*/
0xa73, /* SUB_FI32m*/
0xa59, /* SUBR_FI32m*/
0x2c7, /* DIV_FI32m*/
0x2ad, /* DIVR_FI32m*/
0x196, /* CMOVB_F*/
0x196, /* CMOVB_F*/
0x196, /* CMOVB_F*/
0x196, /* CMOVB_F*/
0x196, /* CMOVB_F*/
0x196, /* CMOVB_F*/
0x196, /* CMOVB_F*/
0x196, /* CMOVB_F*/
0x1a0, /* CMOVE_F*/
0x1a0, /* CMOVE_F*/
0x1a0, /* CMOVE_F*/
0x1a0, /* CMOVE_F*/
0x1a0, /* CMOVE_F*/
0x1a0, /* CMOVE_F*/
0x1a0, /* CMOVE_F*/
0x1a0, /* CMOVE_F*/
0x192, /* CMOVBE_F*/
0x192, /* CMOVBE_F*/
0x192, /* CMOVBE_F*/
0x192, /* CMOVBE_F*/
0x192, /* CMOVBE_F*/
0x192, /* CMOVBE_F*/
0x192, /* CMOVBE_F*/
0x192, /* CMOVBE_F*/
0x1f0, /* CMOVP_F*/
0x1f0, /* CMOVP_F*/
0x1f0, /* CMOVP_F*/
0x1f0, /* CMOVP_F*/
0x1f0, /* CMOVP_F*/
0x1f0, /* CMOVP_F*/
0x1f0, /* CMOVP_F*/
0x1f0, /* CMOVP_F*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0xac5, /* UCOM_FPPr*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
/* Table1865 */
0x35c, /* ILD_F32m*/
0x3ab, /* ISTT_FP32m*/
0x3b7, /* IST_F32m*/
0x3b9, /* IST_FP32m*/
0, /* PHI*/
0x445, /* LD_F80m*/
0, /* PHI*/
0xa22, /* ST_FP80m*/
0x1c0, /* CMOVNB_F*/
0x1c0, /* CMOVNB_F*/
0x1c0, /* CMOVNB_F*/
0x1c0, /* CMOVNB_F*/
0x1c0, /* CMOVNB_F*/
0x1c0, /* CMOVNB_F*/
0x1c0, /* CMOVNB_F*/
0x1c0, /* CMOVNB_F*/
0x1ca, /* CMOVNE_F*/
0x1ca, /* CMOVNE_F*/
0x1ca, /* CMOVNE_F*/
0x1ca, /* CMOVNE_F*/
0x1ca, /* CMOVNE_F*/
0x1ca, /* CMOVNE_F*/
0x1ca, /* CMOVNE_F*/
0x1ca, /* CMOVNE_F*/
0x1bc, /* CMOVNBE_F*/
0x1bc, /* CMOVNBE_F*/
0x1bc, /* CMOVNBE_F*/
0x1bc, /* CMOVNBE_F*/
0x1bc, /* CMOVNBE_F*/
0x1bc, /* CMOVNBE_F*/
0x1bc, /* CMOVNBE_F*/
0x1bc, /* CMOVNBE_F*/
0x1da, /* CMOVNP_F*/
0x1da, /* CMOVNP_F*/
0x1da, /* CMOVNP_F*/
0x1da, /* CMOVNP_F*/
0x1da, /* CMOVNP_F*/
0x1da, /* CMOVNP_F*/
0x1da, /* CMOVNP_F*/
0x1da, /* CMOVNP_F*/
0, /* PHI*/
0, /* PHI*/
0x30c, /* FNCLEX*/
0x30d, /* FNINIT*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0xac4, /* UCOM_FIr*/
0xac4, /* UCOM_FIr*/
0xac4, /* UCOM_FIr*/
0xac4, /* UCOM_FIr*/
0xac4, /* UCOM_FIr*/
0xac4, /* UCOM_FIr*/
0xac4, /* UCOM_FIr*/
0xac4, /* UCOM_FIr*/
0x24e, /* COM_FIr*/
0x24e, /* COM_FIr*/
0x24e, /* COM_FIr*/
0x24e, /* COM_FIr*/
0x24e, /* COM_FIr*/
0x24e, /* COM_FIr*/
0x24e, /* COM_FIr*/
0x24e, /* COM_FIr*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
/* Table1866 */
0x83, /* ADD_F64m*/
0x68a, /* MUL_F64m*/
0x2f9, /* FCOM64m*/
0x2fb, /* FCOMP64m*/
0xa71, /* SUB_F64m*/
0xa57, /* SUBR_F64m*/
0x2c5, /* DIV_F64m*/
0x2ab, /* DIVR_F64m*/
0x96, /* ADD_FrST0*/
0x69d, /* MUL_FrST0*/
0, /* PHI*/
0, /* PHI*/
0xa67, /* SUBR_FrST0*/
0xa84, /* SUB_FrST0*/
0x2bb, /* DIVR_FrST0*/
0x2d8, /* DIV_FrST0*/
/* Table1867 */
0x444, /* LD_F64m*/
0x3ac, /* ISTT_FP64m*/
0xa1f, /* ST_F64m*/
0xa21, /* ST_FP64m*/
0x320, /* FRSTORm*/
0, /* PHI*/
0x321, /* FSAVEm*/
0x311, /* FNSTSWm*/
0x2ff, /* FFREE*/
0, /* PHI*/
0xa2f, /* ST_Frr*/
0xa23, /* ST_FPrr*/
0xacd, /* UCOM_Fr*/
0xac6, /* UCOM_FPr*/
0, /* PHI*/
0, /* PHI*/
/* Table1868 */
0x84, /* ADD_FI16m*/
0x68b, /* MUL_FI16m*/
0x300, /* FICOM16m*/
0x302, /* FICOMP16m*/
0xa72, /* SUB_FI16m*/
0xa58, /* SUBR_FI16m*/
0x2c6, /* DIV_FI16m*/
0x2ac, /* DIVR_FI16m*/
0x86, /* ADD_FPrST0*/
0x86, /* ADD_FPrST0*/
0x86, /* ADD_FPrST0*/
0x86, /* ADD_FPrST0*/
0x86, /* ADD_FPrST0*/
0x86, /* ADD_FPrST0*/
0x86, /* ADD_FPrST0*/
0x86, /* ADD_FPrST0*/
0x68d, /* MUL_FPrST0*/
0x68d, /* MUL_FPrST0*/
0x68d, /* MUL_FPrST0*/
0x68d, /* MUL_FPrST0*/
0x68d, /* MUL_FPrST0*/
0x68d, /* MUL_FPrST0*/
0x68d, /* MUL_FPrST0*/
0x68d, /* MUL_FPrST0*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x2fc, /* FCOMPP*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0xa5a, /* SUBR_FPrST0*/
0xa5a, /* SUBR_FPrST0*/
0xa5a, /* SUBR_FPrST0*/
0xa5a, /* SUBR_FPrST0*/
0xa5a, /* SUBR_FPrST0*/
0xa5a, /* SUBR_FPrST0*/
0xa5a, /* SUBR_FPrST0*/
0xa5a, /* SUBR_FPrST0*/
0xa74, /* SUB_FPrST0*/
0xa74, /* SUB_FPrST0*/
0xa74, /* SUB_FPrST0*/
0xa74, /* SUB_FPrST0*/
0xa74, /* SUB_FPrST0*/
0xa74, /* SUB_FPrST0*/
0xa74, /* SUB_FPrST0*/
0xa74, /* SUB_FPrST0*/
0x2ae, /* DIVR_FPrST0*/
0x2ae, /* DIVR_FPrST0*/
0x2ae, /* DIVR_FPrST0*/
0x2ae, /* DIVR_FPrST0*/
0x2ae, /* DIVR_FPrST0*/
0x2ae, /* DIVR_FPrST0*/
0x2ae, /* DIVR_FPrST0*/
0x2ae, /* DIVR_FPrST0*/
0x2c8, /* DIV_FPrST0*/
0x2c8, /* DIV_FPrST0*/
0x2c8, /* DIV_FPrST0*/
0x2c8, /* DIV_FPrST0*/
0x2c8, /* DIV_FPrST0*/
0x2c8, /* DIV_FPrST0*/
0x2c8, /* DIV_FPrST0*/
0x2c8, /* DIV_FPrST0*/
/* Table1869 */
0x35b, /* ILD_F16m*/
0x3aa, /* ISTT_FP16m*/
0x3b6, /* IST_F16m*/
0x3b8, /* IST_FP16m*/
0x2f6, /* FBLDm*/
0x35d, /* ILD_F64m*/
0x2f7, /* FBSTPm*/
0x3ba, /* IST_FP64m*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x310, /* FNSTSW16r*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0xac3, /* UCOM_FIPr*/
0xac3, /* UCOM_FIPr*/
0xac3, /* UCOM_FIPr*/
0xac3, /* UCOM_FIPr*/
0xac3, /* UCOM_FIPr*/
0xac3, /* UCOM_FIPr*/
0xac3, /* UCOM_FIPr*/
0xac3, /* UCOM_FIPr*/
0x24d, /* COM_FIPr*/
0x24d, /* COM_FIPr*/
0x24d, /* COM_FIPr*/
0x24d, /* COM_FIPr*/
0x24d, /* COM_FIPr*/
0x24d, /* COM_FIPr*/
0x24d, /* COM_FIPr*/
0x24d, /* COM_FIPr*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
/* Table1870 */
0x4b0, /* LOOPNE*/
/* Table1871 */
0x4af, /* LOOPE*/
/* Table1872 */
0x4ae, /* LOOP*/
/* Table1873 */
0x42d, /* JRCXZ*/
/* Table1874 */
0x388, /* IN8ri*/
/* Table1875 */
0x382, /* IN16ri*/
/* Table1876 */
0x706, /* OUT8ir*/
/* Table1877 */
0x702, /* OUT16ir*/
/* Table1878 */
0x167, /* CALL64pcrel32*/
/* Table1879 */
0x41d, /* JMP64pcrel32*/
/* Table1880 */
0x2f1, /* FARJMP16i*/
/* Table1881 */
0x41f, /* JMP_1*/
/* Table1882 */
0x389, /* IN8rr*/
/* Table1883 */
0x383, /* IN16rr*/
/* Table1884 */
0x707, /* OUT8rr*/
/* Table1885 */
0x703, /* OUT16rr*/
/* Table1886 */
0x493, /* LOCK_PREFIX*/
/* Table1887 */
0x8d3, /* REPNE_PREFIX*/
/* Table1888 */
0x8db, /* REP_PREFIX*/
/* Table1889 */
0x34e, /* HLT*/
/* Table1890 */
0x179, /* CMC*/
/* Table1891 */
0xaa8, /* TEST8mi*/
0, /* PHI*/
0x6d9, /* NOT8m*/
0x6ce, /* NEG8m*/
0x677, /* MUL8m*/
0x37f, /* IMUL8m*/
0x2a4, /* DIV8m*/
0x359, /* IDIV8m*/
0xaa9, /* TEST8ri*/
0, /* PHI*/
0x6da, /* NOT8r*/
0x6cf, /* NEG8r*/
0x678, /* MUL8r*/
0x380, /* IMUL8r*/
0x2a5, /* DIV8r*/
0x35a, /* IDIV8r*/
/* Table1892 */
0xa99, /* TEST16mi*/
0, /* PHI*/
0x6d3, /* NOT16m*/
0x6c8, /* NEG16m*/
0x671, /* MUL16m*/
0x367, /* IMUL16m*/
0x29e, /* DIV16m*/
0x353, /* IDIV16m*/
0xa9a, /* TEST16ri*/
0, /* PHI*/
0x6d4, /* NOT16r*/
0x6c9, /* NEG16r*/
0x672, /* MUL16r*/
0x368, /* IMUL16r*/
0x29f, /* DIV16r*/
0x354, /* IDIV16r*/
/* Table1893 */
0x173, /* CLC*/
/* Table1894 */
0xa11, /* STC*/
/* Table1895 */
0x177, /* CLI*/
/* Table1896 */
0xa14, /* STI*/
/* Table1897 */
0x174, /* CLD*/
/* Table1898 */
0xa12, /* STD*/
/* Table1899 */
0x394, /* INC8m*/
0x29c, /* DEC8m*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x395, /* INC8r*/
0x29d, /* DEC8r*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
/* Table1900 */
0x38e, /* INC64_16m*/
0x296, /* DEC64_16m*/
0x166, /* CALL64m*/
0x2ed, /* FARCALL16m*/
0x41c, /* JMP64m*/
0x2f2, /* FARJMP16m*/
0x867, /* PUSH16rmm*/
0, /* PHI*/
0x38f, /* INC64_16r*/
0x297, /* DEC64_16r*/
0x168, /* CALL64r*/
0, /* PHI*/
0x41e, /* JMP64r*/
0, /* PHI*/
0x868, /* PUSH16rmr*/
0, /* PHI*/
/* Table1901 */
0x6d, /* ADD8mr*/
0x70, /* ADD8rr*/
/* Table1902 */
0x56, /* ADD32mr*/
0x5c, /* ADD32rr*/
/* Table1903 */
0x6f, /* ADD8rm*/
0x71, /* ADD8rr_REV*/
/* Table1904 */
0x5b, /* ADD32rm*/
0x5e, /* ADD32rr_REV*/
/* Table1905 */
0x6b, /* ADD8i8*/
/* Table1906 */
0x53, /* ADD32i32*/
/* Table1907 */
0x6f9, /* OR8mr*/
0x6fc, /* OR8rr*/
/* Table1908 */
0x6e7, /* OR32mr*/
0x6ec, /* OR32rr*/
/* Table1909 */
0x6fb, /* OR8rm*/
0x6fd, /* OR8rr_REV*/
/* Table1910 */
0x6eb, /* OR32rm*/
0x6ed, /* OR32rr_REV*/
/* Table1911 */
0x6f7, /* OR8i8*/
/* Table1912 */
0x6e4, /* OR32i32*/
/* Table1913 */
0x3e, /* ADC8mr*/
0x41, /* ADC8rr*/
/* Table1914 */
0x2d, /* ADC32mr*/
0x31, /* ADC32rr*/
/* Table1915 */
0x40, /* ADC8rm*/
0x42, /* ADC8rr_REV*/
/* Table1916 */
0x30, /* ADC32rm*/
0x32, /* ADC32rr_REV*/
/* Table1917 */
0x3c, /* ADC8i8*/
/* Table1918 */
0x2a, /* ADC32i32*/
/* Table1919 */
0x969, /* SBB8mr*/
0x96c, /* SBB8rr*/
/* Table1920 */
0x958, /* SBB32mr*/
0x95c, /* SBB32rr*/
/* Table1921 */
0x96b, /* SBB8rm*/
0x96d, /* SBB8rr_REV*/
/* Table1922 */
0x95b, /* SBB32rm*/
0x95d, /* SBB32rr_REV*/
/* Table1923 */
0x967, /* SBB8i8*/
/* Table1924 */
0x955, /* SBB32i32*/
/* Table1925 */
0xc8, /* AND8mr*/
0xcb, /* AND8rr*/
/* Table1926 */
0xb7, /* AND32mr*/
0xbb, /* AND32rr*/
/* Table1927 */
0xca, /* AND8rm*/
0xcc, /* AND8rr_REV*/
/* Table1928 */
0xba, /* AND32rm*/
0xbc, /* AND32rr_REV*/
/* Table1929 */
0xc6, /* AND8i8*/
/* Table1930 */
0xb4, /* AND32i32*/
/* Table1931 */
0x2e6, /* ES_PREFIX*/
/* Table1932 */
0xa4d, /* SUB8mr*/
0xa50, /* SUB8rr*/
/* Table1933 */
0xa3c, /* SUB32mr*/
0xa40, /* SUB32rr*/
/* Table1934 */
0xa4f, /* SUB8rm*/
0xa51, /* SUB8rr_REV*/
/* Table1935 */
0xa3f, /* SUB32rm*/
0xa41, /* SUB32rr_REV*/
/* Table1936 */
0xa4b, /* SUB8i8*/
/* Table1937 */
0xa39, /* SUB32i32*/
/* Table1938 */
0x260, /* CS_PREFIX*/
/* Table1939 */
0x11b2, /* XOR8mr*/
0x11b5, /* XOR8rr*/
/* Table1940 */
0x11a1, /* XOR32mr*/
0x11a5, /* XOR32rr*/
/* Table1941 */
0x11b4, /* XOR8rm*/
0x11b6, /* XOR8rr_REV*/
/* Table1942 */
0x11a4, /* XOR32rm*/
0x11a6, /* XOR32rr_REV*/
/* Table1943 */
0x11b0, /* XOR8i8*/
/* Table1944 */
0x119e, /* XOR32i32*/
/* Table1945 */
0xa0f, /* SS_PREFIX*/
/* Table1946 */
0x225, /* CMP8mr*/
0x228, /* CMP8rr*/
/* Table1947 */
0x214, /* CMP32mr*/
0x218, /* CMP32rr*/
/* Table1948 */
0x227, /* CMP8rm*/
0x229, /* CMP8rr_REV*/
/* Table1949 */
0x217, /* CMP32rm*/
0x219, /* CMP32rr_REV*/
/* Table1950 */
0x223, /* CMP8i8*/
/* Table1951 */
0x211, /* CMP32i32*/
/* Table1952 */
0x2dd, /* DS_PREFIX*/
/* Table1953 */
0x8e7, /* REX64_PREFIX*/
/* Table1954 */
0x86f, /* PUSH64r*/
/* Table1955 */
0x86f, /* PUSH64r*/
/* Table1956 */
0x86f, /* PUSH64r*/
/* Table1957 */
0x86f, /* PUSH64r*/
/* Table1958 */
0x86f, /* PUSH64r*/
/* Table1959 */
0x86f, /* PUSH64r*/
/* Table1960 */
0x86f, /* PUSH64r*/
/* Table1961 */
0x86f, /* PUSH64r*/
/* Table1962 */
0x7f7, /* POP64r*/
/* Table1963 */
0x7f7, /* POP64r*/
/* Table1964 */
0x7f7, /* POP64r*/
/* Table1965 */
0x7f7, /* POP64r*/
/* Table1966 */
0x7f7, /* POP64r*/
/* Table1967 */
0x7f7, /* POP64r*/
/* Table1968 */
0x7f7, /* POP64r*/
/* Table1969 */
0x7f7, /* POP64r*/
/* Table1970 */
0x325, /* FS_PREFIX*/
/* Table1971 */
0x349, /* GS_PREFIX*/
/* Table1972 */
0x291, /* DATA16_PREFIX*/
/* Table1973 */
0x86d, /* PUSH64i32*/
/* Table1974 */
0x372, /* IMUL32rmi*/
0x375, /* IMUL32rri*/
/* Table1975 */
0x86e, /* PUSH64i8*/
/* Table1976 */
0x373, /* IMUL32rmi8*/
0x376, /* IMUL32rri8*/
/* Table1977 */
0x387, /* IN8*/
/* Table1978 */
0x384, /* IN32*/
/* Table1979 */
0x708, /* OUTSB*/
/* Table1980 */
0x709, /* OUTSD*/
/* Table1981 */
0x429, /* JO_1*/
/* Table1982 */
0x423, /* JNO_1*/
/* Table1983 */
0x40b, /* JB_1*/
/* Table1984 */
0x405, /* JAE_1*/
/* Table1985 */
0x410, /* JE_1*/
/* Table1986 */
0x421, /* JNE_1*/
/* Table1987 */
0x409, /* JBE_1*/
/* Table1988 */
0x407, /* JA_1*/
/* Table1989 */
0x42e, /* JS_1*/
/* Table1990 */
0x427, /* JNS_1*/
/* Table1991 */
0x42b, /* JP_1*/
/* Table1992 */
0x425, /* JNP_1*/
/* Table1993 */
0x418, /* JL_1*/
/* Table1994 */
0x412, /* JGE_1*/
/* Table1995 */
0x416, /* JLE_1*/
/* Table1996 */
0x414, /* JG_1*/
/* Table1997 */
0x6c, /* ADD8mi*/
0x6f8, /* OR8mi*/
0x3d, /* ADC8mi*/
0x968, /* SBB8mi*/
0xc7, /* AND8mi*/
0xa4c, /* SUB8mi*/
0x11b1, /* XOR8mi*/
0x224, /* CMP8mi*/
0x6e, /* ADD8ri*/
0x6fa, /* OR8ri*/
0x3f, /* ADC8ri*/
0x96a, /* SBB8ri*/
0xc9, /* AND8ri*/
0xa4e, /* SUB8ri*/
0x11b3, /* XOR8ri*/
0x226, /* CMP8ri*/
/* Table1998 */
0x54, /* ADD32mi*/
0x6e5, /* OR32mi*/
0x2b, /* ADC32mi*/
0x956, /* SBB32mi*/
0xb5, /* AND32mi*/
0xa3a, /* SUB32mi*/
0x119f, /* XOR32mi*/
0x212, /* CMP32mi*/
0x57, /* ADD32ri*/
0x6e9, /* OR32ri*/
0x2e, /* ADC32ri*/
0x959, /* SBB32ri*/
0xb8, /* AND32ri*/
0xa3d, /* SUB32ri*/
0x11a2, /* XOR32ri*/
0x215, /* CMP32ri*/
/* Table1999 */
0x55, /* ADD32mi8*/
0x6e6, /* OR32mi8*/
0x2c, /* ADC32mi8*/
0x957, /* SBB32mi8*/
0xb6, /* AND32mi8*/
0xa3b, /* SUB32mi8*/
0x11a0, /* XOR32mi8*/
0x213, /* CMP32mi8*/
0x58, /* ADD32ri8*/
0x6ea, /* OR32ri8*/
0x2f, /* ADC32ri8*/
0x95a, /* SBB32ri8*/
0xb9, /* AND32ri8*/
0xa3e, /* SUB32ri8*/
0x11a3, /* XOR32ri8*/
0x216, /* CMP32ri8*/
/* Table2000 */
0xaab, /* TEST8rm*/
0xaac, /* TEST8rr*/
/* Table2001 */
0xaa0, /* TEST32rm*/
0xaa1, /* TEST32rr*/
/* Table2002 */
0x118a, /* XCHG8rm*/
0x118b, /* XCHG8rr*/
/* Table2003 */
0x1185, /* XCHG32rm*/
0x1186, /* XCHG32rr*/
/* Table2004 */
0x5eb, /* MOV8mr*/
0x5f2, /* MOV8rr*/
/* Table2005 */
0x5c8, /* MOV32mr*/
0x5d0, /* MOV32rr*/
/* Table2006 */
0x5f0, /* MOV8rm*/
0x5f4, /* MOV8rr_REV*/
/* Table2007 */
0x5cf, /* MOV32rm*/
0x5d1, /* MOV32rr_REV*/
/* Table2008 */
0x5c9, /* MOV32ms*/
0x5d2, /* MOV32rs*/
/* Table2009 */
0x455, /* LEA64_32r*/
0, /* PHI*/
/* Table2010 */
0x5d3, /* MOV32sm*/
0x5d4, /* MOV32sr*/
/* Table2011 */
0x7f8, /* POP64rmm*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x7f9, /* POP64rmr*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
/* Table2012 */
0x6d0, /* NOOP*/
/* Table2013 */
0x1184, /* XCHG32ar64*/
/* Table2014 */
0x1184, /* XCHG32ar64*/
/* Table2015 */
0x1184, /* XCHG32ar64*/
/* Table2016 */
0x1184, /* XCHG32ar64*/
/* Table2017 */
0x1184, /* XCHG32ar64*/
/* Table2018 */
0x1184, /* XCHG32ar64*/
/* Table2019 */
0x1184, /* XCHG32ar64*/
/* Table2020 */
0x28e, /* CWDE*/
/* Table2021 */
0x16c, /* CDQ*/
/* Table2022 */
0x2ee, /* FARCALL32i*/
/* Table2023 */
0x116b, /* WAIT*/
/* Table2024 */
0x87b, /* PUSHF64*/
/* Table2025 */
0x807, /* POPF64*/
/* Table2026 */
0x92f, /* SAHF*/
/* Table2027 */
0x430, /* LAHF*/
/* Table2028 */
0x62f, /* MOVSB*/
/* Table2029 */
0x630, /* MOVSD*/
/* Table2030 */
0x235, /* CMPS8*/
/* Table2031 */
0x233, /* CMPS32*/
/* Table2032 */
0xaa7, /* TEST8i8*/
/* Table2033 */
0xa9d, /* TEST32i32*/
/* Table2034 */
0xa16, /* STOSB*/
/* Table2035 */
0xa17, /* STOSD*/
/* Table2036 */
0x4aa, /* LODSB*/
/* Table2037 */
0x4ab, /* LODSD*/
/* Table2038 */
0x971, /* SCAS8*/
/* Table2039 */
0x96f, /* SCAS32*/
/* Table2040 */
0x5ef, /* MOV8ri*/
/* Table2041 */
0x5ef, /* MOV8ri*/
/* Table2042 */
0x5ef, /* MOV8ri*/
/* Table2043 */
0x5ef, /* MOV8ri*/
/* Table2044 */
0x5ef, /* MOV8ri*/
/* Table2045 */
0x5ef, /* MOV8ri*/
/* Table2046 */
0x5ef, /* MOV8ri*/
/* Table2047 */
0x5ef, /* MOV8ri*/
/* Table2048 */
0x5ce, /* MOV32ri*/
/* Table2049 */
0x5ce, /* MOV32ri*/
/* Table2050 */
0x5ce, /* MOV32ri*/
/* Table2051 */
0x5ce, /* MOV32ri*/
/* Table2052 */
0x5ce, /* MOV32ri*/
/* Table2053 */
0x5ce, /* MOV32ri*/
/* Table2054 */
0x5ce, /* MOV32ri*/
/* Table2055 */
0x5ce, /* MOV32ri*/
/* Table2056 */
0x8fc, /* ROL8mi*/
0x914, /* ROR8mi*/
0x89d, /* RCL8mi*/
0x8bd, /* RCR8mi*/
0x9af, /* SHL8mi*/
0x9d7, /* SHR8mi*/
0, /* PHI*/
0x944, /* SAR8mi*/
0x8ff, /* ROL8ri*/
0x917, /* ROR8ri*/
0x8a0, /* RCL8ri*/
0x8c0, /* RCR8ri*/
0x9b2, /* SHL8ri*/
0x9da, /* SHR8ri*/
0, /* PHI*/
0x947, /* SAR8ri*/
/* Table2057 */
0x8f0, /* ROL32mi*/
0x908, /* ROR32mi*/
0x891, /* RCL32mi*/
0x8b1, /* RCR32mi*/
0x9a3, /* SHL32mi*/
0x9cb, /* SHR32mi*/
0, /* PHI*/
0x938, /* SAR32mi*/
0x8f3, /* ROL32ri*/
0x90b, /* ROR32ri*/
0x894, /* RCL32ri*/
0x8b4, /* RCR32ri*/
0x9a6, /* SHL32ri*/
0x9ce, /* SHR32ri*/
0, /* PHI*/
0x93b, /* SAR32ri*/
/* Table2058 */
0x8e4, /* RETI*/
/* Table2059 */
0x8e3, /* RET*/
/* Table2060 */
0x45a, /* LES32rm*/
0, /* PHI*/
/* Table2061 */
0x440, /* LDS32rm*/
0, /* PHI*/
/* Table2062 */
0x5ea, /* MOV8mi*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x1175, /* XABORT*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
/* Table2063 */
0x5c7, /* MOV32mi*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x117f, /* XBEGIN_4*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
/* Table2064 */
0x2e5, /* ENTER*/
/* Table2065 */
0x458, /* LEAVE64*/
/* Table2066 */
0x4b1, /* LRETI*/
/* Table2067 */
0x4b3, /* LRETL*/
/* Table2068 */
0x39b, /* INT3*/
/* Table2069 */
0x39a, /* INT*/
/* Table2070 */
0x39c, /* INTO*/
/* Table2071 */
0x3a8, /* IRET32*/
/* Table2072 */
0x8fa, /* ROL8m1*/
0x912, /* ROR8m1*/
0x89b, /* RCL8m1*/
0x8bb, /* RCR8m1*/
0x9ad, /* SHL8m1*/
0x9d5, /* SHR8m1*/
0, /* PHI*/
0x942, /* SAR8m1*/
0x8fd, /* ROL8r1*/
0x915, /* ROR8r1*/
0x89e, /* RCL8r1*/
0x8be, /* RCR8r1*/
0x9b0, /* SHL8r1*/
0x9d8, /* SHR8r1*/
0, /* PHI*/
0x945, /* SAR8r1*/
/* Table2073 */
0x8ee, /* ROL32m1*/
0x906, /* ROR32m1*/
0x88f, /* RCL32m1*/
0x8af, /* RCR32m1*/
0x9a1, /* SHL32m1*/
0x9c9, /* SHR32m1*/
0, /* PHI*/
0x936, /* SAR32m1*/
0x8f1, /* ROL32r1*/
0x909, /* ROR32r1*/
0x892, /* RCL32r1*/
0x8b2, /* RCR32r1*/
0x9a4, /* SHL32r1*/
0x9cc, /* SHR32r1*/
0, /* PHI*/
0x939, /* SAR32r1*/
/* Table2074 */
0x8fb, /* ROL8mCL*/
0x913, /* ROR8mCL*/
0x89c, /* RCL8mCL*/
0x8bc, /* RCR8mCL*/
0x9ae, /* SHL8mCL*/
0x9d6, /* SHR8mCL*/
0, /* PHI*/
0x943, /* SAR8mCL*/
0x8fe, /* ROL8rCL*/
0x916, /* ROR8rCL*/
0x89f, /* RCL8rCL*/
0x8bf, /* RCR8rCL*/
0x9b1, /* SHL8rCL*/
0x9d9, /* SHR8rCL*/
0, /* PHI*/
0x946, /* SAR8rCL*/
/* Table2075 */
0x8ef, /* ROL32mCL*/
0x907, /* ROR32mCL*/
0x890, /* RCL32mCL*/
0x8b0, /* RCR32mCL*/
0x9a2, /* SHL32mCL*/
0x9ca, /* SHR32mCL*/
0, /* PHI*/
0x937, /* SAR32mCL*/
0x8f2, /* ROL32rCL*/
0x90a, /* ROR32rCL*/
0x893, /* RCL32rCL*/
0x8b3, /* RCR32rCL*/
0x9a5, /* SHL32rCL*/
0x9cd, /* SHR32rCL*/
0, /* PHI*/
0x93a, /* SAR32rCL*/
/* Table2076 */
0x1194, /* XLAT*/
/* Table2077 */
0x82, /* ADD_F32m*/
0x689, /* MUL_F32m*/
0x2f8, /* FCOM32m*/
0x2fa, /* FCOMP32m*/
0xa70, /* SUB_F32m*/
0xa56, /* SUBR_F32m*/
0x2c4, /* DIV_F32m*/
0x2aa, /* DIVR_F32m*/
0x87, /* ADD_FST0r*/
0x68e, /* MUL_FST0r*/
0x24f, /* COM_FST0r*/
0x24c, /* COMP_FST0r*/
0xa75, /* SUB_FST0r*/
0xa5b, /* SUBR_FST0r*/
0x2c9, /* DIV_FST0r*/
0x2af, /* DIVR_FST0r*/
/* Table2078 */
0x443, /* LD_F32m*/
0, /* PHI*/
0xa1e, /* ST_F32m*/
0xa20, /* ST_FP32m*/
0x306, /* FLDENVm*/
0x305, /* FLDCW16m*/
0x324, /* FSTENVm*/
0x30f, /* FNSTCW16m*/
0x452, /* LD_Frr*/
0x452, /* LD_Frr*/
0x452, /* LD_Frr*/
0x452, /* LD_Frr*/
0x452, /* LD_Frr*/
0x452, /* LD_Frr*/
0x452, /* LD_Frr*/
0x452, /* LD_Frr*/
0x118c, /* XCH_F*/
0x118c, /* XCH_F*/
0x118c, /* XCH_F*/
0x118c, /* XCH_F*/
0x118c, /* XCH_F*/
0x118c, /* XCH_F*/
0x118c, /* XCH_F*/
0x118c, /* XCH_F*/
0x30e, /* FNOP*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x16e, /* CHS_F*/
0x19, /* ABS_F*/
0, /* PHI*/
0, /* PHI*/
0xab5, /* TST_F*/
0x326, /* FXAM*/
0, /* PHI*/
0, /* PHI*/
0x442, /* LD_F1*/
0x308, /* FLDL2T*/
0x307, /* FLDL2E*/
0x30b, /* FLDPI*/
0x309, /* FLDLG2*/
0x30a, /* FLDLN2*/
0x441, /* LD_F0*/
0, /* PHI*/
0x2eb, /* F2XM1*/
0x32c, /* FYL2X*/
0x31e, /* FPTAN*/
0x31b, /* FPATAN*/
0x32b, /* FXTRACT*/
0x31d, /* FPREM1*/
0x2fd, /* FDECSTP*/
0x304, /* FINCSTP*/
0x31c, /* FPREM*/
0x32d, /* FYL2XP1*/
0xa0b, /* SQRT_F*/
0x323, /* FSINCOS*/
0x31f, /* FRNDINT*/
0x322, /* FSCALE*/
0x9f1, /* SIN_F*/
0x250, /* COS_F*/
/* Table2079 */
0x85, /* ADD_FI32m*/
0x68c, /* MUL_FI32m*/
0x301, /* FICOM32m*/
0x303, /* FICOMP32m*/
0xa73, /* SUB_FI32m*/
0xa59, /* SUBR_FI32m*/
0x2c7, /* DIV_FI32m*/
0x2ad, /* DIVR_FI32m*/
0x196, /* CMOVB_F*/
0x196, /* CMOVB_F*/
0x196, /* CMOVB_F*/
0x196, /* CMOVB_F*/
0x196, /* CMOVB_F*/
0x196, /* CMOVB_F*/
0x196, /* CMOVB_F*/
0x196, /* CMOVB_F*/
0x1a0, /* CMOVE_F*/
0x1a0, /* CMOVE_F*/
0x1a0, /* CMOVE_F*/
0x1a0, /* CMOVE_F*/
0x1a0, /* CMOVE_F*/
0x1a0, /* CMOVE_F*/
0x1a0, /* CMOVE_F*/
0x1a0, /* CMOVE_F*/
0x192, /* CMOVBE_F*/
0x192, /* CMOVBE_F*/
0x192, /* CMOVBE_F*/
0x192, /* CMOVBE_F*/
0x192, /* CMOVBE_F*/
0x192, /* CMOVBE_F*/
0x192, /* CMOVBE_F*/
0x192, /* CMOVBE_F*/
0x1f0, /* CMOVP_F*/
0x1f0, /* CMOVP_F*/
0x1f0, /* CMOVP_F*/
0x1f0, /* CMOVP_F*/
0x1f0, /* CMOVP_F*/
0x1f0, /* CMOVP_F*/
0x1f0, /* CMOVP_F*/
0x1f0, /* CMOVP_F*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0xac5, /* UCOM_FPPr*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
/* Table2080 */
0x35c, /* ILD_F32m*/
0x3ab, /* ISTT_FP32m*/
0x3b7, /* IST_F32m*/
0x3b9, /* IST_FP32m*/
0, /* PHI*/
0x445, /* LD_F80m*/
0, /* PHI*/
0xa22, /* ST_FP80m*/
0x1c0, /* CMOVNB_F*/
0x1c0, /* CMOVNB_F*/
0x1c0, /* CMOVNB_F*/
0x1c0, /* CMOVNB_F*/
0x1c0, /* CMOVNB_F*/
0x1c0, /* CMOVNB_F*/
0x1c0, /* CMOVNB_F*/
0x1c0, /* CMOVNB_F*/
0x1ca, /* CMOVNE_F*/
0x1ca, /* CMOVNE_F*/
0x1ca, /* CMOVNE_F*/
0x1ca, /* CMOVNE_F*/
0x1ca, /* CMOVNE_F*/
0x1ca, /* CMOVNE_F*/
0x1ca, /* CMOVNE_F*/
0x1ca, /* CMOVNE_F*/
0x1bc, /* CMOVNBE_F*/
0x1bc, /* CMOVNBE_F*/
0x1bc, /* CMOVNBE_F*/
0x1bc, /* CMOVNBE_F*/
0x1bc, /* CMOVNBE_F*/
0x1bc, /* CMOVNBE_F*/
0x1bc, /* CMOVNBE_F*/
0x1bc, /* CMOVNBE_F*/
0x1da, /* CMOVNP_F*/
0x1da, /* CMOVNP_F*/
0x1da, /* CMOVNP_F*/
0x1da, /* CMOVNP_F*/
0x1da, /* CMOVNP_F*/
0x1da, /* CMOVNP_F*/
0x1da, /* CMOVNP_F*/
0x1da, /* CMOVNP_F*/
0, /* PHI*/
0, /* PHI*/
0x30c, /* FNCLEX*/
0x30d, /* FNINIT*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0xac4, /* UCOM_FIr*/
0xac4, /* UCOM_FIr*/
0xac4, /* UCOM_FIr*/
0xac4, /* UCOM_FIr*/
0xac4, /* UCOM_FIr*/
0xac4, /* UCOM_FIr*/
0xac4, /* UCOM_FIr*/
0xac4, /* UCOM_FIr*/
0x24e, /* COM_FIr*/
0x24e, /* COM_FIr*/
0x24e, /* COM_FIr*/
0x24e, /* COM_FIr*/
0x24e, /* COM_FIr*/
0x24e, /* COM_FIr*/
0x24e, /* COM_FIr*/
0x24e, /* COM_FIr*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
/* Table2081 */
0x83, /* ADD_F64m*/
0x68a, /* MUL_F64m*/
0x2f9, /* FCOM64m*/
0x2fb, /* FCOMP64m*/
0xa71, /* SUB_F64m*/
0xa57, /* SUBR_F64m*/
0x2c5, /* DIV_F64m*/
0x2ab, /* DIVR_F64m*/
0x96, /* ADD_FrST0*/
0x69d, /* MUL_FrST0*/
0, /* PHI*/
0, /* PHI*/
0xa67, /* SUBR_FrST0*/
0xa84, /* SUB_FrST0*/
0x2bb, /* DIVR_FrST0*/
0x2d8, /* DIV_FrST0*/
/* Table2082 */
0x444, /* LD_F64m*/
0x3ac, /* ISTT_FP64m*/
0xa1f, /* ST_F64m*/
0xa21, /* ST_FP64m*/
0x320, /* FRSTORm*/
0, /* PHI*/
0x321, /* FSAVEm*/
0x311, /* FNSTSWm*/
0x2ff, /* FFREE*/
0, /* PHI*/
0xa2f, /* ST_Frr*/
0xa23, /* ST_FPrr*/
0xacd, /* UCOM_Fr*/
0xac6, /* UCOM_FPr*/
0, /* PHI*/
0, /* PHI*/
/* Table2083 */
0x84, /* ADD_FI16m*/
0x68b, /* MUL_FI16m*/
0x300, /* FICOM16m*/
0x302, /* FICOMP16m*/
0xa72, /* SUB_FI16m*/
0xa58, /* SUBR_FI16m*/
0x2c6, /* DIV_FI16m*/
0x2ac, /* DIVR_FI16m*/
0x86, /* ADD_FPrST0*/
0x86, /* ADD_FPrST0*/
0x86, /* ADD_FPrST0*/
0x86, /* ADD_FPrST0*/
0x86, /* ADD_FPrST0*/
0x86, /* ADD_FPrST0*/
0x86, /* ADD_FPrST0*/
0x86, /* ADD_FPrST0*/
0x68d, /* MUL_FPrST0*/
0x68d, /* MUL_FPrST0*/
0x68d, /* MUL_FPrST0*/
0x68d, /* MUL_FPrST0*/
0x68d, /* MUL_FPrST0*/
0x68d, /* MUL_FPrST0*/
0x68d, /* MUL_FPrST0*/
0x68d, /* MUL_FPrST0*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x2fc, /* FCOMPP*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0xa5a, /* SUBR_FPrST0*/
0xa5a, /* SUBR_FPrST0*/
0xa5a, /* SUBR_FPrST0*/
0xa5a, /* SUBR_FPrST0*/
0xa5a, /* SUBR_FPrST0*/
0xa5a, /* SUBR_FPrST0*/
0xa5a, /* SUBR_FPrST0*/
0xa5a, /* SUBR_FPrST0*/
0xa74, /* SUB_FPrST0*/
0xa74, /* SUB_FPrST0*/
0xa74, /* SUB_FPrST0*/
0xa74, /* SUB_FPrST0*/
0xa74, /* SUB_FPrST0*/
0xa74, /* SUB_FPrST0*/
0xa74, /* SUB_FPrST0*/
0xa74, /* SUB_FPrST0*/
0x2ae, /* DIVR_FPrST0*/
0x2ae, /* DIVR_FPrST0*/
0x2ae, /* DIVR_FPrST0*/
0x2ae, /* DIVR_FPrST0*/
0x2ae, /* DIVR_FPrST0*/
0x2ae, /* DIVR_FPrST0*/
0x2ae, /* DIVR_FPrST0*/
0x2ae, /* DIVR_FPrST0*/
0x2c8, /* DIV_FPrST0*/
0x2c8, /* DIV_FPrST0*/
0x2c8, /* DIV_FPrST0*/
0x2c8, /* DIV_FPrST0*/
0x2c8, /* DIV_FPrST0*/
0x2c8, /* DIV_FPrST0*/
0x2c8, /* DIV_FPrST0*/
0x2c8, /* DIV_FPrST0*/
/* Table2084 */
0x35b, /* ILD_F16m*/
0x3aa, /* ISTT_FP16m*/
0x3b6, /* IST_F16m*/
0x3b8, /* IST_FP16m*/
0x2f6, /* FBLDm*/
0x35d, /* ILD_F64m*/
0x2f7, /* FBSTPm*/
0x3ba, /* IST_FP64m*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x310, /* FNSTSW16r*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0xac3, /* UCOM_FIPr*/
0xac3, /* UCOM_FIPr*/
0xac3, /* UCOM_FIPr*/
0xac3, /* UCOM_FIPr*/
0xac3, /* UCOM_FIPr*/
0xac3, /* UCOM_FIPr*/
0xac3, /* UCOM_FIPr*/
0xac3, /* UCOM_FIPr*/
0x24d, /* COM_FIPr*/
0x24d, /* COM_FIPr*/
0x24d, /* COM_FIPr*/
0x24d, /* COM_FIPr*/
0x24d, /* COM_FIPr*/
0x24d, /* COM_FIPr*/
0x24d, /* COM_FIPr*/
0x24d, /* COM_FIPr*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
/* Table2085 */
0x4b0, /* LOOPNE*/
/* Table2086 */
0x4af, /* LOOPE*/
/* Table2087 */
0x4ae, /* LOOP*/
/* Table2088 */
0x40f, /* JECXZ_64*/
/* Table2089 */
0x388, /* IN8ri*/
/* Table2090 */
0x385, /* IN32ri*/
/* Table2091 */
0x706, /* OUT8ir*/
/* Table2092 */
0x704, /* OUT32ir*/
/* Table2093 */
0x167, /* CALL64pcrel32*/
/* Table2094 */
0x41d, /* JMP64pcrel32*/
/* Table2095 */
0x2f3, /* FARJMP32i*/
/* Table2096 */
0x41f, /* JMP_1*/
/* Table2097 */
0x389, /* IN8rr*/
/* Table2098 */
0x386, /* IN32rr*/
/* Table2099 */
0x707, /* OUT8rr*/
/* Table2100 */
0x705, /* OUT32rr*/
/* Table2101 */
0x493, /* LOCK_PREFIX*/
/* Table2102 */
0x8d3, /* REPNE_PREFIX*/
/* Table2103 */
0x8db, /* REP_PREFIX*/
/* Table2104 */
0x34e, /* HLT*/
/* Table2105 */
0x179, /* CMC*/
/* Table2106 */
0xaa8, /* TEST8mi*/
0, /* PHI*/
0x6d9, /* NOT8m*/
0x6ce, /* NEG8m*/
0x677, /* MUL8m*/
0x37f, /* IMUL8m*/
0x2a4, /* DIV8m*/
0x359, /* IDIV8m*/
0xaa9, /* TEST8ri*/
0, /* PHI*/
0x6da, /* NOT8r*/
0x6cf, /* NEG8r*/
0x678, /* MUL8r*/
0x380, /* IMUL8r*/
0x2a5, /* DIV8r*/
0x35a, /* IDIV8r*/
/* Table2107 */
0xa9e, /* TEST32mi*/
0, /* PHI*/
0x6d5, /* NOT32m*/
0x6ca, /* NEG32m*/
0x673, /* MUL32m*/
0x36f, /* IMUL32m*/
0x2a0, /* DIV32m*/
0x355, /* IDIV32m*/
0xa9f, /* TEST32ri*/
0, /* PHI*/
0x6d6, /* NOT32r*/
0x6cb, /* NEG32r*/
0x674, /* MUL32r*/
0x370, /* IMUL32r*/
0x2a1, /* DIV32r*/
0x356, /* IDIV32r*/
/* Table2108 */
0x173, /* CLC*/
/* Table2109 */
0xa11, /* STC*/
/* Table2110 */
0x177, /* CLI*/
/* Table2111 */
0xa14, /* STI*/
/* Table2112 */
0x174, /* CLD*/
/* Table2113 */
0xa12, /* STD*/
/* Table2114 */
0x394, /* INC8m*/
0x29c, /* DEC8m*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x395, /* INC8r*/
0x29d, /* DEC8r*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
/* Table2115 */
0x390, /* INC64_32m*/
0x298, /* DEC64_32m*/
0x166, /* CALL64m*/
0x2ef, /* FARCALL32m*/
0x41c, /* JMP64m*/
0x2f4, /* FARJMP32m*/
0x870, /* PUSH64rmm*/
0, /* PHI*/
0x391, /* INC64_32r*/
0x299, /* DEC64_32r*/
0x168, /* CALL64r*/
0, /* PHI*/
0x41e, /* JMP64r*/
0, /* PHI*/
0x871, /* PUSH64rmr*/
0, /* PHI*/
/* Table2116 */
0x6d, /* ADD8mr*/
0x70, /* ADD8rr*/
/* Table2117 */
0x56, /* ADD32mr*/
0x5c, /* ADD32rr*/
/* Table2118 */
0x6f, /* ADD8rm*/
0x71, /* ADD8rr_REV*/
/* Table2119 */
0x5b, /* ADD32rm*/
0x5e, /* ADD32rr_REV*/
/* Table2120 */
0x6b, /* ADD8i8*/
/* Table2121 */
0x53, /* ADD32i32*/
/* Table2122 */
0x6f9, /* OR8mr*/
0x6fc, /* OR8rr*/
/* Table2123 */
0x6e7, /* OR32mr*/
0x6ec, /* OR32rr*/
/* Table2124 */
0x6fb, /* OR8rm*/
0x6fd, /* OR8rr_REV*/
/* Table2125 */
0x6eb, /* OR32rm*/
0x6ed, /* OR32rr_REV*/
/* Table2126 */
0x6f7, /* OR8i8*/
/* Table2127 */
0x6e4, /* OR32i32*/
/* Table2128 */
0x3e, /* ADC8mr*/
0x41, /* ADC8rr*/
/* Table2129 */
0x2d, /* ADC32mr*/
0x31, /* ADC32rr*/
/* Table2130 */
0x40, /* ADC8rm*/
0x42, /* ADC8rr_REV*/
/* Table2131 */
0x30, /* ADC32rm*/
0x32, /* ADC32rr_REV*/
/* Table2132 */
0x3c, /* ADC8i8*/
/* Table2133 */
0x2a, /* ADC32i32*/
/* Table2134 */
0x969, /* SBB8mr*/
0x96c, /* SBB8rr*/
/* Table2135 */
0x958, /* SBB32mr*/
0x95c, /* SBB32rr*/
/* Table2136 */
0x96b, /* SBB8rm*/
0x96d, /* SBB8rr_REV*/
/* Table2137 */
0x95b, /* SBB32rm*/
0x95d, /* SBB32rr_REV*/
/* Table2138 */
0x967, /* SBB8i8*/
/* Table2139 */
0x955, /* SBB32i32*/
/* Table2140 */
0xc8, /* AND8mr*/
0xcb, /* AND8rr*/
/* Table2141 */
0xb7, /* AND32mr*/
0xbb, /* AND32rr*/
/* Table2142 */
0xca, /* AND8rm*/
0xcc, /* AND8rr_REV*/
/* Table2143 */
0xba, /* AND32rm*/
0xbc, /* AND32rr_REV*/
/* Table2144 */
0xc6, /* AND8i8*/
/* Table2145 */
0xb4, /* AND32i32*/
/* Table2146 */
0x2e6, /* ES_PREFIX*/
/* Table2147 */
0xa4d, /* SUB8mr*/
0xa50, /* SUB8rr*/
/* Table2148 */
0xa3c, /* SUB32mr*/
0xa40, /* SUB32rr*/
/* Table2149 */
0xa4f, /* SUB8rm*/
0xa51, /* SUB8rr_REV*/
/* Table2150 */
0xa3f, /* SUB32rm*/
0xa41, /* SUB32rr_REV*/
/* Table2151 */
0xa4b, /* SUB8i8*/
/* Table2152 */
0xa39, /* SUB32i32*/
/* Table2153 */
0x260, /* CS_PREFIX*/
/* Table2154 */
0x11b2, /* XOR8mr*/
0x11b5, /* XOR8rr*/
/* Table2155 */
0x11a1, /* XOR32mr*/
0x11a5, /* XOR32rr*/
/* Table2156 */
0x11b4, /* XOR8rm*/
0x11b6, /* XOR8rr_REV*/
/* Table2157 */
0x11a4, /* XOR32rm*/
0x11a6, /* XOR32rr_REV*/
/* Table2158 */
0x11b0, /* XOR8i8*/
/* Table2159 */
0x119e, /* XOR32i32*/
/* Table2160 */
0xa0f, /* SS_PREFIX*/
/* Table2161 */
0x225, /* CMP8mr*/
0x228, /* CMP8rr*/
/* Table2162 */
0x214, /* CMP32mr*/
0x218, /* CMP32rr*/
/* Table2163 */
0x227, /* CMP8rm*/
0x229, /* CMP8rr_REV*/
/* Table2164 */
0x217, /* CMP32rm*/
0x219, /* CMP32rr_REV*/
/* Table2165 */
0x223, /* CMP8i8*/
/* Table2166 */
0x211, /* CMP32i32*/
/* Table2167 */
0x2dd, /* DS_PREFIX*/
/* Table2168 */
0x8e7, /* REX64_PREFIX*/
/* Table2169 */
0x86f, /* PUSH64r*/
/* Table2170 */
0x86f, /* PUSH64r*/
/* Table2171 */
0x86f, /* PUSH64r*/
/* Table2172 */
0x86f, /* PUSH64r*/
/* Table2173 */
0x86f, /* PUSH64r*/
/* Table2174 */
0x86f, /* PUSH64r*/
/* Table2175 */
0x86f, /* PUSH64r*/
/* Table2176 */
0x86f, /* PUSH64r*/
/* Table2177 */
0x7f7, /* POP64r*/
/* Table2178 */
0x7f7, /* POP64r*/
/* Table2179 */
0x7f7, /* POP64r*/
/* Table2180 */
0x7f7, /* POP64r*/
/* Table2181 */
0x7f7, /* POP64r*/
/* Table2182 */
0x7f7, /* POP64r*/
/* Table2183 */
0x7f7, /* POP64r*/
/* Table2184 */
0x7f7, /* POP64r*/
/* Table2185 */
0x325, /* FS_PREFIX*/
/* Table2186 */
0x349, /* GS_PREFIX*/
/* Table2187 */
0x291, /* DATA16_PREFIX*/
/* Table2188 */
0x86d, /* PUSH64i32*/
/* Table2189 */
0x372, /* IMUL32rmi*/
0x375, /* IMUL32rri*/
/* Table2190 */
0x86e, /* PUSH64i8*/
/* Table2191 */
0x373, /* IMUL32rmi8*/
0x376, /* IMUL32rri8*/
/* Table2192 */
0x387, /* IN8*/
/* Table2193 */
0x384, /* IN32*/
/* Table2194 */
0x708, /* OUTSB*/
/* Table2195 */
0x709, /* OUTSD*/
/* Table2196 */
0x429, /* JO_1*/
/* Table2197 */
0x423, /* JNO_1*/
/* Table2198 */
0x40b, /* JB_1*/
/* Table2199 */
0x405, /* JAE_1*/
/* Table2200 */
0x410, /* JE_1*/
/* Table2201 */
0x421, /* JNE_1*/
/* Table2202 */
0x409, /* JBE_1*/
/* Table2203 */
0x407, /* JA_1*/
/* Table2204 */
0x42e, /* JS_1*/
/* Table2205 */
0x427, /* JNS_1*/
/* Table2206 */
0x42b, /* JP_1*/
/* Table2207 */
0x425, /* JNP_1*/
/* Table2208 */
0x418, /* JL_1*/
/* Table2209 */
0x412, /* JGE_1*/
/* Table2210 */
0x416, /* JLE_1*/
/* Table2211 */
0x414, /* JG_1*/
/* Table2212 */
0x6c, /* ADD8mi*/
0x6f8, /* OR8mi*/
0x3d, /* ADC8mi*/
0x968, /* SBB8mi*/
0xc7, /* AND8mi*/
0xa4c, /* SUB8mi*/
0x11b1, /* XOR8mi*/
0x224, /* CMP8mi*/
0x6e, /* ADD8ri*/
0x6fa, /* OR8ri*/
0x3f, /* ADC8ri*/
0x96a, /* SBB8ri*/
0xc9, /* AND8ri*/
0xa4e, /* SUB8ri*/
0x11b3, /* XOR8ri*/
0x226, /* CMP8ri*/
/* Table2213 */
0x54, /* ADD32mi*/
0x6e5, /* OR32mi*/
0x2b, /* ADC32mi*/
0x956, /* SBB32mi*/
0xb5, /* AND32mi*/
0xa3a, /* SUB32mi*/
0x119f, /* XOR32mi*/
0x212, /* CMP32mi*/
0x57, /* ADD32ri*/
0x6e9, /* OR32ri*/
0x2e, /* ADC32ri*/
0x959, /* SBB32ri*/
0xb8, /* AND32ri*/
0xa3d, /* SUB32ri*/
0x11a2, /* XOR32ri*/
0x215, /* CMP32ri*/
/* Table2214 */
0x55, /* ADD32mi8*/
0x6e6, /* OR32mi8*/
0x2c, /* ADC32mi8*/
0x957, /* SBB32mi8*/
0xb6, /* AND32mi8*/
0xa3b, /* SUB32mi8*/
0x11a0, /* XOR32mi8*/
0x213, /* CMP32mi8*/
0x58, /* ADD32ri8*/
0x6ea, /* OR32ri8*/
0x2f, /* ADC32ri8*/
0x95a, /* SBB32ri8*/
0xb9, /* AND32ri8*/
0xa3e, /* SUB32ri8*/
0x11a3, /* XOR32ri8*/
0x216, /* CMP32ri8*/
/* Table2215 */
0xaab, /* TEST8rm*/
0xaac, /* TEST8rr*/
/* Table2216 */
0xaa0, /* TEST32rm*/
0xaa1, /* TEST32rr*/
/* Table2217 */
0x118a, /* XCHG8rm*/
0x118b, /* XCHG8rr*/
/* Table2218 */
0x1185, /* XCHG32rm*/
0x1186, /* XCHG32rr*/
/* Table2219 */
0x5eb, /* MOV8mr*/
0x5f2, /* MOV8rr*/
/* Table2220 */
0x5c8, /* MOV32mr*/
0x5d0, /* MOV32rr*/
/* Table2221 */
0x5f0, /* MOV8rm*/
0x5f4, /* MOV8rr_REV*/
/* Table2222 */
0x5cf, /* MOV32rm*/
0x5d1, /* MOV32rr_REV*/
/* Table2223 */
0x5c9, /* MOV32ms*/
0x5d2, /* MOV32rs*/
/* Table2224 */
0x455, /* LEA64_32r*/
0, /* PHI*/
/* Table2225 */
0x5d3, /* MOV32sm*/
0x5d4, /* MOV32sr*/
/* Table2226 */
0x7f8, /* POP64rmm*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x7f9, /* POP64rmr*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
/* Table2227 */
0x6d0, /* NOOP*/
/* Table2228 */
0x1184, /* XCHG32ar64*/
/* Table2229 */
0x1184, /* XCHG32ar64*/
/* Table2230 */
0x1184, /* XCHG32ar64*/
/* Table2231 */
0x1184, /* XCHG32ar64*/
/* Table2232 */
0x1184, /* XCHG32ar64*/
/* Table2233 */
0x1184, /* XCHG32ar64*/
/* Table2234 */
0x1184, /* XCHG32ar64*/
/* Table2235 */
0x28e, /* CWDE*/
/* Table2236 */
0x16c, /* CDQ*/
/* Table2237 */
0x2ee, /* FARCALL32i*/
/* Table2238 */
0x116b, /* WAIT*/
/* Table2239 */
0x87b, /* PUSHF64*/
/* Table2240 */
0x807, /* POPF64*/
/* Table2241 */
0x92f, /* SAHF*/
/* Table2242 */
0x430, /* LAHF*/
/* Table2243 */
0x62f, /* MOVSB*/
/* Table2244 */
0x630, /* MOVSD*/
/* Table2245 */
0x235, /* CMPS8*/
/* Table2246 */
0x233, /* CMPS32*/
/* Table2247 */
0xaa7, /* TEST8i8*/
/* Table2248 */
0xa9d, /* TEST32i32*/
/* Table2249 */
0xa16, /* STOSB*/
/* Table2250 */
0xa17, /* STOSD*/
/* Table2251 */
0x4aa, /* LODSB*/
/* Table2252 */
0x4ab, /* LODSD*/
/* Table2253 */
0x971, /* SCAS8*/
/* Table2254 */
0x96f, /* SCAS32*/
/* Table2255 */
0x5ef, /* MOV8ri*/
/* Table2256 */
0x5ef, /* MOV8ri*/
/* Table2257 */
0x5ef, /* MOV8ri*/
/* Table2258 */
0x5ef, /* MOV8ri*/
/* Table2259 */
0x5ef, /* MOV8ri*/
/* Table2260 */
0x5ef, /* MOV8ri*/
/* Table2261 */
0x5ef, /* MOV8ri*/
/* Table2262 */
0x5ef, /* MOV8ri*/
/* Table2263 */
0x5ce, /* MOV32ri*/
/* Table2264 */
0x5ce, /* MOV32ri*/
/* Table2265 */
0x5ce, /* MOV32ri*/
/* Table2266 */
0x5ce, /* MOV32ri*/
/* Table2267 */
0x5ce, /* MOV32ri*/
/* Table2268 */
0x5ce, /* MOV32ri*/
/* Table2269 */
0x5ce, /* MOV32ri*/
/* Table2270 */
0x5ce, /* MOV32ri*/
/* Table2271 */
0x8fc, /* ROL8mi*/
0x914, /* ROR8mi*/
0x89d, /* RCL8mi*/
0x8bd, /* RCR8mi*/
0x9af, /* SHL8mi*/
0x9d7, /* SHR8mi*/
0, /* PHI*/
0x944, /* SAR8mi*/
0x8ff, /* ROL8ri*/
0x917, /* ROR8ri*/
0x8a0, /* RCL8ri*/
0x8c0, /* RCR8ri*/
0x9b2, /* SHL8ri*/
0x9da, /* SHR8ri*/
0, /* PHI*/
0x947, /* SAR8ri*/
/* Table2272 */
0x8f0, /* ROL32mi*/
0x908, /* ROR32mi*/
0x891, /* RCL32mi*/
0x8b1, /* RCR32mi*/
0x9a3, /* SHL32mi*/
0x9cb, /* SHR32mi*/
0, /* PHI*/
0x938, /* SAR32mi*/
0x8f3, /* ROL32ri*/
0x90b, /* ROR32ri*/
0x894, /* RCL32ri*/
0x8b4, /* RCR32ri*/
0x9a6, /* SHL32ri*/
0x9ce, /* SHR32ri*/
0, /* PHI*/
0x93b, /* SAR32ri*/
/* Table2273 */
0x8e4, /* RETI*/
/* Table2274 */
0x8e3, /* RET*/
/* Table2275 */
0x45a, /* LES32rm*/
0, /* PHI*/
/* Table2276 */
0x440, /* LDS32rm*/
0, /* PHI*/
/* Table2277 */
0x5ea, /* MOV8mi*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x1175, /* XABORT*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
/* Table2278 */
0x5c7, /* MOV32mi*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x117f, /* XBEGIN_4*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
/* Table2279 */
0x2e5, /* ENTER*/
/* Table2280 */
0x458, /* LEAVE64*/
/* Table2281 */
0x4b1, /* LRETI*/
/* Table2282 */
0x4b3, /* LRETL*/
/* Table2283 */
0x39b, /* INT3*/
/* Table2284 */
0x39a, /* INT*/
/* Table2285 */
0x39c, /* INTO*/
/* Table2286 */
0x3a8, /* IRET32*/
/* Table2287 */
0x8fa, /* ROL8m1*/
0x912, /* ROR8m1*/
0x89b, /* RCL8m1*/
0x8bb, /* RCR8m1*/
0x9ad, /* SHL8m1*/
0x9d5, /* SHR8m1*/
0, /* PHI*/
0x942, /* SAR8m1*/
0x8fd, /* ROL8r1*/
0x915, /* ROR8r1*/
0x89e, /* RCL8r1*/
0x8be, /* RCR8r1*/
0x9b0, /* SHL8r1*/
0x9d8, /* SHR8r1*/
0, /* PHI*/
0x945, /* SAR8r1*/
/* Table2288 */
0x8ee, /* ROL32m1*/
0x906, /* ROR32m1*/
0x88f, /* RCL32m1*/
0x8af, /* RCR32m1*/
0x9a1, /* SHL32m1*/
0x9c9, /* SHR32m1*/
0, /* PHI*/
0x936, /* SAR32m1*/
0x8f1, /* ROL32r1*/
0x909, /* ROR32r1*/
0x892, /* RCL32r1*/
0x8b2, /* RCR32r1*/
0x9a4, /* SHL32r1*/
0x9cc, /* SHR32r1*/
0, /* PHI*/
0x939, /* SAR32r1*/
/* Table2289 */
0x8fb, /* ROL8mCL*/
0x913, /* ROR8mCL*/
0x89c, /* RCL8mCL*/
0x8bc, /* RCR8mCL*/
0x9ae, /* SHL8mCL*/
0x9d6, /* SHR8mCL*/
0, /* PHI*/
0x943, /* SAR8mCL*/
0x8fe, /* ROL8rCL*/
0x916, /* ROR8rCL*/
0x89f, /* RCL8rCL*/
0x8bf, /* RCR8rCL*/
0x9b1, /* SHL8rCL*/
0x9d9, /* SHR8rCL*/
0, /* PHI*/
0x946, /* SAR8rCL*/
/* Table2290 */
0x8ef, /* ROL32mCL*/
0x907, /* ROR32mCL*/
0x890, /* RCL32mCL*/
0x8b0, /* RCR32mCL*/
0x9a2, /* SHL32mCL*/
0x9ca, /* SHR32mCL*/
0, /* PHI*/
0x937, /* SAR32mCL*/
0x8f2, /* ROL32rCL*/
0x90a, /* ROR32rCL*/
0x893, /* RCL32rCL*/
0x8b3, /* RCR32rCL*/
0x9a5, /* SHL32rCL*/
0x9cd, /* SHR32rCL*/
0, /* PHI*/
0x93a, /* SAR32rCL*/
/* Table2291 */
0x1194, /* XLAT*/
/* Table2292 */
0x82, /* ADD_F32m*/
0x689, /* MUL_F32m*/
0x2f8, /* FCOM32m*/
0x2fa, /* FCOMP32m*/
0xa70, /* SUB_F32m*/
0xa56, /* SUBR_F32m*/
0x2c4, /* DIV_F32m*/
0x2aa, /* DIVR_F32m*/
0x87, /* ADD_FST0r*/
0x68e, /* MUL_FST0r*/
0x24f, /* COM_FST0r*/
0x24c, /* COMP_FST0r*/
0xa75, /* SUB_FST0r*/
0xa5b, /* SUBR_FST0r*/
0x2c9, /* DIV_FST0r*/
0x2af, /* DIVR_FST0r*/
/* Table2293 */
0x443, /* LD_F32m*/
0, /* PHI*/
0xa1e, /* ST_F32m*/
0xa20, /* ST_FP32m*/
0x306, /* FLDENVm*/
0x305, /* FLDCW16m*/
0x324, /* FSTENVm*/
0x30f, /* FNSTCW16m*/
0x452, /* LD_Frr*/
0x452, /* LD_Frr*/
0x452, /* LD_Frr*/
0x452, /* LD_Frr*/
0x452, /* LD_Frr*/
0x452, /* LD_Frr*/
0x452, /* LD_Frr*/
0x452, /* LD_Frr*/
0x118c, /* XCH_F*/
0x118c, /* XCH_F*/
0x118c, /* XCH_F*/
0x118c, /* XCH_F*/
0x118c, /* XCH_F*/
0x118c, /* XCH_F*/
0x118c, /* XCH_F*/
0x118c, /* XCH_F*/
0x30e, /* FNOP*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x16e, /* CHS_F*/
0x19, /* ABS_F*/
0, /* PHI*/
0, /* PHI*/
0xab5, /* TST_F*/
0x326, /* FXAM*/
0, /* PHI*/
0, /* PHI*/
0x442, /* LD_F1*/
0x308, /* FLDL2T*/
0x307, /* FLDL2E*/
0x30b, /* FLDPI*/
0x309, /* FLDLG2*/
0x30a, /* FLDLN2*/
0x441, /* LD_F0*/
0, /* PHI*/
0x2eb, /* F2XM1*/
0x32c, /* FYL2X*/
0x31e, /* FPTAN*/
0x31b, /* FPATAN*/
0x32b, /* FXTRACT*/
0x31d, /* FPREM1*/
0x2fd, /* FDECSTP*/
0x304, /* FINCSTP*/
0x31c, /* FPREM*/
0x32d, /* FYL2XP1*/
0xa0b, /* SQRT_F*/
0x323, /* FSINCOS*/
0x31f, /* FRNDINT*/
0x322, /* FSCALE*/
0x9f1, /* SIN_F*/
0x250, /* COS_F*/
/* Table2294 */
0x85, /* ADD_FI32m*/
0x68c, /* MUL_FI32m*/
0x301, /* FICOM32m*/
0x303, /* FICOMP32m*/
0xa73, /* SUB_FI32m*/
0xa59, /* SUBR_FI32m*/
0x2c7, /* DIV_FI32m*/
0x2ad, /* DIVR_FI32m*/
0x196, /* CMOVB_F*/
0x196, /* CMOVB_F*/
0x196, /* CMOVB_F*/
0x196, /* CMOVB_F*/
0x196, /* CMOVB_F*/
0x196, /* CMOVB_F*/
0x196, /* CMOVB_F*/
0x196, /* CMOVB_F*/
0x1a0, /* CMOVE_F*/
0x1a0, /* CMOVE_F*/
0x1a0, /* CMOVE_F*/
0x1a0, /* CMOVE_F*/
0x1a0, /* CMOVE_F*/
0x1a0, /* CMOVE_F*/
0x1a0, /* CMOVE_F*/
0x1a0, /* CMOVE_F*/
0x192, /* CMOVBE_F*/
0x192, /* CMOVBE_F*/
0x192, /* CMOVBE_F*/
0x192, /* CMOVBE_F*/
0x192, /* CMOVBE_F*/
0x192, /* CMOVBE_F*/
0x192, /* CMOVBE_F*/
0x192, /* CMOVBE_F*/
0x1f0, /* CMOVP_F*/
0x1f0, /* CMOVP_F*/
0x1f0, /* CMOVP_F*/
0x1f0, /* CMOVP_F*/
0x1f0, /* CMOVP_F*/
0x1f0, /* CMOVP_F*/
0x1f0, /* CMOVP_F*/
0x1f0, /* CMOVP_F*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0xac5, /* UCOM_FPPr*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
/* Table2295 */
0x35c, /* ILD_F32m*/
0x3ab, /* ISTT_FP32m*/
0x3b7, /* IST_F32m*/
0x3b9, /* IST_FP32m*/
0, /* PHI*/
0x445, /* LD_F80m*/
0, /* PHI*/
0xa22, /* ST_FP80m*/
0x1c0, /* CMOVNB_F*/
0x1c0, /* CMOVNB_F*/
0x1c0, /* CMOVNB_F*/
0x1c0, /* CMOVNB_F*/
0x1c0, /* CMOVNB_F*/
0x1c0, /* CMOVNB_F*/
0x1c0, /* CMOVNB_F*/
0x1c0, /* CMOVNB_F*/
0x1ca, /* CMOVNE_F*/
0x1ca, /* CMOVNE_F*/
0x1ca, /* CMOVNE_F*/
0x1ca, /* CMOVNE_F*/
0x1ca, /* CMOVNE_F*/
0x1ca, /* CMOVNE_F*/
0x1ca, /* CMOVNE_F*/
0x1ca, /* CMOVNE_F*/
0x1bc, /* CMOVNBE_F*/
0x1bc, /* CMOVNBE_F*/
0x1bc, /* CMOVNBE_F*/
0x1bc, /* CMOVNBE_F*/
0x1bc, /* CMOVNBE_F*/
0x1bc, /* CMOVNBE_F*/
0x1bc, /* CMOVNBE_F*/
0x1bc, /* CMOVNBE_F*/
0x1da, /* CMOVNP_F*/
0x1da, /* CMOVNP_F*/
0x1da, /* CMOVNP_F*/
0x1da, /* CMOVNP_F*/
0x1da, /* CMOVNP_F*/
0x1da, /* CMOVNP_F*/
0x1da, /* CMOVNP_F*/
0x1da, /* CMOVNP_F*/
0, /* PHI*/
0, /* PHI*/
0x30c, /* FNCLEX*/
0x30d, /* FNINIT*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0xac4, /* UCOM_FIr*/
0xac4, /* UCOM_FIr*/
0xac4, /* UCOM_FIr*/
0xac4, /* UCOM_FIr*/
0xac4, /* UCOM_FIr*/
0xac4, /* UCOM_FIr*/
0xac4, /* UCOM_FIr*/
0xac4, /* UCOM_FIr*/
0x24e, /* COM_FIr*/
0x24e, /* COM_FIr*/
0x24e, /* COM_FIr*/
0x24e, /* COM_FIr*/
0x24e, /* COM_FIr*/
0x24e, /* COM_FIr*/
0x24e, /* COM_FIr*/
0x24e, /* COM_FIr*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
/* Table2296 */
0x83, /* ADD_F64m*/
0x68a, /* MUL_F64m*/
0x2f9, /* FCOM64m*/
0x2fb, /* FCOMP64m*/
0xa71, /* SUB_F64m*/
0xa57, /* SUBR_F64m*/
0x2c5, /* DIV_F64m*/
0x2ab, /* DIVR_F64m*/
0x96, /* ADD_FrST0*/
0x69d, /* MUL_FrST0*/
0, /* PHI*/
0, /* PHI*/
0xa67, /* SUBR_FrST0*/
0xa84, /* SUB_FrST0*/
0x2bb, /* DIVR_FrST0*/
0x2d8, /* DIV_FrST0*/
/* Table2297 */
0x444, /* LD_F64m*/
0x3ac, /* ISTT_FP64m*/
0xa1f, /* ST_F64m*/
0xa21, /* ST_FP64m*/
0x320, /* FRSTORm*/
0, /* PHI*/
0x321, /* FSAVEm*/
0x311, /* FNSTSWm*/
0x2ff, /* FFREE*/
0, /* PHI*/
0xa2f, /* ST_Frr*/
0xa23, /* ST_FPrr*/
0xacd, /* UCOM_Fr*/
0xac6, /* UCOM_FPr*/
0, /* PHI*/
0, /* PHI*/
/* Table2298 */
0x84, /* ADD_FI16m*/
0x68b, /* MUL_FI16m*/
0x300, /* FICOM16m*/
0x302, /* FICOMP16m*/
0xa72, /* SUB_FI16m*/
0xa58, /* SUBR_FI16m*/
0x2c6, /* DIV_FI16m*/
0x2ac, /* DIVR_FI16m*/
0x86, /* ADD_FPrST0*/
0x86, /* ADD_FPrST0*/
0x86, /* ADD_FPrST0*/
0x86, /* ADD_FPrST0*/
0x86, /* ADD_FPrST0*/
0x86, /* ADD_FPrST0*/
0x86, /* ADD_FPrST0*/
0x86, /* ADD_FPrST0*/
0x68d, /* MUL_FPrST0*/
0x68d, /* MUL_FPrST0*/
0x68d, /* MUL_FPrST0*/
0x68d, /* MUL_FPrST0*/
0x68d, /* MUL_FPrST0*/
0x68d, /* MUL_FPrST0*/
0x68d, /* MUL_FPrST0*/
0x68d, /* MUL_FPrST0*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x2fc, /* FCOMPP*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0xa5a, /* SUBR_FPrST0*/
0xa5a, /* SUBR_FPrST0*/
0xa5a, /* SUBR_FPrST0*/
0xa5a, /* SUBR_FPrST0*/
0xa5a, /* SUBR_FPrST0*/
0xa5a, /* SUBR_FPrST0*/
0xa5a, /* SUBR_FPrST0*/
0xa5a, /* SUBR_FPrST0*/
0xa74, /* SUB_FPrST0*/
0xa74, /* SUB_FPrST0*/
0xa74, /* SUB_FPrST0*/
0xa74, /* SUB_FPrST0*/
0xa74, /* SUB_FPrST0*/
0xa74, /* SUB_FPrST0*/
0xa74, /* SUB_FPrST0*/
0xa74, /* SUB_FPrST0*/
0x2ae, /* DIVR_FPrST0*/
0x2ae, /* DIVR_FPrST0*/
0x2ae, /* DIVR_FPrST0*/
0x2ae, /* DIVR_FPrST0*/
0x2ae, /* DIVR_FPrST0*/
0x2ae, /* DIVR_FPrST0*/
0x2ae, /* DIVR_FPrST0*/
0x2ae, /* DIVR_FPrST0*/
0x2c8, /* DIV_FPrST0*/
0x2c8, /* DIV_FPrST0*/
0x2c8, /* DIV_FPrST0*/
0x2c8, /* DIV_FPrST0*/
0x2c8, /* DIV_FPrST0*/
0x2c8, /* DIV_FPrST0*/
0x2c8, /* DIV_FPrST0*/
0x2c8, /* DIV_FPrST0*/
/* Table2299 */
0x35b, /* ILD_F16m*/
0x3aa, /* ISTT_FP16m*/
0x3b6, /* IST_F16m*/
0x3b8, /* IST_FP16m*/
0x2f6, /* FBLDm*/
0x35d, /* ILD_F64m*/
0x2f7, /* FBSTPm*/
0x3ba, /* IST_FP64m*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x310, /* FNSTSW16r*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0xac3, /* UCOM_FIPr*/
0xac3, /* UCOM_FIPr*/
0xac3, /* UCOM_FIPr*/
0xac3, /* UCOM_FIPr*/
0xac3, /* UCOM_FIPr*/
0xac3, /* UCOM_FIPr*/
0xac3, /* UCOM_FIPr*/
0xac3, /* UCOM_FIPr*/
0x24d, /* COM_FIPr*/
0x24d, /* COM_FIPr*/
0x24d, /* COM_FIPr*/
0x24d, /* COM_FIPr*/
0x24d, /* COM_FIPr*/
0x24d, /* COM_FIPr*/
0x24d, /* COM_FIPr*/
0x24d, /* COM_FIPr*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
/* Table2300 */
0x4b0, /* LOOPNE*/
/* Table2301 */
0x4af, /* LOOPE*/
/* Table2302 */
0x4ae, /* LOOP*/
/* Table2303 */
0x42d, /* JRCXZ*/
/* Table2304 */
0x388, /* IN8ri*/
/* Table2305 */
0x385, /* IN32ri*/
/* Table2306 */
0x706, /* OUT8ir*/
/* Table2307 */
0x704, /* OUT32ir*/
/* Table2308 */
0x167, /* CALL64pcrel32*/
/* Table2309 */
0x41d, /* JMP64pcrel32*/
/* Table2310 */
0x2f3, /* FARJMP32i*/
/* Table2311 */
0x41f, /* JMP_1*/
/* Table2312 */
0x389, /* IN8rr*/
/* Table2313 */
0x386, /* IN32rr*/
/* Table2314 */
0x707, /* OUT8rr*/
/* Table2315 */
0x705, /* OUT32rr*/
/* Table2316 */
0x493, /* LOCK_PREFIX*/
/* Table2317 */
0x8d3, /* REPNE_PREFIX*/
/* Table2318 */
0x8db, /* REP_PREFIX*/
/* Table2319 */
0x34e, /* HLT*/
/* Table2320 */
0x179, /* CMC*/
/* Table2321 */
0xaa8, /* TEST8mi*/
0, /* PHI*/
0x6d9, /* NOT8m*/
0x6ce, /* NEG8m*/
0x677, /* MUL8m*/
0x37f, /* IMUL8m*/
0x2a4, /* DIV8m*/
0x359, /* IDIV8m*/
0xaa9, /* TEST8ri*/
0, /* PHI*/
0x6da, /* NOT8r*/
0x6cf, /* NEG8r*/
0x678, /* MUL8r*/
0x380, /* IMUL8r*/
0x2a5, /* DIV8r*/
0x35a, /* IDIV8r*/
/* Table2322 */
0xa9e, /* TEST32mi*/
0, /* PHI*/
0x6d5, /* NOT32m*/
0x6ca, /* NEG32m*/
0x673, /* MUL32m*/
0x36f, /* IMUL32m*/
0x2a0, /* DIV32m*/
0x355, /* IDIV32m*/
0xa9f, /* TEST32ri*/
0, /* PHI*/
0x6d6, /* NOT32r*/
0x6cb, /* NEG32r*/
0x674, /* MUL32r*/
0x370, /* IMUL32r*/
0x2a1, /* DIV32r*/
0x356, /* IDIV32r*/
/* Table2323 */
0x173, /* CLC*/
/* Table2324 */
0xa11, /* STC*/
/* Table2325 */
0x177, /* CLI*/
/* Table2326 */
0xa14, /* STI*/
/* Table2327 */
0x174, /* CLD*/
/* Table2328 */
0xa12, /* STD*/
/* Table2329 */
0x394, /* INC8m*/
0x29c, /* DEC8m*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x395, /* INC8r*/
0x29d, /* DEC8r*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
/* Table2330 */
0x390, /* INC64_32m*/
0x298, /* DEC64_32m*/
0x166, /* CALL64m*/
0x2ef, /* FARCALL32m*/
0x41c, /* JMP64m*/
0x2f4, /* FARJMP32m*/
0x870, /* PUSH64rmm*/
0, /* PHI*/
0x391, /* INC64_32r*/
0x299, /* DEC64_32r*/
0x168, /* CALL64r*/
0, /* PHI*/
0x41e, /* JMP64r*/
0, /* PHI*/
0x871, /* PUSH64rmr*/
0, /* PHI*/
/* Table2331 */
0x6d, /* ADD8mr*/
0x70, /* ADD8rr*/
/* Table2332 */
0x56, /* ADD32mr*/
0x5c, /* ADD32rr*/
/* Table2333 */
0x6f, /* ADD8rm*/
0x71, /* ADD8rr_REV*/
/* Table2334 */
0x5b, /* ADD32rm*/
0x5e, /* ADD32rr_REV*/
/* Table2335 */
0x6b, /* ADD8i8*/
/* Table2336 */
0x53, /* ADD32i32*/
/* Table2337 */
0x6f9, /* OR8mr*/
0x6fc, /* OR8rr*/
/* Table2338 */
0x6e7, /* OR32mr*/
0x6ec, /* OR32rr*/
/* Table2339 */
0x6fb, /* OR8rm*/
0x6fd, /* OR8rr_REV*/
/* Table2340 */
0x6eb, /* OR32rm*/
0x6ed, /* OR32rr_REV*/
/* Table2341 */
0x6f7, /* OR8i8*/
/* Table2342 */
0x6e4, /* OR32i32*/
/* Table2343 */
0x3e, /* ADC8mr*/
0x41, /* ADC8rr*/
/* Table2344 */
0x2d, /* ADC32mr*/
0x31, /* ADC32rr*/
/* Table2345 */
0x40, /* ADC8rm*/
0x42, /* ADC8rr_REV*/
/* Table2346 */
0x30, /* ADC32rm*/
0x32, /* ADC32rr_REV*/
/* Table2347 */
0x3c, /* ADC8i8*/
/* Table2348 */
0x2a, /* ADC32i32*/
/* Table2349 */
0x969, /* SBB8mr*/
0x96c, /* SBB8rr*/
/* Table2350 */
0x958, /* SBB32mr*/
0x95c, /* SBB32rr*/
/* Table2351 */
0x96b, /* SBB8rm*/
0x96d, /* SBB8rr_REV*/
/* Table2352 */
0x95b, /* SBB32rm*/
0x95d, /* SBB32rr_REV*/
/* Table2353 */
0x967, /* SBB8i8*/
/* Table2354 */
0x955, /* SBB32i32*/
/* Table2355 */
0xc8, /* AND8mr*/
0xcb, /* AND8rr*/
/* Table2356 */
0xb7, /* AND32mr*/
0xbb, /* AND32rr*/
/* Table2357 */
0xca, /* AND8rm*/
0xcc, /* AND8rr_REV*/
/* Table2358 */
0xba, /* AND32rm*/
0xbc, /* AND32rr_REV*/
/* Table2359 */
0xc6, /* AND8i8*/
/* Table2360 */
0xb4, /* AND32i32*/
/* Table2361 */
0x2e6, /* ES_PREFIX*/
/* Table2362 */
0xa4d, /* SUB8mr*/
0xa50, /* SUB8rr*/
/* Table2363 */
0xa3c, /* SUB32mr*/
0xa40, /* SUB32rr*/
/* Table2364 */
0xa4f, /* SUB8rm*/
0xa51, /* SUB8rr_REV*/
/* Table2365 */
0xa3f, /* SUB32rm*/
0xa41, /* SUB32rr_REV*/
/* Table2366 */
0xa4b, /* SUB8i8*/
/* Table2367 */
0xa39, /* SUB32i32*/
/* Table2368 */
0x260, /* CS_PREFIX*/
/* Table2369 */
0x11b2, /* XOR8mr*/
0x11b5, /* XOR8rr*/
/* Table2370 */
0x11a1, /* XOR32mr*/
0x11a5, /* XOR32rr*/
/* Table2371 */
0x11b4, /* XOR8rm*/
0x11b6, /* XOR8rr_REV*/
/* Table2372 */
0x11a4, /* XOR32rm*/
0x11a6, /* XOR32rr_REV*/
/* Table2373 */
0x11b0, /* XOR8i8*/
/* Table2374 */
0x119e, /* XOR32i32*/
/* Table2375 */
0xa0f, /* SS_PREFIX*/
/* Table2376 */
0x225, /* CMP8mr*/
0x228, /* CMP8rr*/
/* Table2377 */
0x214, /* CMP32mr*/
0x218, /* CMP32rr*/
/* Table2378 */
0x227, /* CMP8rm*/
0x229, /* CMP8rr_REV*/
/* Table2379 */
0x217, /* CMP32rm*/
0x219, /* CMP32rr_REV*/
/* Table2380 */
0x223, /* CMP8i8*/
/* Table2381 */
0x211, /* CMP32i32*/
/* Table2382 */
0x2dd, /* DS_PREFIX*/
/* Table2383 */
0x8e7, /* REX64_PREFIX*/
/* Table2384 */
0x86f, /* PUSH64r*/
/* Table2385 */
0x86f, /* PUSH64r*/
/* Table2386 */
0x86f, /* PUSH64r*/
/* Table2387 */
0x86f, /* PUSH64r*/
/* Table2388 */
0x86f, /* PUSH64r*/
/* Table2389 */
0x86f, /* PUSH64r*/
/* Table2390 */
0x86f, /* PUSH64r*/
/* Table2391 */
0x86f, /* PUSH64r*/
/* Table2392 */
0x7f7, /* POP64r*/
/* Table2393 */
0x7f7, /* POP64r*/
/* Table2394 */
0x7f7, /* POP64r*/
/* Table2395 */
0x7f7, /* POP64r*/
/* Table2396 */
0x7f7, /* POP64r*/
/* Table2397 */
0x7f7, /* POP64r*/
/* Table2398 */
0x7f7, /* POP64r*/
/* Table2399 */
0x7f7, /* POP64r*/
/* Table2400 */
0x325, /* FS_PREFIX*/
/* Table2401 */
0x349, /* GS_PREFIX*/
/* Table2402 */
0x291, /* DATA16_PREFIX*/
/* Table2403 */
0x86d, /* PUSH64i32*/
/* Table2404 */
0x372, /* IMUL32rmi*/
0x375, /* IMUL32rri*/
/* Table2405 */
0x86e, /* PUSH64i8*/
/* Table2406 */
0x373, /* IMUL32rmi8*/
0x376, /* IMUL32rri8*/
/* Table2407 */
0x387, /* IN8*/
/* Table2408 */
0x384, /* IN32*/
/* Table2409 */
0x708, /* OUTSB*/
/* Table2410 */
0x709, /* OUTSD*/
/* Table2411 */
0x429, /* JO_1*/
/* Table2412 */
0x423, /* JNO_1*/
/* Table2413 */
0x40b, /* JB_1*/
/* Table2414 */
0x405, /* JAE_1*/
/* Table2415 */
0x410, /* JE_1*/
/* Table2416 */
0x421, /* JNE_1*/
/* Table2417 */
0x409, /* JBE_1*/
/* Table2418 */
0x407, /* JA_1*/
/* Table2419 */
0x42e, /* JS_1*/
/* Table2420 */
0x427, /* JNS_1*/
/* Table2421 */
0x42b, /* JP_1*/
/* Table2422 */
0x425, /* JNP_1*/
/* Table2423 */
0x418, /* JL_1*/
/* Table2424 */
0x412, /* JGE_1*/
/* Table2425 */
0x416, /* JLE_1*/
/* Table2426 */
0x414, /* JG_1*/
/* Table2427 */
0x6c, /* ADD8mi*/
0x6f8, /* OR8mi*/
0x3d, /* ADC8mi*/
0x968, /* SBB8mi*/
0xc7, /* AND8mi*/
0xa4c, /* SUB8mi*/
0x11b1, /* XOR8mi*/
0x224, /* CMP8mi*/
0x6e, /* ADD8ri*/
0x6fa, /* OR8ri*/
0x3f, /* ADC8ri*/
0x96a, /* SBB8ri*/
0xc9, /* AND8ri*/
0xa4e, /* SUB8ri*/
0x11b3, /* XOR8ri*/
0x226, /* CMP8ri*/
/* Table2428 */
0x54, /* ADD32mi*/
0x6e5, /* OR32mi*/
0x2b, /* ADC32mi*/
0x956, /* SBB32mi*/
0xb5, /* AND32mi*/
0xa3a, /* SUB32mi*/
0x119f, /* XOR32mi*/
0x212, /* CMP32mi*/
0x57, /* ADD32ri*/
0x6e9, /* OR32ri*/
0x2e, /* ADC32ri*/
0x959, /* SBB32ri*/
0xb8, /* AND32ri*/
0xa3d, /* SUB32ri*/
0x11a2, /* XOR32ri*/
0x215, /* CMP32ri*/
/* Table2429 */
0x55, /* ADD32mi8*/
0x6e6, /* OR32mi8*/
0x2c, /* ADC32mi8*/
0x957, /* SBB32mi8*/
0xb6, /* AND32mi8*/
0xa3b, /* SUB32mi8*/
0x11a0, /* XOR32mi8*/
0x213, /* CMP32mi8*/
0x58, /* ADD32ri8*/
0x6ea, /* OR32ri8*/
0x2f, /* ADC32ri8*/
0x95a, /* SBB32ri8*/
0xb9, /* AND32ri8*/
0xa3e, /* SUB32ri8*/
0x11a3, /* XOR32ri8*/
0x216, /* CMP32ri8*/
/* Table2430 */
0xaab, /* TEST8rm*/
0xaac, /* TEST8rr*/
/* Table2431 */
0xaa0, /* TEST32rm*/
0xaa1, /* TEST32rr*/
/* Table2432 */
0x118a, /* XCHG8rm*/
0x118b, /* XCHG8rr*/
/* Table2433 */
0x1185, /* XCHG32rm*/
0x1186, /* XCHG32rr*/
/* Table2434 */
0x5eb, /* MOV8mr*/
0x5f2, /* MOV8rr*/
/* Table2435 */
0x5c8, /* MOV32mr*/
0x5d0, /* MOV32rr*/
/* Table2436 */
0x5f0, /* MOV8rm*/
0x5f4, /* MOV8rr_REV*/
/* Table2437 */
0x5cf, /* MOV32rm*/
0x5d1, /* MOV32rr_REV*/
/* Table2438 */
0x5c9, /* MOV32ms*/
0x5d2, /* MOV32rs*/
/* Table2439 */
0x455, /* LEA64_32r*/
0, /* PHI*/
/* Table2440 */
0x5d3, /* MOV32sm*/
0x5d4, /* MOV32sr*/
/* Table2441 */
0x7f8, /* POP64rmm*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x7f9, /* POP64rmr*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
/* Table2442 */
0x72f, /* PAUSE*/
/* Table2443 */
0x1184, /* XCHG32ar64*/
/* Table2444 */
0x1184, /* XCHG32ar64*/
/* Table2445 */
0x1184, /* XCHG32ar64*/
/* Table2446 */
0x1184, /* XCHG32ar64*/
/* Table2447 */
0x1184, /* XCHG32ar64*/
/* Table2448 */
0x1184, /* XCHG32ar64*/
/* Table2449 */
0x1184, /* XCHG32ar64*/
/* Table2450 */
0x28e, /* CWDE*/
/* Table2451 */
0x16c, /* CDQ*/
/* Table2452 */
0x2ee, /* FARCALL32i*/
/* Table2453 */
0x116b, /* WAIT*/
/* Table2454 */
0x87b, /* PUSHF64*/
/* Table2455 */
0x807, /* POPF64*/
/* Table2456 */
0x92f, /* SAHF*/
/* Table2457 */
0x430, /* LAHF*/
/* Table2458 */
0x62f, /* MOVSB*/
/* Table2459 */
0x630, /* MOVSD*/
/* Table2460 */
0x235, /* CMPS8*/
/* Table2461 */
0x233, /* CMPS32*/
/* Table2462 */
0xaa7, /* TEST8i8*/
/* Table2463 */
0xa9d, /* TEST32i32*/
/* Table2464 */
0xa16, /* STOSB*/
/* Table2465 */
0xa17, /* STOSD*/
/* Table2466 */
0x4aa, /* LODSB*/
/* Table2467 */
0x4ab, /* LODSD*/
/* Table2468 */
0x971, /* SCAS8*/
/* Table2469 */
0x96f, /* SCAS32*/
/* Table2470 */
0x5ef, /* MOV8ri*/
/* Table2471 */
0x5ef, /* MOV8ri*/
/* Table2472 */
0x5ef, /* MOV8ri*/
/* Table2473 */
0x5ef, /* MOV8ri*/
/* Table2474 */
0x5ef, /* MOV8ri*/
/* Table2475 */
0x5ef, /* MOV8ri*/
/* Table2476 */
0x5ef, /* MOV8ri*/
/* Table2477 */
0x5ef, /* MOV8ri*/
/* Table2478 */
0x5ce, /* MOV32ri*/
/* Table2479 */
0x5ce, /* MOV32ri*/
/* Table2480 */
0x5ce, /* MOV32ri*/
/* Table2481 */
0x5ce, /* MOV32ri*/
/* Table2482 */
0x5ce, /* MOV32ri*/
/* Table2483 */
0x5ce, /* MOV32ri*/
/* Table2484 */
0x5ce, /* MOV32ri*/
/* Table2485 */
0x5ce, /* MOV32ri*/
/* Table2486 */
0x8fc, /* ROL8mi*/
0x914, /* ROR8mi*/
0x89d, /* RCL8mi*/
0x8bd, /* RCR8mi*/
0x9af, /* SHL8mi*/
0x9d7, /* SHR8mi*/
0, /* PHI*/
0x944, /* SAR8mi*/
0x8ff, /* ROL8ri*/
0x917, /* ROR8ri*/
0x8a0, /* RCL8ri*/
0x8c0, /* RCR8ri*/
0x9b2, /* SHL8ri*/
0x9da, /* SHR8ri*/
0, /* PHI*/
0x947, /* SAR8ri*/
/* Table2487 */
0x8f0, /* ROL32mi*/
0x908, /* ROR32mi*/
0x891, /* RCL32mi*/
0x8b1, /* RCR32mi*/
0x9a3, /* SHL32mi*/
0x9cb, /* SHR32mi*/
0, /* PHI*/
0x938, /* SAR32mi*/
0x8f3, /* ROL32ri*/
0x90b, /* ROR32ri*/
0x894, /* RCL32ri*/
0x8b4, /* RCR32ri*/
0x9a6, /* SHL32ri*/
0x9ce, /* SHR32ri*/
0, /* PHI*/
0x93b, /* SAR32ri*/
/* Table2488 */
0x8e4, /* RETI*/
/* Table2489 */
0x8e3, /* RET*/
/* Table2490 */
0x45a, /* LES32rm*/
0, /* PHI*/
/* Table2491 */
0x440, /* LDS32rm*/
0, /* PHI*/
/* Table2492 */
0x5ea, /* MOV8mi*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x1175, /* XABORT*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
/* Table2493 */
0x5c7, /* MOV32mi*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x117f, /* XBEGIN_4*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
/* Table2494 */
0x2e5, /* ENTER*/
/* Table2495 */
0x458, /* LEAVE64*/
/* Table2496 */
0x4b1, /* LRETI*/
/* Table2497 */
0x4b3, /* LRETL*/
/* Table2498 */
0x39b, /* INT3*/
/* Table2499 */
0x39a, /* INT*/
/* Table2500 */
0x39c, /* INTO*/
/* Table2501 */
0x3a8, /* IRET32*/
/* Table2502 */
0x8fa, /* ROL8m1*/
0x912, /* ROR8m1*/
0x89b, /* RCL8m1*/
0x8bb, /* RCR8m1*/
0x9ad, /* SHL8m1*/
0x9d5, /* SHR8m1*/
0, /* PHI*/
0x942, /* SAR8m1*/
0x8fd, /* ROL8r1*/
0x915, /* ROR8r1*/
0x89e, /* RCL8r1*/
0x8be, /* RCR8r1*/
0x9b0, /* SHL8r1*/
0x9d8, /* SHR8r1*/
0, /* PHI*/
0x945, /* SAR8r1*/
/* Table2503 */
0x8ee, /* ROL32m1*/
0x906, /* ROR32m1*/
0x88f, /* RCL32m1*/
0x8af, /* RCR32m1*/
0x9a1, /* SHL32m1*/
0x9c9, /* SHR32m1*/
0, /* PHI*/
0x936, /* SAR32m1*/
0x8f1, /* ROL32r1*/
0x909, /* ROR32r1*/
0x892, /* RCL32r1*/
0x8b2, /* RCR32r1*/
0x9a4, /* SHL32r1*/
0x9cc, /* SHR32r1*/
0, /* PHI*/
0x939, /* SAR32r1*/
/* Table2504 */
0x8fb, /* ROL8mCL*/
0x913, /* ROR8mCL*/
0x89c, /* RCL8mCL*/
0x8bc, /* RCR8mCL*/
0x9ae, /* SHL8mCL*/
0x9d6, /* SHR8mCL*/
0, /* PHI*/
0x943, /* SAR8mCL*/
0x8fe, /* ROL8rCL*/
0x916, /* ROR8rCL*/
0x89f, /* RCL8rCL*/
0x8bf, /* RCR8rCL*/
0x9b1, /* SHL8rCL*/
0x9d9, /* SHR8rCL*/
0, /* PHI*/
0x946, /* SAR8rCL*/
/* Table2505 */
0x8ef, /* ROL32mCL*/
0x907, /* ROR32mCL*/
0x890, /* RCL32mCL*/
0x8b0, /* RCR32mCL*/
0x9a2, /* SHL32mCL*/
0x9ca, /* SHR32mCL*/
0, /* PHI*/
0x937, /* SAR32mCL*/
0x8f2, /* ROL32rCL*/
0x90a, /* ROR32rCL*/
0x893, /* RCL32rCL*/
0x8b3, /* RCR32rCL*/
0x9a5, /* SHL32rCL*/
0x9cd, /* SHR32rCL*/
0, /* PHI*/
0x93a, /* SAR32rCL*/
/* Table2506 */
0x1194, /* XLAT*/
/* Table2507 */
0x82, /* ADD_F32m*/
0x689, /* MUL_F32m*/
0x2f8, /* FCOM32m*/
0x2fa, /* FCOMP32m*/
0xa70, /* SUB_F32m*/
0xa56, /* SUBR_F32m*/
0x2c4, /* DIV_F32m*/
0x2aa, /* DIVR_F32m*/
0x87, /* ADD_FST0r*/
0x68e, /* MUL_FST0r*/
0x24f, /* COM_FST0r*/
0x24c, /* COMP_FST0r*/
0xa75, /* SUB_FST0r*/
0xa5b, /* SUBR_FST0r*/
0x2c9, /* DIV_FST0r*/
0x2af, /* DIVR_FST0r*/
/* Table2508 */
0x443, /* LD_F32m*/
0, /* PHI*/
0xa1e, /* ST_F32m*/
0xa20, /* ST_FP32m*/
0x306, /* FLDENVm*/
0x305, /* FLDCW16m*/
0x324, /* FSTENVm*/
0x30f, /* FNSTCW16m*/
0x452, /* LD_Frr*/
0x452, /* LD_Frr*/
0x452, /* LD_Frr*/
0x452, /* LD_Frr*/
0x452, /* LD_Frr*/
0x452, /* LD_Frr*/
0x452, /* LD_Frr*/
0x452, /* LD_Frr*/
0x118c, /* XCH_F*/
0x118c, /* XCH_F*/
0x118c, /* XCH_F*/
0x118c, /* XCH_F*/
0x118c, /* XCH_F*/
0x118c, /* XCH_F*/
0x118c, /* XCH_F*/
0x118c, /* XCH_F*/
0x30e, /* FNOP*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x16e, /* CHS_F*/
0x19, /* ABS_F*/
0, /* PHI*/
0, /* PHI*/
0xab5, /* TST_F*/
0x326, /* FXAM*/
0, /* PHI*/
0, /* PHI*/
0x442, /* LD_F1*/
0x308, /* FLDL2T*/
0x307, /* FLDL2E*/
0x30b, /* FLDPI*/
0x309, /* FLDLG2*/
0x30a, /* FLDLN2*/
0x441, /* LD_F0*/
0, /* PHI*/
0x2eb, /* F2XM1*/
0x32c, /* FYL2X*/
0x31e, /* FPTAN*/
0x31b, /* FPATAN*/
0x32b, /* FXTRACT*/
0x31d, /* FPREM1*/
0x2fd, /* FDECSTP*/
0x304, /* FINCSTP*/
0x31c, /* FPREM*/
0x32d, /* FYL2XP1*/
0xa0b, /* SQRT_F*/
0x323, /* FSINCOS*/
0x31f, /* FRNDINT*/
0x322, /* FSCALE*/
0x9f1, /* SIN_F*/
0x250, /* COS_F*/
/* Table2509 */
0x85, /* ADD_FI32m*/
0x68c, /* MUL_FI32m*/
0x301, /* FICOM32m*/
0x303, /* FICOMP32m*/
0xa73, /* SUB_FI32m*/
0xa59, /* SUBR_FI32m*/
0x2c7, /* DIV_FI32m*/
0x2ad, /* DIVR_FI32m*/
0x196, /* CMOVB_F*/
0x196, /* CMOVB_F*/
0x196, /* CMOVB_F*/
0x196, /* CMOVB_F*/
0x196, /* CMOVB_F*/
0x196, /* CMOVB_F*/
0x196, /* CMOVB_F*/
0x196, /* CMOVB_F*/
0x1a0, /* CMOVE_F*/
0x1a0, /* CMOVE_F*/
0x1a0, /* CMOVE_F*/
0x1a0, /* CMOVE_F*/
0x1a0, /* CMOVE_F*/
0x1a0, /* CMOVE_F*/
0x1a0, /* CMOVE_F*/
0x1a0, /* CMOVE_F*/
0x192, /* CMOVBE_F*/
0x192, /* CMOVBE_F*/
0x192, /* CMOVBE_F*/
0x192, /* CMOVBE_F*/
0x192, /* CMOVBE_F*/
0x192, /* CMOVBE_F*/
0x192, /* CMOVBE_F*/
0x192, /* CMOVBE_F*/
0x1f0, /* CMOVP_F*/
0x1f0, /* CMOVP_F*/
0x1f0, /* CMOVP_F*/
0x1f0, /* CMOVP_F*/
0x1f0, /* CMOVP_F*/
0x1f0, /* CMOVP_F*/
0x1f0, /* CMOVP_F*/
0x1f0, /* CMOVP_F*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0xac5, /* UCOM_FPPr*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
/* Table2510 */
0x35c, /* ILD_F32m*/
0x3ab, /* ISTT_FP32m*/
0x3b7, /* IST_F32m*/
0x3b9, /* IST_FP32m*/
0, /* PHI*/
0x445, /* LD_F80m*/
0, /* PHI*/
0xa22, /* ST_FP80m*/
0x1c0, /* CMOVNB_F*/
0x1c0, /* CMOVNB_F*/
0x1c0, /* CMOVNB_F*/
0x1c0, /* CMOVNB_F*/
0x1c0, /* CMOVNB_F*/
0x1c0, /* CMOVNB_F*/
0x1c0, /* CMOVNB_F*/
0x1c0, /* CMOVNB_F*/
0x1ca, /* CMOVNE_F*/
0x1ca, /* CMOVNE_F*/
0x1ca, /* CMOVNE_F*/
0x1ca, /* CMOVNE_F*/
0x1ca, /* CMOVNE_F*/
0x1ca, /* CMOVNE_F*/
0x1ca, /* CMOVNE_F*/
0x1ca, /* CMOVNE_F*/
0x1bc, /* CMOVNBE_F*/
0x1bc, /* CMOVNBE_F*/
0x1bc, /* CMOVNBE_F*/
0x1bc, /* CMOVNBE_F*/
0x1bc, /* CMOVNBE_F*/
0x1bc, /* CMOVNBE_F*/
0x1bc, /* CMOVNBE_F*/
0x1bc, /* CMOVNBE_F*/
0x1da, /* CMOVNP_F*/
0x1da, /* CMOVNP_F*/
0x1da, /* CMOVNP_F*/
0x1da, /* CMOVNP_F*/
0x1da, /* CMOVNP_F*/
0x1da, /* CMOVNP_F*/
0x1da, /* CMOVNP_F*/
0x1da, /* CMOVNP_F*/
0, /* PHI*/
0, /* PHI*/
0x30c, /* FNCLEX*/
0x30d, /* FNINIT*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0xac4, /* UCOM_FIr*/
0xac4, /* UCOM_FIr*/
0xac4, /* UCOM_FIr*/
0xac4, /* UCOM_FIr*/
0xac4, /* UCOM_FIr*/
0xac4, /* UCOM_FIr*/
0xac4, /* UCOM_FIr*/
0xac4, /* UCOM_FIr*/
0x24e, /* COM_FIr*/
0x24e, /* COM_FIr*/
0x24e, /* COM_FIr*/
0x24e, /* COM_FIr*/
0x24e, /* COM_FIr*/
0x24e, /* COM_FIr*/
0x24e, /* COM_FIr*/
0x24e, /* COM_FIr*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
/* Table2511 */
0x83, /* ADD_F64m*/
0x68a, /* MUL_F64m*/
0x2f9, /* FCOM64m*/
0x2fb, /* FCOMP64m*/
0xa71, /* SUB_F64m*/
0xa57, /* SUBR_F64m*/
0x2c5, /* DIV_F64m*/
0x2ab, /* DIVR_F64m*/
0x96, /* ADD_FrST0*/
0x69d, /* MUL_FrST0*/
0, /* PHI*/
0, /* PHI*/
0xa67, /* SUBR_FrST0*/
0xa84, /* SUB_FrST0*/
0x2bb, /* DIVR_FrST0*/
0x2d8, /* DIV_FrST0*/
/* Table2512 */
0x444, /* LD_F64m*/
0x3ac, /* ISTT_FP64m*/
0xa1f, /* ST_F64m*/
0xa21, /* ST_FP64m*/
0x320, /* FRSTORm*/
0, /* PHI*/
0x321, /* FSAVEm*/
0x311, /* FNSTSWm*/
0x2ff, /* FFREE*/
0, /* PHI*/
0xa2f, /* ST_Frr*/
0xa23, /* ST_FPrr*/
0xacd, /* UCOM_Fr*/
0xac6, /* UCOM_FPr*/
0, /* PHI*/
0, /* PHI*/
/* Table2513 */
0x84, /* ADD_FI16m*/
0x68b, /* MUL_FI16m*/
0x300, /* FICOM16m*/
0x302, /* FICOMP16m*/
0xa72, /* SUB_FI16m*/
0xa58, /* SUBR_FI16m*/
0x2c6, /* DIV_FI16m*/
0x2ac, /* DIVR_FI16m*/
0x86, /* ADD_FPrST0*/
0x86, /* ADD_FPrST0*/
0x86, /* ADD_FPrST0*/
0x86, /* ADD_FPrST0*/
0x86, /* ADD_FPrST0*/
0x86, /* ADD_FPrST0*/
0x86, /* ADD_FPrST0*/
0x86, /* ADD_FPrST0*/
0x68d, /* MUL_FPrST0*/
0x68d, /* MUL_FPrST0*/
0x68d, /* MUL_FPrST0*/
0x68d, /* MUL_FPrST0*/
0x68d, /* MUL_FPrST0*/
0x68d, /* MUL_FPrST0*/
0x68d, /* MUL_FPrST0*/
0x68d, /* MUL_FPrST0*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x2fc, /* FCOMPP*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0xa5a, /* SUBR_FPrST0*/
0xa5a, /* SUBR_FPrST0*/
0xa5a, /* SUBR_FPrST0*/
0xa5a, /* SUBR_FPrST0*/
0xa5a, /* SUBR_FPrST0*/
0xa5a, /* SUBR_FPrST0*/
0xa5a, /* SUBR_FPrST0*/
0xa5a, /* SUBR_FPrST0*/
0xa74, /* SUB_FPrST0*/
0xa74, /* SUB_FPrST0*/
0xa74, /* SUB_FPrST0*/
0xa74, /* SUB_FPrST0*/
0xa74, /* SUB_FPrST0*/
0xa74, /* SUB_FPrST0*/
0xa74, /* SUB_FPrST0*/
0xa74, /* SUB_FPrST0*/
0x2ae, /* DIVR_FPrST0*/
0x2ae, /* DIVR_FPrST0*/
0x2ae, /* DIVR_FPrST0*/
0x2ae, /* DIVR_FPrST0*/
0x2ae, /* DIVR_FPrST0*/
0x2ae, /* DIVR_FPrST0*/
0x2ae, /* DIVR_FPrST0*/
0x2ae, /* DIVR_FPrST0*/
0x2c8, /* DIV_FPrST0*/
0x2c8, /* DIV_FPrST0*/
0x2c8, /* DIV_FPrST0*/
0x2c8, /* DIV_FPrST0*/
0x2c8, /* DIV_FPrST0*/
0x2c8, /* DIV_FPrST0*/
0x2c8, /* DIV_FPrST0*/
0x2c8, /* DIV_FPrST0*/
/* Table2514 */
0x35b, /* ILD_F16m*/
0x3aa, /* ISTT_FP16m*/
0x3b6, /* IST_F16m*/
0x3b8, /* IST_FP16m*/
0x2f6, /* FBLDm*/
0x35d, /* ILD_F64m*/
0x2f7, /* FBSTPm*/
0x3ba, /* IST_FP64m*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x310, /* FNSTSW16r*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0xac3, /* UCOM_FIPr*/
0xac3, /* UCOM_FIPr*/
0xac3, /* UCOM_FIPr*/
0xac3, /* UCOM_FIPr*/
0xac3, /* UCOM_FIPr*/
0xac3, /* UCOM_FIPr*/
0xac3, /* UCOM_FIPr*/
0xac3, /* UCOM_FIPr*/
0x24d, /* COM_FIPr*/
0x24d, /* COM_FIPr*/
0x24d, /* COM_FIPr*/
0x24d, /* COM_FIPr*/
0x24d, /* COM_FIPr*/
0x24d, /* COM_FIPr*/
0x24d, /* COM_FIPr*/
0x24d, /* COM_FIPr*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
/* Table2515 */
0x4b0, /* LOOPNE*/
/* Table2516 */
0x4af, /* LOOPE*/
/* Table2517 */
0x4ae, /* LOOP*/
/* Table2518 */
0x42d, /* JRCXZ*/
/* Table2519 */
0x388, /* IN8ri*/
/* Table2520 */
0x385, /* IN32ri*/
/* Table2521 */
0x706, /* OUT8ir*/
/* Table2522 */
0x704, /* OUT32ir*/
/* Table2523 */
0x167, /* CALL64pcrel32*/
/* Table2524 */
0x41d, /* JMP64pcrel32*/
/* Table2525 */
0x2f3, /* FARJMP32i*/
/* Table2526 */
0x41f, /* JMP_1*/
/* Table2527 */
0x389, /* IN8rr*/
/* Table2528 */
0x386, /* IN32rr*/
/* Table2529 */
0x707, /* OUT8rr*/
/* Table2530 */
0x705, /* OUT32rr*/
/* Table2531 */
0x493, /* LOCK_PREFIX*/
/* Table2532 */
0x8d3, /* REPNE_PREFIX*/
/* Table2533 */
0x8db, /* REP_PREFIX*/
/* Table2534 */
0x34e, /* HLT*/
/* Table2535 */
0x179, /* CMC*/
/* Table2536 */
0xaa8, /* TEST8mi*/
0, /* PHI*/
0x6d9, /* NOT8m*/
0x6ce, /* NEG8m*/
0x677, /* MUL8m*/
0x37f, /* IMUL8m*/
0x2a4, /* DIV8m*/
0x359, /* IDIV8m*/
0xaa9, /* TEST8ri*/
0, /* PHI*/
0x6da, /* NOT8r*/
0x6cf, /* NEG8r*/
0x678, /* MUL8r*/
0x380, /* IMUL8r*/
0x2a5, /* DIV8r*/
0x35a, /* IDIV8r*/
/* Table2537 */
0xa9e, /* TEST32mi*/
0, /* PHI*/
0x6d5, /* NOT32m*/
0x6ca, /* NEG32m*/
0x673, /* MUL32m*/
0x36f, /* IMUL32m*/
0x2a0, /* DIV32m*/
0x355, /* IDIV32m*/
0xa9f, /* TEST32ri*/
0, /* PHI*/
0x6d6, /* NOT32r*/
0x6cb, /* NEG32r*/
0x674, /* MUL32r*/
0x370, /* IMUL32r*/
0x2a1, /* DIV32r*/
0x356, /* IDIV32r*/
/* Table2538 */
0x173, /* CLC*/
/* Table2539 */
0xa11, /* STC*/
/* Table2540 */
0x177, /* CLI*/
/* Table2541 */
0xa14, /* STI*/
/* Table2542 */
0x174, /* CLD*/
/* Table2543 */
0xa12, /* STD*/
/* Table2544 */
0x394, /* INC8m*/
0x29c, /* DEC8m*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x395, /* INC8r*/
0x29d, /* DEC8r*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
/* Table2545 */
0x390, /* INC64_32m*/
0x298, /* DEC64_32m*/
0x166, /* CALL64m*/
0x2ef, /* FARCALL32m*/
0x41c, /* JMP64m*/
0x2f4, /* FARJMP32m*/
0x870, /* PUSH64rmm*/
0, /* PHI*/
0x391, /* INC64_32r*/
0x299, /* DEC64_32r*/
0x168, /* CALL64r*/
0, /* PHI*/
0x41e, /* JMP64r*/
0, /* PHI*/
0x871, /* PUSH64rmr*/
0, /* PHI*/
/* Table2546 */
0x6d, /* ADD8mr*/
0x70, /* ADD8rr*/
/* Table2547 */
0x62, /* ADD64mr*/
0x68, /* ADD64rr*/
/* Table2548 */
0x6f, /* ADD8rm*/
0x71, /* ADD8rr_REV*/
/* Table2549 */
0x67, /* ADD64rm*/
0x6a, /* ADD64rr_REV*/
/* Table2550 */
0x6b, /* ADD8i8*/
/* Table2551 */
0x5f, /* ADD64i32*/
/* Table2552 */
0x6f9, /* OR8mr*/
0x6fc, /* OR8rr*/
/* Table2553 */
0x6f1, /* OR64mr*/
0x6f5, /* OR64rr*/
/* Table2554 */
0x6fb, /* OR8rm*/
0x6fd, /* OR8rr_REV*/
/* Table2555 */
0x6f4, /* OR64rm*/
0x6f6, /* OR64rr_REV*/
/* Table2556 */
0x6f7, /* OR8i8*/
/* Table2557 */
0x6ee, /* OR64i32*/
/* Table2558 */
0x3e, /* ADC8mr*/
0x41, /* ADC8rr*/
/* Table2559 */
0x36, /* ADC64mr*/
0x3a, /* ADC64rr*/
/* Table2560 */
0x40, /* ADC8rm*/
0x42, /* ADC8rr_REV*/
/* Table2561 */
0x39, /* ADC64rm*/
0x3b, /* ADC64rr_REV*/
/* Table2562 */
0x3c, /* ADC8i8*/
/* Table2563 */
0x33, /* ADC64i32*/
/* Table2564 */
0x969, /* SBB8mr*/
0x96c, /* SBB8rr*/
/* Table2565 */
0x961, /* SBB64mr*/
0x965, /* SBB64rr*/
/* Table2566 */
0x96b, /* SBB8rm*/
0x96d, /* SBB8rr_REV*/
/* Table2567 */
0x964, /* SBB64rm*/
0x966, /* SBB64rr_REV*/
/* Table2568 */
0x967, /* SBB8i8*/
/* Table2569 */
0x95e, /* SBB64i32*/
/* Table2570 */
0xc8, /* AND8mr*/
0xcb, /* AND8rr*/
/* Table2571 */
0xc0, /* AND64mr*/
0xc4, /* AND64rr*/
/* Table2572 */
0xca, /* AND8rm*/
0xcc, /* AND8rr_REV*/
/* Table2573 */
0xc3, /* AND64rm*/
0xc5, /* AND64rr_REV*/
/* Table2574 */
0xc6, /* AND8i8*/
/* Table2575 */
0xbd, /* AND64i32*/
/* Table2576 */
0x2e6, /* ES_PREFIX*/
/* Table2577 */
0xa4d, /* SUB8mr*/
0xa50, /* SUB8rr*/
/* Table2578 */
0xa45, /* SUB64mr*/
0xa49, /* SUB64rr*/
/* Table2579 */
0xa4f, /* SUB8rm*/
0xa51, /* SUB8rr_REV*/
/* Table2580 */
0xa48, /* SUB64rm*/
0xa4a, /* SUB64rr_REV*/
/* Table2581 */
0xa4b, /* SUB8i8*/
/* Table2582 */
0xa42, /* SUB64i32*/
/* Table2583 */
0x260, /* CS_PREFIX*/
/* Table2584 */
0x11b2, /* XOR8mr*/
0x11b5, /* XOR8rr*/
/* Table2585 */
0x11aa, /* XOR64mr*/
0x11ae, /* XOR64rr*/
/* Table2586 */
0x11b4, /* XOR8rm*/
0x11b6, /* XOR8rr_REV*/
/* Table2587 */
0x11ad, /* XOR64rm*/
0x11af, /* XOR64rr_REV*/
/* Table2588 */
0x11b0, /* XOR8i8*/
/* Table2589 */
0x11a7, /* XOR64i32*/
/* Table2590 */
0xa0f, /* SS_PREFIX*/
/* Table2591 */
0x225, /* CMP8mr*/
0x228, /* CMP8rr*/
/* Table2592 */
0x21d, /* CMP64mr*/
0x221, /* CMP64rr*/
/* Table2593 */
0x227, /* CMP8rm*/
0x229, /* CMP8rr_REV*/
/* Table2594 */
0x220, /* CMP64rm*/
0x222, /* CMP64rr_REV*/
/* Table2595 */
0x223, /* CMP8i8*/
/* Table2596 */
0x21a, /* CMP64i32*/
/* Table2597 */
0x2dd, /* DS_PREFIX*/
/* Table2598 */
0x8e7, /* REX64_PREFIX*/
/* Table2599 */
0x86f, /* PUSH64r*/
/* Table2600 */
0x86f, /* PUSH64r*/
/* Table2601 */
0x86f, /* PUSH64r*/
/* Table2602 */
0x86f, /* PUSH64r*/
/* Table2603 */
0x86f, /* PUSH64r*/
/* Table2604 */
0x86f, /* PUSH64r*/
/* Table2605 */
0x86f, /* PUSH64r*/
/* Table2606 */
0x86f, /* PUSH64r*/
/* Table2607 */
0x7f7, /* POP64r*/
/* Table2608 */
0x7f7, /* POP64r*/
/* Table2609 */
0x7f7, /* POP64r*/
/* Table2610 */
0x7f7, /* POP64r*/
/* Table2611 */
0x7f7, /* POP64r*/
/* Table2612 */
0x7f7, /* POP64r*/
/* Table2613 */
0x7f7, /* POP64r*/
/* Table2614 */
0x7f7, /* POP64r*/
/* Table2615 */
0x64a, /* MOVSX64rm32*/
0x64d, /* MOVSX64rr32*/
/* Table2616 */
0x325, /* FS_PREFIX*/
/* Table2617 */
0x349, /* GS_PREFIX*/
/* Table2618 */
0x291, /* DATA16_PREFIX*/
/* Table2619 */
0x86d, /* PUSH64i32*/
/* Table2620 */
0x37a, /* IMUL64rmi32*/
0x37d, /* IMUL64rri32*/
/* Table2621 */
0x86e, /* PUSH64i8*/
/* Table2622 */
0x37b, /* IMUL64rmi8*/
0x37e, /* IMUL64rri8*/
/* Table2623 */
0x387, /* IN8*/
/* Table2624 */
0x384, /* IN32*/
/* Table2625 */
0x708, /* OUTSB*/
/* Table2626 */
0x709, /* OUTSD*/
/* Table2627 */
0x429, /* JO_1*/
/* Table2628 */
0x423, /* JNO_1*/
/* Table2629 */
0x40b, /* JB_1*/
/* Table2630 */
0x405, /* JAE_1*/
/* Table2631 */
0x410, /* JE_1*/
/* Table2632 */
0x421, /* JNE_1*/
/* Table2633 */
0x409, /* JBE_1*/
/* Table2634 */
0x407, /* JA_1*/
/* Table2635 */
0x42e, /* JS_1*/
/* Table2636 */
0x427, /* JNS_1*/
/* Table2637 */
0x42b, /* JP_1*/
/* Table2638 */
0x425, /* JNP_1*/
/* Table2639 */
0x418, /* JL_1*/
/* Table2640 */
0x412, /* JGE_1*/
/* Table2641 */
0x416, /* JLE_1*/
/* Table2642 */
0x414, /* JG_1*/
/* Table2643 */
0x6c, /* ADD8mi*/
0x6f8, /* OR8mi*/
0x3d, /* ADC8mi*/
0x968, /* SBB8mi*/
0xc7, /* AND8mi*/
0xa4c, /* SUB8mi*/
0x11b1, /* XOR8mi*/
0x224, /* CMP8mi*/
0x6e, /* ADD8ri*/
0x6fa, /* OR8ri*/
0x3f, /* ADC8ri*/
0x96a, /* SBB8ri*/
0xc9, /* AND8ri*/
0xa4e, /* SUB8ri*/
0x11b3, /* XOR8ri*/
0x226, /* CMP8ri*/
/* Table2644 */
0x60, /* ADD64mi32*/
0x6ef, /* OR64mi32*/
0x34, /* ADC64mi32*/
0x95f, /* SBB64mi32*/
0xbe, /* AND64mi32*/
0xa43, /* SUB64mi32*/
0x11a8, /* XOR64mi32*/
0x21b, /* CMP64mi32*/
0x63, /* ADD64ri32*/
0x6f2, /* OR64ri32*/
0x37, /* ADC64ri32*/
0x962, /* SBB64ri32*/
0xc1, /* AND64ri32*/
0xa46, /* SUB64ri32*/
0x11ab, /* XOR64ri32*/
0x21e, /* CMP64ri32*/
/* Table2645 */
0x61, /* ADD64mi8*/
0x6f0, /* OR64mi8*/
0x35, /* ADC64mi8*/
0x960, /* SBB64mi8*/
0xbf, /* AND64mi8*/
0xa44, /* SUB64mi8*/
0x11a9, /* XOR64mi8*/
0x21c, /* CMP64mi8*/
0x65, /* ADD64ri8*/
0x6f3, /* OR64ri8*/
0x38, /* ADC64ri8*/
0x963, /* SBB64ri8*/
0xc2, /* AND64ri8*/
0xa47, /* SUB64ri8*/
0x11ac, /* XOR64ri8*/
0x21f, /* CMP64ri8*/
/* Table2646 */
0xaab, /* TEST8rm*/
0xaac, /* TEST8rr*/
/* Table2647 */
0xaa5, /* TEST64rm*/
0xaa6, /* TEST64rr*/
/* Table2648 */
0x118a, /* XCHG8rm*/
0x118b, /* XCHG8rr*/
/* Table2649 */
0x1188, /* XCHG64rm*/
0x1189, /* XCHG64rr*/
/* Table2650 */
0x5eb, /* MOV8mr*/
0x5f2, /* MOV8rr*/
/* Table2651 */
0x5d8, /* MOV64mr*/
0x5e1, /* MOV64rr*/
/* Table2652 */
0x5f0, /* MOV8rm*/
0x5f4, /* MOV8rr_REV*/
/* Table2653 */
0x5e0, /* MOV64rm*/
0x5e2, /* MOV64rr_REV*/
/* Table2654 */
0x5d9, /* MOV64ms*/
0x5e3, /* MOV64rs*/
/* Table2655 */
0x456, /* LEA64r*/
0, /* PHI*/
/* Table2656 */
0x5e4, /* MOV64sm*/
0x5e5, /* MOV64sr*/
/* Table2657 */
0x7f8, /* POP64rmm*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x7f9, /* POP64rmr*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
/* Table2658 */
0x1187, /* XCHG64ar*/
/* Table2659 */
0x1187, /* XCHG64ar*/
/* Table2660 */
0x1187, /* XCHG64ar*/
/* Table2661 */
0x1187, /* XCHG64ar*/
/* Table2662 */
0x1187, /* XCHG64ar*/
/* Table2663 */
0x1187, /* XCHG64ar*/
/* Table2664 */
0x1187, /* XCHG64ar*/
/* Table2665 */
0x1187, /* XCHG64ar*/
/* Table2666 */
0x16d, /* CDQE*/
/* Table2667 */
0x255, /* CQO*/
/* Table2668 */
0x2ee, /* FARCALL32i*/
/* Table2669 */
0x116b, /* WAIT*/
/* Table2670 */
0x87b, /* PUSHF64*/
/* Table2671 */
0x807, /* POPF64*/
/* Table2672 */
0x92f, /* SAHF*/
/* Table2673 */
0x430, /* LAHF*/
/* Table2674 */
0x62f, /* MOVSB*/
/* Table2675 */
0x63b, /* MOVSQ*/
/* Table2676 */
0x235, /* CMPS8*/
/* Table2677 */
0x234, /* CMPS64*/
/* Table2678 */
0xaa7, /* TEST8i8*/
/* Table2679 */
0xaa2, /* TEST64i32*/
/* Table2680 */
0xa16, /* STOSB*/
/* Table2681 */
0xa18, /* STOSQ*/
/* Table2682 */
0x4aa, /* LODSB*/
/* Table2683 */
0x4ac, /* LODSQ*/
/* Table2684 */
0x971, /* SCAS8*/
/* Table2685 */
0x970, /* SCAS64*/
/* Table2686 */
0x5ef, /* MOV8ri*/
/* Table2687 */
0x5ef, /* MOV8ri*/
/* Table2688 */
0x5ef, /* MOV8ri*/
/* Table2689 */
0x5ef, /* MOV8ri*/
/* Table2690 */
0x5ef, /* MOV8ri*/
/* Table2691 */
0x5ef, /* MOV8ri*/
/* Table2692 */
0x5ef, /* MOV8ri*/
/* Table2693 */
0x5ef, /* MOV8ri*/
/* Table2694 */
0x5dd, /* MOV64ri*/
/* Table2695 */
0x5dd, /* MOV64ri*/
/* Table2696 */
0x5dd, /* MOV64ri*/
/* Table2697 */
0x5dd, /* MOV64ri*/
/* Table2698 */
0x5dd, /* MOV64ri*/
/* Table2699 */
0x5dd, /* MOV64ri*/
/* Table2700 */
0x5dd, /* MOV64ri*/
/* Table2701 */
0x5dd, /* MOV64ri*/
/* Table2702 */
0x8fc, /* ROL8mi*/
0x914, /* ROR8mi*/
0x89d, /* RCL8mi*/
0x8bd, /* RCR8mi*/
0x9af, /* SHL8mi*/
0x9d7, /* SHR8mi*/
0, /* PHI*/
0x944, /* SAR8mi*/
0x8ff, /* ROL8ri*/
0x917, /* ROR8ri*/
0x8a0, /* RCL8ri*/
0x8c0, /* RCR8ri*/
0x9b2, /* SHL8ri*/
0x9da, /* SHR8ri*/
0, /* PHI*/
0x947, /* SAR8ri*/
/* Table2703 */
0x8f6, /* ROL64mi*/
0x90e, /* ROR64mi*/
0x897, /* RCL64mi*/
0x8b7, /* RCR64mi*/
0x9a9, /* SHL64mi*/
0x9d1, /* SHR64mi*/
0, /* PHI*/
0x93e, /* SAR64mi*/
0x8f9, /* ROL64ri*/
0x911, /* ROR64ri*/
0x89a, /* RCL64ri*/
0x8ba, /* RCR64ri*/
0x9ac, /* SHL64ri*/
0x9d4, /* SHR64ri*/
0, /* PHI*/
0x941, /* SAR64ri*/
/* Table2704 */
0x8e4, /* RETI*/
/* Table2705 */
0x8e3, /* RET*/
/* Table2706 */
0x45a, /* LES32rm*/
0, /* PHI*/
/* Table2707 */
0x440, /* LDS32rm*/
0, /* PHI*/
/* Table2708 */
0x5ea, /* MOV8mi*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x1175, /* XABORT*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
/* Table2709 */
0x5d7, /* MOV64mi32*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x5de, /* MOV64ri32*/
0x5de, /* MOV64ri32*/
0x5de, /* MOV64ri32*/
0x5de, /* MOV64ri32*/
0x5de, /* MOV64ri32*/
0x5de, /* MOV64ri32*/
0x5de, /* MOV64ri32*/
0x5de, /* MOV64ri32*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x117f, /* XBEGIN_4*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
/* Table2710 */
0x2e5, /* ENTER*/
/* Table2711 */
0x458, /* LEAVE64*/
/* Table2712 */
0x4b1, /* LRETI*/
/* Table2713 */
0x4b4, /* LRETQ*/
/* Table2714 */
0x39b, /* INT3*/
/* Table2715 */
0x39a, /* INT*/
/* Table2716 */
0x39c, /* INTO*/
/* Table2717 */
0x3a9, /* IRET64*/
/* Table2718 */
0x8fa, /* ROL8m1*/
0x912, /* ROR8m1*/
0x89b, /* RCL8m1*/
0x8bb, /* RCR8m1*/
0x9ad, /* SHL8m1*/
0x9d5, /* SHR8m1*/
0, /* PHI*/
0x942, /* SAR8m1*/
0x8fd, /* ROL8r1*/
0x915, /* ROR8r1*/
0x89e, /* RCL8r1*/
0x8be, /* RCR8r1*/
0x9b0, /* SHL8r1*/
0x9d8, /* SHR8r1*/
0, /* PHI*/
0x945, /* SAR8r1*/
/* Table2719 */
0x8f4, /* ROL64m1*/
0x90c, /* ROR64m1*/
0x895, /* RCL64m1*/
0x8b5, /* RCR64m1*/
0x9a7, /* SHL64m1*/
0x9cf, /* SHR64m1*/
0, /* PHI*/
0x93c, /* SAR64m1*/
0x8f7, /* ROL64r1*/
0x90f, /* ROR64r1*/
0x898, /* RCL64r1*/
0x8b8, /* RCR64r1*/
0x9aa, /* SHL64r1*/
0x9d2, /* SHR64r1*/
0, /* PHI*/
0x93f, /* SAR64r1*/
/* Table2720 */
0x8fb, /* ROL8mCL*/
0x913, /* ROR8mCL*/
0x89c, /* RCL8mCL*/
0x8bc, /* RCR8mCL*/
0x9ae, /* SHL8mCL*/
0x9d6, /* SHR8mCL*/
0, /* PHI*/
0x943, /* SAR8mCL*/
0x8fe, /* ROL8rCL*/
0x916, /* ROR8rCL*/
0x89f, /* RCL8rCL*/
0x8bf, /* RCR8rCL*/
0x9b1, /* SHL8rCL*/
0x9d9, /* SHR8rCL*/
0, /* PHI*/
0x946, /* SAR8rCL*/
/* Table2721 */
0x8f5, /* ROL64mCL*/
0x90d, /* ROR64mCL*/
0x896, /* RCL64mCL*/
0x8b6, /* RCR64mCL*/
0x9a8, /* SHL64mCL*/
0x9d0, /* SHR64mCL*/
0, /* PHI*/
0x93d, /* SAR64mCL*/
0x8f8, /* ROL64rCL*/
0x910, /* ROR64rCL*/
0x899, /* RCL64rCL*/
0x8b9, /* RCR64rCL*/
0x9ab, /* SHL64rCL*/
0x9d3, /* SHR64rCL*/
0, /* PHI*/
0x940, /* SAR64rCL*/
/* Table2722 */
0x1194, /* XLAT*/
/* Table2723 */
0x82, /* ADD_F32m*/
0x689, /* MUL_F32m*/
0x2f8, /* FCOM32m*/
0x2fa, /* FCOMP32m*/
0xa70, /* SUB_F32m*/
0xa56, /* SUBR_F32m*/
0x2c4, /* DIV_F32m*/
0x2aa, /* DIVR_F32m*/
0x87, /* ADD_FST0r*/
0x68e, /* MUL_FST0r*/
0x24f, /* COM_FST0r*/
0x24c, /* COMP_FST0r*/
0xa75, /* SUB_FST0r*/
0xa5b, /* SUBR_FST0r*/
0x2c9, /* DIV_FST0r*/
0x2af, /* DIVR_FST0r*/
/* Table2724 */
0x443, /* LD_F32m*/
0, /* PHI*/
0xa1e, /* ST_F32m*/
0xa20, /* ST_FP32m*/
0x306, /* FLDENVm*/
0x305, /* FLDCW16m*/
0x324, /* FSTENVm*/
0x30f, /* FNSTCW16m*/
0x452, /* LD_Frr*/
0x452, /* LD_Frr*/
0x452, /* LD_Frr*/
0x452, /* LD_Frr*/
0x452, /* LD_Frr*/
0x452, /* LD_Frr*/
0x452, /* LD_Frr*/
0x452, /* LD_Frr*/
0x118c, /* XCH_F*/
0x118c, /* XCH_F*/
0x118c, /* XCH_F*/
0x118c, /* XCH_F*/
0x118c, /* XCH_F*/
0x118c, /* XCH_F*/
0x118c, /* XCH_F*/
0x118c, /* XCH_F*/
0x30e, /* FNOP*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x16e, /* CHS_F*/
0x19, /* ABS_F*/
0, /* PHI*/
0, /* PHI*/
0xab5, /* TST_F*/
0x326, /* FXAM*/
0, /* PHI*/
0, /* PHI*/
0x442, /* LD_F1*/
0x308, /* FLDL2T*/
0x307, /* FLDL2E*/
0x30b, /* FLDPI*/
0x309, /* FLDLG2*/
0x30a, /* FLDLN2*/
0x441, /* LD_F0*/
0, /* PHI*/
0x2eb, /* F2XM1*/
0x32c, /* FYL2X*/
0x31e, /* FPTAN*/
0x31b, /* FPATAN*/
0x32b, /* FXTRACT*/
0x31d, /* FPREM1*/
0x2fd, /* FDECSTP*/
0x304, /* FINCSTP*/
0x31c, /* FPREM*/
0x32d, /* FYL2XP1*/
0xa0b, /* SQRT_F*/
0x323, /* FSINCOS*/
0x31f, /* FRNDINT*/
0x322, /* FSCALE*/
0x9f1, /* SIN_F*/
0x250, /* COS_F*/
/* Table2725 */
0x85, /* ADD_FI32m*/
0x68c, /* MUL_FI32m*/
0x301, /* FICOM32m*/
0x303, /* FICOMP32m*/
0xa73, /* SUB_FI32m*/
0xa59, /* SUBR_FI32m*/
0x2c7, /* DIV_FI32m*/
0x2ad, /* DIVR_FI32m*/
0x196, /* CMOVB_F*/
0x196, /* CMOVB_F*/
0x196, /* CMOVB_F*/
0x196, /* CMOVB_F*/
0x196, /* CMOVB_F*/
0x196, /* CMOVB_F*/
0x196, /* CMOVB_F*/
0x196, /* CMOVB_F*/
0x1a0, /* CMOVE_F*/
0x1a0, /* CMOVE_F*/
0x1a0, /* CMOVE_F*/
0x1a0, /* CMOVE_F*/
0x1a0, /* CMOVE_F*/
0x1a0, /* CMOVE_F*/
0x1a0, /* CMOVE_F*/
0x1a0, /* CMOVE_F*/
0x192, /* CMOVBE_F*/
0x192, /* CMOVBE_F*/
0x192, /* CMOVBE_F*/
0x192, /* CMOVBE_F*/
0x192, /* CMOVBE_F*/
0x192, /* CMOVBE_F*/
0x192, /* CMOVBE_F*/
0x192, /* CMOVBE_F*/
0x1f0, /* CMOVP_F*/
0x1f0, /* CMOVP_F*/
0x1f0, /* CMOVP_F*/
0x1f0, /* CMOVP_F*/
0x1f0, /* CMOVP_F*/
0x1f0, /* CMOVP_F*/
0x1f0, /* CMOVP_F*/
0x1f0, /* CMOVP_F*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0xac5, /* UCOM_FPPr*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
/* Table2726 */
0x35c, /* ILD_F32m*/
0x3ab, /* ISTT_FP32m*/
0x3b7, /* IST_F32m*/
0x3b9, /* IST_FP32m*/
0, /* PHI*/
0x445, /* LD_F80m*/
0, /* PHI*/
0xa22, /* ST_FP80m*/
0x1c0, /* CMOVNB_F*/
0x1c0, /* CMOVNB_F*/
0x1c0, /* CMOVNB_F*/
0x1c0, /* CMOVNB_F*/
0x1c0, /* CMOVNB_F*/
0x1c0, /* CMOVNB_F*/
0x1c0, /* CMOVNB_F*/
0x1c0, /* CMOVNB_F*/
0x1ca, /* CMOVNE_F*/
0x1ca, /* CMOVNE_F*/
0x1ca, /* CMOVNE_F*/
0x1ca, /* CMOVNE_F*/
0x1ca, /* CMOVNE_F*/
0x1ca, /* CMOVNE_F*/
0x1ca, /* CMOVNE_F*/
0x1ca, /* CMOVNE_F*/
0x1bc, /* CMOVNBE_F*/
0x1bc, /* CMOVNBE_F*/
0x1bc, /* CMOVNBE_F*/
0x1bc, /* CMOVNBE_F*/
0x1bc, /* CMOVNBE_F*/
0x1bc, /* CMOVNBE_F*/
0x1bc, /* CMOVNBE_F*/
0x1bc, /* CMOVNBE_F*/
0x1da, /* CMOVNP_F*/
0x1da, /* CMOVNP_F*/
0x1da, /* CMOVNP_F*/
0x1da, /* CMOVNP_F*/
0x1da, /* CMOVNP_F*/
0x1da, /* CMOVNP_F*/
0x1da, /* CMOVNP_F*/
0x1da, /* CMOVNP_F*/
0, /* PHI*/
0, /* PHI*/
0x30c, /* FNCLEX*/
0x30d, /* FNINIT*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0xac4, /* UCOM_FIr*/
0xac4, /* UCOM_FIr*/
0xac4, /* UCOM_FIr*/
0xac4, /* UCOM_FIr*/
0xac4, /* UCOM_FIr*/
0xac4, /* UCOM_FIr*/
0xac4, /* UCOM_FIr*/
0xac4, /* UCOM_FIr*/
0x24e, /* COM_FIr*/
0x24e, /* COM_FIr*/
0x24e, /* COM_FIr*/
0x24e, /* COM_FIr*/
0x24e, /* COM_FIr*/
0x24e, /* COM_FIr*/
0x24e, /* COM_FIr*/
0x24e, /* COM_FIr*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
/* Table2727 */
0x83, /* ADD_F64m*/
0x68a, /* MUL_F64m*/
0x2f9, /* FCOM64m*/
0x2fb, /* FCOMP64m*/
0xa71, /* SUB_F64m*/
0xa57, /* SUBR_F64m*/
0x2c5, /* DIV_F64m*/
0x2ab, /* DIVR_F64m*/
0x96, /* ADD_FrST0*/
0x69d, /* MUL_FrST0*/
0, /* PHI*/
0, /* PHI*/
0xa67, /* SUBR_FrST0*/
0xa84, /* SUB_FrST0*/
0x2bb, /* DIVR_FrST0*/
0x2d8, /* DIV_FrST0*/
/* Table2728 */
0x444, /* LD_F64m*/
0x3ac, /* ISTT_FP64m*/
0xa1f, /* ST_F64m*/
0xa21, /* ST_FP64m*/
0x320, /* FRSTORm*/
0, /* PHI*/
0x321, /* FSAVEm*/
0x311, /* FNSTSWm*/
0x2ff, /* FFREE*/
0, /* PHI*/
0xa2f, /* ST_Frr*/
0xa23, /* ST_FPrr*/
0xacd, /* UCOM_Fr*/
0xac6, /* UCOM_FPr*/
0, /* PHI*/
0, /* PHI*/
/* Table2729 */
0x84, /* ADD_FI16m*/
0x68b, /* MUL_FI16m*/
0x300, /* FICOM16m*/
0x302, /* FICOMP16m*/
0xa72, /* SUB_FI16m*/
0xa58, /* SUBR_FI16m*/
0x2c6, /* DIV_FI16m*/
0x2ac, /* DIVR_FI16m*/
0x86, /* ADD_FPrST0*/
0x86, /* ADD_FPrST0*/
0x86, /* ADD_FPrST0*/
0x86, /* ADD_FPrST0*/
0x86, /* ADD_FPrST0*/
0x86, /* ADD_FPrST0*/
0x86, /* ADD_FPrST0*/
0x86, /* ADD_FPrST0*/
0x68d, /* MUL_FPrST0*/
0x68d, /* MUL_FPrST0*/
0x68d, /* MUL_FPrST0*/
0x68d, /* MUL_FPrST0*/
0x68d, /* MUL_FPrST0*/
0x68d, /* MUL_FPrST0*/
0x68d, /* MUL_FPrST0*/
0x68d, /* MUL_FPrST0*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x2fc, /* FCOMPP*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0xa5a, /* SUBR_FPrST0*/
0xa5a, /* SUBR_FPrST0*/
0xa5a, /* SUBR_FPrST0*/
0xa5a, /* SUBR_FPrST0*/
0xa5a, /* SUBR_FPrST0*/
0xa5a, /* SUBR_FPrST0*/
0xa5a, /* SUBR_FPrST0*/
0xa5a, /* SUBR_FPrST0*/
0xa74, /* SUB_FPrST0*/
0xa74, /* SUB_FPrST0*/
0xa74, /* SUB_FPrST0*/
0xa74, /* SUB_FPrST0*/
0xa74, /* SUB_FPrST0*/
0xa74, /* SUB_FPrST0*/
0xa74, /* SUB_FPrST0*/
0xa74, /* SUB_FPrST0*/
0x2ae, /* DIVR_FPrST0*/
0x2ae, /* DIVR_FPrST0*/
0x2ae, /* DIVR_FPrST0*/
0x2ae, /* DIVR_FPrST0*/
0x2ae, /* DIVR_FPrST0*/
0x2ae, /* DIVR_FPrST0*/
0x2ae, /* DIVR_FPrST0*/
0x2ae, /* DIVR_FPrST0*/
0x2c8, /* DIV_FPrST0*/
0x2c8, /* DIV_FPrST0*/
0x2c8, /* DIV_FPrST0*/
0x2c8, /* DIV_FPrST0*/
0x2c8, /* DIV_FPrST0*/
0x2c8, /* DIV_FPrST0*/
0x2c8, /* DIV_FPrST0*/
0x2c8, /* DIV_FPrST0*/
/* Table2730 */
0x35b, /* ILD_F16m*/
0x3aa, /* ISTT_FP16m*/
0x3b6, /* IST_F16m*/
0x3b8, /* IST_FP16m*/
0x2f6, /* FBLDm*/
0x35d, /* ILD_F64m*/
0x2f7, /* FBSTPm*/
0x3ba, /* IST_FP64m*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x310, /* FNSTSW16r*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0xac3, /* UCOM_FIPr*/
0xac3, /* UCOM_FIPr*/
0xac3, /* UCOM_FIPr*/
0xac3, /* UCOM_FIPr*/
0xac3, /* UCOM_FIPr*/
0xac3, /* UCOM_FIPr*/
0xac3, /* UCOM_FIPr*/
0xac3, /* UCOM_FIPr*/
0x24d, /* COM_FIPr*/
0x24d, /* COM_FIPr*/
0x24d, /* COM_FIPr*/
0x24d, /* COM_FIPr*/
0x24d, /* COM_FIPr*/
0x24d, /* COM_FIPr*/
0x24d, /* COM_FIPr*/
0x24d, /* COM_FIPr*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
/* Table2731 */
0x4b0, /* LOOPNE*/
/* Table2732 */
0x4af, /* LOOPE*/
/* Table2733 */
0x4ae, /* LOOP*/
/* Table2734 */
0x42d, /* JRCXZ*/
/* Table2735 */
0x388, /* IN8ri*/
/* Table2736 */
0x385, /* IN32ri*/
/* Table2737 */
0x706, /* OUT8ir*/
/* Table2738 */
0x704, /* OUT32ir*/
/* Table2739 */
0x167, /* CALL64pcrel32*/
/* Table2740 */
0x41d, /* JMP64pcrel32*/
/* Table2741 */
0x2f3, /* FARJMP32i*/
/* Table2742 */
0x41f, /* JMP_1*/
/* Table2743 */
0x389, /* IN8rr*/
/* Table2744 */
0x386, /* IN32rr*/
/* Table2745 */
0x707, /* OUT8rr*/
/* Table2746 */
0x705, /* OUT32rr*/
/* Table2747 */
0x493, /* LOCK_PREFIX*/
/* Table2748 */
0x8d3, /* REPNE_PREFIX*/
/* Table2749 */
0x8db, /* REP_PREFIX*/
/* Table2750 */
0x34e, /* HLT*/
/* Table2751 */
0x179, /* CMC*/
/* Table2752 */
0xaa8, /* TEST8mi*/
0, /* PHI*/
0x6d9, /* NOT8m*/
0x6ce, /* NEG8m*/
0x677, /* MUL8m*/
0x37f, /* IMUL8m*/
0x2a4, /* DIV8m*/
0x359, /* IDIV8m*/
0xaa9, /* TEST8ri*/
0, /* PHI*/
0x6da, /* NOT8r*/
0x6cf, /* NEG8r*/
0x678, /* MUL8r*/
0x380, /* IMUL8r*/
0x2a5, /* DIV8r*/
0x35a, /* IDIV8r*/
/* Table2753 */
0xaa3, /* TEST64mi32*/
0, /* PHI*/
0x6d7, /* NOT64m*/
0x6cc, /* NEG64m*/
0x675, /* MUL64m*/
0x377, /* IMUL64m*/
0x2a2, /* DIV64m*/
0x357, /* IDIV64m*/
0xaa4, /* TEST64ri32*/
0, /* PHI*/
0x6d8, /* NOT64r*/
0x6cd, /* NEG64r*/
0x676, /* MUL64r*/
0x378, /* IMUL64r*/
0x2a3, /* DIV64r*/
0x358, /* IDIV64r*/
/* Table2754 */
0x173, /* CLC*/
/* Table2755 */
0xa11, /* STC*/
/* Table2756 */
0x177, /* CLI*/
/* Table2757 */
0xa14, /* STI*/
/* Table2758 */
0x174, /* CLD*/
/* Table2759 */
0xa12, /* STD*/
/* Table2760 */
0x394, /* INC8m*/
0x29c, /* DEC8m*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x395, /* INC8r*/
0x29d, /* DEC8r*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
/* Table2761 */
0x392, /* INC64m*/
0x29a, /* DEC64m*/
0x166, /* CALL64m*/
0x2f0, /* FARCALL64*/
0x41c, /* JMP64m*/
0x2f5, /* FARJMP64*/
0x870, /* PUSH64rmm*/
0, /* PHI*/
0x393, /* INC64r*/
0x29b, /* DEC64r*/
0x168, /* CALL64r*/
0, /* PHI*/
0x41e, /* JMP64r*/
0, /* PHI*/
0x871, /* PUSH64rmr*/
0, /* PHI*/
/* Table2762 */
0x6d, /* ADD8mr*/
0x70, /* ADD8rr*/
/* Table2763 */
0x62, /* ADD64mr*/
0x68, /* ADD64rr*/
/* Table2764 */
0x6f, /* ADD8rm*/
0x71, /* ADD8rr_REV*/
/* Table2765 */
0x67, /* ADD64rm*/
0x6a, /* ADD64rr_REV*/
/* Table2766 */
0x6b, /* ADD8i8*/
/* Table2767 */
0x5f, /* ADD64i32*/
/* Table2768 */
0x6f9, /* OR8mr*/
0x6fc, /* OR8rr*/
/* Table2769 */
0x6f1, /* OR64mr*/
0x6f5, /* OR64rr*/
/* Table2770 */
0x6fb, /* OR8rm*/
0x6fd, /* OR8rr_REV*/
/* Table2771 */
0x6f4, /* OR64rm*/
0x6f6, /* OR64rr_REV*/
/* Table2772 */
0x6f7, /* OR8i8*/
/* Table2773 */
0x6ee, /* OR64i32*/
/* Table2774 */
0x3e, /* ADC8mr*/
0x41, /* ADC8rr*/
/* Table2775 */
0x36, /* ADC64mr*/
0x3a, /* ADC64rr*/
/* Table2776 */
0x40, /* ADC8rm*/
0x42, /* ADC8rr_REV*/
/* Table2777 */
0x39, /* ADC64rm*/
0x3b, /* ADC64rr_REV*/
/* Table2778 */
0x3c, /* ADC8i8*/
/* Table2779 */
0x33, /* ADC64i32*/
/* Table2780 */
0x969, /* SBB8mr*/
0x96c, /* SBB8rr*/
/* Table2781 */
0x961, /* SBB64mr*/
0x965, /* SBB64rr*/
/* Table2782 */
0x96b, /* SBB8rm*/
0x96d, /* SBB8rr_REV*/
/* Table2783 */
0x964, /* SBB64rm*/
0x966, /* SBB64rr_REV*/
/* Table2784 */
0x967, /* SBB8i8*/
/* Table2785 */
0x95e, /* SBB64i32*/
/* Table2786 */
0xc8, /* AND8mr*/
0xcb, /* AND8rr*/
/* Table2787 */
0xc0, /* AND64mr*/
0xc4, /* AND64rr*/
/* Table2788 */
0xca, /* AND8rm*/
0xcc, /* AND8rr_REV*/
/* Table2789 */
0xc3, /* AND64rm*/
0xc5, /* AND64rr_REV*/
/* Table2790 */
0xc6, /* AND8i8*/
/* Table2791 */
0xbd, /* AND64i32*/
/* Table2792 */
0x2e6, /* ES_PREFIX*/
/* Table2793 */
0xa4d, /* SUB8mr*/
0xa50, /* SUB8rr*/
/* Table2794 */
0xa45, /* SUB64mr*/
0xa49, /* SUB64rr*/
/* Table2795 */
0xa4f, /* SUB8rm*/
0xa51, /* SUB8rr_REV*/
/* Table2796 */
0xa48, /* SUB64rm*/
0xa4a, /* SUB64rr_REV*/
/* Table2797 */
0xa4b, /* SUB8i8*/
/* Table2798 */
0xa42, /* SUB64i32*/
/* Table2799 */
0x260, /* CS_PREFIX*/
/* Table2800 */
0x11b2, /* XOR8mr*/
0x11b5, /* XOR8rr*/
/* Table2801 */
0x11aa, /* XOR64mr*/
0x11ae, /* XOR64rr*/
/* Table2802 */
0x11b4, /* XOR8rm*/
0x11b6, /* XOR8rr_REV*/
/* Table2803 */
0x11ad, /* XOR64rm*/
0x11af, /* XOR64rr_REV*/
/* Table2804 */
0x11b0, /* XOR8i8*/
/* Table2805 */
0x11a7, /* XOR64i32*/
/* Table2806 */
0xa0f, /* SS_PREFIX*/
/* Table2807 */
0x225, /* CMP8mr*/
0x228, /* CMP8rr*/
/* Table2808 */
0x21d, /* CMP64mr*/
0x221, /* CMP64rr*/
/* Table2809 */
0x227, /* CMP8rm*/
0x229, /* CMP8rr_REV*/
/* Table2810 */
0x220, /* CMP64rm*/
0x222, /* CMP64rr_REV*/
/* Table2811 */
0x223, /* CMP8i8*/
/* Table2812 */
0x21a, /* CMP64i32*/
/* Table2813 */
0x2dd, /* DS_PREFIX*/
/* Table2814 */
0x8e7, /* REX64_PREFIX*/
/* Table2815 */
0x86f, /* PUSH64r*/
/* Table2816 */
0x86f, /* PUSH64r*/
/* Table2817 */
0x86f, /* PUSH64r*/
/* Table2818 */
0x86f, /* PUSH64r*/
/* Table2819 */
0x86f, /* PUSH64r*/
/* Table2820 */
0x86f, /* PUSH64r*/
/* Table2821 */
0x86f, /* PUSH64r*/
/* Table2822 */
0x86f, /* PUSH64r*/
/* Table2823 */
0x7f7, /* POP64r*/
/* Table2824 */
0x7f7, /* POP64r*/
/* Table2825 */
0x7f7, /* POP64r*/
/* Table2826 */
0x7f7, /* POP64r*/
/* Table2827 */
0x7f7, /* POP64r*/
/* Table2828 */
0x7f7, /* POP64r*/
/* Table2829 */
0x7f7, /* POP64r*/
/* Table2830 */
0x7f7, /* POP64r*/
/* Table2831 */
0x64a, /* MOVSX64rm32*/
0x64d, /* MOVSX64rr32*/
/* Table2832 */
0x325, /* FS_PREFIX*/
/* Table2833 */
0x349, /* GS_PREFIX*/
/* Table2834 */
0x291, /* DATA16_PREFIX*/
/* Table2835 */
0x86d, /* PUSH64i32*/
/* Table2836 */
0x37a, /* IMUL64rmi32*/
0x37d, /* IMUL64rri32*/
/* Table2837 */
0x86e, /* PUSH64i8*/
/* Table2838 */
0x37b, /* IMUL64rmi8*/
0x37e, /* IMUL64rri8*/
/* Table2839 */
0x387, /* IN8*/
/* Table2840 */
0x384, /* IN32*/
/* Table2841 */
0x708, /* OUTSB*/
/* Table2842 */
0x709, /* OUTSD*/
/* Table2843 */
0x429, /* JO_1*/
/* Table2844 */
0x423, /* JNO_1*/
/* Table2845 */
0x40b, /* JB_1*/
/* Table2846 */
0x405, /* JAE_1*/
/* Table2847 */
0x410, /* JE_1*/
/* Table2848 */
0x421, /* JNE_1*/
/* Table2849 */
0x409, /* JBE_1*/
/* Table2850 */
0x407, /* JA_1*/
/* Table2851 */
0x42e, /* JS_1*/
/* Table2852 */
0x427, /* JNS_1*/
/* Table2853 */
0x42b, /* JP_1*/
/* Table2854 */
0x425, /* JNP_1*/
/* Table2855 */
0x418, /* JL_1*/
/* Table2856 */
0x412, /* JGE_1*/
/* Table2857 */
0x416, /* JLE_1*/
/* Table2858 */
0x414, /* JG_1*/
/* Table2859 */
0x6c, /* ADD8mi*/
0x6f8, /* OR8mi*/
0x3d, /* ADC8mi*/
0x968, /* SBB8mi*/
0xc7, /* AND8mi*/
0xa4c, /* SUB8mi*/
0x11b1, /* XOR8mi*/
0x224, /* CMP8mi*/
0x6e, /* ADD8ri*/
0x6fa, /* OR8ri*/
0x3f, /* ADC8ri*/
0x96a, /* SBB8ri*/
0xc9, /* AND8ri*/
0xa4e, /* SUB8ri*/
0x11b3, /* XOR8ri*/
0x226, /* CMP8ri*/
/* Table2860 */
0x60, /* ADD64mi32*/
0x6ef, /* OR64mi32*/
0x34, /* ADC64mi32*/
0x95f, /* SBB64mi32*/
0xbe, /* AND64mi32*/
0xa43, /* SUB64mi32*/
0x11a8, /* XOR64mi32*/
0x21b, /* CMP64mi32*/
0x63, /* ADD64ri32*/
0x6f2, /* OR64ri32*/
0x37, /* ADC64ri32*/
0x962, /* SBB64ri32*/
0xc1, /* AND64ri32*/
0xa46, /* SUB64ri32*/
0x11ab, /* XOR64ri32*/
0x21e, /* CMP64ri32*/
/* Table2861 */
0x61, /* ADD64mi8*/
0x6f0, /* OR64mi8*/
0x35, /* ADC64mi8*/
0x960, /* SBB64mi8*/
0xbf, /* AND64mi8*/
0xa44, /* SUB64mi8*/
0x11a9, /* XOR64mi8*/
0x21c, /* CMP64mi8*/
0x65, /* ADD64ri8*/
0x6f3, /* OR64ri8*/
0x38, /* ADC64ri8*/
0x963, /* SBB64ri8*/
0xc2, /* AND64ri8*/
0xa47, /* SUB64ri8*/
0x11ac, /* XOR64ri8*/
0x21f, /* CMP64ri8*/
/* Table2862 */
0xaab, /* TEST8rm*/
0xaac, /* TEST8rr*/
/* Table2863 */
0xaa5, /* TEST64rm*/
0xaa6, /* TEST64rr*/
/* Table2864 */
0x118a, /* XCHG8rm*/
0x118b, /* XCHG8rr*/
/* Table2865 */
0x1188, /* XCHG64rm*/
0x1189, /* XCHG64rr*/
/* Table2866 */
0x5eb, /* MOV8mr*/
0x5f2, /* MOV8rr*/
/* Table2867 */
0x5d8, /* MOV64mr*/
0x5e1, /* MOV64rr*/
/* Table2868 */
0x5f0, /* MOV8rm*/
0x5f4, /* MOV8rr_REV*/
/* Table2869 */
0x5e0, /* MOV64rm*/
0x5e2, /* MOV64rr_REV*/
/* Table2870 */
0x5d9, /* MOV64ms*/
0x5e3, /* MOV64rs*/
/* Table2871 */
0x456, /* LEA64r*/
0, /* PHI*/
/* Table2872 */
0x5e4, /* MOV64sm*/
0x5e5, /* MOV64sr*/
/* Table2873 */
0x7f8, /* POP64rmm*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x7f9, /* POP64rmr*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
/* Table2874 */
0x6d0, /* NOOP*/
/* Table2875 */
0x1187, /* XCHG64ar*/
/* Table2876 */
0x1187, /* XCHG64ar*/
/* Table2877 */
0x1187, /* XCHG64ar*/
/* Table2878 */
0x1187, /* XCHG64ar*/
/* Table2879 */
0x1187, /* XCHG64ar*/
/* Table2880 */
0x1187, /* XCHG64ar*/
/* Table2881 */
0x1187, /* XCHG64ar*/
/* Table2882 */
0x16d, /* CDQE*/
/* Table2883 */
0x255, /* CQO*/
/* Table2884 */
0x2ee, /* FARCALL32i*/
/* Table2885 */
0x116b, /* WAIT*/
/* Table2886 */
0x87b, /* PUSHF64*/
/* Table2887 */
0x807, /* POPF64*/
/* Table2888 */
0x92f, /* SAHF*/
/* Table2889 */
0x430, /* LAHF*/
/* Table2890 */
0x62f, /* MOVSB*/
/* Table2891 */
0x63b, /* MOVSQ*/
/* Table2892 */
0x235, /* CMPS8*/
/* Table2893 */
0x234, /* CMPS64*/
/* Table2894 */
0xaa7, /* TEST8i8*/
/* Table2895 */
0xaa2, /* TEST64i32*/
/* Table2896 */
0xa16, /* STOSB*/
/* Table2897 */
0xa18, /* STOSQ*/
/* Table2898 */
0x4aa, /* LODSB*/
/* Table2899 */
0x4ac, /* LODSQ*/
/* Table2900 */
0x971, /* SCAS8*/
/* Table2901 */
0x970, /* SCAS64*/
/* Table2902 */
0x5ef, /* MOV8ri*/
/* Table2903 */
0x5ef, /* MOV8ri*/
/* Table2904 */
0x5ef, /* MOV8ri*/
/* Table2905 */
0x5ef, /* MOV8ri*/
/* Table2906 */
0x5ef, /* MOV8ri*/
/* Table2907 */
0x5ef, /* MOV8ri*/
/* Table2908 */
0x5ef, /* MOV8ri*/
/* Table2909 */
0x5ef, /* MOV8ri*/
/* Table2910 */
0x5dd, /* MOV64ri*/
/* Table2911 */
0x5dd, /* MOV64ri*/
/* Table2912 */
0x5dd, /* MOV64ri*/
/* Table2913 */
0x5dd, /* MOV64ri*/
/* Table2914 */
0x5dd, /* MOV64ri*/
/* Table2915 */
0x5dd, /* MOV64ri*/
/* Table2916 */
0x5dd, /* MOV64ri*/
/* Table2917 */
0x5dd, /* MOV64ri*/
/* Table2918 */
0x8fc, /* ROL8mi*/
0x914, /* ROR8mi*/
0x89d, /* RCL8mi*/
0x8bd, /* RCR8mi*/
0x9af, /* SHL8mi*/
0x9d7, /* SHR8mi*/
0, /* PHI*/
0x944, /* SAR8mi*/
0x8ff, /* ROL8ri*/
0x917, /* ROR8ri*/
0x8a0, /* RCL8ri*/
0x8c0, /* RCR8ri*/
0x9b2, /* SHL8ri*/
0x9da, /* SHR8ri*/
0, /* PHI*/
0x947, /* SAR8ri*/
/* Table2919 */
0x8f6, /* ROL64mi*/
0x90e, /* ROR64mi*/
0x897, /* RCL64mi*/
0x8b7, /* RCR64mi*/
0x9a9, /* SHL64mi*/
0x9d1, /* SHR64mi*/
0, /* PHI*/
0x93e, /* SAR64mi*/
0x8f9, /* ROL64ri*/
0x911, /* ROR64ri*/
0x89a, /* RCL64ri*/
0x8ba, /* RCR64ri*/
0x9ac, /* SHL64ri*/
0x9d4, /* SHR64ri*/
0, /* PHI*/
0x941, /* SAR64ri*/
/* Table2920 */
0x8e4, /* RETI*/
/* Table2921 */
0x8e3, /* RET*/
/* Table2922 */
0x45a, /* LES32rm*/
0, /* PHI*/
/* Table2923 */
0x440, /* LDS32rm*/
0, /* PHI*/
/* Table2924 */
0x5ea, /* MOV8mi*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x1175, /* XABORT*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
/* Table2925 */
0x5d7, /* MOV64mi32*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x5de, /* MOV64ri32*/
0x5de, /* MOV64ri32*/
0x5de, /* MOV64ri32*/
0x5de, /* MOV64ri32*/
0x5de, /* MOV64ri32*/
0x5de, /* MOV64ri32*/
0x5de, /* MOV64ri32*/
0x5de, /* MOV64ri32*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x117f, /* XBEGIN_4*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
/* Table2926 */
0x2e5, /* ENTER*/
/* Table2927 */
0x458, /* LEAVE64*/
/* Table2928 */
0x4b1, /* LRETI*/
/* Table2929 */
0x4b4, /* LRETQ*/
/* Table2930 */
0x39b, /* INT3*/
/* Table2931 */
0x39a, /* INT*/
/* Table2932 */
0x39c, /* INTO*/
/* Table2933 */
0x3a9, /* IRET64*/
/* Table2934 */
0x8fa, /* ROL8m1*/
0x912, /* ROR8m1*/
0x89b, /* RCL8m1*/
0x8bb, /* RCR8m1*/
0x9ad, /* SHL8m1*/
0x9d5, /* SHR8m1*/
0, /* PHI*/
0x942, /* SAR8m1*/
0x8fd, /* ROL8r1*/
0x915, /* ROR8r1*/
0x89e, /* RCL8r1*/
0x8be, /* RCR8r1*/
0x9b0, /* SHL8r1*/
0x9d8, /* SHR8r1*/
0, /* PHI*/
0x945, /* SAR8r1*/
/* Table2935 */
0x8f4, /* ROL64m1*/
0x90c, /* ROR64m1*/
0x895, /* RCL64m1*/
0x8b5, /* RCR64m1*/
0x9a7, /* SHL64m1*/
0x9cf, /* SHR64m1*/
0, /* PHI*/
0x93c, /* SAR64m1*/
0x8f7, /* ROL64r1*/
0x90f, /* ROR64r1*/
0x898, /* RCL64r1*/
0x8b8, /* RCR64r1*/
0x9aa, /* SHL64r1*/
0x9d2, /* SHR64r1*/
0, /* PHI*/
0x93f, /* SAR64r1*/
/* Table2936 */
0x8fb, /* ROL8mCL*/
0x913, /* ROR8mCL*/
0x89c, /* RCL8mCL*/
0x8bc, /* RCR8mCL*/
0x9ae, /* SHL8mCL*/
0x9d6, /* SHR8mCL*/
0, /* PHI*/
0x943, /* SAR8mCL*/
0x8fe, /* ROL8rCL*/
0x916, /* ROR8rCL*/
0x89f, /* RCL8rCL*/
0x8bf, /* RCR8rCL*/
0x9b1, /* SHL8rCL*/
0x9d9, /* SHR8rCL*/
0, /* PHI*/
0x946, /* SAR8rCL*/
/* Table2937 */
0x8f5, /* ROL64mCL*/
0x90d, /* ROR64mCL*/
0x896, /* RCL64mCL*/
0x8b6, /* RCR64mCL*/
0x9a8, /* SHL64mCL*/
0x9d0, /* SHR64mCL*/
0, /* PHI*/
0x93d, /* SAR64mCL*/
0x8f8, /* ROL64rCL*/
0x910, /* ROR64rCL*/
0x899, /* RCL64rCL*/
0x8b9, /* RCR64rCL*/
0x9ab, /* SHL64rCL*/
0x9d3, /* SHR64rCL*/
0, /* PHI*/
0x940, /* SAR64rCL*/
/* Table2938 */
0x1194, /* XLAT*/
/* Table2939 */
0x82, /* ADD_F32m*/
0x689, /* MUL_F32m*/
0x2f8, /* FCOM32m*/
0x2fa, /* FCOMP32m*/
0xa70, /* SUB_F32m*/
0xa56, /* SUBR_F32m*/
0x2c4, /* DIV_F32m*/
0x2aa, /* DIVR_F32m*/
0x87, /* ADD_FST0r*/
0x68e, /* MUL_FST0r*/
0x24f, /* COM_FST0r*/
0x24c, /* COMP_FST0r*/
0xa75, /* SUB_FST0r*/
0xa5b, /* SUBR_FST0r*/
0x2c9, /* DIV_FST0r*/
0x2af, /* DIVR_FST0r*/
/* Table2940 */
0x443, /* LD_F32m*/
0, /* PHI*/
0xa1e, /* ST_F32m*/
0xa20, /* ST_FP32m*/
0x306, /* FLDENVm*/
0x305, /* FLDCW16m*/
0x324, /* FSTENVm*/
0x30f, /* FNSTCW16m*/
0x452, /* LD_Frr*/
0x452, /* LD_Frr*/
0x452, /* LD_Frr*/
0x452, /* LD_Frr*/
0x452, /* LD_Frr*/
0x452, /* LD_Frr*/
0x452, /* LD_Frr*/
0x452, /* LD_Frr*/
0x118c, /* XCH_F*/
0x118c, /* XCH_F*/
0x118c, /* XCH_F*/
0x118c, /* XCH_F*/
0x118c, /* XCH_F*/
0x118c, /* XCH_F*/
0x118c, /* XCH_F*/
0x118c, /* XCH_F*/
0x30e, /* FNOP*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x16e, /* CHS_F*/
0x19, /* ABS_F*/
0, /* PHI*/
0, /* PHI*/
0xab5, /* TST_F*/
0x326, /* FXAM*/
0, /* PHI*/
0, /* PHI*/
0x442, /* LD_F1*/
0x308, /* FLDL2T*/
0x307, /* FLDL2E*/
0x30b, /* FLDPI*/
0x309, /* FLDLG2*/
0x30a, /* FLDLN2*/
0x441, /* LD_F0*/
0, /* PHI*/
0x2eb, /* F2XM1*/
0x32c, /* FYL2X*/
0x31e, /* FPTAN*/
0x31b, /* FPATAN*/
0x32b, /* FXTRACT*/
0x31d, /* FPREM1*/
0x2fd, /* FDECSTP*/
0x304, /* FINCSTP*/
0x31c, /* FPREM*/
0x32d, /* FYL2XP1*/
0xa0b, /* SQRT_F*/
0x323, /* FSINCOS*/
0x31f, /* FRNDINT*/
0x322, /* FSCALE*/
0x9f1, /* SIN_F*/
0x250, /* COS_F*/
/* Table2941 */
0x85, /* ADD_FI32m*/
0x68c, /* MUL_FI32m*/
0x301, /* FICOM32m*/
0x303, /* FICOMP32m*/
0xa73, /* SUB_FI32m*/
0xa59, /* SUBR_FI32m*/
0x2c7, /* DIV_FI32m*/
0x2ad, /* DIVR_FI32m*/
0x196, /* CMOVB_F*/
0x196, /* CMOVB_F*/
0x196, /* CMOVB_F*/
0x196, /* CMOVB_F*/
0x196, /* CMOVB_F*/
0x196, /* CMOVB_F*/
0x196, /* CMOVB_F*/
0x196, /* CMOVB_F*/
0x1a0, /* CMOVE_F*/
0x1a0, /* CMOVE_F*/
0x1a0, /* CMOVE_F*/
0x1a0, /* CMOVE_F*/
0x1a0, /* CMOVE_F*/
0x1a0, /* CMOVE_F*/
0x1a0, /* CMOVE_F*/
0x1a0, /* CMOVE_F*/
0x192, /* CMOVBE_F*/
0x192, /* CMOVBE_F*/
0x192, /* CMOVBE_F*/
0x192, /* CMOVBE_F*/
0x192, /* CMOVBE_F*/
0x192, /* CMOVBE_F*/
0x192, /* CMOVBE_F*/
0x192, /* CMOVBE_F*/
0x1f0, /* CMOVP_F*/
0x1f0, /* CMOVP_F*/
0x1f0, /* CMOVP_F*/
0x1f0, /* CMOVP_F*/
0x1f0, /* CMOVP_F*/
0x1f0, /* CMOVP_F*/
0x1f0, /* CMOVP_F*/
0x1f0, /* CMOVP_F*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0xac5, /* UCOM_FPPr*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
/* Table2942 */
0x35c, /* ILD_F32m*/
0x3ab, /* ISTT_FP32m*/
0x3b7, /* IST_F32m*/
0x3b9, /* IST_FP32m*/
0, /* PHI*/
0x445, /* LD_F80m*/
0, /* PHI*/
0xa22, /* ST_FP80m*/
0x1c0, /* CMOVNB_F*/
0x1c0, /* CMOVNB_F*/
0x1c0, /* CMOVNB_F*/
0x1c0, /* CMOVNB_F*/
0x1c0, /* CMOVNB_F*/
0x1c0, /* CMOVNB_F*/
0x1c0, /* CMOVNB_F*/
0x1c0, /* CMOVNB_F*/
0x1ca, /* CMOVNE_F*/
0x1ca, /* CMOVNE_F*/
0x1ca, /* CMOVNE_F*/
0x1ca, /* CMOVNE_F*/
0x1ca, /* CMOVNE_F*/
0x1ca, /* CMOVNE_F*/
0x1ca, /* CMOVNE_F*/
0x1ca, /* CMOVNE_F*/
0x1bc, /* CMOVNBE_F*/
0x1bc, /* CMOVNBE_F*/
0x1bc, /* CMOVNBE_F*/
0x1bc, /* CMOVNBE_F*/
0x1bc, /* CMOVNBE_F*/
0x1bc, /* CMOVNBE_F*/
0x1bc, /* CMOVNBE_F*/
0x1bc, /* CMOVNBE_F*/
0x1da, /* CMOVNP_F*/
0x1da, /* CMOVNP_F*/
0x1da, /* CMOVNP_F*/
0x1da, /* CMOVNP_F*/
0x1da, /* CMOVNP_F*/
0x1da, /* CMOVNP_F*/
0x1da, /* CMOVNP_F*/
0x1da, /* CMOVNP_F*/
0, /* PHI*/
0, /* PHI*/
0x30c, /* FNCLEX*/
0x30d, /* FNINIT*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0xac4, /* UCOM_FIr*/
0xac4, /* UCOM_FIr*/
0xac4, /* UCOM_FIr*/
0xac4, /* UCOM_FIr*/
0xac4, /* UCOM_FIr*/
0xac4, /* UCOM_FIr*/
0xac4, /* UCOM_FIr*/
0xac4, /* UCOM_FIr*/
0x24e, /* COM_FIr*/
0x24e, /* COM_FIr*/
0x24e, /* COM_FIr*/
0x24e, /* COM_FIr*/
0x24e, /* COM_FIr*/
0x24e, /* COM_FIr*/
0x24e, /* COM_FIr*/
0x24e, /* COM_FIr*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
/* Table2943 */
0x83, /* ADD_F64m*/
0x68a, /* MUL_F64m*/
0x2f9, /* FCOM64m*/
0x2fb, /* FCOMP64m*/
0xa71, /* SUB_F64m*/
0xa57, /* SUBR_F64m*/
0x2c5, /* DIV_F64m*/
0x2ab, /* DIVR_F64m*/
0x96, /* ADD_FrST0*/
0x69d, /* MUL_FrST0*/
0, /* PHI*/
0, /* PHI*/
0xa67, /* SUBR_FrST0*/
0xa84, /* SUB_FrST0*/
0x2bb, /* DIVR_FrST0*/
0x2d8, /* DIV_FrST0*/
/* Table2944 */
0x444, /* LD_F64m*/
0x3ac, /* ISTT_FP64m*/
0xa1f, /* ST_F64m*/
0xa21, /* ST_FP64m*/
0x320, /* FRSTORm*/
0, /* PHI*/
0x321, /* FSAVEm*/
0x311, /* FNSTSWm*/
0x2ff, /* FFREE*/
0, /* PHI*/
0xa2f, /* ST_Frr*/
0xa23, /* ST_FPrr*/
0xacd, /* UCOM_Fr*/
0xac6, /* UCOM_FPr*/
0, /* PHI*/
0, /* PHI*/
/* Table2945 */
0x84, /* ADD_FI16m*/
0x68b, /* MUL_FI16m*/
0x300, /* FICOM16m*/
0x302, /* FICOMP16m*/
0xa72, /* SUB_FI16m*/
0xa58, /* SUBR_FI16m*/
0x2c6, /* DIV_FI16m*/
0x2ac, /* DIVR_FI16m*/
0x86, /* ADD_FPrST0*/
0x86, /* ADD_FPrST0*/
0x86, /* ADD_FPrST0*/
0x86, /* ADD_FPrST0*/
0x86, /* ADD_FPrST0*/
0x86, /* ADD_FPrST0*/
0x86, /* ADD_FPrST0*/
0x86, /* ADD_FPrST0*/
0x68d, /* MUL_FPrST0*/
0x68d, /* MUL_FPrST0*/
0x68d, /* MUL_FPrST0*/
0x68d, /* MUL_FPrST0*/
0x68d, /* MUL_FPrST0*/
0x68d, /* MUL_FPrST0*/
0x68d, /* MUL_FPrST0*/
0x68d, /* MUL_FPrST0*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x2fc, /* FCOMPP*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0xa5a, /* SUBR_FPrST0*/
0xa5a, /* SUBR_FPrST0*/
0xa5a, /* SUBR_FPrST0*/
0xa5a, /* SUBR_FPrST0*/
0xa5a, /* SUBR_FPrST0*/
0xa5a, /* SUBR_FPrST0*/
0xa5a, /* SUBR_FPrST0*/
0xa5a, /* SUBR_FPrST0*/
0xa74, /* SUB_FPrST0*/
0xa74, /* SUB_FPrST0*/
0xa74, /* SUB_FPrST0*/
0xa74, /* SUB_FPrST0*/
0xa74, /* SUB_FPrST0*/
0xa74, /* SUB_FPrST0*/
0xa74, /* SUB_FPrST0*/
0xa74, /* SUB_FPrST0*/
0x2ae, /* DIVR_FPrST0*/
0x2ae, /* DIVR_FPrST0*/
0x2ae, /* DIVR_FPrST0*/
0x2ae, /* DIVR_FPrST0*/
0x2ae, /* DIVR_FPrST0*/
0x2ae, /* DIVR_FPrST0*/
0x2ae, /* DIVR_FPrST0*/
0x2ae, /* DIVR_FPrST0*/
0x2c8, /* DIV_FPrST0*/
0x2c8, /* DIV_FPrST0*/
0x2c8, /* DIV_FPrST0*/
0x2c8, /* DIV_FPrST0*/
0x2c8, /* DIV_FPrST0*/
0x2c8, /* DIV_FPrST0*/
0x2c8, /* DIV_FPrST0*/
0x2c8, /* DIV_FPrST0*/
/* Table2946 */
0x35b, /* ILD_F16m*/
0x3aa, /* ISTT_FP16m*/
0x3b6, /* IST_F16m*/
0x3b8, /* IST_FP16m*/
0x2f6, /* FBLDm*/
0x35d, /* ILD_F64m*/
0x2f7, /* FBSTPm*/
0x3ba, /* IST_FP64m*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x310, /* FNSTSW16r*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0xac3, /* UCOM_FIPr*/
0xac3, /* UCOM_FIPr*/
0xac3, /* UCOM_FIPr*/
0xac3, /* UCOM_FIPr*/
0xac3, /* UCOM_FIPr*/
0xac3, /* UCOM_FIPr*/
0xac3, /* UCOM_FIPr*/
0xac3, /* UCOM_FIPr*/
0x24d, /* COM_FIPr*/
0x24d, /* COM_FIPr*/
0x24d, /* COM_FIPr*/
0x24d, /* COM_FIPr*/
0x24d, /* COM_FIPr*/
0x24d, /* COM_FIPr*/
0x24d, /* COM_FIPr*/
0x24d, /* COM_FIPr*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
/* Table2947 */
0x4b0, /* LOOPNE*/
/* Table2948 */
0x4af, /* LOOPE*/
/* Table2949 */
0x4ae, /* LOOP*/
/* Table2950 */
0x42d, /* JRCXZ*/
/* Table2951 */
0x388, /* IN8ri*/
/* Table2952 */
0x385, /* IN32ri*/
/* Table2953 */
0x706, /* OUT8ir*/
/* Table2954 */
0x704, /* OUT32ir*/
/* Table2955 */
0x167, /* CALL64pcrel32*/
/* Table2956 */
0x41d, /* JMP64pcrel32*/
/* Table2957 */
0x2f3, /* FARJMP32i*/
/* Table2958 */
0x41f, /* JMP_1*/
/* Table2959 */
0x389, /* IN8rr*/
/* Table2960 */
0x386, /* IN32rr*/
/* Table2961 */
0x707, /* OUT8rr*/
/* Table2962 */
0x705, /* OUT32rr*/
/* Table2963 */
0x493, /* LOCK_PREFIX*/
/* Table2964 */
0x8d3, /* REPNE_PREFIX*/
/* Table2965 */
0x8db, /* REP_PREFIX*/
/* Table2966 */
0x34e, /* HLT*/
/* Table2967 */
0x179, /* CMC*/
/* Table2968 */
0xaa8, /* TEST8mi*/
0, /* PHI*/
0x6d9, /* NOT8m*/
0x6ce, /* NEG8m*/
0x677, /* MUL8m*/
0x37f, /* IMUL8m*/
0x2a4, /* DIV8m*/
0x359, /* IDIV8m*/
0xaa9, /* TEST8ri*/
0, /* PHI*/
0x6da, /* NOT8r*/
0x6cf, /* NEG8r*/
0x678, /* MUL8r*/
0x380, /* IMUL8r*/
0x2a5, /* DIV8r*/
0x35a, /* IDIV8r*/
/* Table2969 */
0xaa3, /* TEST64mi32*/
0, /* PHI*/
0x6d7, /* NOT64m*/
0x6cc, /* NEG64m*/
0x675, /* MUL64m*/
0x377, /* IMUL64m*/
0x2a2, /* DIV64m*/
0x357, /* IDIV64m*/
0xaa4, /* TEST64ri32*/
0, /* PHI*/
0x6d8, /* NOT64r*/
0x6cd, /* NEG64r*/
0x676, /* MUL64r*/
0x378, /* IMUL64r*/
0x2a3, /* DIV64r*/
0x358, /* IDIV64r*/
/* Table2970 */
0x173, /* CLC*/
/* Table2971 */
0xa11, /* STC*/
/* Table2972 */
0x177, /* CLI*/
/* Table2973 */
0xa14, /* STI*/
/* Table2974 */
0x174, /* CLD*/
/* Table2975 */
0xa12, /* STD*/
/* Table2976 */
0x394, /* INC8m*/
0x29c, /* DEC8m*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x395, /* INC8r*/
0x29d, /* DEC8r*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
/* Table2977 */
0x392, /* INC64m*/
0x29a, /* DEC64m*/
0x166, /* CALL64m*/
0x2f0, /* FARCALL64*/
0x41c, /* JMP64m*/
0x2f5, /* FARJMP64*/
0x870, /* PUSH64rmm*/
0, /* PHI*/
0x393, /* INC64r*/
0x29b, /* DEC64r*/
0x168, /* CALL64r*/
0, /* PHI*/
0x41e, /* JMP64r*/
0, /* PHI*/
0x871, /* PUSH64rmr*/
0, /* PHI*/
/* Table2978 */
0x6d, /* ADD8mr*/
0x70, /* ADD8rr*/
/* Table2979 */
0x62, /* ADD64mr*/
0x68, /* ADD64rr*/
/* Table2980 */
0x6f, /* ADD8rm*/
0x71, /* ADD8rr_REV*/
/* Table2981 */
0x67, /* ADD64rm*/
0x6a, /* ADD64rr_REV*/
/* Table2982 */
0x6b, /* ADD8i8*/
/* Table2983 */
0x5f, /* ADD64i32*/
/* Table2984 */
0x6f9, /* OR8mr*/
0x6fc, /* OR8rr*/
/* Table2985 */
0x6f1, /* OR64mr*/
0x6f5, /* OR64rr*/
/* Table2986 */
0x6fb, /* OR8rm*/
0x6fd, /* OR8rr_REV*/
/* Table2987 */
0x6f4, /* OR64rm*/
0x6f6, /* OR64rr_REV*/
/* Table2988 */
0x6f7, /* OR8i8*/
/* Table2989 */
0x6ee, /* OR64i32*/
/* Table2990 */
0x3e, /* ADC8mr*/
0x41, /* ADC8rr*/
/* Table2991 */
0x36, /* ADC64mr*/
0x3a, /* ADC64rr*/
/* Table2992 */
0x40, /* ADC8rm*/
0x42, /* ADC8rr_REV*/
/* Table2993 */
0x39, /* ADC64rm*/
0x3b, /* ADC64rr_REV*/
/* Table2994 */
0x3c, /* ADC8i8*/
/* Table2995 */
0x33, /* ADC64i32*/
/* Table2996 */
0x969, /* SBB8mr*/
0x96c, /* SBB8rr*/
/* Table2997 */
0x961, /* SBB64mr*/
0x965, /* SBB64rr*/
/* Table2998 */
0x96b, /* SBB8rm*/
0x96d, /* SBB8rr_REV*/
/* Table2999 */
0x964, /* SBB64rm*/
0x966, /* SBB64rr_REV*/
/* Table3000 */
0x967, /* SBB8i8*/
/* Table3001 */
0x95e, /* SBB64i32*/
/* Table3002 */
0xc8, /* AND8mr*/
0xcb, /* AND8rr*/
/* Table3003 */
0xc0, /* AND64mr*/
0xc4, /* AND64rr*/
/* Table3004 */
0xca, /* AND8rm*/
0xcc, /* AND8rr_REV*/
/* Table3005 */
0xc3, /* AND64rm*/
0xc5, /* AND64rr_REV*/
/* Table3006 */
0xc6, /* AND8i8*/
/* Table3007 */
0xbd, /* AND64i32*/
/* Table3008 */
0x2e6, /* ES_PREFIX*/
/* Table3009 */
0xa4d, /* SUB8mr*/
0xa50, /* SUB8rr*/
/* Table3010 */
0xa45, /* SUB64mr*/
0xa49, /* SUB64rr*/
/* Table3011 */
0xa4f, /* SUB8rm*/
0xa51, /* SUB8rr_REV*/
/* Table3012 */
0xa48, /* SUB64rm*/
0xa4a, /* SUB64rr_REV*/
/* Table3013 */
0xa4b, /* SUB8i8*/
/* Table3014 */
0xa42, /* SUB64i32*/
/* Table3015 */
0x260, /* CS_PREFIX*/
/* Table3016 */
0x11b2, /* XOR8mr*/
0x11b5, /* XOR8rr*/
/* Table3017 */
0x11aa, /* XOR64mr*/
0x11ae, /* XOR64rr*/
/* Table3018 */
0x11b4, /* XOR8rm*/
0x11b6, /* XOR8rr_REV*/
/* Table3019 */
0x11ad, /* XOR64rm*/
0x11af, /* XOR64rr_REV*/
/* Table3020 */
0x11b0, /* XOR8i8*/
/* Table3021 */
0x11a7, /* XOR64i32*/
/* Table3022 */
0xa0f, /* SS_PREFIX*/
/* Table3023 */
0x225, /* CMP8mr*/
0x228, /* CMP8rr*/
/* Table3024 */
0x21d, /* CMP64mr*/
0x221, /* CMP64rr*/
/* Table3025 */
0x227, /* CMP8rm*/
0x229, /* CMP8rr_REV*/
/* Table3026 */
0x220, /* CMP64rm*/
0x222, /* CMP64rr_REV*/
/* Table3027 */
0x223, /* CMP8i8*/
/* Table3028 */
0x21a, /* CMP64i32*/
/* Table3029 */
0x2dd, /* DS_PREFIX*/
/* Table3030 */
0x8e7, /* REX64_PREFIX*/
/* Table3031 */
0x866, /* PUSH16r*/
/* Table3032 */
0x866, /* PUSH16r*/
/* Table3033 */
0x866, /* PUSH16r*/
/* Table3034 */
0x866, /* PUSH16r*/
/* Table3035 */
0x866, /* PUSH16r*/
/* Table3036 */
0x866, /* PUSH16r*/
/* Table3037 */
0x866, /* PUSH16r*/
/* Table3038 */
0x866, /* PUSH16r*/
/* Table3039 */
0x7f1, /* POP16r*/
/* Table3040 */
0x7f1, /* POP16r*/
/* Table3041 */
0x7f1, /* POP16r*/
/* Table3042 */
0x7f1, /* POP16r*/
/* Table3043 */
0x7f1, /* POP16r*/
/* Table3044 */
0x7f1, /* POP16r*/
/* Table3045 */
0x7f1, /* POP16r*/
/* Table3046 */
0x7f1, /* POP16r*/
/* Table3047 */
0x64a, /* MOVSX64rm32*/
0x64d, /* MOVSX64rr32*/
/* Table3048 */
0x325, /* FS_PREFIX*/
/* Table3049 */
0x349, /* GS_PREFIX*/
/* Table3050 */
0x291, /* DATA16_PREFIX*/
/* Table3051 */
0x884, /* PUSHi16*/
/* Table3052 */
0x37a, /* IMUL64rmi32*/
0x37d, /* IMUL64rri32*/
/* Table3053 */
0x86e, /* PUSH64i8*/
/* Table3054 */
0x37b, /* IMUL64rmi8*/
0x37e, /* IMUL64rri8*/
/* Table3055 */
0x387, /* IN8*/
/* Table3056 */
0x381, /* IN16*/
/* Table3057 */
0x708, /* OUTSB*/
/* Table3058 */
0x70a, /* OUTSW*/
/* Table3059 */
0x429, /* JO_1*/
/* Table3060 */
0x423, /* JNO_1*/
/* Table3061 */
0x40b, /* JB_1*/
/* Table3062 */
0x405, /* JAE_1*/
/* Table3063 */
0x410, /* JE_1*/
/* Table3064 */
0x421, /* JNE_1*/
/* Table3065 */
0x409, /* JBE_1*/
/* Table3066 */
0x407, /* JA_1*/
/* Table3067 */
0x42e, /* JS_1*/
/* Table3068 */
0x427, /* JNS_1*/
/* Table3069 */
0x42b, /* JP_1*/
/* Table3070 */
0x425, /* JNP_1*/
/* Table3071 */
0x418, /* JL_1*/
/* Table3072 */
0x412, /* JGE_1*/
/* Table3073 */
0x416, /* JLE_1*/
/* Table3074 */
0x414, /* JG_1*/
/* Table3075 */
0x6c, /* ADD8mi*/
0x6f8, /* OR8mi*/
0x3d, /* ADC8mi*/
0x968, /* SBB8mi*/
0xc7, /* AND8mi*/
0xa4c, /* SUB8mi*/
0x11b1, /* XOR8mi*/
0x224, /* CMP8mi*/
0x6e, /* ADD8ri*/
0x6fa, /* OR8ri*/
0x3f, /* ADC8ri*/
0x96a, /* SBB8ri*/
0xc9, /* AND8ri*/
0xa4e, /* SUB8ri*/
0x11b3, /* XOR8ri*/
0x226, /* CMP8ri*/
/* Table3076 */
0x60, /* ADD64mi32*/
0x6ef, /* OR64mi32*/
0x34, /* ADC64mi32*/
0x95f, /* SBB64mi32*/
0xbe, /* AND64mi32*/
0xa43, /* SUB64mi32*/
0x11a8, /* XOR64mi32*/
0x21b, /* CMP64mi32*/
0x63, /* ADD64ri32*/
0x6f2, /* OR64ri32*/
0x37, /* ADC64ri32*/
0x962, /* SBB64ri32*/
0xc1, /* AND64ri32*/
0xa46, /* SUB64ri32*/
0x11ab, /* XOR64ri32*/
0x21e, /* CMP64ri32*/
/* Table3077 */
0x61, /* ADD64mi8*/
0x6f0, /* OR64mi8*/
0x35, /* ADC64mi8*/
0x960, /* SBB64mi8*/
0xbf, /* AND64mi8*/
0xa44, /* SUB64mi8*/
0x11a9, /* XOR64mi8*/
0x21c, /* CMP64mi8*/
0x65, /* ADD64ri8*/
0x6f3, /* OR64ri8*/
0x38, /* ADC64ri8*/
0x963, /* SBB64ri8*/
0xc2, /* AND64ri8*/
0xa47, /* SUB64ri8*/
0x11ac, /* XOR64ri8*/
0x21f, /* CMP64ri8*/
/* Table3078 */
0xaab, /* TEST8rm*/
0xaac, /* TEST8rr*/
/* Table3079 */
0xaa5, /* TEST64rm*/
0xaa6, /* TEST64rr*/
/* Table3080 */
0x118a, /* XCHG8rm*/
0x118b, /* XCHG8rr*/
/* Table3081 */
0x1188, /* XCHG64rm*/
0x1189, /* XCHG64rr*/
/* Table3082 */
0x5eb, /* MOV8mr*/
0x5f2, /* MOV8rr*/
/* Table3083 */
0x5d8, /* MOV64mr*/
0x5e1, /* MOV64rr*/
/* Table3084 */
0x5f0, /* MOV8rm*/
0x5f4, /* MOV8rr_REV*/
/* Table3085 */
0x5e0, /* MOV64rm*/
0x5e2, /* MOV64rr_REV*/
/* Table3086 */
0x5d9, /* MOV64ms*/
0x5e3, /* MOV64rs*/
/* Table3087 */
0x456, /* LEA64r*/
0, /* PHI*/
/* Table3088 */
0x5e4, /* MOV64sm*/
0x5e5, /* MOV64sr*/
/* Table3089 */
0x7f2, /* POP16rmm*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x7f3, /* POP16rmr*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
/* Table3090 */
0x6d0, /* NOOP*/
/* Table3091 */
0x1187, /* XCHG64ar*/
/* Table3092 */
0x1187, /* XCHG64ar*/
/* Table3093 */
0x1187, /* XCHG64ar*/
/* Table3094 */
0x1187, /* XCHG64ar*/
/* Table3095 */
0x1187, /* XCHG64ar*/
/* Table3096 */
0x1187, /* XCHG64ar*/
/* Table3097 */
0x1187, /* XCHG64ar*/
/* Table3098 */
0x16d, /* CDQE*/
/* Table3099 */
0x255, /* CQO*/
/* Table3100 */
0x2ec, /* FARCALL16i*/
/* Table3101 */
0x116b, /* WAIT*/
/* Table3102 */
0x879, /* PUSHF16*/
/* Table3103 */
0x805, /* POPF16*/
/* Table3104 */
0x92f, /* SAHF*/
/* Table3105 */
0x430, /* LAHF*/
/* Table3106 */
0x62f, /* MOVSB*/
/* Table3107 */
0x63b, /* MOVSQ*/
/* Table3108 */
0x235, /* CMPS8*/
/* Table3109 */
0x234, /* CMPS64*/
/* Table3110 */
0xaa7, /* TEST8i8*/
/* Table3111 */
0xaa2, /* TEST64i32*/
/* Table3112 */
0xa16, /* STOSB*/
/* Table3113 */
0xa18, /* STOSQ*/
/* Table3114 */
0x4aa, /* LODSB*/
/* Table3115 */
0x4ac, /* LODSQ*/
/* Table3116 */
0x971, /* SCAS8*/
/* Table3117 */
0x970, /* SCAS64*/
/* Table3118 */
0x5ef, /* MOV8ri*/
/* Table3119 */
0x5ef, /* MOV8ri*/
/* Table3120 */
0x5ef, /* MOV8ri*/
/* Table3121 */
0x5ef, /* MOV8ri*/
/* Table3122 */
0x5ef, /* MOV8ri*/
/* Table3123 */
0x5ef, /* MOV8ri*/
/* Table3124 */
0x5ef, /* MOV8ri*/
/* Table3125 */
0x5ef, /* MOV8ri*/
/* Table3126 */
0x5dd, /* MOV64ri*/
/* Table3127 */
0x5dd, /* MOV64ri*/
/* Table3128 */
0x5dd, /* MOV64ri*/
/* Table3129 */
0x5dd, /* MOV64ri*/
/* Table3130 */
0x5dd, /* MOV64ri*/
/* Table3131 */
0x5dd, /* MOV64ri*/
/* Table3132 */
0x5dd, /* MOV64ri*/
/* Table3133 */
0x5dd, /* MOV64ri*/
/* Table3134 */
0x8fc, /* ROL8mi*/
0x914, /* ROR8mi*/
0x89d, /* RCL8mi*/
0x8bd, /* RCR8mi*/
0x9af, /* SHL8mi*/
0x9d7, /* SHR8mi*/
0, /* PHI*/
0x944, /* SAR8mi*/
0x8ff, /* ROL8ri*/
0x917, /* ROR8ri*/
0x8a0, /* RCL8ri*/
0x8c0, /* RCR8ri*/
0x9b2, /* SHL8ri*/
0x9da, /* SHR8ri*/
0, /* PHI*/
0x947, /* SAR8ri*/
/* Table3135 */
0x8f6, /* ROL64mi*/
0x90e, /* ROR64mi*/
0x897, /* RCL64mi*/
0x8b7, /* RCR64mi*/
0x9a9, /* SHL64mi*/
0x9d1, /* SHR64mi*/
0, /* PHI*/
0x93e, /* SAR64mi*/
0x8f9, /* ROL64ri*/
0x911, /* ROR64ri*/
0x89a, /* RCL64ri*/
0x8ba, /* RCR64ri*/
0x9ac, /* SHL64ri*/
0x9d4, /* SHR64ri*/
0, /* PHI*/
0x941, /* SAR64ri*/
/* Table3136 */
0x8e5, /* RETIW*/
/* Table3137 */
0x8e6, /* RETW*/
/* Table3138 */
0x459, /* LES16rm*/
0, /* PHI*/
/* Table3139 */
0x43f, /* LDS16rm*/
0, /* PHI*/
/* Table3140 */
0x5ea, /* MOV8mi*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x1175, /* XABORT*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
/* Table3141 */
0x5d7, /* MOV64mi32*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x5de, /* MOV64ri32*/
0x5de, /* MOV64ri32*/
0x5de, /* MOV64ri32*/
0x5de, /* MOV64ri32*/
0x5de, /* MOV64ri32*/
0x5de, /* MOV64ri32*/
0x5de, /* MOV64ri32*/
0x5de, /* MOV64ri32*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x117f, /* XBEGIN_4*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
/* Table3142 */
0x2e5, /* ENTER*/
/* Table3143 */
0x458, /* LEAVE64*/
/* Table3144 */
0x4b2, /* LRETIW*/
/* Table3145 */
0x4b4, /* LRETQ*/
/* Table3146 */
0x39b, /* INT3*/
/* Table3147 */
0x39a, /* INT*/
/* Table3148 */
0x39c, /* INTO*/
/* Table3149 */
0x3a9, /* IRET64*/
/* Table3150 */
0x8fa, /* ROL8m1*/
0x912, /* ROR8m1*/
0x89b, /* RCL8m1*/
0x8bb, /* RCR8m1*/
0x9ad, /* SHL8m1*/
0x9d5, /* SHR8m1*/
0, /* PHI*/
0x942, /* SAR8m1*/
0x8fd, /* ROL8r1*/
0x915, /* ROR8r1*/
0x89e, /* RCL8r1*/
0x8be, /* RCR8r1*/
0x9b0, /* SHL8r1*/
0x9d8, /* SHR8r1*/
0, /* PHI*/
0x945, /* SAR8r1*/
/* Table3151 */
0x8f4, /* ROL64m1*/
0x90c, /* ROR64m1*/
0x895, /* RCL64m1*/
0x8b5, /* RCR64m1*/
0x9a7, /* SHL64m1*/
0x9cf, /* SHR64m1*/
0, /* PHI*/
0x93c, /* SAR64m1*/
0x8f7, /* ROL64r1*/
0x90f, /* ROR64r1*/
0x898, /* RCL64r1*/
0x8b8, /* RCR64r1*/
0x9aa, /* SHL64r1*/
0x9d2, /* SHR64r1*/
0, /* PHI*/
0x93f, /* SAR64r1*/
/* Table3152 */
0x8fb, /* ROL8mCL*/
0x913, /* ROR8mCL*/
0x89c, /* RCL8mCL*/
0x8bc, /* RCR8mCL*/
0x9ae, /* SHL8mCL*/
0x9d6, /* SHR8mCL*/
0, /* PHI*/
0x943, /* SAR8mCL*/
0x8fe, /* ROL8rCL*/
0x916, /* ROR8rCL*/
0x89f, /* RCL8rCL*/
0x8bf, /* RCR8rCL*/
0x9b1, /* SHL8rCL*/
0x9d9, /* SHR8rCL*/
0, /* PHI*/
0x946, /* SAR8rCL*/
/* Table3153 */
0x8f5, /* ROL64mCL*/
0x90d, /* ROR64mCL*/
0x896, /* RCL64mCL*/
0x8b6, /* RCR64mCL*/
0x9a8, /* SHL64mCL*/
0x9d0, /* SHR64mCL*/
0, /* PHI*/
0x93d, /* SAR64mCL*/
0x8f8, /* ROL64rCL*/
0x910, /* ROR64rCL*/
0x899, /* RCL64rCL*/
0x8b9, /* RCR64rCL*/
0x9ab, /* SHL64rCL*/
0x9d3, /* SHR64rCL*/
0, /* PHI*/
0x940, /* SAR64rCL*/
/* Table3154 */
0x1194, /* XLAT*/
/* Table3155 */
0x82, /* ADD_F32m*/
0x689, /* MUL_F32m*/
0x2f8, /* FCOM32m*/
0x2fa, /* FCOMP32m*/
0xa70, /* SUB_F32m*/
0xa56, /* SUBR_F32m*/
0x2c4, /* DIV_F32m*/
0x2aa, /* DIVR_F32m*/
0x87, /* ADD_FST0r*/
0x68e, /* MUL_FST0r*/
0x24f, /* COM_FST0r*/
0x24c, /* COMP_FST0r*/
0xa75, /* SUB_FST0r*/
0xa5b, /* SUBR_FST0r*/
0x2c9, /* DIV_FST0r*/
0x2af, /* DIVR_FST0r*/
/* Table3156 */
0x443, /* LD_F32m*/
0, /* PHI*/
0xa1e, /* ST_F32m*/
0xa20, /* ST_FP32m*/
0x306, /* FLDENVm*/
0x305, /* FLDCW16m*/
0x324, /* FSTENVm*/
0x30f, /* FNSTCW16m*/
0x452, /* LD_Frr*/
0x452, /* LD_Frr*/
0x452, /* LD_Frr*/
0x452, /* LD_Frr*/
0x452, /* LD_Frr*/
0x452, /* LD_Frr*/
0x452, /* LD_Frr*/
0x452, /* LD_Frr*/
0x118c, /* XCH_F*/
0x118c, /* XCH_F*/
0x118c, /* XCH_F*/
0x118c, /* XCH_F*/
0x118c, /* XCH_F*/
0x118c, /* XCH_F*/
0x118c, /* XCH_F*/
0x118c, /* XCH_F*/
0x30e, /* FNOP*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x16e, /* CHS_F*/
0x19, /* ABS_F*/
0, /* PHI*/
0, /* PHI*/
0xab5, /* TST_F*/
0x326, /* FXAM*/
0, /* PHI*/
0, /* PHI*/
0x442, /* LD_F1*/
0x308, /* FLDL2T*/
0x307, /* FLDL2E*/
0x30b, /* FLDPI*/
0x309, /* FLDLG2*/
0x30a, /* FLDLN2*/
0x441, /* LD_F0*/
0, /* PHI*/
0x2eb, /* F2XM1*/
0x32c, /* FYL2X*/
0x31e, /* FPTAN*/
0x31b, /* FPATAN*/
0x32b, /* FXTRACT*/
0x31d, /* FPREM1*/
0x2fd, /* FDECSTP*/
0x304, /* FINCSTP*/
0x31c, /* FPREM*/
0x32d, /* FYL2XP1*/
0xa0b, /* SQRT_F*/
0x323, /* FSINCOS*/
0x31f, /* FRNDINT*/
0x322, /* FSCALE*/
0x9f1, /* SIN_F*/
0x250, /* COS_F*/
/* Table3157 */
0x85, /* ADD_FI32m*/
0x68c, /* MUL_FI32m*/
0x301, /* FICOM32m*/
0x303, /* FICOMP32m*/
0xa73, /* SUB_FI32m*/
0xa59, /* SUBR_FI32m*/
0x2c7, /* DIV_FI32m*/
0x2ad, /* DIVR_FI32m*/
0x196, /* CMOVB_F*/
0x196, /* CMOVB_F*/
0x196, /* CMOVB_F*/
0x196, /* CMOVB_F*/
0x196, /* CMOVB_F*/
0x196, /* CMOVB_F*/
0x196, /* CMOVB_F*/
0x196, /* CMOVB_F*/
0x1a0, /* CMOVE_F*/
0x1a0, /* CMOVE_F*/
0x1a0, /* CMOVE_F*/
0x1a0, /* CMOVE_F*/
0x1a0, /* CMOVE_F*/
0x1a0, /* CMOVE_F*/
0x1a0, /* CMOVE_F*/
0x1a0, /* CMOVE_F*/
0x192, /* CMOVBE_F*/
0x192, /* CMOVBE_F*/
0x192, /* CMOVBE_F*/
0x192, /* CMOVBE_F*/
0x192, /* CMOVBE_F*/
0x192, /* CMOVBE_F*/
0x192, /* CMOVBE_F*/
0x192, /* CMOVBE_F*/
0x1f0, /* CMOVP_F*/
0x1f0, /* CMOVP_F*/
0x1f0, /* CMOVP_F*/
0x1f0, /* CMOVP_F*/
0x1f0, /* CMOVP_F*/
0x1f0, /* CMOVP_F*/
0x1f0, /* CMOVP_F*/
0x1f0, /* CMOVP_F*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0xac5, /* UCOM_FPPr*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
/* Table3158 */
0x35c, /* ILD_F32m*/
0x3ab, /* ISTT_FP32m*/
0x3b7, /* IST_F32m*/
0x3b9, /* IST_FP32m*/
0, /* PHI*/
0x445, /* LD_F80m*/
0, /* PHI*/
0xa22, /* ST_FP80m*/
0x1c0, /* CMOVNB_F*/
0x1c0, /* CMOVNB_F*/
0x1c0, /* CMOVNB_F*/
0x1c0, /* CMOVNB_F*/
0x1c0, /* CMOVNB_F*/
0x1c0, /* CMOVNB_F*/
0x1c0, /* CMOVNB_F*/
0x1c0, /* CMOVNB_F*/
0x1ca, /* CMOVNE_F*/
0x1ca, /* CMOVNE_F*/
0x1ca, /* CMOVNE_F*/
0x1ca, /* CMOVNE_F*/
0x1ca, /* CMOVNE_F*/
0x1ca, /* CMOVNE_F*/
0x1ca, /* CMOVNE_F*/
0x1ca, /* CMOVNE_F*/
0x1bc, /* CMOVNBE_F*/
0x1bc, /* CMOVNBE_F*/
0x1bc, /* CMOVNBE_F*/
0x1bc, /* CMOVNBE_F*/
0x1bc, /* CMOVNBE_F*/
0x1bc, /* CMOVNBE_F*/
0x1bc, /* CMOVNBE_F*/
0x1bc, /* CMOVNBE_F*/
0x1da, /* CMOVNP_F*/
0x1da, /* CMOVNP_F*/
0x1da, /* CMOVNP_F*/
0x1da, /* CMOVNP_F*/
0x1da, /* CMOVNP_F*/
0x1da, /* CMOVNP_F*/
0x1da, /* CMOVNP_F*/
0x1da, /* CMOVNP_F*/
0, /* PHI*/
0, /* PHI*/
0x30c, /* FNCLEX*/
0x30d, /* FNINIT*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0xac4, /* UCOM_FIr*/
0xac4, /* UCOM_FIr*/
0xac4, /* UCOM_FIr*/
0xac4, /* UCOM_FIr*/
0xac4, /* UCOM_FIr*/
0xac4, /* UCOM_FIr*/
0xac4, /* UCOM_FIr*/
0xac4, /* UCOM_FIr*/
0x24e, /* COM_FIr*/
0x24e, /* COM_FIr*/
0x24e, /* COM_FIr*/
0x24e, /* COM_FIr*/
0x24e, /* COM_FIr*/
0x24e, /* COM_FIr*/
0x24e, /* COM_FIr*/
0x24e, /* COM_FIr*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
/* Table3159 */
0x83, /* ADD_F64m*/
0x68a, /* MUL_F64m*/
0x2f9, /* FCOM64m*/
0x2fb, /* FCOMP64m*/
0xa71, /* SUB_F64m*/
0xa57, /* SUBR_F64m*/
0x2c5, /* DIV_F64m*/
0x2ab, /* DIVR_F64m*/
0x96, /* ADD_FrST0*/
0x69d, /* MUL_FrST0*/
0, /* PHI*/
0, /* PHI*/
0xa67, /* SUBR_FrST0*/
0xa84, /* SUB_FrST0*/
0x2bb, /* DIVR_FrST0*/
0x2d8, /* DIV_FrST0*/
/* Table3160 */
0x444, /* LD_F64m*/
0x3ac, /* ISTT_FP64m*/
0xa1f, /* ST_F64m*/
0xa21, /* ST_FP64m*/
0x320, /* FRSTORm*/
0, /* PHI*/
0x321, /* FSAVEm*/
0x311, /* FNSTSWm*/
0x2ff, /* FFREE*/
0, /* PHI*/
0xa2f, /* ST_Frr*/
0xa23, /* ST_FPrr*/
0xacd, /* UCOM_Fr*/
0xac6, /* UCOM_FPr*/
0, /* PHI*/
0, /* PHI*/
/* Table3161 */
0x84, /* ADD_FI16m*/
0x68b, /* MUL_FI16m*/
0x300, /* FICOM16m*/
0x302, /* FICOMP16m*/
0xa72, /* SUB_FI16m*/
0xa58, /* SUBR_FI16m*/
0x2c6, /* DIV_FI16m*/
0x2ac, /* DIVR_FI16m*/
0x86, /* ADD_FPrST0*/
0x86, /* ADD_FPrST0*/
0x86, /* ADD_FPrST0*/
0x86, /* ADD_FPrST0*/
0x86, /* ADD_FPrST0*/
0x86, /* ADD_FPrST0*/
0x86, /* ADD_FPrST0*/
0x86, /* ADD_FPrST0*/
0x68d, /* MUL_FPrST0*/
0x68d, /* MUL_FPrST0*/
0x68d, /* MUL_FPrST0*/
0x68d, /* MUL_FPrST0*/
0x68d, /* MUL_FPrST0*/
0x68d, /* MUL_FPrST0*/
0x68d, /* MUL_FPrST0*/
0x68d, /* MUL_FPrST0*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x2fc, /* FCOMPP*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0xa5a, /* SUBR_FPrST0*/
0xa5a, /* SUBR_FPrST0*/
0xa5a, /* SUBR_FPrST0*/
0xa5a, /* SUBR_FPrST0*/
0xa5a, /* SUBR_FPrST0*/
0xa5a, /* SUBR_FPrST0*/
0xa5a, /* SUBR_FPrST0*/
0xa5a, /* SUBR_FPrST0*/
0xa74, /* SUB_FPrST0*/
0xa74, /* SUB_FPrST0*/
0xa74, /* SUB_FPrST0*/
0xa74, /* SUB_FPrST0*/
0xa74, /* SUB_FPrST0*/
0xa74, /* SUB_FPrST0*/
0xa74, /* SUB_FPrST0*/
0xa74, /* SUB_FPrST0*/
0x2ae, /* DIVR_FPrST0*/
0x2ae, /* DIVR_FPrST0*/
0x2ae, /* DIVR_FPrST0*/
0x2ae, /* DIVR_FPrST0*/
0x2ae, /* DIVR_FPrST0*/
0x2ae, /* DIVR_FPrST0*/
0x2ae, /* DIVR_FPrST0*/
0x2ae, /* DIVR_FPrST0*/
0x2c8, /* DIV_FPrST0*/
0x2c8, /* DIV_FPrST0*/
0x2c8, /* DIV_FPrST0*/
0x2c8, /* DIV_FPrST0*/
0x2c8, /* DIV_FPrST0*/
0x2c8, /* DIV_FPrST0*/
0x2c8, /* DIV_FPrST0*/
0x2c8, /* DIV_FPrST0*/
/* Table3162 */
0x35b, /* ILD_F16m*/
0x3aa, /* ISTT_FP16m*/
0x3b6, /* IST_F16m*/
0x3b8, /* IST_FP16m*/
0x2f6, /* FBLDm*/
0x35d, /* ILD_F64m*/
0x2f7, /* FBSTPm*/
0x3ba, /* IST_FP64m*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x310, /* FNSTSW16r*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0xac3, /* UCOM_FIPr*/
0xac3, /* UCOM_FIPr*/
0xac3, /* UCOM_FIPr*/
0xac3, /* UCOM_FIPr*/
0xac3, /* UCOM_FIPr*/
0xac3, /* UCOM_FIPr*/
0xac3, /* UCOM_FIPr*/
0xac3, /* UCOM_FIPr*/
0x24d, /* COM_FIPr*/
0x24d, /* COM_FIPr*/
0x24d, /* COM_FIPr*/
0x24d, /* COM_FIPr*/
0x24d, /* COM_FIPr*/
0x24d, /* COM_FIPr*/
0x24d, /* COM_FIPr*/
0x24d, /* COM_FIPr*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
/* Table3163 */
0x4b0, /* LOOPNE*/
/* Table3164 */
0x4af, /* LOOPE*/
/* Table3165 */
0x4ae, /* LOOP*/
/* Table3166 */
0x42d, /* JRCXZ*/
/* Table3167 */
0x388, /* IN8ri*/
/* Table3168 */
0x382, /* IN16ri*/
/* Table3169 */
0x706, /* OUT8ir*/
/* Table3170 */
0x702, /* OUT16ir*/
/* Table3171 */
0x167, /* CALL64pcrel32*/
/* Table3172 */
0x41d, /* JMP64pcrel32*/
/* Table3173 */
0x2f1, /* FARJMP16i*/
/* Table3174 */
0x41f, /* JMP_1*/
/* Table3175 */
0x389, /* IN8rr*/
/* Table3176 */
0x383, /* IN16rr*/
/* Table3177 */
0x707, /* OUT8rr*/
/* Table3178 */
0x703, /* OUT16rr*/
/* Table3179 */
0x493, /* LOCK_PREFIX*/
/* Table3180 */
0x8d3, /* REPNE_PREFIX*/
/* Table3181 */
0x8db, /* REP_PREFIX*/
/* Table3182 */
0x34e, /* HLT*/
/* Table3183 */
0x179, /* CMC*/
/* Table3184 */
0xaa8, /* TEST8mi*/
0, /* PHI*/
0x6d9, /* NOT8m*/
0x6ce, /* NEG8m*/
0x677, /* MUL8m*/
0x37f, /* IMUL8m*/
0x2a4, /* DIV8m*/
0x359, /* IDIV8m*/
0xaa9, /* TEST8ri*/
0, /* PHI*/
0x6da, /* NOT8r*/
0x6cf, /* NEG8r*/
0x678, /* MUL8r*/
0x380, /* IMUL8r*/
0x2a5, /* DIV8r*/
0x35a, /* IDIV8r*/
/* Table3185 */
0xaa3, /* TEST64mi32*/
0, /* PHI*/
0x6d7, /* NOT64m*/
0x6cc, /* NEG64m*/
0x675, /* MUL64m*/
0x377, /* IMUL64m*/
0x2a2, /* DIV64m*/
0x357, /* IDIV64m*/
0xaa4, /* TEST64ri32*/
0, /* PHI*/
0x6d8, /* NOT64r*/
0x6cd, /* NEG64r*/
0x676, /* MUL64r*/
0x378, /* IMUL64r*/
0x2a3, /* DIV64r*/
0x358, /* IDIV64r*/
/* Table3186 */
0x173, /* CLC*/
/* Table3187 */
0xa11, /* STC*/
/* Table3188 */
0x177, /* CLI*/
/* Table3189 */
0xa14, /* STI*/
/* Table3190 */
0x174, /* CLD*/
/* Table3191 */
0xa12, /* STD*/
/* Table3192 */
0x394, /* INC8m*/
0x29c, /* DEC8m*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x395, /* INC8r*/
0x29d, /* DEC8r*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
/* Table3193 */
0x392, /* INC64m*/
0x29a, /* DEC64m*/
0x166, /* CALL64m*/
0x2f0, /* FARCALL64*/
0x41c, /* JMP64m*/
0x2f5, /* FARJMP64*/
0x867, /* PUSH16rmm*/
0, /* PHI*/
0x393, /* INC64r*/
0x29b, /* DEC64r*/
0x168, /* CALL64r*/
0, /* PHI*/
0x41e, /* JMP64r*/
0, /* PHI*/
0x868, /* PUSH16rmr*/
0, /* PHI*/
/* Table3194 */
0x9f6, /* SLDT16m*/
0xa1d, /* STRm*/
0x466, /* LLDT16m*/
0x4bf, /* LTRm*/
0xb9b, /* VERRm*/
0xb9d, /* VERWm*/
0, /* PHI*/
0, /* PHI*/
0x9f8, /* SLDT32r*/
0xa1b, /* STR32r*/
0x467, /* LLDT16r*/
0x4c0, /* LTRr*/
0xb9c, /* VERRr*/
0xb9e, /* VERWr*/
0, /* PHI*/
0, /* PHI*/
/* Table3195 */
0x99a, /* SGDTm*/
0x9f0, /* SIDTm*/
0x460, /* LGDTm*/
0x465, /* LIDTm*/
0x9fb, /* SMSW16m*/
0, /* PHI*/
0x468, /* LMSW16m*/
0x3a0, /* INVLPG*/
0, /* PHI*/
0xd71, /* VMCALL*/
0xd90, /* VMLAUNCH*/
0xe1b, /* VMRESUME*/
0xe34, /* VMXOFF*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x5b3, /* MONITORrrr*/
0x69e, /* MWAITrr*/
0x172, /* CLAC*/
0xa10, /* STAC*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x1193, /* XGETBV*/
0x11c1, /* XSETBV*/
0, /* PHI*/
0, /* PHI*/
0xd73, /* VMFUNC*/
0x1192, /* XEND*/
0x11c5, /* XTEST*/
0, /* PHI*/
0xe1c, /* VMRUN32*/
0xd93, /* VMMCALL*/
0xd91, /* VMLOAD32*/
0xe1e, /* VMSAVE32*/
0xa13, /* STGI*/
0x176, /* CLGI*/
0x9f5, /* SKINIT*/
0x3a1, /* INVLPGA32*/
0x9fd, /* SMSW32r*/
0x9fd, /* SMSW32r*/
0x9fd, /* SMSW32r*/
0x9fd, /* SMSW32r*/
0x9fd, /* SMSW32r*/
0x9fd, /* SMSW32r*/
0x9fd, /* SMSW32r*/
0x9fd, /* SMSW32r*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x469, /* LMSW16r*/
0x469, /* LMSW16r*/
0x469, /* LMSW16r*/
0x469, /* LMSW16r*/
0x469, /* LMSW16r*/
0x469, /* LMSW16r*/
0x469, /* LMSW16r*/
0x469, /* LMSW16r*/
0xa85, /* SWAPGS*/
0x8ce, /* RDTSCP*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
/* Table3196 */
0x433, /* LAR32rm*/
0x434, /* LAR32rr*/
/* Table3197 */
0x4b8, /* LSL32rm*/
0x4b9, /* LSL32rr*/
/* Table3198 */
0xa86, /* SYSCALL*/
/* Table3199 */
0x178, /* CLTS*/
/* Table3200 */
0xa8a, /* SYSRET*/
/* Table3201 */
0x39d, /* INVD*/
/* Table3202 */
0x116c, /* WBINVD*/
/* Table3203 */
0xab4, /* TRAP*/
/* Table3204 */
0x812, /* PREFETCH*/
0x817, /* PREFETCHW*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
/* Table3205 */
0x2fe, /* FEMMS*/
/* Table3206 */
0x654, /* MOVUPSrm*/
0x655, /* MOVUPSrr*/
/* Table3207 */
0x653, /* MOVUPSmr*/
0x656, /* MOVUPSrr_REV*/
/* Table3208 */
0x61a, /* MOVLPSrm*/
0x611, /* MOVHLPSrr*/
/* Table3209 */
0x619, /* MOVLPSmr*/
0, /* PHI*/
/* Table3210 */
0xad5, /* UNPCKLPSrm*/
0xad6, /* UNPCKLPSrr*/
/* Table3211 */
0xad1, /* UNPCKHPSrm*/
0xad2, /* UNPCKHPSrr*/
/* Table3212 */
0x615, /* MOVHPSrm*/
0x616, /* MOVLHPSrr*/
/* Table3213 */
0x614, /* MOVHPSmr*/
0, /* PHI*/
/* Table3214 */
0x813, /* PREFETCHNTA*/
0x814, /* PREFETCHT0*/
0x815, /* PREFETCHT1*/
0x816, /* PREFETCHT2*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
/* Table3215 */
0x6d1, /* NOOPL*/
0, /* PHI*/
/* Table3216 */
0, /* PHI*/
0x5cc, /* MOV32rc*/
/* Table3217 */
0, /* PHI*/
0x5cd, /* MOV32rd*/
/* Table3218 */
0, /* PHI*/
0x5c5, /* MOV32cr*/
/* Table3219 */
0, /* PHI*/
0x5c6, /* MOV32dr*/
/* Table3220 */
0x5fa, /* MOVAPSrm*/
0x5fb, /* MOVAPSrr*/
/* Table3221 */
0x5f9, /* MOVAPSmr*/
0x5fc, /* MOVAPSrr_REV*/
/* Table3222 */
0x4fa, /* MMX_CVTPI2PSirm*/
0x4fb, /* MMX_CVTPI2PSirr*/
/* Table3223 */
0x625, /* MOVNTPSmr*/
0, /* PHI*/
/* Table3224 */
0x500, /* MMX_CVTTPS2PIirm*/
0x501, /* MMX_CVTTPS2PIirr*/
/* Table3225 */
0x4fc, /* MMX_CVTPS2PIirm*/
0x4fd, /* MMX_CVTPS2PIirr*/
/* Table3226 */
0xac1, /* UCOMISSrm*/
0xac2, /* UCOMISSrr*/
/* Table3227 */
0x24a, /* COMISSrm*/
0x24b, /* COMISSrr*/
/* Table3228 */
0x1174, /* WRMSR*/
/* Table3229 */
0x8cd, /* RDTSC*/
/* Table3230 */
0x8c5, /* RDMSR*/
/* Table3231 */
0x8c6, /* RDPMC*/
/* Table3232 */
0xa87, /* SYSENTER*/
/* Table3233 */
0xa88, /* SYSEXIT*/
/* Table3234 */
0x1e6, /* CMOVO32rm*/
0x1e7, /* CMOVO32rr*/
/* Table3235 */
0x1d0, /* CMOVNO32rm*/
0x1d1, /* CMOVNO32rr*/
/* Table3236 */
0x188, /* CMOVB32rm*/
0x189, /* CMOVB32rr*/
/* Table3237 */
0x182, /* CMOVAE32rm*/
0x183, /* CMOVAE32rr*/
/* Table3238 */
0x19c, /* CMOVE32rm*/
0x19d, /* CMOVE32rr*/
/* Table3239 */
0x1c6, /* CMOVNE32rm*/
0x1c7, /* CMOVNE32rr*/
/* Table3240 */
0x18e, /* CMOVBE32rm*/
0x18f, /* CMOVBE32rr*/
/* Table3241 */
0x17c, /* CMOVA32rm*/
0x17d, /* CMOVA32rr*/
/* Table3242 */
0x1f6, /* CMOVS32rm*/
0x1f7, /* CMOVS32rr*/
/* Table3243 */
0x1e0, /* CMOVNS32rm*/
0x1e1, /* CMOVNS32rr*/
/* Table3244 */
0x1ec, /* CMOVP32rm*/
0x1ed, /* CMOVP32rr*/
/* Table3245 */
0x1d6, /* CMOVNP32rm*/
0x1d7, /* CMOVNP32rr*/
/* Table3246 */
0x1b2, /* CMOVL32rm*/
0x1b3, /* CMOVL32rr*/
/* Table3247 */
0x1ac, /* CMOVGE32rm*/
0x1ad, /* CMOVGE32rr*/
/* Table3248 */
0x1b8, /* CMOVLE32rm*/
0x1b9, /* CMOVLE32rr*/
/* Table3249 */
0x1a6, /* CMOVG32rm*/
0x1a7, /* CMOVG32rr*/
/* Table3250 */
0, /* PHI*/
0x61e, /* MOVMSKPSrr32*/
/* Table3251 */
0xa01, /* SQRTPSm*/
0xa02, /* SQRTPSr*/
/* Table3252 */
0x927, /* RSQRTPSm*/
0x929, /* RSQRTPSr*/
/* Table3253 */
0x8a1, /* RCPPSm*/
0x8a3, /* RCPPSr*/
/* Table3254 */
0xd7, /* ANDPSrm*/
0xd8, /* ANDPSrr*/
/* Table3255 */
0xd3, /* ANDNPSrm*/
0xd4, /* ANDNPSrr*/
/* Table3256 */
0x700, /* ORPSrm*/
0x701, /* ORPSrr*/
/* Table3257 */
0x11b9, /* XORPSrm*/
0x11ba, /* XORPSrr*/
/* Table3258 */
0x74, /* ADDPSrm*/
0x75, /* ADDPSrr*/
/* Table3259 */
0x67b, /* MULPSrm*/
0x67c, /* MULPSrr*/
/* Table3260 */
0x26b, /* CVTPS2PDrm*/
0x26c, /* CVTPS2PDrr*/
/* Table3261 */
0x263, /* CVTDQ2PSrm*/
0x264, /* CVTDQ2PSrr*/
/* Table3262 */
0xa54, /* SUBPSrm*/
0xa55, /* SUBPSrr*/
/* Table3263 */
0x4ec, /* MINPSrm*/
0x4ed, /* MINPSrr*/
/* Table3264 */
0x2a8, /* DIVPSrm*/
0x2a9, /* DIVPSrr*/
/* Table3265 */
0x4d7, /* MAXPSrm*/
0x4d8, /* MAXPSrr*/
/* Table3266 */
0x5aa, /* MMX_PUNPCKLBWirm*/
0x5ab, /* MMX_PUNPCKLBWirr*/
/* Table3267 */
0x5ae, /* MMX_PUNPCKLWDirm*/
0x5af, /* MMX_PUNPCKLWDirr*/
/* Table3268 */
0x5ac, /* MMX_PUNPCKLDQirm*/
0x5ad, /* MMX_PUNPCKLDQirr*/
/* Table3269 */
0x51e, /* MMX_PACKSSWBirm*/
0x51f, /* MMX_PACKSSWBirr*/
/* Table3270 */
0x542, /* MMX_PCMPGTBirm*/
0x543, /* MMX_PCMPGTBirr*/
/* Table3271 */
0x546, /* MMX_PCMPGTWirm*/
0x547, /* MMX_PCMPGTWirr*/
/* Table3272 */
0x544, /* MMX_PCMPGTDirm*/
0x545, /* MMX_PCMPGTDirr*/
/* Table3273 */
0x520, /* MMX_PACKUSWBirm*/
0x521, /* MMX_PACKUSWBirr*/
/* Table3274 */
0x5a4, /* MMX_PUNPCKHBWirm*/
0x5a5, /* MMX_PUNPCKHBWirr*/
/* Table3275 */
0x5a8, /* MMX_PUNPCKHWDirm*/
0x5a9, /* MMX_PUNPCKHWDirr*/
/* Table3276 */
0x5a6, /* MMX_PUNPCKHDQirm*/
0x5a7, /* MMX_PUNPCKHDQirr*/
/* Table3277 */
0x51c, /* MMX_PACKSSDWirm*/
0x51d, /* MMX_PACKSSDWirr*/
/* Table3278 */
0x508, /* MMX_MOVD64rm*/
0x509, /* MMX_MOVD64rr*/
/* Table3279 */
0x512, /* MMX_MOVQ64rm*/
0x513, /* MMX_MOVQ64rr*/
/* Table3280 */
0x574, /* MMX_PSHUFWmi*/
0x575, /* MMX_PSHUFWri*/
/* Table3281 */
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x591, /* MMX_PSRLWri*/
0, /* PHI*/
0x588, /* MMX_PSRAWri*/
0, /* PHI*/
0x582, /* MMX_PSLLWri*/
0, /* PHI*/
/* Table3282 */
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x58b, /* MMX_PSRLDri*/
0, /* PHI*/
0x585, /* MMX_PSRADri*/
0, /* PHI*/
0x57c, /* MMX_PSLLDri*/
0, /* PHI*/
/* Table3283 */
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x58e, /* MMX_PSRLQri*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x57f, /* MMX_PSLLQri*/
0, /* PHI*/
/* Table3284 */
0x53c, /* MMX_PCMPEQBirm*/
0x53d, /* MMX_PCMPEQBirr*/
/* Table3285 */
0x540, /* MMX_PCMPEQWirm*/
0x541, /* MMX_PCMPEQWirr*/
/* Table3286 */
0x53e, /* MMX_PCMPEQDirm*/
0x53f, /* MMX_PCMPEQDirr*/
/* Table3287 */
0x502, /* MMX_EMMS*/
/* Table3288 */
0xe17, /* VMREAD32rm*/
0xe18, /* VMREAD32rr*/
/* Table3289 */
0xe30, /* VMWRITE32rm*/
0xe31, /* VMWRITE32rr*/
/* Table3290 */
0x507, /* MMX_MOVD64mr*/
0x506, /* MMX_MOVD64grr*/
/* Table3291 */
0x511, /* MMX_MOVQ64mr*/
0, /* PHI*/
/* Table3292 */
0x42a, /* JO_4*/
/* Table3293 */
0x424, /* JNO_4*/
/* Table3294 */
0x40c, /* JB_4*/
/* Table3295 */
0x406, /* JAE_4*/
/* Table3296 */
0x411, /* JE_4*/
/* Table3297 */
0x422, /* JNE_4*/
/* Table3298 */
0x40a, /* JBE_4*/
/* Table3299 */
0x408, /* JA_4*/
/* Table3300 */
0x42f, /* JS_4*/
/* Table3301 */
0x428, /* JNS_4*/
/* Table3302 */
0x42c, /* JP_4*/
/* Table3303 */
0x426, /* JNP_4*/
/* Table3304 */
0x419, /* JL_4*/
/* Table3305 */
0x413, /* JGE_4*/
/* Table3306 */
0x417, /* JLE_4*/
/* Table3307 */
0x415, /* JG_4*/
/* Table3308 */
0x992, /* SETOm*/
0x993, /* SETOr*/
/* Table3309 */
0x98c, /* SETNOm*/
0x98d, /* SETNOr*/
/* Table3310 */
0x97e, /* SETBm*/
0x97f, /* SETBr*/
/* Table3311 */
0x974, /* SETAEm*/
0x975, /* SETAEr*/
/* Table3312 */
0x980, /* SETEm*/
0x981, /* SETEr*/
/* Table3313 */
0x98a, /* SETNEm*/
0x98b, /* SETNEr*/
/* Table3314 */
0x978, /* SETBEm*/
0x979, /* SETBEr*/
/* Table3315 */
0x976, /* SETAm*/
0x977, /* SETAr*/
/* Table3316 */
0x996, /* SETSm*/
0x997, /* SETSr*/
/* Table3317 */
0x990, /* SETNSm*/
0x991, /* SETNSr*/
/* Table3318 */
0x994, /* SETPm*/
0x995, /* SETPr*/
/* Table3319 */
0x98e, /* SETNPm*/
0x98f, /* SETNPr*/
/* Table3320 */
0x988, /* SETLm*/
0x989, /* SETLr*/
/* Table3321 */
0x982, /* SETGEm*/
0x983, /* SETGEr*/
/* Table3322 */
0x986, /* SETLEm*/
0x987, /* SETLEr*/
/* Table3323 */
0x984, /* SETGm*/
0x985, /* SETGr*/
/* Table3324 */
0x87d, /* PUSHFS32*/
/* Table3325 */
0x809, /* POPFS32*/
/* Table3326 */
0x254, /* CPUID*/
/* Table3327 */
0x135, /* BT32mr*/
0x137, /* BT32rr*/
/* Table3328 */
0x9b8, /* SHLD32mri8*/
0x9ba, /* SHLD32rri8*/
/* Table3329 */
0x9b7, /* SHLD32mrCL*/
0x9b9, /* SHLD32rrCL*/
/* Table3330 */
0x880, /* PUSHGS32*/
/* Table3331 */
0x80c, /* POPGS32*/
/* Table3332 */
0x926, /* RSM*/
/* Table3333 */
0x159, /* BTS32mr*/
0x15b, /* BTS32rr*/
/* Table3334 */
0x9e0, /* SHRD32mri8*/
0x9e2, /* SHRD32rri8*/
/* Table3335 */
0x9df, /* SHRD32mrCL*/
0x9e1, /* SHRD32rrCL*/
/* Table3336 */
0x329, /* FXSAVE*/
0x327, /* FXRSTOR*/
0x43e, /* LDMXCSR*/
0xa15, /* STMXCSR*/
0x11bd, /* XSAVE*/
0x11bb, /* XRSTOR*/
0x11bf, /* XSAVEOPT*/
0x175, /* CLFLUSH*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x45b, /* LFENCE*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x4e1, /* MFENCE*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x998, /* SFENCE*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
/* Table3337 */
0x371, /* IMUL32rm*/
0x374, /* IMUL32rr*/
/* Table3338 */
0x246, /* CMPXCHG8rm*/
0x247, /* CMPXCHG8rr*/
/* Table3339 */
0x241, /* CMPXCHG32rm*/
0x242, /* CMPXCHG32rr*/
/* Table3340 */
0x4bd, /* LSS32rm*/
0, /* PHI*/
/* Table3341 */
0x14d, /* BTR32mr*/
0x14f, /* BTR32rr*/
/* Table3342 */
0x45d, /* LFS32rm*/
0, /* PHI*/
/* Table3343 */
0x462, /* LGS32rm*/
0, /* PHI*/
/* Table3344 */
0x662, /* MOVZX32rm8*/
0x664, /* MOVZX32rr8*/
/* Table3345 */
0x661, /* MOVZX32rm16*/
0x663, /* MOVZX32rr16*/
/* Table3346 */
0xace, /* UD2B*/
/* Table3347 */
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x134, /* BT32mi8*/
0x158, /* BTS32mi8*/
0x14c, /* BTR32mi8*/
0x140, /* BTC32mi8*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x136, /* BT32ri8*/
0x15a, /* BTS32ri8*/
0x14e, /* BTR32ri8*/
0x142, /* BTC32ri8*/
/* Table3348 */
0x141, /* BTC32mr*/
0x143, /* BTC32rr*/
/* Table3349 */
0x124, /* BSF32rm*/
0x125, /* BSF32rr*/
/* Table3350 */
0x12a, /* BSR32rm*/
0x12b, /* BSR32rr*/
/* Table3351 */
0x646, /* MOVSX32rm8*/
0x648, /* MOVSX32rr8*/
/* Table3352 */
0x645, /* MOVSX32rm16*/
0x647, /* MOVSX32rr16*/
/* Table3353 */
0x117c, /* XADD8rm*/
0x117d, /* XADD8rr*/
/* Table3354 */
0x1178, /* XADD32rm*/
0x1179, /* XADD32rr*/
/* Table3355 */
0x22e, /* CMPPSrmi*/
0x230, /* CMPPSrri*/
/* Table3356 */
0x623, /* MOVNTImr*/
0, /* PHI*/
/* Table3357 */
0x555, /* MMX_PINSRWirmi*/
0x556, /* MMX_PINSRWirri*/
/* Table3358 */
0, /* PHI*/
0x548, /* MMX_PEXTRWirri*/
/* Table3359 */
0x9ed, /* SHUFPSrmi*/
0x9ee, /* SHUFPSrri*/
/* Table3360 */
0, /* PHI*/
0x245, /* CMPXCHG8B*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0xe15, /* VMPTRLDm*/
0xe16, /* VMPTRSTm*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x8c8, /* RDRAND32r*/
0x8cb, /* RDSEED32r*/
/* Table3361 */
0x12e, /* BSWAP32r*/
/* Table3362 */
0x12e, /* BSWAP32r*/
/* Table3363 */
0x12e, /* BSWAP32r*/
/* Table3364 */
0x12e, /* BSWAP32r*/
/* Table3365 */
0x12e, /* BSWAP32r*/
/* Table3366 */
0x12e, /* BSWAP32r*/
/* Table3367 */
0x12e, /* BSWAP32r*/
/* Table3368 */
0x12e, /* BSWAP32r*/
/* Table3369 */
0x592, /* MMX_PSRLWrm*/
0x593, /* MMX_PSRLWrr*/
/* Table3370 */
0x58c, /* MMX_PSRLDrm*/
0x58d, /* MMX_PSRLDrr*/
/* Table3371 */
0x58f, /* MMX_PSRLQrm*/
0x590, /* MMX_PSRLQrr*/
/* Table3372 */
0x526, /* MMX_PADDQirm*/
0x527, /* MMX_PADDQirr*/
/* Table3373 */
0x56a, /* MMX_PMULLWirm*/
0x56b, /* MMX_PMULLWirr*/
/* Table3374 */
0, /* PHI*/
0x563, /* MMX_PMOVMSKBrr*/
/* Table3375 */
0x59e, /* MMX_PSUBUSBirm*/
0x59f, /* MMX_PSUBUSBirr*/
/* Table3376 */
0x5a0, /* MMX_PSUBUSWirm*/
0x5a1, /* MMX_PSUBUSWirr*/
/* Table3377 */
0x561, /* MMX_PMINUBirm*/
0x562, /* MMX_PMINUBirr*/
/* Table3378 */
0x536, /* MMX_PANDirm*/
0x537, /* MMX_PANDirr*/
/* Table3379 */
0x52c, /* MMX_PADDUSBirm*/
0x52d, /* MMX_PADDUSBirr*/
/* Table3380 */
0x52e, /* MMX_PADDUSWirm*/
0x52f, /* MMX_PADDUSWirr*/
/* Table3381 */
0x55d, /* MMX_PMAXUBirm*/
0x55e, /* MMX_PMAXUBirr*/
/* Table3382 */
0x534, /* MMX_PANDNirm*/
0x535, /* MMX_PANDNirr*/
/* Table3383 */
0x538, /* MMX_PAVGBirm*/
0x539, /* MMX_PAVGBirr*/
/* Table3384 */
0x589, /* MMX_PSRAWrm*/
0x58a, /* MMX_PSRAWrr*/
/* Table3385 */
0x586, /* MMX_PSRADrm*/
0x587, /* MMX_PSRADrr*/
/* Table3386 */
0x53a, /* MMX_PAVGWirm*/
0x53b, /* MMX_PAVGWirr*/
/* Table3387 */
0x566, /* MMX_PMULHUWirm*/
0x567, /* MMX_PMULHUWirr*/
/* Table3388 */
0x568, /* MMX_PMULHWirm*/
0x569, /* MMX_PMULHWirr*/
/* Table3389 */
0x50e, /* MMX_MOVNTQmr*/
0, /* PHI*/
/* Table3390 */
0x59a, /* MMX_PSUBSBirm*/
0x59b, /* MMX_PSUBSBirr*/
/* Table3391 */
0x59c, /* MMX_PSUBSWirm*/
0x59d, /* MMX_PSUBSWirr*/
/* Table3392 */
0x55f, /* MMX_PMINSWirm*/
0x560, /* MMX_PMINSWirr*/
/* Table3393 */
0x56e, /* MMX_PORirm*/
0x56f, /* MMX_PORirr*/
/* Table3394 */
0x528, /* MMX_PADDSBirm*/
0x529, /* MMX_PADDSBirr*/
/* Table3395 */
0x52a, /* MMX_PADDSWirm*/
0x52b, /* MMX_PADDSWirr*/
/* Table3396 */
0x55b, /* MMX_PMAXSWirm*/
0x55c, /* MMX_PMAXSWirr*/
/* Table3397 */
0x5b0, /* MMX_PXORirm*/
0x5b1, /* MMX_PXORirr*/
/* Table3398 */
0x583, /* MMX_PSLLWrm*/
0x584, /* MMX_PSLLWrr*/
/* Table3399 */
0x57d, /* MMX_PSLLDrm*/
0x57e, /* MMX_PSLLDrr*/
/* Table3400 */
0x580, /* MMX_PSLLQrm*/
0x581, /* MMX_PSLLQrr*/
/* Table3401 */
0x56c, /* MMX_PMULUDQirm*/
0x56d, /* MMX_PMULUDQirr*/
/* Table3402 */
0x559, /* MMX_PMADDWDirm*/
0x55a, /* MMX_PMADDWDirr*/
/* Table3403 */
0x570, /* MMX_PSADBWirm*/
0x571, /* MMX_PSADBWirr*/
/* Table3404 */
0, /* PHI*/
0x503, /* MMX_MASKMOVQ*/
/* Table3405 */
0x594, /* MMX_PSUBBirm*/
0x595, /* MMX_PSUBBirr*/
/* Table3406 */
0x5a2, /* MMX_PSUBWirm*/
0x5a3, /* MMX_PSUBWirr*/
/* Table3407 */
0x596, /* MMX_PSUBDirm*/
0x597, /* MMX_PSUBDirr*/
/* Table3408 */
0x598, /* MMX_PSUBQirm*/
0x599, /* MMX_PSUBQirr*/
/* Table3409 */
0x522, /* MMX_PADDBirm*/
0x523, /* MMX_PADDBirr*/
/* Table3410 */
0x530, /* MMX_PADDWirm*/
0x531, /* MMX_PADDWirr*/
/* Table3411 */
0x524, /* MMX_PADDDirm*/
0x525, /* MMX_PADDDirr*/
/* Table3412 */
0x9f6, /* SLDT16m*/
0xa1d, /* STRm*/
0x466, /* LLDT16m*/
0x4bf, /* LTRm*/
0xb9b, /* VERRm*/
0xb9d, /* VERWm*/
0, /* PHI*/
0, /* PHI*/
0x9f8, /* SLDT32r*/
0xa1b, /* STR32r*/
0x467, /* LLDT16r*/
0x4c0, /* LTRr*/
0xb9c, /* VERRr*/
0xb9e, /* VERWr*/
0, /* PHI*/
0, /* PHI*/
/* Table3413 */
0x99a, /* SGDTm*/
0x9f0, /* SIDTm*/
0x460, /* LGDTm*/
0x465, /* LIDTm*/
0x9fb, /* SMSW16m*/
0, /* PHI*/
0x468, /* LMSW16m*/
0x3a0, /* INVLPG*/
0, /* PHI*/
0xd71, /* VMCALL*/
0xd90, /* VMLAUNCH*/
0xe1b, /* VMRESUME*/
0xe34, /* VMXOFF*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x5b3, /* MONITORrrr*/
0x69e, /* MWAITrr*/
0x172, /* CLAC*/
0xa10, /* STAC*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x1193, /* XGETBV*/
0x11c1, /* XSETBV*/
0, /* PHI*/
0, /* PHI*/
0xd73, /* VMFUNC*/
0x1192, /* XEND*/
0x11c5, /* XTEST*/
0, /* PHI*/
0xe1d, /* VMRUN64*/
0xd93, /* VMMCALL*/
0xd92, /* VMLOAD64*/
0xe1f, /* VMSAVE64*/
0xa13, /* STGI*/
0x176, /* CLGI*/
0x9f5, /* SKINIT*/
0x3a2, /* INVLPGA64*/
0x9fd, /* SMSW32r*/
0x9fd, /* SMSW32r*/
0x9fd, /* SMSW32r*/
0x9fd, /* SMSW32r*/
0x9fd, /* SMSW32r*/
0x9fd, /* SMSW32r*/
0x9fd, /* SMSW32r*/
0x9fd, /* SMSW32r*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x469, /* LMSW16r*/
0x469, /* LMSW16r*/
0x469, /* LMSW16r*/
0x469, /* LMSW16r*/
0x469, /* LMSW16r*/
0x469, /* LMSW16r*/
0x469, /* LMSW16r*/
0x469, /* LMSW16r*/
0xa85, /* SWAPGS*/
0x8ce, /* RDTSCP*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
/* Table3414 */
0x433, /* LAR32rm*/
0x434, /* LAR32rr*/
/* Table3415 */
0x4b8, /* LSL32rm*/
0x4b9, /* LSL32rr*/
/* Table3416 */
0xa86, /* SYSCALL*/
/* Table3417 */
0x178, /* CLTS*/
/* Table3418 */
0xa8a, /* SYSRET*/
/* Table3419 */
0x39d, /* INVD*/
/* Table3420 */
0x116c, /* WBINVD*/
/* Table3421 */
0xab4, /* TRAP*/
/* Table3422 */
0x812, /* PREFETCH*/
0x817, /* PREFETCHW*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
/* Table3423 */
0x2fe, /* FEMMS*/
/* Table3424 */
0x654, /* MOVUPSrm*/
0x655, /* MOVUPSrr*/
/* Table3425 */
0x653, /* MOVUPSmr*/
0x656, /* MOVUPSrr_REV*/
/* Table3426 */
0x61a, /* MOVLPSrm*/
0x611, /* MOVHLPSrr*/
/* Table3427 */
0x619, /* MOVLPSmr*/
0, /* PHI*/
/* Table3428 */
0xad5, /* UNPCKLPSrm*/
0xad6, /* UNPCKLPSrr*/
/* Table3429 */
0xad1, /* UNPCKHPSrm*/
0xad2, /* UNPCKHPSrr*/
/* Table3430 */
0x615, /* MOVHPSrm*/
0x616, /* MOVLHPSrr*/
/* Table3431 */
0x614, /* MOVHPSmr*/
0, /* PHI*/
/* Table3432 */
0x813, /* PREFETCHNTA*/
0x814, /* PREFETCHT0*/
0x815, /* PREFETCHT1*/
0x816, /* PREFETCHT2*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
/* Table3433 */
0x6d1, /* NOOPL*/
0, /* PHI*/
/* Table3434 */
0, /* PHI*/
0x5db, /* MOV64rc*/
/* Table3435 */
0, /* PHI*/
0x5dc, /* MOV64rd*/
/* Table3436 */
0, /* PHI*/
0x5d5, /* MOV64cr*/
/* Table3437 */
0, /* PHI*/
0x5d6, /* MOV64dr*/
/* Table3438 */
0x5fa, /* MOVAPSrm*/
0x5fb, /* MOVAPSrr*/
/* Table3439 */
0x5f9, /* MOVAPSmr*/
0x5fc, /* MOVAPSrr_REV*/
/* Table3440 */
0x4fa, /* MMX_CVTPI2PSirm*/
0x4fb, /* MMX_CVTPI2PSirr*/
/* Table3441 */
0x625, /* MOVNTPSmr*/
0, /* PHI*/
/* Table3442 */
0x500, /* MMX_CVTTPS2PIirm*/
0x501, /* MMX_CVTTPS2PIirr*/
/* Table3443 */
0x4fc, /* MMX_CVTPS2PIirm*/
0x4fd, /* MMX_CVTPS2PIirr*/
/* Table3444 */
0xac1, /* UCOMISSrm*/
0xac2, /* UCOMISSrr*/
/* Table3445 */
0x24a, /* COMISSrm*/
0x24b, /* COMISSrr*/
/* Table3446 */
0x1174, /* WRMSR*/
/* Table3447 */
0x8cd, /* RDTSC*/
/* Table3448 */
0x8c5, /* RDMSR*/
/* Table3449 */
0x8c6, /* RDPMC*/
/* Table3450 */
0xa87, /* SYSENTER*/
/* Table3451 */
0xa88, /* SYSEXIT*/
/* Table3452 */
0x1e6, /* CMOVO32rm*/
0x1e7, /* CMOVO32rr*/
/* Table3453 */
0x1d0, /* CMOVNO32rm*/
0x1d1, /* CMOVNO32rr*/
/* Table3454 */
0x188, /* CMOVB32rm*/
0x189, /* CMOVB32rr*/
/* Table3455 */
0x182, /* CMOVAE32rm*/
0x183, /* CMOVAE32rr*/
/* Table3456 */
0x19c, /* CMOVE32rm*/
0x19d, /* CMOVE32rr*/
/* Table3457 */
0x1c6, /* CMOVNE32rm*/
0x1c7, /* CMOVNE32rr*/
/* Table3458 */
0x18e, /* CMOVBE32rm*/
0x18f, /* CMOVBE32rr*/
/* Table3459 */
0x17c, /* CMOVA32rm*/
0x17d, /* CMOVA32rr*/
/* Table3460 */
0x1f6, /* CMOVS32rm*/
0x1f7, /* CMOVS32rr*/
/* Table3461 */
0x1e0, /* CMOVNS32rm*/
0x1e1, /* CMOVNS32rr*/
/* Table3462 */
0x1ec, /* CMOVP32rm*/
0x1ed, /* CMOVP32rr*/
/* Table3463 */
0x1d6, /* CMOVNP32rm*/
0x1d7, /* CMOVNP32rr*/
/* Table3464 */
0x1b2, /* CMOVL32rm*/
0x1b3, /* CMOVL32rr*/
/* Table3465 */
0x1ac, /* CMOVGE32rm*/
0x1ad, /* CMOVGE32rr*/
/* Table3466 */
0x1b8, /* CMOVLE32rm*/
0x1b9, /* CMOVLE32rr*/
/* Table3467 */
0x1a6, /* CMOVG32rm*/
0x1a7, /* CMOVG32rr*/
/* Table3468 */
0, /* PHI*/
0x61e, /* MOVMSKPSrr32*/
/* Table3469 */
0xa01, /* SQRTPSm*/
0xa02, /* SQRTPSr*/
/* Table3470 */
0x927, /* RSQRTPSm*/
0x929, /* RSQRTPSr*/
/* Table3471 */
0x8a1, /* RCPPSm*/
0x8a3, /* RCPPSr*/
/* Table3472 */
0xd7, /* ANDPSrm*/
0xd8, /* ANDPSrr*/
/* Table3473 */
0xd3, /* ANDNPSrm*/
0xd4, /* ANDNPSrr*/
/* Table3474 */
0x700, /* ORPSrm*/
0x701, /* ORPSrr*/
/* Table3475 */
0x11b9, /* XORPSrm*/
0x11ba, /* XORPSrr*/
/* Table3476 */
0x74, /* ADDPSrm*/
0x75, /* ADDPSrr*/
/* Table3477 */
0x67b, /* MULPSrm*/
0x67c, /* MULPSrr*/
/* Table3478 */
0x26b, /* CVTPS2PDrm*/
0x26c, /* CVTPS2PDrr*/
/* Table3479 */
0x263, /* CVTDQ2PSrm*/
0x264, /* CVTDQ2PSrr*/
/* Table3480 */
0xa54, /* SUBPSrm*/
0xa55, /* SUBPSrr*/
/* Table3481 */
0x4ec, /* MINPSrm*/
0x4ed, /* MINPSrr*/
/* Table3482 */
0x2a8, /* DIVPSrm*/
0x2a9, /* DIVPSrr*/
/* Table3483 */
0x4d7, /* MAXPSrm*/
0x4d8, /* MAXPSrr*/
/* Table3484 */
0x5aa, /* MMX_PUNPCKLBWirm*/
0x5ab, /* MMX_PUNPCKLBWirr*/
/* Table3485 */
0x5ae, /* MMX_PUNPCKLWDirm*/
0x5af, /* MMX_PUNPCKLWDirr*/
/* Table3486 */
0x5ac, /* MMX_PUNPCKLDQirm*/
0x5ad, /* MMX_PUNPCKLDQirr*/
/* Table3487 */
0x51e, /* MMX_PACKSSWBirm*/
0x51f, /* MMX_PACKSSWBirr*/
/* Table3488 */
0x542, /* MMX_PCMPGTBirm*/
0x543, /* MMX_PCMPGTBirr*/
/* Table3489 */
0x546, /* MMX_PCMPGTWirm*/
0x547, /* MMX_PCMPGTWirr*/
/* Table3490 */
0x544, /* MMX_PCMPGTDirm*/
0x545, /* MMX_PCMPGTDirr*/
/* Table3491 */
0x520, /* MMX_PACKUSWBirm*/
0x521, /* MMX_PACKUSWBirr*/
/* Table3492 */
0x5a4, /* MMX_PUNPCKHBWirm*/
0x5a5, /* MMX_PUNPCKHBWirr*/
/* Table3493 */
0x5a8, /* MMX_PUNPCKHWDirm*/
0x5a9, /* MMX_PUNPCKHWDirr*/
/* Table3494 */
0x5a6, /* MMX_PUNPCKHDQirm*/
0x5a7, /* MMX_PUNPCKHDQirr*/
/* Table3495 */
0x51c, /* MMX_PACKSSDWirm*/
0x51d, /* MMX_PACKSSDWirr*/
/* Table3496 */
0x508, /* MMX_MOVD64rm*/
0x509, /* MMX_MOVD64rr*/
/* Table3497 */
0x512, /* MMX_MOVQ64rm*/
0x513, /* MMX_MOVQ64rr*/
/* Table3498 */
0x574, /* MMX_PSHUFWmi*/
0x575, /* MMX_PSHUFWri*/
/* Table3499 */
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x591, /* MMX_PSRLWri*/
0, /* PHI*/
0x588, /* MMX_PSRAWri*/
0, /* PHI*/
0x582, /* MMX_PSLLWri*/
0, /* PHI*/
/* Table3500 */
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x58b, /* MMX_PSRLDri*/
0, /* PHI*/
0x585, /* MMX_PSRADri*/
0, /* PHI*/
0x57c, /* MMX_PSLLDri*/
0, /* PHI*/
/* Table3501 */
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x58e, /* MMX_PSRLQri*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x57f, /* MMX_PSLLQri*/
0, /* PHI*/
/* Table3502 */
0x53c, /* MMX_PCMPEQBirm*/
0x53d, /* MMX_PCMPEQBirr*/
/* Table3503 */
0x540, /* MMX_PCMPEQWirm*/
0x541, /* MMX_PCMPEQWirr*/
/* Table3504 */
0x53e, /* MMX_PCMPEQDirm*/
0x53f, /* MMX_PCMPEQDirr*/
/* Table3505 */
0x502, /* MMX_EMMS*/
/* Table3506 */
0xe19, /* VMREAD64rm*/
0xe1a, /* VMREAD64rr*/
/* Table3507 */
0xe32, /* VMWRITE64rm*/
0xe33, /* VMWRITE64rr*/
/* Table3508 */
0x507, /* MMX_MOVD64mr*/
0x506, /* MMX_MOVD64grr*/
/* Table3509 */
0x511, /* MMX_MOVQ64mr*/
0, /* PHI*/
/* Table3510 */
0x42a, /* JO_4*/
/* Table3511 */
0x424, /* JNO_4*/
/* Table3512 */
0x40c, /* JB_4*/
/* Table3513 */
0x406, /* JAE_4*/
/* Table3514 */
0x411, /* JE_4*/
/* Table3515 */
0x422, /* JNE_4*/
/* Table3516 */
0x40a, /* JBE_4*/
/* Table3517 */
0x408, /* JA_4*/
/* Table3518 */
0x42f, /* JS_4*/
/* Table3519 */
0x428, /* JNS_4*/
/* Table3520 */
0x42c, /* JP_4*/
/* Table3521 */
0x426, /* JNP_4*/
/* Table3522 */
0x419, /* JL_4*/
/* Table3523 */
0x413, /* JGE_4*/
/* Table3524 */
0x417, /* JLE_4*/
/* Table3525 */
0x415, /* JG_4*/
/* Table3526 */
0x992, /* SETOm*/
0x993, /* SETOr*/
/* Table3527 */
0x98c, /* SETNOm*/
0x98d, /* SETNOr*/
/* Table3528 */
0x97e, /* SETBm*/
0x97f, /* SETBr*/
/* Table3529 */
0x974, /* SETAEm*/
0x975, /* SETAEr*/
/* Table3530 */
0x980, /* SETEm*/
0x981, /* SETEr*/
/* Table3531 */
0x98a, /* SETNEm*/
0x98b, /* SETNEr*/
/* Table3532 */
0x978, /* SETBEm*/
0x979, /* SETBEr*/
/* Table3533 */
0x976, /* SETAm*/
0x977, /* SETAr*/
/* Table3534 */
0x996, /* SETSm*/
0x997, /* SETSr*/
/* Table3535 */
0x990, /* SETNSm*/
0x991, /* SETNSr*/
/* Table3536 */
0x994, /* SETPm*/
0x995, /* SETPr*/
/* Table3537 */
0x98e, /* SETNPm*/
0x98f, /* SETNPr*/
/* Table3538 */
0x988, /* SETLm*/
0x989, /* SETLr*/
/* Table3539 */
0x982, /* SETGEm*/
0x983, /* SETGEr*/
/* Table3540 */
0x986, /* SETLEm*/
0x987, /* SETLEr*/
/* Table3541 */
0x984, /* SETGm*/
0x985, /* SETGr*/
/* Table3542 */
0x87e, /* PUSHFS64*/
/* Table3543 */
0x80a, /* POPFS64*/
/* Table3544 */
0x254, /* CPUID*/
/* Table3545 */
0x135, /* BT32mr*/
0x137, /* BT32rr*/
/* Table3546 */
0x9b8, /* SHLD32mri8*/
0x9ba, /* SHLD32rri8*/
/* Table3547 */
0x9b7, /* SHLD32mrCL*/
0x9b9, /* SHLD32rrCL*/
/* Table3548 */
0x881, /* PUSHGS64*/
/* Table3549 */
0x80d, /* POPGS64*/
/* Table3550 */
0x926, /* RSM*/
/* Table3551 */
0x159, /* BTS32mr*/
0x15b, /* BTS32rr*/
/* Table3552 */
0x9e0, /* SHRD32mri8*/
0x9e2, /* SHRD32rri8*/
/* Table3553 */
0x9df, /* SHRD32mrCL*/
0x9e1, /* SHRD32rrCL*/
/* Table3554 */
0x329, /* FXSAVE*/
0x327, /* FXRSTOR*/
0x43e, /* LDMXCSR*/
0xa15, /* STMXCSR*/
0x11bd, /* XSAVE*/
0x11bb, /* XRSTOR*/
0x11bf, /* XSAVEOPT*/
0x175, /* CLFLUSH*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x45b, /* LFENCE*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x4e1, /* MFENCE*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x998, /* SFENCE*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
/* Table3555 */
0x371, /* IMUL32rm*/
0x374, /* IMUL32rr*/
/* Table3556 */
0x246, /* CMPXCHG8rm*/
0x247, /* CMPXCHG8rr*/
/* Table3557 */
0x241, /* CMPXCHG32rm*/
0x242, /* CMPXCHG32rr*/
/* Table3558 */
0x4bd, /* LSS32rm*/
0, /* PHI*/
/* Table3559 */
0x14d, /* BTR32mr*/
0x14f, /* BTR32rr*/
/* Table3560 */
0x45d, /* LFS32rm*/
0, /* PHI*/
/* Table3561 */
0x462, /* LGS32rm*/
0, /* PHI*/
/* Table3562 */
0x662, /* MOVZX32rm8*/
0x664, /* MOVZX32rr8*/
/* Table3563 */
0x661, /* MOVZX32rm16*/
0x663, /* MOVZX32rr16*/
/* Table3564 */
0xace, /* UD2B*/
/* Table3565 */
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x134, /* BT32mi8*/
0x158, /* BTS32mi8*/
0x14c, /* BTR32mi8*/
0x140, /* BTC32mi8*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x136, /* BT32ri8*/
0x15a, /* BTS32ri8*/
0x14e, /* BTR32ri8*/
0x142, /* BTC32ri8*/
/* Table3566 */
0x141, /* BTC32mr*/
0x143, /* BTC32rr*/
/* Table3567 */
0x124, /* BSF32rm*/
0x125, /* BSF32rr*/
/* Table3568 */
0x12a, /* BSR32rm*/
0x12b, /* BSR32rr*/
/* Table3569 */
0x646, /* MOVSX32rm8*/
0x648, /* MOVSX32rr8*/
/* Table3570 */
0x645, /* MOVSX32rm16*/
0x647, /* MOVSX32rr16*/
/* Table3571 */
0x117c, /* XADD8rm*/
0x117d, /* XADD8rr*/
/* Table3572 */
0x1178, /* XADD32rm*/
0x1179, /* XADD32rr*/
/* Table3573 */
0x22e, /* CMPPSrmi*/
0x230, /* CMPPSrri*/
/* Table3574 */
0x623, /* MOVNTImr*/
0, /* PHI*/
/* Table3575 */
0x555, /* MMX_PINSRWirmi*/
0x556, /* MMX_PINSRWirri*/
/* Table3576 */
0, /* PHI*/
0x548, /* MMX_PEXTRWirri*/
/* Table3577 */
0x9ed, /* SHUFPSrmi*/
0x9ee, /* SHUFPSrri*/
/* Table3578 */
0, /* PHI*/
0x245, /* CMPXCHG8B*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0xe15, /* VMPTRLDm*/
0xe16, /* VMPTRSTm*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x8c8, /* RDRAND32r*/
0x8cb, /* RDSEED32r*/
/* Table3579 */
0x12e, /* BSWAP32r*/
/* Table3580 */
0x12e, /* BSWAP32r*/
/* Table3581 */
0x12e, /* BSWAP32r*/
/* Table3582 */
0x12e, /* BSWAP32r*/
/* Table3583 */
0x12e, /* BSWAP32r*/
/* Table3584 */
0x12e, /* BSWAP32r*/
/* Table3585 */
0x12e, /* BSWAP32r*/
/* Table3586 */
0x12e, /* BSWAP32r*/
/* Table3587 */
0x592, /* MMX_PSRLWrm*/
0x593, /* MMX_PSRLWrr*/
/* Table3588 */
0x58c, /* MMX_PSRLDrm*/
0x58d, /* MMX_PSRLDrr*/
/* Table3589 */
0x58f, /* MMX_PSRLQrm*/
0x590, /* MMX_PSRLQrr*/
/* Table3590 */
0x526, /* MMX_PADDQirm*/
0x527, /* MMX_PADDQirr*/
/* Table3591 */
0x56a, /* MMX_PMULLWirm*/
0x56b, /* MMX_PMULLWirr*/
/* Table3592 */
0, /* PHI*/
0x563, /* MMX_PMOVMSKBrr*/
/* Table3593 */
0x59e, /* MMX_PSUBUSBirm*/
0x59f, /* MMX_PSUBUSBirr*/
/* Table3594 */
0x5a0, /* MMX_PSUBUSWirm*/
0x5a1, /* MMX_PSUBUSWirr*/
/* Table3595 */
0x561, /* MMX_PMINUBirm*/
0x562, /* MMX_PMINUBirr*/
/* Table3596 */
0x536, /* MMX_PANDirm*/
0x537, /* MMX_PANDirr*/
/* Table3597 */
0x52c, /* MMX_PADDUSBirm*/
0x52d, /* MMX_PADDUSBirr*/
/* Table3598 */
0x52e, /* MMX_PADDUSWirm*/
0x52f, /* MMX_PADDUSWirr*/
/* Table3599 */
0x55d, /* MMX_PMAXUBirm*/
0x55e, /* MMX_PMAXUBirr*/
/* Table3600 */
0x534, /* MMX_PANDNirm*/
0x535, /* MMX_PANDNirr*/
/* Table3601 */
0x538, /* MMX_PAVGBirm*/
0x539, /* MMX_PAVGBirr*/
/* Table3602 */
0x589, /* MMX_PSRAWrm*/
0x58a, /* MMX_PSRAWrr*/
/* Table3603 */
0x586, /* MMX_PSRADrm*/
0x587, /* MMX_PSRADrr*/
/* Table3604 */
0x53a, /* MMX_PAVGWirm*/
0x53b, /* MMX_PAVGWirr*/
/* Table3605 */
0x566, /* MMX_PMULHUWirm*/
0x567, /* MMX_PMULHUWirr*/
/* Table3606 */
0x568, /* MMX_PMULHWirm*/
0x569, /* MMX_PMULHWirr*/
/* Table3607 */
0x50e, /* MMX_MOVNTQmr*/
0, /* PHI*/
/* Table3608 */
0x59a, /* MMX_PSUBSBirm*/
0x59b, /* MMX_PSUBSBirr*/
/* Table3609 */
0x59c, /* MMX_PSUBSWirm*/
0x59d, /* MMX_PSUBSWirr*/
/* Table3610 */
0x55f, /* MMX_PMINSWirm*/
0x560, /* MMX_PMINSWirr*/
/* Table3611 */
0x56e, /* MMX_PORirm*/
0x56f, /* MMX_PORirr*/
/* Table3612 */
0x528, /* MMX_PADDSBirm*/
0x529, /* MMX_PADDSBirr*/
/* Table3613 */
0x52a, /* MMX_PADDSWirm*/
0x52b, /* MMX_PADDSWirr*/
/* Table3614 */
0x55b, /* MMX_PMAXSWirm*/
0x55c, /* MMX_PMAXSWirr*/
/* Table3615 */
0x5b0, /* MMX_PXORirm*/
0x5b1, /* MMX_PXORirr*/
/* Table3616 */
0x583, /* MMX_PSLLWrm*/
0x584, /* MMX_PSLLWrr*/
/* Table3617 */
0x57d, /* MMX_PSLLDrm*/
0x57e, /* MMX_PSLLDrr*/
/* Table3618 */
0x580, /* MMX_PSLLQrm*/
0x581, /* MMX_PSLLQrr*/
/* Table3619 */
0x56c, /* MMX_PMULUDQirm*/
0x56d, /* MMX_PMULUDQirr*/
/* Table3620 */
0x559, /* MMX_PMADDWDirm*/
0x55a, /* MMX_PMADDWDirr*/
/* Table3621 */
0x570, /* MMX_PSADBWirm*/
0x571, /* MMX_PSADBWirr*/
/* Table3622 */
0, /* PHI*/
0x504, /* MMX_MASKMOVQ64*/
/* Table3623 */
0x594, /* MMX_PSUBBirm*/
0x595, /* MMX_PSUBBirr*/
/* Table3624 */
0x5a2, /* MMX_PSUBWirm*/
0x5a3, /* MMX_PSUBWirr*/
/* Table3625 */
0x596, /* MMX_PSUBDirm*/
0x597, /* MMX_PSUBDirr*/
/* Table3626 */
0x598, /* MMX_PSUBQirm*/
0x599, /* MMX_PSUBQirr*/
/* Table3627 */
0x522, /* MMX_PADDBirm*/
0x523, /* MMX_PADDBirr*/
/* Table3628 */
0x530, /* MMX_PADDWirm*/
0x531, /* MMX_PADDWirr*/
/* Table3629 */
0x524, /* MMX_PADDDirm*/
0x525, /* MMX_PADDDirr*/
/* Table3630 */
0x9f6, /* SLDT16m*/
0xa1d, /* STRm*/
0x466, /* LLDT16m*/
0x4bf, /* LTRm*/
0xb9b, /* VERRm*/
0xb9d, /* VERWm*/
0, /* PHI*/
0, /* PHI*/
0x9f7, /* SLDT16r*/
0xa1a, /* STR16r*/
0x467, /* LLDT16r*/
0x4c0, /* LTRr*/
0xb9c, /* VERRr*/
0xb9e, /* VERWr*/
0, /* PHI*/
0, /* PHI*/
/* Table3631 */
0x999, /* SGDT16m*/
0x9ef, /* SIDT16m*/
0x45f, /* LGDT16m*/
0x464, /* LIDT16m*/
0x9fb, /* SMSW16m*/
0, /* PHI*/
0x468, /* LMSW16m*/
0x3a0, /* INVLPG*/
0, /* PHI*/
0xd71, /* VMCALL*/
0xd90, /* VMLAUNCH*/
0xe1b, /* VMRESUME*/
0xe34, /* VMXOFF*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x5b3, /* MONITORrrr*/
0x69e, /* MWAITrr*/
0x172, /* CLAC*/
0xa10, /* STAC*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x1193, /* XGETBV*/
0x11c1, /* XSETBV*/
0, /* PHI*/
0, /* PHI*/
0xd73, /* VMFUNC*/
0x1192, /* XEND*/
0x11c5, /* XTEST*/
0, /* PHI*/
0xe1c, /* VMRUN32*/
0xd93, /* VMMCALL*/
0xd91, /* VMLOAD32*/
0xe1e, /* VMSAVE32*/
0xa13, /* STGI*/
0x176, /* CLGI*/
0x9f5, /* SKINIT*/
0x3a1, /* INVLPGA32*/
0x9fc, /* SMSW16r*/
0x9fc, /* SMSW16r*/
0x9fc, /* SMSW16r*/
0x9fc, /* SMSW16r*/
0x9fc, /* SMSW16r*/
0x9fc, /* SMSW16r*/
0x9fc, /* SMSW16r*/
0x9fc, /* SMSW16r*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x469, /* LMSW16r*/
0x469, /* LMSW16r*/
0x469, /* LMSW16r*/
0x469, /* LMSW16r*/
0x469, /* LMSW16r*/
0x469, /* LMSW16r*/
0x469, /* LMSW16r*/
0x469, /* LMSW16r*/
0xa85, /* SWAPGS*/
0x8ce, /* RDTSCP*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
/* Table3632 */
0x431, /* LAR16rm*/
0x432, /* LAR16rr*/
/* Table3633 */
0x4b6, /* LSL16rm*/
0x4b7, /* LSL16rr*/
/* Table3634 */
0xa86, /* SYSCALL*/
/* Table3635 */
0x178, /* CLTS*/
/* Table3636 */
0xa8a, /* SYSRET*/
/* Table3637 */
0x39d, /* INVD*/
/* Table3638 */
0x116c, /* WBINVD*/
/* Table3639 */
0xab4, /* TRAP*/
/* Table3640 */
0x812, /* PREFETCH*/
0x817, /* PREFETCHW*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
/* Table3641 */
0x2fe, /* FEMMS*/
/* Table3642 */
0x650, /* MOVUPDrm*/
0x651, /* MOVUPDrr*/
/* Table3643 */
0x64f, /* MOVUPDmr*/
0x652, /* MOVUPDrr_REV*/
/* Table3644 */
0x618, /* MOVLPDrm*/
0x611, /* MOVHLPSrr*/
/* Table3645 */
0x617, /* MOVLPDmr*/
0, /* PHI*/
/* Table3646 */
0xad3, /* UNPCKLPDrm*/
0xad4, /* UNPCKLPDrr*/
/* Table3647 */
0xacf, /* UNPCKHPDrm*/
0xad0, /* UNPCKHPDrr*/
/* Table3648 */
0x613, /* MOVHPDrm*/
0x616, /* MOVLHPSrr*/
/* Table3649 */
0x612, /* MOVHPDmr*/
0, /* PHI*/
/* Table3650 */
0x813, /* PREFETCHNTA*/
0x814, /* PREFETCHT0*/
0x815, /* PREFETCHT1*/
0x816, /* PREFETCHT2*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
/* Table3651 */
0x6d2, /* NOOPW*/
0, /* PHI*/
/* Table3652 */
0, /* PHI*/
0x5cc, /* MOV32rc*/
/* Table3653 */
0, /* PHI*/
0x5cd, /* MOV32rd*/
/* Table3654 */
0, /* PHI*/
0x5c5, /* MOV32cr*/
/* Table3655 */
0, /* PHI*/
0x5c6, /* MOV32dr*/
/* Table3656 */
0x5f6, /* MOVAPDrm*/
0x5f7, /* MOVAPDrr*/
/* Table3657 */
0x5f5, /* MOVAPDmr*/
0x5f8, /* MOVAPDrr_REV*/
/* Table3658 */
0x4f8, /* MMX_CVTPI2PDirm*/
0x4f9, /* MMX_CVTPI2PDirr*/
/* Table3659 */
0x624, /* MOVNTPDmr*/
0, /* PHI*/
/* Table3660 */
0x4fe, /* MMX_CVTTPD2PIirm*/
0x4ff, /* MMX_CVTTPD2PIirr*/
/* Table3661 */
0x4f6, /* MMX_CVTPD2PIirm*/
0x4f7, /* MMX_CVTPD2PIirr*/
/* Table3662 */
0xabf, /* UCOMISDrm*/
0xac0, /* UCOMISDrr*/
/* Table3663 */
0x248, /* COMISDrm*/
0x249, /* COMISDrr*/
/* Table3664 */
0x1174, /* WRMSR*/
/* Table3665 */
0x8cd, /* RDTSC*/
/* Table3666 */
0x8c5, /* RDMSR*/
/* Table3667 */
0x8c6, /* RDPMC*/
/* Table3668 */
0xa87, /* SYSENTER*/
/* Table3669 */
0xa88, /* SYSEXIT*/
/* Table3670 */
0x1e4, /* CMOVO16rm*/
0x1e5, /* CMOVO16rr*/
/* Table3671 */
0x1ce, /* CMOVNO16rm*/
0x1cf, /* CMOVNO16rr*/
/* Table3672 */
0x186, /* CMOVB16rm*/
0x187, /* CMOVB16rr*/
/* Table3673 */
0x180, /* CMOVAE16rm*/
0x181, /* CMOVAE16rr*/
/* Table3674 */
0x19a, /* CMOVE16rm*/
0x19b, /* CMOVE16rr*/
/* Table3675 */
0x1c4, /* CMOVNE16rm*/
0x1c5, /* CMOVNE16rr*/
/* Table3676 */
0x18c, /* CMOVBE16rm*/
0x18d, /* CMOVBE16rr*/
/* Table3677 */
0x17a, /* CMOVA16rm*/
0x17b, /* CMOVA16rr*/
/* Table3678 */
0x1f4, /* CMOVS16rm*/
0x1f5, /* CMOVS16rr*/
/* Table3679 */
0x1de, /* CMOVNS16rm*/
0x1df, /* CMOVNS16rr*/
/* Table3680 */
0x1ea, /* CMOVP16rm*/
0x1eb, /* CMOVP16rr*/
/* Table3681 */
0x1d4, /* CMOVNP16rm*/
0x1d5, /* CMOVNP16rr*/
/* Table3682 */
0x1b0, /* CMOVL16rm*/
0x1b1, /* CMOVL16rr*/
/* Table3683 */
0x1aa, /* CMOVGE16rm*/
0x1ab, /* CMOVGE16rr*/
/* Table3684 */
0x1b6, /* CMOVLE16rm*/
0x1b7, /* CMOVLE16rr*/
/* Table3685 */
0x1a4, /* CMOVG16rm*/
0x1a5, /* CMOVG16rr*/
/* Table3686 */
0, /* PHI*/
0x61c, /* MOVMSKPDrr32*/
/* Table3687 */
0x9ff, /* SQRTPDm*/
0xa00, /* SQRTPDr*/
/* Table3688 */
0x927, /* RSQRTPSm*/
0x929, /* RSQRTPSr*/
/* Table3689 */
0x8a1, /* RCPPSm*/
0x8a3, /* RCPPSr*/
/* Table3690 */
0xd5, /* ANDPDrm*/
0xd6, /* ANDPDrr*/
/* Table3691 */
0xd1, /* ANDNPDrm*/
0xd2, /* ANDNPDrr*/
/* Table3692 */
0x6fe, /* ORPDrm*/
0x6ff, /* ORPDrr*/
/* Table3693 */
0x11b7, /* XORPDrm*/
0x11b8, /* XORPDrr*/
/* Table3694 */
0x72, /* ADDPDrm*/
0x73, /* ADDPDrr*/
/* Table3695 */
0x679, /* MULPDrm*/
0x67a, /* MULPDrr*/
/* Table3696 */
0x267, /* CVTPD2PSrm*/
0x268, /* CVTPD2PSrr*/
/* Table3697 */
0x269, /* CVTPS2DQrm*/
0x26a, /* CVTPS2DQrr*/
/* Table3698 */
0xa52, /* SUBPDrm*/
0xa53, /* SUBPDrr*/
/* Table3699 */
0x4ea, /* MINPDrm*/
0x4eb, /* MINPDrr*/
/* Table3700 */
0x2a6, /* DIVPDrm*/
0x2a7, /* DIVPDrr*/
/* Table3701 */
0x4d5, /* MAXPDrm*/
0x4d6, /* MAXPDrr*/
/* Table3702 */
0x85e, /* PUNPCKLBWrm*/
0x85f, /* PUNPCKLBWrr*/
/* Table3703 */
0x864, /* PUNPCKLWDrm*/
0x865, /* PUNPCKLWDrr*/
/* Table3704 */
0x860, /* PUNPCKLDQrm*/
0x861, /* PUNPCKLDQrr*/
/* Table3705 */
0x713, /* PACKSSWBrm*/
0x714, /* PACKSSWBrr*/
/* Table3706 */
0x74c, /* PCMPGTBrm*/
0x74d, /* PCMPGTBrr*/
/* Table3707 */
0x752, /* PCMPGTWrm*/
0x753, /* PCMPGTWrr*/
/* Table3708 */
0x74e, /* PCMPGTDrm*/
0x74f, /* PCMPGTDrr*/
/* Table3709 */
0x717, /* PACKUSWBrm*/
0x718, /* PACKUSWBrr*/
/* Table3710 */
0x856, /* PUNPCKHBWrm*/
0x857, /* PUNPCKHBWrr*/
/* Table3711 */
0x85c, /* PUNPCKHWDrm*/
0x85d, /* PUNPCKHWDrr*/
/* Table3712 */
0x858, /* PUNPCKHDQrm*/
0x859, /* PUNPCKHDQrr*/
/* Table3713 */
0x711, /* PACKSSDWrm*/
0x712, /* PACKSSDWrr*/
/* Table3714 */
0x862, /* PUNPCKLQDQrm*/
0x863, /* PUNPCKLQDQrr*/
/* Table3715 */
0x85a, /* PUNPCKHQDQrm*/
0x85b, /* PUNPCKHQDQrr*/
/* Table3716 */
0x605, /* MOVDI2PDIrm*/
0x606, /* MOVDI2PDIrr*/
/* Table3717 */
0x60a, /* MOVDQArm*/
0x60b, /* MOVDQArr*/
/* Table3718 */
0x81c, /* PSHUFDmi*/
0x81d, /* PSHUFDri*/
/* Table3719 */
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x83f, /* PSRLWri*/
0, /* PHI*/
0x835, /* PSRAWri*/
0, /* PHI*/
0x82f, /* PSLLWri*/
0, /* PHI*/
/* Table3720 */
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x839, /* PSRLDri*/
0, /* PHI*/
0x832, /* PSRADri*/
0, /* PHI*/
0x829, /* PSLLDri*/
0, /* PHI*/
/* Table3721 */
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x83c, /* PSRLQri*/
0x838, /* PSRLDQri*/
0, /* PHI*/
0, /* PHI*/
0x82c, /* PSLLQri*/
0x828, /* PSLLDQri*/
/* Table3722 */
0x73c, /* PCMPEQBrm*/
0x73d, /* PCMPEQBrr*/
/* Table3723 */
0x742, /* PCMPEQWrm*/
0x743, /* PCMPEQWrr*/
/* Table3724 */
0x73e, /* PCMPEQDrm*/
0x73f, /* PCMPEQDrr*/
/* Table3725 */
0x502, /* MMX_EMMS*/
/* Table3726 */
0xe17, /* VMREAD32rm*/
0x2ea, /* EXTRQI*/
/* Table3727 */
0xe30, /* VMWRITE32rm*/
0x2e9, /* EXTRQ*/
/* Table3728 */
0x34a, /* HADDPDrm*/
0x34b, /* HADDPDrr*/
/* Table3729 */
0x34f, /* HSUBPDrm*/
0x350, /* HSUBPDrr*/
/* Table3730 */
0x629, /* MOVPDI2DImr*/
0x62a, /* MOVPDI2DIrr*/
/* Table3731 */
0x609, /* MOVDQAmr*/
0x60c, /* MOVDQArr_REV*/
/* Table3732 */
0x42a, /* JO_4*/
/* Table3733 */
0x424, /* JNO_4*/
/* Table3734 */
0x40c, /* JB_4*/
/* Table3735 */
0x406, /* JAE_4*/
/* Table3736 */
0x411, /* JE_4*/
/* Table3737 */
0x422, /* JNE_4*/
/* Table3738 */
0x40a, /* JBE_4*/
/* Table3739 */
0x408, /* JA_4*/
/* Table3740 */
0x42f, /* JS_4*/
/* Table3741 */
0x428, /* JNS_4*/
/* Table3742 */
0x42c, /* JP_4*/
/* Table3743 */
0x426, /* JNP_4*/
/* Table3744 */
0x419, /* JL_4*/
/* Table3745 */
0x413, /* JGE_4*/
/* Table3746 */
0x417, /* JLE_4*/
/* Table3747 */
0x415, /* JG_4*/
/* Table3748 */
0x992, /* SETOm*/
0x993, /* SETOr*/
/* Table3749 */
0x98c, /* SETNOm*/
0x98d, /* SETNOr*/
/* Table3750 */
0x97e, /* SETBm*/
0x97f, /* SETBr*/
/* Table3751 */
0x974, /* SETAEm*/
0x975, /* SETAEr*/
/* Table3752 */
0x980, /* SETEm*/
0x981, /* SETEr*/
/* Table3753 */
0x98a, /* SETNEm*/
0x98b, /* SETNEr*/
/* Table3754 */
0x978, /* SETBEm*/
0x979, /* SETBEr*/
/* Table3755 */
0x976, /* SETAm*/
0x977, /* SETAr*/
/* Table3756 */
0x996, /* SETSm*/
0x997, /* SETSr*/
/* Table3757 */
0x990, /* SETNSm*/
0x991, /* SETNSr*/
/* Table3758 */
0x994, /* SETPm*/
0x995, /* SETPr*/
/* Table3759 */
0x98e, /* SETNPm*/
0x98f, /* SETNPr*/
/* Table3760 */
0x988, /* SETLm*/
0x989, /* SETLr*/
/* Table3761 */
0x982, /* SETGEm*/
0x983, /* SETGEr*/
/* Table3762 */
0x986, /* SETLEm*/
0x987, /* SETLEr*/
/* Table3763 */
0x984, /* SETGm*/
0x985, /* SETGr*/
/* Table3764 */
0x87c, /* PUSHFS16*/
/* Table3765 */
0x808, /* POPFS16*/
/* Table3766 */
0x254, /* CPUID*/
/* Table3767 */
0x131, /* BT16mr*/
0x133, /* BT16rr*/
/* Table3768 */
0x9b4, /* SHLD16mri8*/
0x9b6, /* SHLD16rri8*/
/* Table3769 */
0x9b3, /* SHLD16mrCL*/
0x9b5, /* SHLD16rrCL*/
/* Table3770 */
0x87f, /* PUSHGS16*/
/* Table3771 */
0x80b, /* POPGS16*/
/* Table3772 */
0x926, /* RSM*/
/* Table3773 */
0x155, /* BTS16mr*/
0x157, /* BTS16rr*/
/* Table3774 */
0x9dc, /* SHRD16mri8*/
0x9de, /* SHRD16rri8*/
/* Table3775 */
0x9db, /* SHRD16mrCL*/
0x9dd, /* SHRD16rrCL*/
/* Table3776 */
0x329, /* FXSAVE*/
0x327, /* FXRSTOR*/
0x43e, /* LDMXCSR*/
0xa15, /* STMXCSR*/
0x11bd, /* XSAVE*/
0x11bb, /* XRSTOR*/
0x11bf, /* XSAVEOPT*/
0x175, /* CLFLUSH*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x45b, /* LFENCE*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x4e1, /* MFENCE*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x998, /* SFENCE*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
/* Table3777 */
0x369, /* IMUL16rm*/
0x36c, /* IMUL16rr*/
/* Table3778 */
0x246, /* CMPXCHG8rm*/
0x247, /* CMPXCHG8rr*/
/* Table3779 */
0x23f, /* CMPXCHG16rm*/
0x240, /* CMPXCHG16rr*/
/* Table3780 */
0x4bc, /* LSS16rm*/
0, /* PHI*/
/* Table3781 */
0x149, /* BTR16mr*/
0x14b, /* BTR16rr*/
/* Table3782 */
0x45c, /* LFS16rm*/
0, /* PHI*/
/* Table3783 */
0x461, /* LGS16rm*/
0, /* PHI*/
/* Table3784 */
0x65d, /* MOVZX16rm8*/
0x65e, /* MOVZX16rr8*/
/* Table3785 */
0x661, /* MOVZX32rm16*/
0x663, /* MOVZX32rr16*/
/* Table3786 */
0xace, /* UD2B*/
/* Table3787 */
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x130, /* BT16mi8*/
0x154, /* BTS16mi8*/
0x148, /* BTR16mi8*/
0x13c, /* BTC16mi8*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x132, /* BT16ri8*/
0x156, /* BTS16ri8*/
0x14a, /* BTR16ri8*/
0x13e, /* BTC16ri8*/
/* Table3788 */
0x13d, /* BTC16mr*/
0x13f, /* BTC16rr*/
/* Table3789 */
0x122, /* BSF16rm*/
0x123, /* BSF16rr*/
/* Table3790 */
0x128, /* BSR16rm*/
0x129, /* BSR16rr*/
/* Table3791 */
0x643, /* MOVSX16rm8*/
0x644, /* MOVSX16rr8*/
/* Table3792 */
0x645, /* MOVSX32rm16*/
0x647, /* MOVSX32rr16*/
/* Table3793 */
0x117c, /* XADD8rm*/
0x117d, /* XADD8rr*/
/* Table3794 */
0x1176, /* XADD16rm*/
0x1177, /* XADD16rr*/
/* Table3795 */
0x22a, /* CMPPDrmi*/
0x22c, /* CMPPDrri*/
/* Table3796 */
0x623, /* MOVNTImr*/
0, /* PHI*/
/* Table3797 */
0x7aa, /* PINSRWrmi*/
0x7ab, /* PINSRWrri*/
/* Table3798 */
0, /* PHI*/
0x76b, /* PEXTRWri*/
/* Table3799 */
0x9eb, /* SHUFPDrmi*/
0x9ec, /* SHUFPDrri*/
/* Table3800 */
0, /* PHI*/
0x245, /* CMPXCHG8B*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0xd72, /* VMCLEARm*/
0xe16, /* VMPTRSTm*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x8c7, /* RDRAND16r*/
0x8ca, /* RDSEED16r*/
/* Table3801 */
0x12e, /* BSWAP32r*/
/* Table3802 */
0x12e, /* BSWAP32r*/
/* Table3803 */
0x12e, /* BSWAP32r*/
/* Table3804 */
0x12e, /* BSWAP32r*/
/* Table3805 */
0x12e, /* BSWAP32r*/
/* Table3806 */
0x12e, /* BSWAP32r*/
/* Table3807 */
0x12e, /* BSWAP32r*/
/* Table3808 */
0x12e, /* BSWAP32r*/
/* Table3809 */
0x7e, /* ADDSUBPDrm*/
0x7f, /* ADDSUBPDrr*/
/* Table3810 */
0x840, /* PSRLWrm*/
0x841, /* PSRLWrr*/
/* Table3811 */
0x83a, /* PSRLDrm*/
0x83b, /* PSRLDrr*/
/* Table3812 */
0x83d, /* PSRLQrm*/
0x83e, /* PSRLQrr*/
/* Table3813 */
0x71d, /* PADDQrm*/
0x71e, /* PADDQrr*/
/* Table3814 */
0x7ed, /* PMULLWrm*/
0x7ee, /* PMULLWrr*/
/* Table3815 */
0x61b, /* MOVLQ128mr*/
0, /* PHI*/
/* Table3816 */
0, /* PHI*/
0x7c8, /* PMOVMSKBrr*/
/* Table3817 */
0x84c, /* PSUBUSBrm*/
0x84d, /* PSUBUSBrr*/
/* Table3818 */
0x84e, /* PSUBUSWrm*/
0x84f, /* PSUBUSWrr*/
/* Table3819 */
0x7c2, /* PMINUBrm*/
0x7c3, /* PMINUBrr*/
/* Table3820 */
0x72d, /* PANDrm*/
0x72e, /* PANDrr*/
/* Table3821 */
0x723, /* PADDUSBrm*/
0x724, /* PADDUSBrr*/
/* Table3822 */
0x725, /* PADDUSWrm*/
0x726, /* PADDUSWrr*/
/* Table3823 */
0x7b6, /* PMAXUBrm*/
0x7b7, /* PMAXUBrr*/
/* Table3824 */
0x72b, /* PANDNrm*/
0x72c, /* PANDNrr*/
/* Table3825 */
0x730, /* PAVGBrm*/
0x731, /* PAVGBrr*/
/* Table3826 */
0x836, /* PSRAWrm*/
0x837, /* PSRAWrr*/
/* Table3827 */
0x833, /* PSRADrm*/
0x834, /* PSRADrr*/
/* Table3828 */
0x734, /* PAVGWrm*/
0x735, /* PAVGWrr*/
/* Table3829 */
0x7e7, /* PMULHUWrm*/
0x7e8, /* PMULHUWrr*/
/* Table3830 */
0x7e9, /* PMULHWrm*/
0x7ea, /* PMULHWrr*/
/* Table3831 */
0x281, /* CVTTPD2DQrm*/
0x282, /* CVTTPD2DQrr*/
/* Table3832 */
0x621, /* MOVNTDQmr*/
0, /* PHI*/
/* Table3833 */
0x848, /* PSUBSBrm*/
0x849, /* PSUBSBrr*/
/* Table3834 */
0x84a, /* PSUBSWrm*/
0x84b, /* PSUBSWrr*/
/* Table3835 */
0x7c0, /* PMINSWrm*/
0x7c1, /* PMINSWrr*/
/* Table3836 */
0x810, /* PORrm*/
0x811, /* PORrr*/
/* Table3837 */
0x71f, /* PADDSBrm*/
0x720, /* PADDSBrr*/
/* Table3838 */
0x721, /* PADDSWrm*/
0x722, /* PADDSWrr*/
/* Table3839 */
0x7b4, /* PMAXSWrm*/
0x7b5, /* PMAXSWrr*/
/* Table3840 */
0x887, /* PXORrm*/
0x888, /* PXORrr*/
/* Table3841 */
0x830, /* PSLLWrm*/
0x831, /* PSLLWrr*/
/* Table3842 */
0x82a, /* PSLLDrm*/
0x82b, /* PSLLDrr*/
/* Table3843 */
0x82d, /* PSLLQrm*/
0x82e, /* PSLLQrr*/
/* Table3844 */
0x7ef, /* PMULUDQrm*/
0x7f0, /* PMULUDQrr*/
/* Table3845 */
0x7ae, /* PMADDWDrm*/
0x7af, /* PMADDWDrr*/
/* Table3846 */
0x818, /* PSADBWrm*/
0x819, /* PSADBWrr*/
/* Table3847 */
0, /* PHI*/
0x4cb, /* MASKMOVDQU*/
/* Table3848 */
0x842, /* PSUBBrm*/
0x843, /* PSUBBrr*/
/* Table3849 */
0x850, /* PSUBWrm*/
0x851, /* PSUBWrr*/
/* Table3850 */
0x844, /* PSUBDrm*/
0x845, /* PSUBDrr*/
/* Table3851 */
0x846, /* PSUBQrm*/
0x847, /* PSUBQrr*/
/* Table3852 */
0x719, /* PADDBrm*/
0x71a, /* PADDBrr*/
/* Table3853 */
0x727, /* PADDWrm*/
0x728, /* PADDWrr*/
/* Table3854 */
0x71b, /* PADDDrm*/
0x71c, /* PADDDrr*/
/* Table3855 */
0x9f6, /* SLDT16m*/
0xa1d, /* STRm*/
0x466, /* LLDT16m*/
0x4bf, /* LTRm*/
0xb9b, /* VERRm*/
0xb9d, /* VERWm*/
0, /* PHI*/
0, /* PHI*/
0x9f8, /* SLDT32r*/
0xa1b, /* STR32r*/
0x467, /* LLDT16r*/
0x4c0, /* LTRr*/
0xb9c, /* VERRr*/
0xb9e, /* VERWr*/
0, /* PHI*/
0, /* PHI*/
/* Table3856 */
0x99a, /* SGDTm*/
0x9f0, /* SIDTm*/
0x460, /* LGDTm*/
0x465, /* LIDTm*/
0x9fb, /* SMSW16m*/
0, /* PHI*/
0x468, /* LMSW16m*/
0x3a0, /* INVLPG*/
0, /* PHI*/
0xd71, /* VMCALL*/
0xd90, /* VMLAUNCH*/
0xe1b, /* VMRESUME*/
0xe34, /* VMXOFF*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x5b3, /* MONITORrrr*/
0x69e, /* MWAITrr*/
0x172, /* CLAC*/
0xa10, /* STAC*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x1193, /* XGETBV*/
0x11c1, /* XSETBV*/
0, /* PHI*/
0, /* PHI*/
0xd73, /* VMFUNC*/
0x1192, /* XEND*/
0x11c5, /* XTEST*/
0, /* PHI*/
0xe1c, /* VMRUN32*/
0xd93, /* VMMCALL*/
0xd91, /* VMLOAD32*/
0xe1e, /* VMSAVE32*/
0xa13, /* STGI*/
0x176, /* CLGI*/
0x9f5, /* SKINIT*/
0x3a1, /* INVLPGA32*/
0x9fd, /* SMSW32r*/
0x9fd, /* SMSW32r*/
0x9fd, /* SMSW32r*/
0x9fd, /* SMSW32r*/
0x9fd, /* SMSW32r*/
0x9fd, /* SMSW32r*/
0x9fd, /* SMSW32r*/
0x9fd, /* SMSW32r*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x469, /* LMSW16r*/
0x469, /* LMSW16r*/
0x469, /* LMSW16r*/
0x469, /* LMSW16r*/
0x469, /* LMSW16r*/
0x469, /* LMSW16r*/
0x469, /* LMSW16r*/
0x469, /* LMSW16r*/
0xa85, /* SWAPGS*/
0x8ce, /* RDTSCP*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
/* Table3857 */
0x433, /* LAR32rm*/
0x434, /* LAR32rr*/
/* Table3858 */
0x4b8, /* LSL32rm*/
0x4b9, /* LSL32rr*/
/* Table3859 */
0xa86, /* SYSCALL*/
/* Table3860 */
0x178, /* CLTS*/
/* Table3861 */
0xa8a, /* SYSRET*/
/* Table3862 */
0x39d, /* INVD*/
/* Table3863 */
0x116c, /* WBINVD*/
/* Table3864 */
0xab4, /* TRAP*/
/* Table3865 */
0x812, /* PREFETCH*/
0x817, /* PREFETCHW*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
/* Table3866 */
0x2fe, /* FEMMS*/
/* Table3867 */
0x654, /* MOVUPSrm*/
0x655, /* MOVUPSrr*/
/* Table3868 */
0x653, /* MOVUPSmr*/
0x656, /* MOVUPSrr_REV*/
/* Table3869 */
0x61a, /* MOVLPSrm*/
0x611, /* MOVHLPSrr*/
/* Table3870 */
0x619, /* MOVLPSmr*/
0, /* PHI*/
/* Table3871 */
0xad5, /* UNPCKLPSrm*/
0xad6, /* UNPCKLPSrr*/
/* Table3872 */
0xad1, /* UNPCKHPSrm*/
0xad2, /* UNPCKHPSrr*/
/* Table3873 */
0x615, /* MOVHPSrm*/
0x616, /* MOVLHPSrr*/
/* Table3874 */
0x614, /* MOVHPSmr*/
0, /* PHI*/
/* Table3875 */
0x813, /* PREFETCHNTA*/
0x814, /* PREFETCHT0*/
0x815, /* PREFETCHT1*/
0x816, /* PREFETCHT2*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
/* Table3876 */
0x6d1, /* NOOPL*/
0, /* PHI*/
/* Table3877 */
0, /* PHI*/
0x5cc, /* MOV32rc*/
/* Table3878 */
0, /* PHI*/
0x5cd, /* MOV32rd*/
/* Table3879 */
0, /* PHI*/
0x5c5, /* MOV32cr*/
/* Table3880 */
0, /* PHI*/
0x5c6, /* MOV32dr*/
/* Table3881 */
0x5fa, /* MOVAPSrm*/
0x5fb, /* MOVAPSrr*/
/* Table3882 */
0x5f9, /* MOVAPSmr*/
0x5fc, /* MOVAPSrr_REV*/
/* Table3883 */
0x4fa, /* MMX_CVTPI2PSirm*/
0x4fb, /* MMX_CVTPI2PSirr*/
/* Table3884 */
0x625, /* MOVNTPSmr*/
0, /* PHI*/
/* Table3885 */
0x500, /* MMX_CVTTPS2PIirm*/
0x501, /* MMX_CVTTPS2PIirr*/
/* Table3886 */
0x4fc, /* MMX_CVTPS2PIirm*/
0x4fd, /* MMX_CVTPS2PIirr*/
/* Table3887 */
0xac1, /* UCOMISSrm*/
0xac2, /* UCOMISSrr*/
/* Table3888 */
0x24a, /* COMISSrm*/
0x24b, /* COMISSrr*/
/* Table3889 */
0x1174, /* WRMSR*/
/* Table3890 */
0x8cd, /* RDTSC*/
/* Table3891 */
0x8c5, /* RDMSR*/
/* Table3892 */
0x8c6, /* RDPMC*/
/* Table3893 */
0xa87, /* SYSENTER*/
/* Table3894 */
0xa88, /* SYSEXIT*/
/* Table3895 */
0x1e6, /* CMOVO32rm*/
0x1e7, /* CMOVO32rr*/
/* Table3896 */
0x1d0, /* CMOVNO32rm*/
0x1d1, /* CMOVNO32rr*/
/* Table3897 */
0x188, /* CMOVB32rm*/
0x189, /* CMOVB32rr*/
/* Table3898 */
0x182, /* CMOVAE32rm*/
0x183, /* CMOVAE32rr*/
/* Table3899 */
0x19c, /* CMOVE32rm*/
0x19d, /* CMOVE32rr*/
/* Table3900 */
0x1c6, /* CMOVNE32rm*/
0x1c7, /* CMOVNE32rr*/
/* Table3901 */
0x18e, /* CMOVBE32rm*/
0x18f, /* CMOVBE32rr*/
/* Table3902 */
0x17c, /* CMOVA32rm*/
0x17d, /* CMOVA32rr*/
/* Table3903 */
0x1f6, /* CMOVS32rm*/
0x1f7, /* CMOVS32rr*/
/* Table3904 */
0x1e0, /* CMOVNS32rm*/
0x1e1, /* CMOVNS32rr*/
/* Table3905 */
0x1ec, /* CMOVP32rm*/
0x1ed, /* CMOVP32rr*/
/* Table3906 */
0x1d6, /* CMOVNP32rm*/
0x1d7, /* CMOVNP32rr*/
/* Table3907 */
0x1b2, /* CMOVL32rm*/
0x1b3, /* CMOVL32rr*/
/* Table3908 */
0x1ac, /* CMOVGE32rm*/
0x1ad, /* CMOVGE32rr*/
/* Table3909 */
0x1b8, /* CMOVLE32rm*/
0x1b9, /* CMOVLE32rr*/
/* Table3910 */
0x1a6, /* CMOVG32rm*/
0x1a7, /* CMOVG32rr*/
/* Table3911 */
0, /* PHI*/
0x61e, /* MOVMSKPSrr32*/
/* Table3912 */
0xa01, /* SQRTPSm*/
0xa02, /* SQRTPSr*/
/* Table3913 */
0x927, /* RSQRTPSm*/
0x929, /* RSQRTPSr*/
/* Table3914 */
0x8a1, /* RCPPSm*/
0x8a3, /* RCPPSr*/
/* Table3915 */
0xd7, /* ANDPSrm*/
0xd8, /* ANDPSrr*/
/* Table3916 */
0xd3, /* ANDNPSrm*/
0xd4, /* ANDNPSrr*/
/* Table3917 */
0x700, /* ORPSrm*/
0x701, /* ORPSrr*/
/* Table3918 */
0x11b9, /* XORPSrm*/
0x11ba, /* XORPSrr*/
/* Table3919 */
0x74, /* ADDPSrm*/
0x75, /* ADDPSrr*/
/* Table3920 */
0x67b, /* MULPSrm*/
0x67c, /* MULPSrr*/
/* Table3921 */
0x26b, /* CVTPS2PDrm*/
0x26c, /* CVTPS2PDrr*/
/* Table3922 */
0x263, /* CVTDQ2PSrm*/
0x264, /* CVTDQ2PSrr*/
/* Table3923 */
0xa54, /* SUBPSrm*/
0xa55, /* SUBPSrr*/
/* Table3924 */
0x4ec, /* MINPSrm*/
0x4ed, /* MINPSrr*/
/* Table3925 */
0x2a8, /* DIVPSrm*/
0x2a9, /* DIVPSrr*/
/* Table3926 */
0x4d7, /* MAXPSrm*/
0x4d8, /* MAXPSrr*/
/* Table3927 */
0x5aa, /* MMX_PUNPCKLBWirm*/
0x5ab, /* MMX_PUNPCKLBWirr*/
/* Table3928 */
0x5ae, /* MMX_PUNPCKLWDirm*/
0x5af, /* MMX_PUNPCKLWDirr*/
/* Table3929 */
0x5ac, /* MMX_PUNPCKLDQirm*/
0x5ad, /* MMX_PUNPCKLDQirr*/
/* Table3930 */
0x51e, /* MMX_PACKSSWBirm*/
0x51f, /* MMX_PACKSSWBirr*/
/* Table3931 */
0x542, /* MMX_PCMPGTBirm*/
0x543, /* MMX_PCMPGTBirr*/
/* Table3932 */
0x546, /* MMX_PCMPGTWirm*/
0x547, /* MMX_PCMPGTWirr*/
/* Table3933 */
0x544, /* MMX_PCMPGTDirm*/
0x545, /* MMX_PCMPGTDirr*/
/* Table3934 */
0x520, /* MMX_PACKUSWBirm*/
0x521, /* MMX_PACKUSWBirr*/
/* Table3935 */
0x5a4, /* MMX_PUNPCKHBWirm*/
0x5a5, /* MMX_PUNPCKHBWirr*/
/* Table3936 */
0x5a8, /* MMX_PUNPCKHWDirm*/
0x5a9, /* MMX_PUNPCKHWDirr*/
/* Table3937 */
0x5a6, /* MMX_PUNPCKHDQirm*/
0x5a7, /* MMX_PUNPCKHDQirr*/
/* Table3938 */
0x51c, /* MMX_PACKSSDWirm*/
0x51d, /* MMX_PACKSSDWirr*/
/* Table3939 */
0x508, /* MMX_MOVD64rm*/
0x509, /* MMX_MOVD64rr*/
/* Table3940 */
0x512, /* MMX_MOVQ64rm*/
0x513, /* MMX_MOVQ64rr*/
/* Table3941 */
0x574, /* MMX_PSHUFWmi*/
0x575, /* MMX_PSHUFWri*/
/* Table3942 */
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x591, /* MMX_PSRLWri*/
0, /* PHI*/
0x588, /* MMX_PSRAWri*/
0, /* PHI*/
0x582, /* MMX_PSLLWri*/
0, /* PHI*/
/* Table3943 */
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x58b, /* MMX_PSRLDri*/
0, /* PHI*/
0x585, /* MMX_PSRADri*/
0, /* PHI*/
0x57c, /* MMX_PSLLDri*/
0, /* PHI*/
/* Table3944 */
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x58e, /* MMX_PSRLQri*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x57f, /* MMX_PSLLQri*/
0, /* PHI*/
/* Table3945 */
0x53c, /* MMX_PCMPEQBirm*/
0x53d, /* MMX_PCMPEQBirr*/
/* Table3946 */
0x540, /* MMX_PCMPEQWirm*/
0x541, /* MMX_PCMPEQWirr*/
/* Table3947 */
0x53e, /* MMX_PCMPEQDirm*/
0x53f, /* MMX_PCMPEQDirr*/
/* Table3948 */
0x502, /* MMX_EMMS*/
/* Table3949 */
0xe17, /* VMREAD32rm*/
0xe18, /* VMREAD32rr*/
/* Table3950 */
0xe30, /* VMWRITE32rm*/
0xe31, /* VMWRITE32rr*/
/* Table3951 */
0x507, /* MMX_MOVD64mr*/
0x506, /* MMX_MOVD64grr*/
/* Table3952 */
0x511, /* MMX_MOVQ64mr*/
0, /* PHI*/
/* Table3953 */
0x42a, /* JO_4*/
/* Table3954 */
0x424, /* JNO_4*/
/* Table3955 */
0x40c, /* JB_4*/
/* Table3956 */
0x406, /* JAE_4*/
/* Table3957 */
0x411, /* JE_4*/
/* Table3958 */
0x422, /* JNE_4*/
/* Table3959 */
0x40a, /* JBE_4*/
/* Table3960 */
0x408, /* JA_4*/
/* Table3961 */
0x42f, /* JS_4*/
/* Table3962 */
0x428, /* JNS_4*/
/* Table3963 */
0x42c, /* JP_4*/
/* Table3964 */
0x426, /* JNP_4*/
/* Table3965 */
0x419, /* JL_4*/
/* Table3966 */
0x413, /* JGE_4*/
/* Table3967 */
0x417, /* JLE_4*/
/* Table3968 */
0x415, /* JG_4*/
/* Table3969 */
0x992, /* SETOm*/
0x993, /* SETOr*/
/* Table3970 */
0x98c, /* SETNOm*/
0x98d, /* SETNOr*/
/* Table3971 */
0x97e, /* SETBm*/
0x97f, /* SETBr*/
/* Table3972 */
0x974, /* SETAEm*/
0x975, /* SETAEr*/
/* Table3973 */
0x980, /* SETEm*/
0x981, /* SETEr*/
/* Table3974 */
0x98a, /* SETNEm*/
0x98b, /* SETNEr*/
/* Table3975 */
0x978, /* SETBEm*/
0x979, /* SETBEr*/
/* Table3976 */
0x976, /* SETAm*/
0x977, /* SETAr*/
/* Table3977 */
0x996, /* SETSm*/
0x997, /* SETSr*/
/* Table3978 */
0x990, /* SETNSm*/
0x991, /* SETNSr*/
/* Table3979 */
0x994, /* SETPm*/
0x995, /* SETPr*/
/* Table3980 */
0x98e, /* SETNPm*/
0x98f, /* SETNPr*/
/* Table3981 */
0x988, /* SETLm*/
0x989, /* SETLr*/
/* Table3982 */
0x982, /* SETGEm*/
0x983, /* SETGEr*/
/* Table3983 */
0x986, /* SETLEm*/
0x987, /* SETLEr*/
/* Table3984 */
0x984, /* SETGm*/
0x985, /* SETGr*/
/* Table3985 */
0x87d, /* PUSHFS32*/
/* Table3986 */
0x809, /* POPFS32*/
/* Table3987 */
0x254, /* CPUID*/
/* Table3988 */
0x135, /* BT32mr*/
0x137, /* BT32rr*/
/* Table3989 */
0x9b8, /* SHLD32mri8*/
0x9ba, /* SHLD32rri8*/
/* Table3990 */
0x9b7, /* SHLD32mrCL*/
0x9b9, /* SHLD32rrCL*/
/* Table3991 */
0x880, /* PUSHGS32*/
/* Table3992 */
0x80c, /* POPGS32*/
/* Table3993 */
0x926, /* RSM*/
/* Table3994 */
0x159, /* BTS32mr*/
0x15b, /* BTS32rr*/
/* Table3995 */
0x9e0, /* SHRD32mri8*/
0x9e2, /* SHRD32rri8*/
/* Table3996 */
0x9df, /* SHRD32mrCL*/
0x9e1, /* SHRD32rrCL*/
/* Table3997 */
0x329, /* FXSAVE*/
0x327, /* FXRSTOR*/
0x43e, /* LDMXCSR*/
0xa15, /* STMXCSR*/
0x11bd, /* XSAVE*/
0x11bb, /* XRSTOR*/
0x11bf, /* XSAVEOPT*/
0x175, /* CLFLUSH*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x45b, /* LFENCE*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x4e1, /* MFENCE*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x998, /* SFENCE*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
/* Table3998 */
0x371, /* IMUL32rm*/
0x374, /* IMUL32rr*/
/* Table3999 */
0x246, /* CMPXCHG8rm*/
0x247, /* CMPXCHG8rr*/
/* Table4000 */
0x241, /* CMPXCHG32rm*/
0x242, /* CMPXCHG32rr*/
/* Table4001 */
0x4bd, /* LSS32rm*/
0, /* PHI*/
/* Table4002 */
0x14d, /* BTR32mr*/
0x14f, /* BTR32rr*/
/* Table4003 */
0x45d, /* LFS32rm*/
0, /* PHI*/
/* Table4004 */
0x462, /* LGS32rm*/
0, /* PHI*/
/* Table4005 */
0x662, /* MOVZX32rm8*/
0x664, /* MOVZX32rr8*/
/* Table4006 */
0x661, /* MOVZX32rm16*/
0x663, /* MOVZX32rr16*/
/* Table4007 */
0xace, /* UD2B*/
/* Table4008 */
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x134, /* BT32mi8*/
0x158, /* BTS32mi8*/
0x14c, /* BTR32mi8*/
0x140, /* BTC32mi8*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x136, /* BT32ri8*/
0x15a, /* BTS32ri8*/
0x14e, /* BTR32ri8*/
0x142, /* BTC32ri8*/
/* Table4009 */
0x141, /* BTC32mr*/
0x143, /* BTC32rr*/
/* Table4010 */
0x124, /* BSF32rm*/
0x125, /* BSF32rr*/
/* Table4011 */
0x12a, /* BSR32rm*/
0x12b, /* BSR32rr*/
/* Table4012 */
0x646, /* MOVSX32rm8*/
0x648, /* MOVSX32rr8*/
/* Table4013 */
0x645, /* MOVSX32rm16*/
0x647, /* MOVSX32rr16*/
/* Table4014 */
0x117c, /* XADD8rm*/
0x117d, /* XADD8rr*/
/* Table4015 */
0x1178, /* XADD32rm*/
0x1179, /* XADD32rr*/
/* Table4016 */
0x22e, /* CMPPSrmi*/
0x230, /* CMPPSrri*/
/* Table4017 */
0x623, /* MOVNTImr*/
0, /* PHI*/
/* Table4018 */
0x555, /* MMX_PINSRWirmi*/
0x556, /* MMX_PINSRWirri*/
/* Table4019 */
0, /* PHI*/
0x548, /* MMX_PEXTRWirri*/
/* Table4020 */
0x9ed, /* SHUFPSrmi*/
0x9ee, /* SHUFPSrri*/
/* Table4021 */
0, /* PHI*/
0x245, /* CMPXCHG8B*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0xe15, /* VMPTRLDm*/
0xe16, /* VMPTRSTm*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x8c8, /* RDRAND32r*/
0x8cb, /* RDSEED32r*/
/* Table4022 */
0x12e, /* BSWAP32r*/
/* Table4023 */
0x12e, /* BSWAP32r*/
/* Table4024 */
0x12e, /* BSWAP32r*/
/* Table4025 */
0x12e, /* BSWAP32r*/
/* Table4026 */
0x12e, /* BSWAP32r*/
/* Table4027 */
0x12e, /* BSWAP32r*/
/* Table4028 */
0x12e, /* BSWAP32r*/
/* Table4029 */
0x12e, /* BSWAP32r*/
/* Table4030 */
0x592, /* MMX_PSRLWrm*/
0x593, /* MMX_PSRLWrr*/
/* Table4031 */
0x58c, /* MMX_PSRLDrm*/
0x58d, /* MMX_PSRLDrr*/
/* Table4032 */
0x58f, /* MMX_PSRLQrm*/
0x590, /* MMX_PSRLQrr*/
/* Table4033 */
0x526, /* MMX_PADDQirm*/
0x527, /* MMX_PADDQirr*/
/* Table4034 */
0x56a, /* MMX_PMULLWirm*/
0x56b, /* MMX_PMULLWirr*/
/* Table4035 */
0, /* PHI*/
0x563, /* MMX_PMOVMSKBrr*/
/* Table4036 */
0x59e, /* MMX_PSUBUSBirm*/
0x59f, /* MMX_PSUBUSBirr*/
/* Table4037 */
0x5a0, /* MMX_PSUBUSWirm*/
0x5a1, /* MMX_PSUBUSWirr*/
/* Table4038 */
0x561, /* MMX_PMINUBirm*/
0x562, /* MMX_PMINUBirr*/
/* Table4039 */
0x536, /* MMX_PANDirm*/
0x537, /* MMX_PANDirr*/
/* Table4040 */
0x52c, /* MMX_PADDUSBirm*/
0x52d, /* MMX_PADDUSBirr*/
/* Table4041 */
0x52e, /* MMX_PADDUSWirm*/
0x52f, /* MMX_PADDUSWirr*/
/* Table4042 */
0x55d, /* MMX_PMAXUBirm*/
0x55e, /* MMX_PMAXUBirr*/
/* Table4043 */
0x534, /* MMX_PANDNirm*/
0x535, /* MMX_PANDNirr*/
/* Table4044 */
0x538, /* MMX_PAVGBirm*/
0x539, /* MMX_PAVGBirr*/
/* Table4045 */
0x589, /* MMX_PSRAWrm*/
0x58a, /* MMX_PSRAWrr*/
/* Table4046 */
0x586, /* MMX_PSRADrm*/
0x587, /* MMX_PSRADrr*/
/* Table4047 */
0x53a, /* MMX_PAVGWirm*/
0x53b, /* MMX_PAVGWirr*/
/* Table4048 */
0x566, /* MMX_PMULHUWirm*/
0x567, /* MMX_PMULHUWirr*/
/* Table4049 */
0x568, /* MMX_PMULHWirm*/
0x569, /* MMX_PMULHWirr*/
/* Table4050 */
0x50e, /* MMX_MOVNTQmr*/
0, /* PHI*/
/* Table4051 */
0x59a, /* MMX_PSUBSBirm*/
0x59b, /* MMX_PSUBSBirr*/
/* Table4052 */
0x59c, /* MMX_PSUBSWirm*/
0x59d, /* MMX_PSUBSWirr*/
/* Table4053 */
0x55f, /* MMX_PMINSWirm*/
0x560, /* MMX_PMINSWirr*/
/* Table4054 */
0x56e, /* MMX_PORirm*/
0x56f, /* MMX_PORirr*/
/* Table4055 */
0x528, /* MMX_PADDSBirm*/
0x529, /* MMX_PADDSBirr*/
/* Table4056 */
0x52a, /* MMX_PADDSWirm*/
0x52b, /* MMX_PADDSWirr*/
/* Table4057 */
0x55b, /* MMX_PMAXSWirm*/
0x55c, /* MMX_PMAXSWirr*/
/* Table4058 */
0x5b0, /* MMX_PXORirm*/
0x5b1, /* MMX_PXORirr*/
/* Table4059 */
0x583, /* MMX_PSLLWrm*/
0x584, /* MMX_PSLLWrr*/
/* Table4060 */
0x57d, /* MMX_PSLLDrm*/
0x57e, /* MMX_PSLLDrr*/
/* Table4061 */
0x580, /* MMX_PSLLQrm*/
0x581, /* MMX_PSLLQrr*/
/* Table4062 */
0x56c, /* MMX_PMULUDQirm*/
0x56d, /* MMX_PMULUDQirr*/
/* Table4063 */
0x559, /* MMX_PMADDWDirm*/
0x55a, /* MMX_PMADDWDirr*/
/* Table4064 */
0x570, /* MMX_PSADBWirm*/
0x571, /* MMX_PSADBWirr*/
/* Table4065 */
0, /* PHI*/
0x503, /* MMX_MASKMOVQ*/
/* Table4066 */
0x594, /* MMX_PSUBBirm*/
0x595, /* MMX_PSUBBirr*/
/* Table4067 */
0x5a2, /* MMX_PSUBWirm*/
0x5a3, /* MMX_PSUBWirr*/
/* Table4068 */
0x596, /* MMX_PSUBDirm*/
0x597, /* MMX_PSUBDirr*/
/* Table4069 */
0x598, /* MMX_PSUBQirm*/
0x599, /* MMX_PSUBQirr*/
/* Table4070 */
0x522, /* MMX_PADDBirm*/
0x523, /* MMX_PADDBirr*/
/* Table4071 */
0x530, /* MMX_PADDWirm*/
0x531, /* MMX_PADDWirr*/
/* Table4072 */
0x524, /* MMX_PADDDirm*/
0x525, /* MMX_PADDDirr*/
/* Table4073 */
0x9f6, /* SLDT16m*/
0xa1d, /* STRm*/
0x466, /* LLDT16m*/
0x4bf, /* LTRm*/
0xb9b, /* VERRm*/
0xb9d, /* VERWm*/
0, /* PHI*/
0, /* PHI*/
0x9f8, /* SLDT32r*/
0xa1b, /* STR32r*/
0x467, /* LLDT16r*/
0x4c0, /* LTRr*/
0xb9c, /* VERRr*/
0xb9e, /* VERWr*/
0, /* PHI*/
0, /* PHI*/
/* Table4074 */
0x99a, /* SGDTm*/
0x9f0, /* SIDTm*/
0x460, /* LGDTm*/
0x465, /* LIDTm*/
0x9fb, /* SMSW16m*/
0, /* PHI*/
0x468, /* LMSW16m*/
0x3a0, /* INVLPG*/
0, /* PHI*/
0xd71, /* VMCALL*/
0xd90, /* VMLAUNCH*/
0xe1b, /* VMRESUME*/
0xe34, /* VMXOFF*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x5b3, /* MONITORrrr*/
0x69e, /* MWAITrr*/
0x172, /* CLAC*/
0xa10, /* STAC*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x1193, /* XGETBV*/
0x11c1, /* XSETBV*/
0, /* PHI*/
0, /* PHI*/
0xd73, /* VMFUNC*/
0x1192, /* XEND*/
0x11c5, /* XTEST*/
0, /* PHI*/
0xe1c, /* VMRUN32*/
0xd93, /* VMMCALL*/
0xd91, /* VMLOAD32*/
0xe1e, /* VMSAVE32*/
0xa13, /* STGI*/
0x176, /* CLGI*/
0x9f5, /* SKINIT*/
0x3a1, /* INVLPGA32*/
0x9fd, /* SMSW32r*/
0x9fd, /* SMSW32r*/
0x9fd, /* SMSW32r*/
0x9fd, /* SMSW32r*/
0x9fd, /* SMSW32r*/
0x9fd, /* SMSW32r*/
0x9fd, /* SMSW32r*/
0x9fd, /* SMSW32r*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x469, /* LMSW16r*/
0x469, /* LMSW16r*/
0x469, /* LMSW16r*/
0x469, /* LMSW16r*/
0x469, /* LMSW16r*/
0x469, /* LMSW16r*/
0x469, /* LMSW16r*/
0x469, /* LMSW16r*/
0xa85, /* SWAPGS*/
0x8ce, /* RDTSCP*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
/* Table4075 */
0x433, /* LAR32rm*/
0x434, /* LAR32rr*/
/* Table4076 */
0x4b8, /* LSL32rm*/
0x4b9, /* LSL32rr*/
/* Table4077 */
0xa86, /* SYSCALL*/
/* Table4078 */
0x178, /* CLTS*/
/* Table4079 */
0xa8a, /* SYSRET*/
/* Table4080 */
0x39d, /* INVD*/
/* Table4081 */
0x116c, /* WBINVD*/
/* Table4082 */
0xab4, /* TRAP*/
/* Table4083 */
0x812, /* PREFETCH*/
0x817, /* PREFETCHW*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
/* Table4084 */
0x2fe, /* FEMMS*/
/* Table4085 */
0x632, /* MOVSDrm*/
0x633, /* MOVSDrr*/
/* Table4086 */
0x631, /* MOVSDmr*/
0x634, /* MOVSDrr_REV*/
/* Table4087 */
0x603, /* MOVDDUPrm*/
0x604, /* MOVDDUPrr*/
/* Table4088 */
0x619, /* MOVLPSmr*/
0, /* PHI*/
/* Table4089 */
0xad5, /* UNPCKLPSrm*/
0xad6, /* UNPCKLPSrr*/
/* Table4090 */
0xad1, /* UNPCKHPSrm*/
0xad2, /* UNPCKHPSrr*/
/* Table4091 */
0x615, /* MOVHPSrm*/
0x616, /* MOVLHPSrr*/
/* Table4092 */
0x614, /* MOVHPSmr*/
0, /* PHI*/
/* Table4093 */
0x813, /* PREFETCHNTA*/
0x814, /* PREFETCHT0*/
0x815, /* PREFETCHT1*/
0x816, /* PREFETCHT2*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
/* Table4094 */
0x6d1, /* NOOPL*/
0, /* PHI*/
/* Table4095 */
0, /* PHI*/
0x5cc, /* MOV32rc*/
/* Table4096 */
0, /* PHI*/
0x5cd, /* MOV32rd*/
/* Table4097 */
0, /* PHI*/
0x5c5, /* MOV32cr*/
/* Table4098 */
0, /* PHI*/
0x5c6, /* MOV32dr*/
/* Table4099 */
0x5fa, /* MOVAPSrm*/
0x5fb, /* MOVAPSrr*/
/* Table4100 */
0x5f9, /* MOVAPSmr*/
0x5fc, /* MOVAPSrr_REV*/
/* Table4101 */
0x275, /* CVTSI2SDrm*/
0x276, /* CVTSI2SDrr*/
/* Table4102 */
0x626, /* MOVNTSD*/
0, /* PHI*/
/* Table4103 */
0x287, /* CVTTSD2SIrm*/
0x288, /* CVTTSD2SIrr*/
/* Table4104 */
0x26f, /* CVTSD2SIrm*/
0x270, /* CVTSD2SIrr*/
/* Table4105 */
0xac1, /* UCOMISSrm*/
0xac2, /* UCOMISSrr*/
/* Table4106 */
0x24a, /* COMISSrm*/
0x24b, /* COMISSrr*/
/* Table4107 */
0x1174, /* WRMSR*/
/* Table4108 */
0x8cd, /* RDTSC*/
/* Table4109 */
0x8c5, /* RDMSR*/
/* Table4110 */
0x8c6, /* RDPMC*/
/* Table4111 */
0xa87, /* SYSENTER*/
/* Table4112 */
0xa88, /* SYSEXIT*/
/* Table4113 */
0x1e6, /* CMOVO32rm*/
0x1e7, /* CMOVO32rr*/
/* Table4114 */
0x1d0, /* CMOVNO32rm*/
0x1d1, /* CMOVNO32rr*/
/* Table4115 */
0x188, /* CMOVB32rm*/
0x189, /* CMOVB32rr*/
/* Table4116 */
0x182, /* CMOVAE32rm*/
0x183, /* CMOVAE32rr*/
/* Table4117 */
0x19c, /* CMOVE32rm*/
0x19d, /* CMOVE32rr*/
/* Table4118 */
0x1c6, /* CMOVNE32rm*/
0x1c7, /* CMOVNE32rr*/
/* Table4119 */
0x18e, /* CMOVBE32rm*/
0x18f, /* CMOVBE32rr*/
/* Table4120 */
0x17c, /* CMOVA32rm*/
0x17d, /* CMOVA32rr*/
/* Table4121 */
0x1f6, /* CMOVS32rm*/
0x1f7, /* CMOVS32rr*/
/* Table4122 */
0x1e0, /* CMOVNS32rm*/
0x1e1, /* CMOVNS32rr*/
/* Table4123 */
0x1ec, /* CMOVP32rm*/
0x1ed, /* CMOVP32rr*/
/* Table4124 */
0x1d6, /* CMOVNP32rm*/
0x1d7, /* CMOVNP32rr*/
/* Table4125 */
0x1b2, /* CMOVL32rm*/
0x1b3, /* CMOVL32rr*/
/* Table4126 */
0x1ac, /* CMOVGE32rm*/
0x1ad, /* CMOVGE32rr*/
/* Table4127 */
0x1b8, /* CMOVLE32rm*/
0x1b9, /* CMOVLE32rr*/
/* Table4128 */
0x1a6, /* CMOVG32rm*/
0x1a7, /* CMOVG32rr*/
/* Table4129 */
0, /* PHI*/
0x61e, /* MOVMSKPSrr32*/
/* Table4130 */
0xa03, /* SQRTSDm*/
0xa05, /* SQRTSDr*/
/* Table4131 */
0x927, /* RSQRTPSm*/
0x929, /* RSQRTPSr*/
/* Table4132 */
0x8a1, /* RCPPSm*/
0x8a3, /* RCPPSr*/
/* Table4133 */
0xd7, /* ANDPSrm*/
0xd8, /* ANDPSrr*/
/* Table4134 */
0xd3, /* ANDNPSrm*/
0xd4, /* ANDNPSrr*/
/* Table4135 */
0x700, /* ORPSrm*/
0x701, /* ORPSrr*/
/* Table4136 */
0x11b9, /* XORPSrm*/
0x11ba, /* XORPSrr*/
/* Table4137 */
0x76, /* ADDSDrm*/
0x78, /* ADDSDrr*/
/* Table4138 */
0x67d, /* MULSDrm*/
0x67f, /* MULSDrr*/
/* Table4139 */
0x271, /* CVTSD2SSrm*/
0x272, /* CVTSD2SSrr*/
/* Table4140 */
0x263, /* CVTDQ2PSrm*/
0x264, /* CVTDQ2PSrr*/
/* Table4141 */
0xa68, /* SUBSDrm*/
0xa6a, /* SUBSDrr*/
/* Table4142 */
0x4ee, /* MINSDrm*/
0x4f0, /* MINSDrr*/
/* Table4143 */
0x2bc, /* DIVSDrm*/
0x2be, /* DIVSDrr*/
/* Table4144 */
0x4d9, /* MAXSDrm*/
0x4db, /* MAXSDrr*/
/* Table4145 */
0x5aa, /* MMX_PUNPCKLBWirm*/
0x5ab, /* MMX_PUNPCKLBWirr*/
/* Table4146 */
0x5ae, /* MMX_PUNPCKLWDirm*/
0x5af, /* MMX_PUNPCKLWDirr*/
/* Table4147 */
0x5ac, /* MMX_PUNPCKLDQirm*/
0x5ad, /* MMX_PUNPCKLDQirr*/
/* Table4148 */
0x51e, /* MMX_PACKSSWBirm*/
0x51f, /* MMX_PACKSSWBirr*/
/* Table4149 */
0x542, /* MMX_PCMPGTBirm*/
0x543, /* MMX_PCMPGTBirr*/
/* Table4150 */
0x546, /* MMX_PCMPGTWirm*/
0x547, /* MMX_PCMPGTWirr*/
/* Table4151 */
0x544, /* MMX_PCMPGTDirm*/
0x545, /* MMX_PCMPGTDirr*/
/* Table4152 */
0x520, /* MMX_PACKUSWBirm*/
0x521, /* MMX_PACKUSWBirr*/
/* Table4153 */
0x5a4, /* MMX_PUNPCKHBWirm*/
0x5a5, /* MMX_PUNPCKHBWirr*/
/* Table4154 */
0x5a8, /* MMX_PUNPCKHWDirm*/
0x5a9, /* MMX_PUNPCKHWDirr*/
/* Table4155 */
0x5a6, /* MMX_PUNPCKHDQirm*/
0x5a7, /* MMX_PUNPCKHDQirr*/
/* Table4156 */
0x51c, /* MMX_PACKSSDWirm*/
0x51d, /* MMX_PACKSSDWirr*/
/* Table4157 */
0x508, /* MMX_MOVD64rm*/
0x509, /* MMX_MOVD64rr*/
/* Table4158 */
0x512, /* MMX_MOVQ64rm*/
0x513, /* MMX_MOVQ64rr*/
/* Table4159 */
0x820, /* PSHUFLWmi*/
0x821, /* PSHUFLWri*/
/* Table4160 */
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x591, /* MMX_PSRLWri*/
0, /* PHI*/
0x588, /* MMX_PSRAWri*/
0, /* PHI*/
0x582, /* MMX_PSLLWri*/
0, /* PHI*/
/* Table4161 */
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x58b, /* MMX_PSRLDri*/
0, /* PHI*/
0x585, /* MMX_PSRADri*/
0, /* PHI*/
0x57c, /* MMX_PSLLDri*/
0, /* PHI*/
/* Table4162 */
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x58e, /* MMX_PSRLQri*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x57f, /* MMX_PSLLQri*/
0, /* PHI*/
/* Table4163 */
0x53c, /* MMX_PCMPEQBirm*/
0x53d, /* MMX_PCMPEQBirr*/
/* Table4164 */
0x540, /* MMX_PCMPEQWirm*/
0x541, /* MMX_PCMPEQWirr*/
/* Table4165 */
0x53e, /* MMX_PCMPEQDirm*/
0x53f, /* MMX_PCMPEQDirr*/
/* Table4166 */
0x502, /* MMX_EMMS*/
/* Table4167 */
0xe17, /* VMREAD32rm*/
0x399, /* INSERTQI*/
/* Table4168 */
0xe30, /* VMWRITE32rm*/
0x398, /* INSERTQ*/
/* Table4169 */
0x34c, /* HADDPSrm*/
0x34d, /* HADDPSrr*/
/* Table4170 */
0x351, /* HSUBPSrm*/
0x352, /* HSUBPSrr*/
/* Table4171 */
0x507, /* MMX_MOVD64mr*/
0x506, /* MMX_MOVD64grr*/
/* Table4172 */
0x511, /* MMX_MOVQ64mr*/
0, /* PHI*/
/* Table4173 */
0x42a, /* JO_4*/
/* Table4174 */
0x424, /* JNO_4*/
/* Table4175 */
0x40c, /* JB_4*/
/* Table4176 */
0x406, /* JAE_4*/
/* Table4177 */
0x411, /* JE_4*/
/* Table4178 */
0x422, /* JNE_4*/
/* Table4179 */
0x40a, /* JBE_4*/
/* Table4180 */
0x408, /* JA_4*/
/* Table4181 */
0x42f, /* JS_4*/
/* Table4182 */
0x428, /* JNS_4*/
/* Table4183 */
0x42c, /* JP_4*/
/* Table4184 */
0x426, /* JNP_4*/
/* Table4185 */
0x419, /* JL_4*/
/* Table4186 */
0x413, /* JGE_4*/
/* Table4187 */
0x417, /* JLE_4*/
/* Table4188 */
0x415, /* JG_4*/
/* Table4189 */
0x992, /* SETOm*/
0x993, /* SETOr*/
/* Table4190 */
0x98c, /* SETNOm*/
0x98d, /* SETNOr*/
/* Table4191 */
0x97e, /* SETBm*/
0x97f, /* SETBr*/
/* Table4192 */
0x974, /* SETAEm*/
0x975, /* SETAEr*/
/* Table4193 */
0x980, /* SETEm*/
0x981, /* SETEr*/
/* Table4194 */
0x98a, /* SETNEm*/
0x98b, /* SETNEr*/
/* Table4195 */
0x978, /* SETBEm*/
0x979, /* SETBEr*/
/* Table4196 */
0x976, /* SETAm*/
0x977, /* SETAr*/
/* Table4197 */
0x996, /* SETSm*/
0x997, /* SETSr*/
/* Table4198 */
0x990, /* SETNSm*/
0x991, /* SETNSr*/
/* Table4199 */
0x994, /* SETPm*/
0x995, /* SETPr*/
/* Table4200 */
0x98e, /* SETNPm*/
0x98f, /* SETNPr*/
/* Table4201 */
0x988, /* SETLm*/
0x989, /* SETLr*/
/* Table4202 */
0x982, /* SETGEm*/
0x983, /* SETGEr*/
/* Table4203 */
0x986, /* SETLEm*/
0x987, /* SETLEr*/
/* Table4204 */
0x984, /* SETGm*/
0x985, /* SETGr*/
/* Table4205 */
0x87d, /* PUSHFS32*/
/* Table4206 */
0x809, /* POPFS32*/
/* Table4207 */
0x254, /* CPUID*/
/* Table4208 */
0x135, /* BT32mr*/
0x137, /* BT32rr*/
/* Table4209 */
0x9b8, /* SHLD32mri8*/
0x9ba, /* SHLD32rri8*/
/* Table4210 */
0x9b7, /* SHLD32mrCL*/
0x9b9, /* SHLD32rrCL*/
/* Table4211 */
0x880, /* PUSHGS32*/
/* Table4212 */
0x80c, /* POPGS32*/
/* Table4213 */
0x926, /* RSM*/
/* Table4214 */
0x159, /* BTS32mr*/
0x15b, /* BTS32rr*/
/* Table4215 */
0x9e0, /* SHRD32mri8*/
0x9e2, /* SHRD32rri8*/
/* Table4216 */
0x9df, /* SHRD32mrCL*/
0x9e1, /* SHRD32rrCL*/
/* Table4217 */
0x329, /* FXSAVE*/
0x327, /* FXRSTOR*/
0x43e, /* LDMXCSR*/
0xa15, /* STMXCSR*/
0x11bd, /* XSAVE*/
0x11bb, /* XRSTOR*/
0x11bf, /* XSAVEOPT*/
0x175, /* CLFLUSH*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x45b, /* LFENCE*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x4e1, /* MFENCE*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x998, /* SFENCE*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
/* Table4218 */
0x371, /* IMUL32rm*/
0x374, /* IMUL32rr*/
/* Table4219 */
0x246, /* CMPXCHG8rm*/
0x247, /* CMPXCHG8rr*/
/* Table4220 */
0x241, /* CMPXCHG32rm*/
0x242, /* CMPXCHG32rr*/
/* Table4221 */
0x4bd, /* LSS32rm*/
0, /* PHI*/
/* Table4222 */
0x14d, /* BTR32mr*/
0x14f, /* BTR32rr*/
/* Table4223 */
0x45d, /* LFS32rm*/
0, /* PHI*/
/* Table4224 */
0x462, /* LGS32rm*/
0, /* PHI*/
/* Table4225 */
0x662, /* MOVZX32rm8*/
0x664, /* MOVZX32rr8*/
/* Table4226 */
0x661, /* MOVZX32rm16*/
0x663, /* MOVZX32rr16*/
/* Table4227 */
0xace, /* UD2B*/
/* Table4228 */
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x134, /* BT32mi8*/
0x158, /* BTS32mi8*/
0x14c, /* BTR32mi8*/
0x140, /* BTC32mi8*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x136, /* BT32ri8*/
0x15a, /* BTS32ri8*/
0x14e, /* BTR32ri8*/
0x142, /* BTC32ri8*/
/* Table4229 */
0x141, /* BTC32mr*/
0x143, /* BTC32rr*/
/* Table4230 */
0x124, /* BSF32rm*/
0x125, /* BSF32rr*/
/* Table4231 */
0x12a, /* BSR32rm*/
0x12b, /* BSR32rr*/
/* Table4232 */
0x646, /* MOVSX32rm8*/
0x648, /* MOVSX32rr8*/
/* Table4233 */
0x645, /* MOVSX32rm16*/
0x647, /* MOVSX32rr16*/
/* Table4234 */
0x117c, /* XADD8rm*/
0x117d, /* XADD8rr*/
/* Table4235 */
0x1178, /* XADD32rm*/
0x1179, /* XADD32rr*/
/* Table4236 */
0x236, /* CMPSDrm*/
0x238, /* CMPSDrr*/
/* Table4237 */
0x623, /* MOVNTImr*/
0, /* PHI*/
/* Table4238 */
0x555, /* MMX_PINSRWirmi*/
0x556, /* MMX_PINSRWirri*/
/* Table4239 */
0, /* PHI*/
0x548, /* MMX_PEXTRWirri*/
/* Table4240 */
0x9ed, /* SHUFPSrmi*/
0x9ee, /* SHUFPSrri*/
/* Table4241 */
0, /* PHI*/
0x245, /* CMPXCHG8B*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0xe15, /* VMPTRLDm*/
0xe16, /* VMPTRSTm*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x8c8, /* RDRAND32r*/
0x8cb, /* RDSEED32r*/
/* Table4242 */
0x12e, /* BSWAP32r*/
/* Table4243 */
0x12e, /* BSWAP32r*/
/* Table4244 */
0x12e, /* BSWAP32r*/
/* Table4245 */
0x12e, /* BSWAP32r*/
/* Table4246 */
0x12e, /* BSWAP32r*/
/* Table4247 */
0x12e, /* BSWAP32r*/
/* Table4248 */
0x12e, /* BSWAP32r*/
/* Table4249 */
0x12e, /* BSWAP32r*/
/* Table4250 */
0x80, /* ADDSUBPSrm*/
0x81, /* ADDSUBPSrr*/
/* Table4251 */
0x592, /* MMX_PSRLWrm*/
0x593, /* MMX_PSRLWrr*/
/* Table4252 */
0x58c, /* MMX_PSRLDrm*/
0x58d, /* MMX_PSRLDrr*/
/* Table4253 */
0x58f, /* MMX_PSRLQrm*/
0x590, /* MMX_PSRLQrr*/
/* Table4254 */
0x526, /* MMX_PADDQirm*/
0x527, /* MMX_PADDQirr*/
/* Table4255 */
0x56a, /* MMX_PMULLWirm*/
0x56b, /* MMX_PMULLWirr*/
/* Table4256 */
0, /* PHI*/
0x50c, /* MMX_MOVDQ2Qrr*/
/* Table4257 */
0, /* PHI*/
0x563, /* MMX_PMOVMSKBrr*/
/* Table4258 */
0x59e, /* MMX_PSUBUSBirm*/
0x59f, /* MMX_PSUBUSBirr*/
/* Table4259 */
0x5a0, /* MMX_PSUBUSWirm*/
0x5a1, /* MMX_PSUBUSWirr*/
/* Table4260 */
0x561, /* MMX_PMINUBirm*/
0x562, /* MMX_PMINUBirr*/
/* Table4261 */
0x536, /* MMX_PANDirm*/
0x537, /* MMX_PANDirr*/
/* Table4262 */
0x52c, /* MMX_PADDUSBirm*/
0x52d, /* MMX_PADDUSBirr*/
/* Table4263 */
0x52e, /* MMX_PADDUSWirm*/
0x52f, /* MMX_PADDUSWirr*/
/* Table4264 */
0x55d, /* MMX_PMAXUBirm*/
0x55e, /* MMX_PMAXUBirr*/
/* Table4265 */
0x534, /* MMX_PANDNirm*/
0x535, /* MMX_PANDNirr*/
/* Table4266 */
0x538, /* MMX_PAVGBirm*/
0x539, /* MMX_PAVGBirr*/
/* Table4267 */
0x589, /* MMX_PSRAWrm*/
0x58a, /* MMX_PSRAWrr*/
/* Table4268 */
0x586, /* MMX_PSRADrm*/
0x587, /* MMX_PSRADrr*/
/* Table4269 */
0x53a, /* MMX_PAVGWirm*/
0x53b, /* MMX_PAVGWirr*/
/* Table4270 */
0x566, /* MMX_PMULHUWirm*/
0x567, /* MMX_PMULHUWirr*/
/* Table4271 */
0x568, /* MMX_PMULHWirm*/
0x569, /* MMX_PMULHWirr*/
/* Table4272 */
0x265, /* CVTPD2DQrm*/
0x266, /* CVTPD2DQrr*/
/* Table4273 */
0x50e, /* MMX_MOVNTQmr*/
0, /* PHI*/
/* Table4274 */
0x59a, /* MMX_PSUBSBirm*/
0x59b, /* MMX_PSUBSBirr*/
/* Table4275 */
0x59c, /* MMX_PSUBSWirm*/
0x59d, /* MMX_PSUBSWirr*/
/* Table4276 */
0x55f, /* MMX_PMINSWirm*/
0x560, /* MMX_PMINSWirr*/
/* Table4277 */
0x56e, /* MMX_PORirm*/
0x56f, /* MMX_PORirr*/
/* Table4278 */
0x528, /* MMX_PADDSBirm*/
0x529, /* MMX_PADDSBirr*/
/* Table4279 */
0x52a, /* MMX_PADDSWirm*/
0x52b, /* MMX_PADDSWirr*/
/* Table4280 */
0x55b, /* MMX_PMAXSWirm*/
0x55c, /* MMX_PMAXSWirr*/
/* Table4281 */
0x5b0, /* MMX_PXORirm*/
0x5b1, /* MMX_PXORirr*/
/* Table4282 */
0x43d, /* LDDQUrm*/
0, /* PHI*/
/* Table4283 */
0x583, /* MMX_PSLLWrm*/
0x584, /* MMX_PSLLWrr*/
/* Table4284 */
0x57d, /* MMX_PSLLDrm*/
0x57e, /* MMX_PSLLDrr*/
/* Table4285 */
0x580, /* MMX_PSLLQrm*/
0x581, /* MMX_PSLLQrr*/
/* Table4286 */
0x56c, /* MMX_PMULUDQirm*/
0x56d, /* MMX_PMULUDQirr*/
/* Table4287 */
0x559, /* MMX_PMADDWDirm*/
0x55a, /* MMX_PMADDWDirr*/
/* Table4288 */
0x570, /* MMX_PSADBWirm*/
0x571, /* MMX_PSADBWirr*/
/* Table4289 */
0, /* PHI*/
0x503, /* MMX_MASKMOVQ*/
/* Table4290 */
0x594, /* MMX_PSUBBirm*/
0x595, /* MMX_PSUBBirr*/
/* Table4291 */
0x5a2, /* MMX_PSUBWirm*/
0x5a3, /* MMX_PSUBWirr*/
/* Table4292 */
0x596, /* MMX_PSUBDirm*/
0x597, /* MMX_PSUBDirr*/
/* Table4293 */
0x598, /* MMX_PSUBQirm*/
0x599, /* MMX_PSUBQirr*/
/* Table4294 */
0x522, /* MMX_PADDBirm*/
0x523, /* MMX_PADDBirr*/
/* Table4295 */
0x530, /* MMX_PADDWirm*/
0x531, /* MMX_PADDWirr*/
/* Table4296 */
0x524, /* MMX_PADDDirm*/
0x525, /* MMX_PADDDirr*/
/* Table4297 */
0x9f6, /* SLDT16m*/
0xa1d, /* STRm*/
0x466, /* LLDT16m*/
0x4bf, /* LTRm*/
0xb9b, /* VERRm*/
0xb9d, /* VERWm*/
0, /* PHI*/
0, /* PHI*/
0x9f8, /* SLDT32r*/
0xa1b, /* STR32r*/
0x467, /* LLDT16r*/
0x4c0, /* LTRr*/
0xb9c, /* VERRr*/
0xb9e, /* VERWr*/
0, /* PHI*/
0, /* PHI*/
/* Table4298 */
0x99a, /* SGDTm*/
0x9f0, /* SIDTm*/
0x460, /* LGDTm*/
0x465, /* LIDTm*/
0x9fb, /* SMSW16m*/
0, /* PHI*/
0x468, /* LMSW16m*/
0x3a0, /* INVLPG*/
0, /* PHI*/
0xd71, /* VMCALL*/
0xd90, /* VMLAUNCH*/
0xe1b, /* VMRESUME*/
0xe34, /* VMXOFF*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x5b3, /* MONITORrrr*/
0x69e, /* MWAITrr*/
0x172, /* CLAC*/
0xa10, /* STAC*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x1193, /* XGETBV*/
0x11c1, /* XSETBV*/
0, /* PHI*/
0, /* PHI*/
0xd73, /* VMFUNC*/
0x1192, /* XEND*/
0x11c5, /* XTEST*/
0, /* PHI*/
0xe1c, /* VMRUN32*/
0xd93, /* VMMCALL*/
0xd91, /* VMLOAD32*/
0xe1e, /* VMSAVE32*/
0xa13, /* STGI*/
0x176, /* CLGI*/
0x9f5, /* SKINIT*/
0x3a1, /* INVLPGA32*/
0x9fd, /* SMSW32r*/
0x9fd, /* SMSW32r*/
0x9fd, /* SMSW32r*/
0x9fd, /* SMSW32r*/
0x9fd, /* SMSW32r*/
0x9fd, /* SMSW32r*/
0x9fd, /* SMSW32r*/
0x9fd, /* SMSW32r*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x469, /* LMSW16r*/
0x469, /* LMSW16r*/
0x469, /* LMSW16r*/
0x469, /* LMSW16r*/
0x469, /* LMSW16r*/
0x469, /* LMSW16r*/
0x469, /* LMSW16r*/
0x469, /* LMSW16r*/
0xa85, /* SWAPGS*/
0x8ce, /* RDTSCP*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
/* Table4299 */
0x433, /* LAR32rm*/
0x434, /* LAR32rr*/
/* Table4300 */
0x4b8, /* LSL32rm*/
0x4b9, /* LSL32rr*/
/* Table4301 */
0xa86, /* SYSCALL*/
/* Table4302 */
0x178, /* CLTS*/
/* Table4303 */
0xa8a, /* SYSRET*/
/* Table4304 */
0x39d, /* INVD*/
/* Table4305 */
0x116c, /* WBINVD*/
/* Table4306 */
0xab4, /* TRAP*/
/* Table4307 */
0x812, /* PREFETCH*/
0x817, /* PREFETCHW*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
/* Table4308 */
0x2fe, /* FEMMS*/
/* Table4309 */
0x63f, /* MOVSSrm*/
0x640, /* MOVSSrr*/
/* Table4310 */
0x63e, /* MOVSSmr*/
0x641, /* MOVSSrr_REV*/
/* Table4311 */
0x639, /* MOVSLDUPrm*/
0x63a, /* MOVSLDUPrr*/
/* Table4312 */
0x619, /* MOVLPSmr*/
0, /* PHI*/
/* Table4313 */
0xad5, /* UNPCKLPSrm*/
0xad6, /* UNPCKLPSrr*/
/* Table4314 */
0xad1, /* UNPCKHPSrm*/
0xad2, /* UNPCKHPSrr*/
/* Table4315 */
0x637, /* MOVSHDUPrm*/
0x638, /* MOVSHDUPrr*/
/* Table4316 */
0x614, /* MOVHPSmr*/
0, /* PHI*/
/* Table4317 */
0x813, /* PREFETCHNTA*/
0x814, /* PREFETCHT0*/
0x815, /* PREFETCHT1*/
0x816, /* PREFETCHT2*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
/* Table4318 */
0x6d1, /* NOOPL*/
0, /* PHI*/
/* Table4319 */
0, /* PHI*/
0x5cc, /* MOV32rc*/
/* Table4320 */
0, /* PHI*/
0x5cd, /* MOV32rd*/
/* Table4321 */
0, /* PHI*/
0x5c5, /* MOV32cr*/
/* Table4322 */
0, /* PHI*/
0x5c6, /* MOV32dr*/
/* Table4323 */
0x5fa, /* MOVAPSrm*/
0x5fb, /* MOVAPSrr*/
/* Table4324 */
0x5f9, /* MOVAPSmr*/
0x5fc, /* MOVAPSrr_REV*/
/* Table4325 */
0x279, /* CVTSI2SSrm*/
0x27a, /* CVTSI2SSrr*/
/* Table4326 */
0x627, /* MOVNTSS*/
0, /* PHI*/
/* Table4327 */
0x28b, /* CVTTSS2SIrm*/
0x28c, /* CVTTSS2SIrr*/
/* Table4328 */
0x27f, /* CVTSS2SIrm*/
0x280, /* CVTSS2SIrr*/
/* Table4329 */
0xac1, /* UCOMISSrm*/
0xac2, /* UCOMISSrr*/
/* Table4330 */
0x24a, /* COMISSrm*/
0x24b, /* COMISSrr*/
/* Table4331 */
0x1174, /* WRMSR*/
/* Table4332 */
0x8cd, /* RDTSC*/
/* Table4333 */
0x8c5, /* RDMSR*/
/* Table4334 */
0x8c6, /* RDPMC*/
/* Table4335 */
0xa87, /* SYSENTER*/
/* Table4336 */
0xa88, /* SYSEXIT*/
/* Table4337 */
0x1e6, /* CMOVO32rm*/
0x1e7, /* CMOVO32rr*/
/* Table4338 */
0x1d0, /* CMOVNO32rm*/
0x1d1, /* CMOVNO32rr*/
/* Table4339 */
0x188, /* CMOVB32rm*/
0x189, /* CMOVB32rr*/
/* Table4340 */
0x182, /* CMOVAE32rm*/
0x183, /* CMOVAE32rr*/
/* Table4341 */
0x19c, /* CMOVE32rm*/
0x19d, /* CMOVE32rr*/
/* Table4342 */
0x1c6, /* CMOVNE32rm*/
0x1c7, /* CMOVNE32rr*/
/* Table4343 */
0x18e, /* CMOVBE32rm*/
0x18f, /* CMOVBE32rr*/
/* Table4344 */
0x17c, /* CMOVA32rm*/
0x17d, /* CMOVA32rr*/
/* Table4345 */
0x1f6, /* CMOVS32rm*/
0x1f7, /* CMOVS32rr*/
/* Table4346 */
0x1e0, /* CMOVNS32rm*/
0x1e1, /* CMOVNS32rr*/
/* Table4347 */
0x1ec, /* CMOVP32rm*/
0x1ed, /* CMOVP32rr*/
/* Table4348 */
0x1d6, /* CMOVNP32rm*/
0x1d7, /* CMOVNP32rr*/
/* Table4349 */
0x1b2, /* CMOVL32rm*/
0x1b3, /* CMOVL32rr*/
/* Table4350 */
0x1ac, /* CMOVGE32rm*/
0x1ad, /* CMOVGE32rr*/
/* Table4351 */
0x1b8, /* CMOVLE32rm*/
0x1b9, /* CMOVLE32rr*/
/* Table4352 */
0x1a6, /* CMOVG32rm*/
0x1a7, /* CMOVG32rr*/
/* Table4353 */
0, /* PHI*/
0x61e, /* MOVMSKPSrr32*/
/* Table4354 */
0xa07, /* SQRTSSm*/
0xa09, /* SQRTSSr*/
/* Table4355 */
0x92b, /* RSQRTSSm*/
0x92d, /* RSQRTSSr*/
/* Table4356 */
0x8a5, /* RCPSSm*/
0x8a7, /* RCPSSr*/
/* Table4357 */
0xd7, /* ANDPSrm*/
0xd8, /* ANDPSrr*/
/* Table4358 */
0xd3, /* ANDNPSrm*/
0xd4, /* ANDNPSrr*/
/* Table4359 */
0x700, /* ORPSrm*/
0x701, /* ORPSrr*/
/* Table4360 */
0x11b9, /* XORPSrm*/
0x11ba, /* XORPSrr*/
/* Table4361 */
0x7a, /* ADDSSrm*/
0x7c, /* ADDSSrr*/
/* Table4362 */
0x681, /* MULSSrm*/
0x683, /* MULSSrr*/
/* Table4363 */
0x27b, /* CVTSS2SDrm*/
0x27c, /* CVTSS2SDrr*/
/* Table4364 */
0x283, /* CVTTPS2DQrm*/
0x284, /* CVTTPS2DQrr*/
/* Table4365 */
0xa6c, /* SUBSSrm*/
0xa6e, /* SUBSSrr*/
/* Table4366 */
0x4f2, /* MINSSrm*/
0x4f4, /* MINSSrr*/
/* Table4367 */
0x2c0, /* DIVSSrm*/
0x2c2, /* DIVSSrr*/
/* Table4368 */
0x4dd, /* MAXSSrm*/
0x4df, /* MAXSSrr*/
/* Table4369 */
0x5aa, /* MMX_PUNPCKLBWirm*/
0x5ab, /* MMX_PUNPCKLBWirr*/
/* Table4370 */
0x5ae, /* MMX_PUNPCKLWDirm*/
0x5af, /* MMX_PUNPCKLWDirr*/
/* Table4371 */
0x5ac, /* MMX_PUNPCKLDQirm*/
0x5ad, /* MMX_PUNPCKLDQirr*/
/* Table4372 */
0x51e, /* MMX_PACKSSWBirm*/
0x51f, /* MMX_PACKSSWBirr*/
/* Table4373 */
0x542, /* MMX_PCMPGTBirm*/
0x543, /* MMX_PCMPGTBirr*/
/* Table4374 */
0x546, /* MMX_PCMPGTWirm*/
0x547, /* MMX_PCMPGTWirr*/
/* Table4375 */
0x544, /* MMX_PCMPGTDirm*/
0x545, /* MMX_PCMPGTDirr*/
/* Table4376 */
0x520, /* MMX_PACKUSWBirm*/
0x521, /* MMX_PACKUSWBirr*/
/* Table4377 */
0x5a4, /* MMX_PUNPCKHBWirm*/
0x5a5, /* MMX_PUNPCKHBWirr*/
/* Table4378 */
0x5a8, /* MMX_PUNPCKHWDirm*/
0x5a9, /* MMX_PUNPCKHWDirr*/
/* Table4379 */
0x5a6, /* MMX_PUNPCKHDQirm*/
0x5a7, /* MMX_PUNPCKHDQirr*/
/* Table4380 */
0x51c, /* MMX_PACKSSDWirm*/
0x51d, /* MMX_PACKSSDWirr*/
/* Table4381 */
0x508, /* MMX_MOVD64rm*/
0x509, /* MMX_MOVD64rr*/
/* Table4382 */
0x60e, /* MOVDQUrm*/
0x60f, /* MOVDQUrr*/
/* Table4383 */
0x81e, /* PSHUFHWmi*/
0x81f, /* PSHUFHWri*/
/* Table4384 */
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x591, /* MMX_PSRLWri*/
0, /* PHI*/
0x588, /* MMX_PSRAWri*/
0, /* PHI*/
0x582, /* MMX_PSLLWri*/
0, /* PHI*/
/* Table4385 */
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x58b, /* MMX_PSRLDri*/
0, /* PHI*/
0x585, /* MMX_PSRADri*/
0, /* PHI*/
0x57c, /* MMX_PSLLDri*/
0, /* PHI*/
/* Table4386 */
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x58e, /* MMX_PSRLQri*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x57f, /* MMX_PSLLQri*/
0, /* PHI*/
/* Table4387 */
0x53c, /* MMX_PCMPEQBirm*/
0x53d, /* MMX_PCMPEQBirr*/
/* Table4388 */
0x540, /* MMX_PCMPEQWirm*/
0x541, /* MMX_PCMPEQWirr*/
/* Table4389 */
0x53e, /* MMX_PCMPEQDirm*/
0x53f, /* MMX_PCMPEQDirr*/
/* Table4390 */
0x502, /* MMX_EMMS*/
/* Table4391 */
0xe17, /* VMREAD32rm*/
0xe18, /* VMREAD32rr*/
/* Table4392 */
0xe30, /* VMWRITE32rm*/
0xe31, /* VMWRITE32rr*/
/* Table4393 */
0x62d, /* MOVQI2PQIrm*/
0x62e, /* MOVQxrxr*/
/* Table4394 */
0x60d, /* MOVDQUmr*/
0x610, /* MOVDQUrr_REV*/
/* Table4395 */
0x42a, /* JO_4*/
/* Table4396 */
0x424, /* JNO_4*/
/* Table4397 */
0x40c, /* JB_4*/
/* Table4398 */
0x406, /* JAE_4*/
/* Table4399 */
0x411, /* JE_4*/
/* Table4400 */
0x422, /* JNE_4*/
/* Table4401 */
0x40a, /* JBE_4*/
/* Table4402 */
0x408, /* JA_4*/
/* Table4403 */
0x42f, /* JS_4*/
/* Table4404 */
0x428, /* JNS_4*/
/* Table4405 */
0x42c, /* JP_4*/
/* Table4406 */
0x426, /* JNP_4*/
/* Table4407 */
0x419, /* JL_4*/
/* Table4408 */
0x413, /* JGE_4*/
/* Table4409 */
0x417, /* JLE_4*/
/* Table4410 */
0x415, /* JG_4*/
/* Table4411 */
0x992, /* SETOm*/
0x993, /* SETOr*/
/* Table4412 */
0x98c, /* SETNOm*/
0x98d, /* SETNOr*/
/* Table4413 */
0x97e, /* SETBm*/
0x97f, /* SETBr*/
/* Table4414 */
0x974, /* SETAEm*/
0x975, /* SETAEr*/
/* Table4415 */
0x980, /* SETEm*/
0x981, /* SETEr*/
/* Table4416 */
0x98a, /* SETNEm*/
0x98b, /* SETNEr*/
/* Table4417 */
0x978, /* SETBEm*/
0x979, /* SETBEr*/
/* Table4418 */
0x976, /* SETAm*/
0x977, /* SETAr*/
/* Table4419 */
0x996, /* SETSm*/
0x997, /* SETSr*/
/* Table4420 */
0x990, /* SETNSm*/
0x991, /* SETNSr*/
/* Table4421 */
0x994, /* SETPm*/
0x995, /* SETPr*/
/* Table4422 */
0x98e, /* SETNPm*/
0x98f, /* SETNPr*/
/* Table4423 */
0x988, /* SETLm*/
0x989, /* SETLr*/
/* Table4424 */
0x982, /* SETGEm*/
0x983, /* SETGEr*/
/* Table4425 */
0x986, /* SETLEm*/
0x987, /* SETLEr*/
/* Table4426 */
0x984, /* SETGm*/
0x985, /* SETGr*/
/* Table4427 */
0x87d, /* PUSHFS32*/
/* Table4428 */
0x809, /* POPFS32*/
/* Table4429 */
0x254, /* CPUID*/
/* Table4430 */
0x135, /* BT32mr*/
0x137, /* BT32rr*/
/* Table4431 */
0x9b8, /* SHLD32mri8*/
0x9ba, /* SHLD32rri8*/
/* Table4432 */
0x9b7, /* SHLD32mrCL*/
0x9b9, /* SHLD32rrCL*/
/* Table4433 */
0x880, /* PUSHGS32*/
/* Table4434 */
0x80c, /* POPGS32*/
/* Table4435 */
0x926, /* RSM*/
/* Table4436 */
0x159, /* BTS32mr*/
0x15b, /* BTS32rr*/
/* Table4437 */
0x9e0, /* SHRD32mri8*/
0x9e2, /* SHRD32rri8*/
/* Table4438 */
0x9df, /* SHRD32mrCL*/
0x9e1, /* SHRD32rrCL*/
/* Table4439 */
0x329, /* FXSAVE*/
0x327, /* FXRSTOR*/
0x43e, /* LDMXCSR*/
0xa15, /* STMXCSR*/
0x11bd, /* XSAVE*/
0x11bb, /* XRSTOR*/
0x11bf, /* XSAVEOPT*/
0x175, /* CLFLUSH*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x45b, /* LFENCE*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x4e1, /* MFENCE*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x998, /* SFENCE*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
/* Table4440 */
0x371, /* IMUL32rm*/
0x374, /* IMUL32rr*/
/* Table4441 */
0x246, /* CMPXCHG8rm*/
0x247, /* CMPXCHG8rr*/
/* Table4442 */
0x241, /* CMPXCHG32rm*/
0x242, /* CMPXCHG32rr*/
/* Table4443 */
0x4bd, /* LSS32rm*/
0, /* PHI*/
/* Table4444 */
0x14d, /* BTR32mr*/
0x14f, /* BTR32rr*/
/* Table4445 */
0x45d, /* LFS32rm*/
0, /* PHI*/
/* Table4446 */
0x462, /* LGS32rm*/
0, /* PHI*/
/* Table4447 */
0x662, /* MOVZX32rm8*/
0x664, /* MOVZX32rr8*/
/* Table4448 */
0x661, /* MOVZX32rm16*/
0x663, /* MOVZX32rr16*/
/* Table4449 */
0x7fd, /* POPCNT32rm*/
0x7fe, /* POPCNT32rr*/
/* Table4450 */
0xace, /* UD2B*/
/* Table4451 */
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x134, /* BT32mi8*/
0x158, /* BTS32mi8*/
0x14c, /* BTR32mi8*/
0x140, /* BTC32mi8*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x136, /* BT32ri8*/
0x15a, /* BTS32ri8*/
0x14e, /* BTR32ri8*/
0x142, /* BTC32ri8*/
/* Table4452 */
0x141, /* BTC32mr*/
0x143, /* BTC32rr*/
/* Table4453 */
0xabb, /* TZCNT32rm*/
0xabc, /* TZCNT32rr*/
/* Table4454 */
0x4c7, /* LZCNT32rm*/
0x4c8, /* LZCNT32rr*/
/* Table4455 */
0x646, /* MOVSX32rm8*/
0x648, /* MOVSX32rr8*/
/* Table4456 */
0x645, /* MOVSX32rm16*/
0x647, /* MOVSX32rr16*/
/* Table4457 */
0x117c, /* XADD8rm*/
0x117d, /* XADD8rr*/
/* Table4458 */
0x1178, /* XADD32rm*/
0x1179, /* XADD32rr*/
/* Table4459 */
0x23a, /* CMPSSrm*/
0x23c, /* CMPSSrr*/
/* Table4460 */
0x623, /* MOVNTImr*/
0, /* PHI*/
/* Table4461 */
0x555, /* MMX_PINSRWirmi*/
0x556, /* MMX_PINSRWirri*/
/* Table4462 */
0, /* PHI*/
0x548, /* MMX_PEXTRWirri*/
/* Table4463 */
0x9ed, /* SHUFPSrmi*/
0x9ee, /* SHUFPSrri*/
/* Table4464 */
0, /* PHI*/
0x245, /* CMPXCHG8B*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0xe35, /* VMXON*/
0xe16, /* VMPTRSTm*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x8c8, /* RDRAND32r*/
0x8cb, /* RDSEED32r*/
/* Table4465 */
0x12e, /* BSWAP32r*/
/* Table4466 */
0x12e, /* BSWAP32r*/
/* Table4467 */
0x12e, /* BSWAP32r*/
/* Table4468 */
0x12e, /* BSWAP32r*/
/* Table4469 */
0x12e, /* BSWAP32r*/
/* Table4470 */
0x12e, /* BSWAP32r*/
/* Table4471 */
0x12e, /* BSWAP32r*/
/* Table4472 */
0x12e, /* BSWAP32r*/
/* Table4473 */
0x592, /* MMX_PSRLWrm*/
0x593, /* MMX_PSRLWrr*/
/* Table4474 */
0x58c, /* MMX_PSRLDrm*/
0x58d, /* MMX_PSRLDrr*/
/* Table4475 */
0x58f, /* MMX_PSRLQrm*/
0x590, /* MMX_PSRLQrr*/
/* Table4476 */
0x526, /* MMX_PADDQirm*/
0x527, /* MMX_PADDQirr*/
/* Table4477 */
0x56a, /* MMX_PMULLWirm*/
0x56b, /* MMX_PMULLWirr*/
/* Table4478 */
0, /* PHI*/
0x50f, /* MMX_MOVQ2DQrr*/
/* Table4479 */
0, /* PHI*/
0x563, /* MMX_PMOVMSKBrr*/
/* Table4480 */
0x59e, /* MMX_PSUBUSBirm*/
0x59f, /* MMX_PSUBUSBirr*/
/* Table4481 */
0x5a0, /* MMX_PSUBUSWirm*/
0x5a1, /* MMX_PSUBUSWirr*/
/* Table4482 */
0x561, /* MMX_PMINUBirm*/
0x562, /* MMX_PMINUBirr*/
/* Table4483 */
0x536, /* MMX_PANDirm*/
0x537, /* MMX_PANDirr*/
/* Table4484 */
0x52c, /* MMX_PADDUSBirm*/
0x52d, /* MMX_PADDUSBirr*/
/* Table4485 */
0x52e, /* MMX_PADDUSWirm*/
0x52f, /* MMX_PADDUSWirr*/
/* Table4486 */
0x55d, /* MMX_PMAXUBirm*/
0x55e, /* MMX_PMAXUBirr*/
/* Table4487 */
0x534, /* MMX_PANDNirm*/
0x535, /* MMX_PANDNirr*/
/* Table4488 */
0x538, /* MMX_PAVGBirm*/
0x539, /* MMX_PAVGBirr*/
/* Table4489 */
0x589, /* MMX_PSRAWrm*/
0x58a, /* MMX_PSRAWrr*/
/* Table4490 */
0x586, /* MMX_PSRADrm*/
0x587, /* MMX_PSRADrr*/
/* Table4491 */
0x53a, /* MMX_PAVGWirm*/
0x53b, /* MMX_PAVGWirr*/
/* Table4492 */
0x566, /* MMX_PMULHUWirm*/
0x567, /* MMX_PMULHUWirr*/
/* Table4493 */
0x568, /* MMX_PMULHWirm*/
0x569, /* MMX_PMULHWirr*/
/* Table4494 */
0x261, /* CVTDQ2PDrm*/
0x262, /* CVTDQ2PDrr*/
/* Table4495 */
0x50e, /* MMX_MOVNTQmr*/
0, /* PHI*/
/* Table4496 */
0x59a, /* MMX_PSUBSBirm*/
0x59b, /* MMX_PSUBSBirr*/
/* Table4497 */
0x59c, /* MMX_PSUBSWirm*/
0x59d, /* MMX_PSUBSWirr*/
/* Table4498 */
0x55f, /* MMX_PMINSWirm*/
0x560, /* MMX_PMINSWirr*/
/* Table4499 */
0x56e, /* MMX_PORirm*/
0x56f, /* MMX_PORirr*/
/* Table4500 */
0x528, /* MMX_PADDSBirm*/
0x529, /* MMX_PADDSBirr*/
/* Table4501 */
0x52a, /* MMX_PADDSWirm*/
0x52b, /* MMX_PADDSWirr*/
/* Table4502 */
0x55b, /* MMX_PMAXSWirm*/
0x55c, /* MMX_PMAXSWirr*/
/* Table4503 */
0x5b0, /* MMX_PXORirm*/
0x5b1, /* MMX_PXORirr*/
/* Table4504 */
0x583, /* MMX_PSLLWrm*/
0x584, /* MMX_PSLLWrr*/
/* Table4505 */
0x57d, /* MMX_PSLLDrm*/
0x57e, /* MMX_PSLLDrr*/
/* Table4506 */
0x580, /* MMX_PSLLQrm*/
0x581, /* MMX_PSLLQrr*/
/* Table4507 */
0x56c, /* MMX_PMULUDQirm*/
0x56d, /* MMX_PMULUDQirr*/
/* Table4508 */
0x559, /* MMX_PMADDWDirm*/
0x55a, /* MMX_PMADDWDirr*/
/* Table4509 */
0x570, /* MMX_PSADBWirm*/
0x571, /* MMX_PSADBWirr*/
/* Table4510 */
0, /* PHI*/
0x503, /* MMX_MASKMOVQ*/
/* Table4511 */
0x594, /* MMX_PSUBBirm*/
0x595, /* MMX_PSUBBirr*/
/* Table4512 */
0x5a2, /* MMX_PSUBWirm*/
0x5a3, /* MMX_PSUBWirr*/
/* Table4513 */
0x596, /* MMX_PSUBDirm*/
0x597, /* MMX_PSUBDirr*/
/* Table4514 */
0x598, /* MMX_PSUBQirm*/
0x599, /* MMX_PSUBQirr*/
/* Table4515 */
0x522, /* MMX_PADDBirm*/
0x523, /* MMX_PADDBirr*/
/* Table4516 */
0x530, /* MMX_PADDWirm*/
0x531, /* MMX_PADDWirr*/
/* Table4517 */
0x524, /* MMX_PADDDirm*/
0x525, /* MMX_PADDDirr*/
/* Table4518 */
0x7fb, /* POPCNT16rm*/
0x7fc, /* POPCNT16rr*/
/* Table4519 */
0xab9, /* TZCNT16rm*/
0xaba, /* TZCNT16rr*/
/* Table4520 */
0x4c5, /* LZCNT16rm*/
0x4c6, /* LZCNT16rr*/
/* Table4521 */
0x9f9, /* SLDT64m*/
0xa1d, /* STRm*/
0x466, /* LLDT16m*/
0x4bf, /* LTRm*/
0xb9b, /* VERRm*/
0xb9d, /* VERWm*/
0, /* PHI*/
0, /* PHI*/
0x9fa, /* SLDT64r*/
0xa1c, /* STR64r*/
0x467, /* LLDT16r*/
0x4c0, /* LTRr*/
0xb9c, /* VERRr*/
0xb9e, /* VERWr*/
0, /* PHI*/
0, /* PHI*/
/* Table4522 */
0x99a, /* SGDTm*/
0x9f0, /* SIDTm*/
0x460, /* LGDTm*/
0x465, /* LIDTm*/
0x9fb, /* SMSW16m*/
0, /* PHI*/
0x468, /* LMSW16m*/
0x3a0, /* INVLPG*/
0, /* PHI*/
0xd71, /* VMCALL*/
0xd90, /* VMLAUNCH*/
0xe1b, /* VMRESUME*/
0xe34, /* VMXOFF*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x5b3, /* MONITORrrr*/
0x69e, /* MWAITrr*/
0x172, /* CLAC*/
0xa10, /* STAC*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x1193, /* XGETBV*/
0x11c1, /* XSETBV*/
0, /* PHI*/
0, /* PHI*/
0xd73, /* VMFUNC*/
0x1192, /* XEND*/
0x11c5, /* XTEST*/
0, /* PHI*/
0xe1d, /* VMRUN64*/
0xd93, /* VMMCALL*/
0xd92, /* VMLOAD64*/
0xe1f, /* VMSAVE64*/
0xa13, /* STGI*/
0x176, /* CLGI*/
0x9f5, /* SKINIT*/
0x3a2, /* INVLPGA64*/
0x9fe, /* SMSW64r*/
0x9fe, /* SMSW64r*/
0x9fe, /* SMSW64r*/
0x9fe, /* SMSW64r*/
0x9fe, /* SMSW64r*/
0x9fe, /* SMSW64r*/
0x9fe, /* SMSW64r*/
0x9fe, /* SMSW64r*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x469, /* LMSW16r*/
0x469, /* LMSW16r*/
0x469, /* LMSW16r*/
0x469, /* LMSW16r*/
0x469, /* LMSW16r*/
0x469, /* LMSW16r*/
0x469, /* LMSW16r*/
0x469, /* LMSW16r*/
0xa85, /* SWAPGS*/
0x8ce, /* RDTSCP*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
/* Table4523 */
0x435, /* LAR64rm*/
0x436, /* LAR64rr*/
/* Table4524 */
0x4ba, /* LSL64rm*/
0x4bb, /* LSL64rr*/
/* Table4525 */
0xa86, /* SYSCALL*/
/* Table4526 */
0x178, /* CLTS*/
/* Table4527 */
0xa8b, /* SYSRET64*/
/* Table4528 */
0x39d, /* INVD*/
/* Table4529 */
0x116c, /* WBINVD*/
/* Table4530 */
0xab4, /* TRAP*/
/* Table4531 */
0x812, /* PREFETCH*/
0x817, /* PREFETCHW*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
/* Table4532 */
0x2fe, /* FEMMS*/
/* Table4533 */
0x654, /* MOVUPSrm*/
0x655, /* MOVUPSrr*/
/* Table4534 */
0x653, /* MOVUPSmr*/
0x656, /* MOVUPSrr_REV*/
/* Table4535 */
0x61a, /* MOVLPSrm*/
0x611, /* MOVHLPSrr*/
/* Table4536 */
0x619, /* MOVLPSmr*/
0, /* PHI*/
/* Table4537 */
0xad5, /* UNPCKLPSrm*/
0xad6, /* UNPCKLPSrr*/
/* Table4538 */
0xad1, /* UNPCKHPSrm*/
0xad2, /* UNPCKHPSrr*/
/* Table4539 */
0x615, /* MOVHPSrm*/
0x616, /* MOVLHPSrr*/
/* Table4540 */
0x614, /* MOVHPSmr*/
0, /* PHI*/
/* Table4541 */
0x813, /* PREFETCHNTA*/
0x814, /* PREFETCHT0*/
0x815, /* PREFETCHT1*/
0x816, /* PREFETCHT2*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
/* Table4542 */
0x6d1, /* NOOPL*/
0, /* PHI*/
/* Table4543 */
0, /* PHI*/
0x5db, /* MOV64rc*/
/* Table4544 */
0, /* PHI*/
0x5dc, /* MOV64rd*/
/* Table4545 */
0, /* PHI*/
0x5d5, /* MOV64cr*/
/* Table4546 */
0, /* PHI*/
0x5d6, /* MOV64dr*/
/* Table4547 */
0x5fa, /* MOVAPSrm*/
0x5fb, /* MOVAPSrr*/
/* Table4548 */
0x5f9, /* MOVAPSmr*/
0x5fc, /* MOVAPSrr_REV*/
/* Table4549 */
0x4fa, /* MMX_CVTPI2PSirm*/
0x4fb, /* MMX_CVTPI2PSirr*/
/* Table4550 */
0x625, /* MOVNTPSmr*/
0, /* PHI*/
/* Table4551 */
0x500, /* MMX_CVTTPS2PIirm*/
0x501, /* MMX_CVTTPS2PIirr*/
/* Table4552 */
0x4fc, /* MMX_CVTPS2PIirm*/
0x4fd, /* MMX_CVTPS2PIirr*/
/* Table4553 */
0xac1, /* UCOMISSrm*/
0xac2, /* UCOMISSrr*/
/* Table4554 */
0x24a, /* COMISSrm*/
0x24b, /* COMISSrr*/
/* Table4555 */
0x1174, /* WRMSR*/
/* Table4556 */
0x8cd, /* RDTSC*/
/* Table4557 */
0x8c5, /* RDMSR*/
/* Table4558 */
0x8c6, /* RDPMC*/
/* Table4559 */
0xa87, /* SYSENTER*/
/* Table4560 */
0xa89, /* SYSEXIT64*/
/* Table4561 */
0x1e8, /* CMOVO64rm*/
0x1e9, /* CMOVO64rr*/
/* Table4562 */
0x1d2, /* CMOVNO64rm*/
0x1d3, /* CMOVNO64rr*/
/* Table4563 */
0x18a, /* CMOVB64rm*/
0x18b, /* CMOVB64rr*/
/* Table4564 */
0x184, /* CMOVAE64rm*/
0x185, /* CMOVAE64rr*/
/* Table4565 */
0x19e, /* CMOVE64rm*/
0x19f, /* CMOVE64rr*/
/* Table4566 */
0x1c8, /* CMOVNE64rm*/
0x1c9, /* CMOVNE64rr*/
/* Table4567 */
0x190, /* CMOVBE64rm*/
0x191, /* CMOVBE64rr*/
/* Table4568 */
0x17e, /* CMOVA64rm*/
0x17f, /* CMOVA64rr*/
/* Table4569 */
0x1f8, /* CMOVS64rm*/
0x1f9, /* CMOVS64rr*/
/* Table4570 */
0x1e2, /* CMOVNS64rm*/
0x1e3, /* CMOVNS64rr*/
/* Table4571 */
0x1ee, /* CMOVP64rm*/
0x1ef, /* CMOVP64rr*/
/* Table4572 */
0x1d8, /* CMOVNP64rm*/
0x1d9, /* CMOVNP64rr*/
/* Table4573 */
0x1b4, /* CMOVL64rm*/
0x1b5, /* CMOVL64rr*/
/* Table4574 */
0x1ae, /* CMOVGE64rm*/
0x1af, /* CMOVGE64rr*/
/* Table4575 */
0x1ba, /* CMOVLE64rm*/
0x1bb, /* CMOVLE64rr*/
/* Table4576 */
0x1a8, /* CMOVG64rm*/
0x1a9, /* CMOVG64rr*/
/* Table4577 */
0, /* PHI*/
0x61e, /* MOVMSKPSrr32*/
/* Table4578 */
0xa01, /* SQRTPSm*/
0xa02, /* SQRTPSr*/
/* Table4579 */
0x927, /* RSQRTPSm*/
0x929, /* RSQRTPSr*/
/* Table4580 */
0x8a1, /* RCPPSm*/
0x8a3, /* RCPPSr*/
/* Table4581 */
0xd7, /* ANDPSrm*/
0xd8, /* ANDPSrr*/
/* Table4582 */
0xd3, /* ANDNPSrm*/
0xd4, /* ANDNPSrr*/
/* Table4583 */
0x700, /* ORPSrm*/
0x701, /* ORPSrr*/
/* Table4584 */
0x11b9, /* XORPSrm*/
0x11ba, /* XORPSrr*/
/* Table4585 */
0x74, /* ADDPSrm*/
0x75, /* ADDPSrr*/
/* Table4586 */
0x67b, /* MULPSrm*/
0x67c, /* MULPSrr*/
/* Table4587 */
0x26b, /* CVTPS2PDrm*/
0x26c, /* CVTPS2PDrr*/
/* Table4588 */
0x263, /* CVTDQ2PSrm*/
0x264, /* CVTDQ2PSrr*/
/* Table4589 */
0xa54, /* SUBPSrm*/
0xa55, /* SUBPSrr*/
/* Table4590 */
0x4ec, /* MINPSrm*/
0x4ed, /* MINPSrr*/
/* Table4591 */
0x2a8, /* DIVPSrm*/
0x2a9, /* DIVPSrr*/
/* Table4592 */
0x4d7, /* MAXPSrm*/
0x4d8, /* MAXPSrr*/
/* Table4593 */
0x5aa, /* MMX_PUNPCKLBWirm*/
0x5ab, /* MMX_PUNPCKLBWirr*/
/* Table4594 */
0x5ae, /* MMX_PUNPCKLWDirm*/
0x5af, /* MMX_PUNPCKLWDirr*/
/* Table4595 */
0x5ac, /* MMX_PUNPCKLDQirm*/
0x5ad, /* MMX_PUNPCKLDQirr*/
/* Table4596 */
0x51e, /* MMX_PACKSSWBirm*/
0x51f, /* MMX_PACKSSWBirr*/
/* Table4597 */
0x542, /* MMX_PCMPGTBirm*/
0x543, /* MMX_PCMPGTBirr*/
/* Table4598 */
0x546, /* MMX_PCMPGTWirm*/
0x547, /* MMX_PCMPGTWirr*/
/* Table4599 */
0x544, /* MMX_PCMPGTDirm*/
0x545, /* MMX_PCMPGTDirr*/
/* Table4600 */
0x520, /* MMX_PACKUSWBirm*/
0x521, /* MMX_PACKUSWBirr*/
/* Table4601 */
0x5a4, /* MMX_PUNPCKHBWirm*/
0x5a5, /* MMX_PUNPCKHBWirr*/
/* Table4602 */
0x5a8, /* MMX_PUNPCKHWDirm*/
0x5a9, /* MMX_PUNPCKHWDirr*/
/* Table4603 */
0x5a6, /* MMX_PUNPCKHDQirm*/
0x5a7, /* MMX_PUNPCKHDQirr*/
/* Table4604 */
0x51c, /* MMX_PACKSSDWirm*/
0x51d, /* MMX_PACKSSDWirr*/
/* Table4605 */
0x508, /* MMX_MOVD64rm*/
0x50b, /* MMX_MOVD64to64rr*/
/* Table4606 */
0x512, /* MMX_MOVQ64rm*/
0x513, /* MMX_MOVQ64rr*/
/* Table4607 */
0x574, /* MMX_PSHUFWmi*/
0x575, /* MMX_PSHUFWri*/
/* Table4608 */
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x591, /* MMX_PSRLWri*/
0, /* PHI*/
0x588, /* MMX_PSRAWri*/
0, /* PHI*/
0x582, /* MMX_PSLLWri*/
0, /* PHI*/
/* Table4609 */
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x58b, /* MMX_PSRLDri*/
0, /* PHI*/
0x585, /* MMX_PSRADri*/
0, /* PHI*/
0x57c, /* MMX_PSLLDri*/
0, /* PHI*/
/* Table4610 */
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x58e, /* MMX_PSRLQri*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x57f, /* MMX_PSLLQri*/
0, /* PHI*/
/* Table4611 */
0x53c, /* MMX_PCMPEQBirm*/
0x53d, /* MMX_PCMPEQBirr*/
/* Table4612 */
0x540, /* MMX_PCMPEQWirm*/
0x541, /* MMX_PCMPEQWirr*/
/* Table4613 */
0x53e, /* MMX_PCMPEQDirm*/
0x53f, /* MMX_PCMPEQDirr*/
/* Table4614 */
0x502, /* MMX_EMMS*/
/* Table4615 */
0xe19, /* VMREAD64rm*/
0xe1a, /* VMREAD64rr*/
/* Table4616 */
0xe32, /* VMWRITE64rm*/
0xe33, /* VMWRITE64rr*/
/* Table4617 */
0x507, /* MMX_MOVD64mr*/
0x505, /* MMX_MOVD64from64rr*/
/* Table4618 */
0x511, /* MMX_MOVQ64mr*/
0, /* PHI*/
/* Table4619 */
0x42a, /* JO_4*/
/* Table4620 */
0x424, /* JNO_4*/
/* Table4621 */
0x40c, /* JB_4*/
/* Table4622 */
0x406, /* JAE_4*/
/* Table4623 */
0x411, /* JE_4*/
/* Table4624 */
0x422, /* JNE_4*/
/* Table4625 */
0x40a, /* JBE_4*/
/* Table4626 */
0x408, /* JA_4*/
/* Table4627 */
0x42f, /* JS_4*/
/* Table4628 */
0x428, /* JNS_4*/
/* Table4629 */
0x42c, /* JP_4*/
/* Table4630 */
0x426, /* JNP_4*/
/* Table4631 */
0x419, /* JL_4*/
/* Table4632 */
0x413, /* JGE_4*/
/* Table4633 */
0x417, /* JLE_4*/
/* Table4634 */
0x415, /* JG_4*/
/* Table4635 */
0x992, /* SETOm*/
0x993, /* SETOr*/
/* Table4636 */
0x98c, /* SETNOm*/
0x98d, /* SETNOr*/
/* Table4637 */
0x97e, /* SETBm*/
0x97f, /* SETBr*/
/* Table4638 */
0x974, /* SETAEm*/
0x975, /* SETAEr*/
/* Table4639 */
0x980, /* SETEm*/
0x981, /* SETEr*/
/* Table4640 */
0x98a, /* SETNEm*/
0x98b, /* SETNEr*/
/* Table4641 */
0x978, /* SETBEm*/
0x979, /* SETBEr*/
/* Table4642 */
0x976, /* SETAm*/
0x977, /* SETAr*/
/* Table4643 */
0x996, /* SETSm*/
0x997, /* SETSr*/
/* Table4644 */
0x990, /* SETNSm*/
0x991, /* SETNSr*/
/* Table4645 */
0x994, /* SETPm*/
0x995, /* SETPr*/
/* Table4646 */
0x98e, /* SETNPm*/
0x98f, /* SETNPr*/
/* Table4647 */
0x988, /* SETLm*/
0x989, /* SETLr*/
/* Table4648 */
0x982, /* SETGEm*/
0x983, /* SETGEr*/
/* Table4649 */
0x986, /* SETLEm*/
0x987, /* SETLEr*/
/* Table4650 */
0x984, /* SETGm*/
0x985, /* SETGr*/
/* Table4651 */
0x87e, /* PUSHFS64*/
/* Table4652 */
0x80a, /* POPFS64*/
/* Table4653 */
0x254, /* CPUID*/
/* Table4654 */
0x139, /* BT64mr*/
0x13b, /* BT64rr*/
/* Table4655 */
0x9bc, /* SHLD64mri8*/
0x9be, /* SHLD64rri8*/
/* Table4656 */
0x9bb, /* SHLD64mrCL*/
0x9bd, /* SHLD64rrCL*/
/* Table4657 */
0x881, /* PUSHGS64*/
/* Table4658 */
0x80d, /* POPGS64*/
/* Table4659 */
0x926, /* RSM*/
/* Table4660 */
0x15d, /* BTS64mr*/
0x15f, /* BTS64rr*/
/* Table4661 */
0x9e4, /* SHRD64mri8*/
0x9e6, /* SHRD64rri8*/
/* Table4662 */
0x9e3, /* SHRD64mrCL*/
0x9e5, /* SHRD64rrCL*/
/* Table4663 */
0x32a, /* FXSAVE64*/
0x328, /* FXRSTOR64*/
0x43e, /* LDMXCSR*/
0xa15, /* STMXCSR*/
0x11be, /* XSAVE64*/
0x11bc, /* XRSTOR64*/
0x11c0, /* XSAVEOPT64*/
0x175, /* CLFLUSH*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x45b, /* LFENCE*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x4e1, /* MFENCE*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x998, /* SFENCE*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
/* Table4664 */
0x379, /* IMUL64rm*/
0x37c, /* IMUL64rr*/
/* Table4665 */
0x246, /* CMPXCHG8rm*/
0x247, /* CMPXCHG8rr*/
/* Table4666 */
0x243, /* CMPXCHG64rm*/
0x244, /* CMPXCHG64rr*/
/* Table4667 */
0x4be, /* LSS64rm*/
0, /* PHI*/
/* Table4668 */
0x151, /* BTR64mr*/
0x153, /* BTR64rr*/
/* Table4669 */
0x45e, /* LFS64rm*/
0, /* PHI*/
/* Table4670 */
0x463, /* LGS64rm*/
0, /* PHI*/
/* Table4671 */
0x669, /* MOVZX64rm8_Q*/
0x66e, /* MOVZX64rr8_Q*/
/* Table4672 */
0x666, /* MOVZX64rm16_Q*/
0x66b, /* MOVZX64rr16_Q*/
/* Table4673 */
0xace, /* UD2B*/
/* Table4674 */
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x138, /* BT64mi8*/
0x15c, /* BTS64mi8*/
0x150, /* BTR64mi8*/
0x144, /* BTC64mi8*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x13a, /* BT64ri8*/
0x15e, /* BTS64ri8*/
0x152, /* BTR64ri8*/
0x146, /* BTC64ri8*/
/* Table4675 */
0x145, /* BTC64mr*/
0x147, /* BTC64rr*/
/* Table4676 */
0x126, /* BSF64rm*/
0x127, /* BSF64rr*/
/* Table4677 */
0x12c, /* BSR64rm*/
0x12d, /* BSR64rr*/
/* Table4678 */
0x64b, /* MOVSX64rm8*/
0x64e, /* MOVSX64rr8*/
/* Table4679 */
0x649, /* MOVSX64rm16*/
0x64c, /* MOVSX64rr16*/
/* Table4680 */
0x117c, /* XADD8rm*/
0x117d, /* XADD8rr*/
/* Table4681 */
0x117a, /* XADD64rm*/
0x117b, /* XADD64rr*/
/* Table4682 */
0x22e, /* CMPPSrmi*/
0x230, /* CMPPSrri*/
/* Table4683 */
0x622, /* MOVNTI_64mr*/
0, /* PHI*/
/* Table4684 */
0x555, /* MMX_PINSRWirmi*/
0x556, /* MMX_PINSRWirri*/
/* Table4685 */
0, /* PHI*/
0x548, /* MMX_PEXTRWirri*/
/* Table4686 */
0x9ed, /* SHUFPSrmi*/
0x9ee, /* SHUFPSrri*/
/* Table4687 */
0, /* PHI*/
0x23e, /* CMPXCHG16B*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0xe15, /* VMPTRLDm*/
0xe16, /* VMPTRSTm*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x8c9, /* RDRAND64r*/
0x8cc, /* RDSEED64r*/
/* Table4688 */
0x12f, /* BSWAP64r*/
/* Table4689 */
0x12f, /* BSWAP64r*/
/* Table4690 */
0x12f, /* BSWAP64r*/
/* Table4691 */
0x12f, /* BSWAP64r*/
/* Table4692 */
0x12f, /* BSWAP64r*/
/* Table4693 */
0x12f, /* BSWAP64r*/
/* Table4694 */
0x12f, /* BSWAP64r*/
/* Table4695 */
0x12f, /* BSWAP64r*/
/* Table4696 */
0x592, /* MMX_PSRLWrm*/
0x593, /* MMX_PSRLWrr*/
/* Table4697 */
0x58c, /* MMX_PSRLDrm*/
0x58d, /* MMX_PSRLDrr*/
/* Table4698 */
0x58f, /* MMX_PSRLQrm*/
0x590, /* MMX_PSRLQrr*/
/* Table4699 */
0x526, /* MMX_PADDQirm*/
0x527, /* MMX_PADDQirr*/
/* Table4700 */
0x56a, /* MMX_PMULLWirm*/
0x56b, /* MMX_PMULLWirr*/
/* Table4701 */
0, /* PHI*/
0x563, /* MMX_PMOVMSKBrr*/
/* Table4702 */
0x59e, /* MMX_PSUBUSBirm*/
0x59f, /* MMX_PSUBUSBirr*/
/* Table4703 */
0x5a0, /* MMX_PSUBUSWirm*/
0x5a1, /* MMX_PSUBUSWirr*/
/* Table4704 */
0x561, /* MMX_PMINUBirm*/
0x562, /* MMX_PMINUBirr*/
/* Table4705 */
0x536, /* MMX_PANDirm*/
0x537, /* MMX_PANDirr*/
/* Table4706 */
0x52c, /* MMX_PADDUSBirm*/
0x52d, /* MMX_PADDUSBirr*/
/* Table4707 */
0x52e, /* MMX_PADDUSWirm*/
0x52f, /* MMX_PADDUSWirr*/
/* Table4708 */
0x55d, /* MMX_PMAXUBirm*/
0x55e, /* MMX_PMAXUBirr*/
/* Table4709 */
0x534, /* MMX_PANDNirm*/
0x535, /* MMX_PANDNirr*/
/* Table4710 */
0x538, /* MMX_PAVGBirm*/
0x539, /* MMX_PAVGBirr*/
/* Table4711 */
0x589, /* MMX_PSRAWrm*/
0x58a, /* MMX_PSRAWrr*/
/* Table4712 */
0x586, /* MMX_PSRADrm*/
0x587, /* MMX_PSRADrr*/
/* Table4713 */
0x53a, /* MMX_PAVGWirm*/
0x53b, /* MMX_PAVGWirr*/
/* Table4714 */
0x566, /* MMX_PMULHUWirm*/
0x567, /* MMX_PMULHUWirr*/
/* Table4715 */
0x568, /* MMX_PMULHWirm*/
0x569, /* MMX_PMULHWirr*/
/* Table4716 */
0x50e, /* MMX_MOVNTQmr*/
0, /* PHI*/
/* Table4717 */
0x59a, /* MMX_PSUBSBirm*/
0x59b, /* MMX_PSUBSBirr*/
/* Table4718 */
0x59c, /* MMX_PSUBSWirm*/
0x59d, /* MMX_PSUBSWirr*/
/* Table4719 */
0x55f, /* MMX_PMINSWirm*/
0x560, /* MMX_PMINSWirr*/
/* Table4720 */
0x56e, /* MMX_PORirm*/
0x56f, /* MMX_PORirr*/
/* Table4721 */
0x528, /* MMX_PADDSBirm*/
0x529, /* MMX_PADDSBirr*/
/* Table4722 */
0x52a, /* MMX_PADDSWirm*/
0x52b, /* MMX_PADDSWirr*/
/* Table4723 */
0x55b, /* MMX_PMAXSWirm*/
0x55c, /* MMX_PMAXSWirr*/
/* Table4724 */
0x5b0, /* MMX_PXORirm*/
0x5b1, /* MMX_PXORirr*/
/* Table4725 */
0x583, /* MMX_PSLLWrm*/
0x584, /* MMX_PSLLWrr*/
/* Table4726 */
0x57d, /* MMX_PSLLDrm*/
0x57e, /* MMX_PSLLDrr*/
/* Table4727 */
0x580, /* MMX_PSLLQrm*/
0x581, /* MMX_PSLLQrr*/
/* Table4728 */
0x56c, /* MMX_PMULUDQirm*/
0x56d, /* MMX_PMULUDQirr*/
/* Table4729 */
0x559, /* MMX_PMADDWDirm*/
0x55a, /* MMX_PMADDWDirr*/
/* Table4730 */
0x570, /* MMX_PSADBWirm*/
0x571, /* MMX_PSADBWirr*/
/* Table4731 */
0, /* PHI*/
0x504, /* MMX_MASKMOVQ64*/
/* Table4732 */
0x594, /* MMX_PSUBBirm*/
0x595, /* MMX_PSUBBirr*/
/* Table4733 */
0x5a2, /* MMX_PSUBWirm*/
0x5a3, /* MMX_PSUBWirr*/
/* Table4734 */
0x596, /* MMX_PSUBDirm*/
0x597, /* MMX_PSUBDirr*/
/* Table4735 */
0x598, /* MMX_PSUBQirm*/
0x599, /* MMX_PSUBQirr*/
/* Table4736 */
0x522, /* MMX_PADDBirm*/
0x523, /* MMX_PADDBirr*/
/* Table4737 */
0x530, /* MMX_PADDWirm*/
0x531, /* MMX_PADDWirr*/
/* Table4738 */
0x524, /* MMX_PADDDirm*/
0x525, /* MMX_PADDDirr*/
/* Table4739 */
0x9f6, /* SLDT16m*/
0xa1d, /* STRm*/
0x466, /* LLDT16m*/
0x4bf, /* LTRm*/
0xb9b, /* VERRm*/
0xb9d, /* VERWm*/
0, /* PHI*/
0, /* PHI*/
0x9f7, /* SLDT16r*/
0xa1a, /* STR16r*/
0x467, /* LLDT16r*/
0x4c0, /* LTRr*/
0xb9c, /* VERRr*/
0xb9e, /* VERWr*/
0, /* PHI*/
0, /* PHI*/
/* Table4740 */
0x99a, /* SGDTm*/
0x9f0, /* SIDTm*/
0x460, /* LGDTm*/
0x465, /* LIDTm*/
0x9fb, /* SMSW16m*/
0, /* PHI*/
0x468, /* LMSW16m*/
0x3a0, /* INVLPG*/
0, /* PHI*/
0xd71, /* VMCALL*/
0xd90, /* VMLAUNCH*/
0xe1b, /* VMRESUME*/
0xe34, /* VMXOFF*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x5b3, /* MONITORrrr*/
0x69e, /* MWAITrr*/
0x172, /* CLAC*/
0xa10, /* STAC*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x1193, /* XGETBV*/
0x11c1, /* XSETBV*/
0, /* PHI*/
0, /* PHI*/
0xd73, /* VMFUNC*/
0x1192, /* XEND*/
0x11c5, /* XTEST*/
0, /* PHI*/
0xe1d, /* VMRUN64*/
0xd93, /* VMMCALL*/
0xd92, /* VMLOAD64*/
0xe1f, /* VMSAVE64*/
0xa13, /* STGI*/
0x176, /* CLGI*/
0x9f5, /* SKINIT*/
0x3a2, /* INVLPGA64*/
0x9fc, /* SMSW16r*/
0x9fc, /* SMSW16r*/
0x9fc, /* SMSW16r*/
0x9fc, /* SMSW16r*/
0x9fc, /* SMSW16r*/
0x9fc, /* SMSW16r*/
0x9fc, /* SMSW16r*/
0x9fc, /* SMSW16r*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x469, /* LMSW16r*/
0x469, /* LMSW16r*/
0x469, /* LMSW16r*/
0x469, /* LMSW16r*/
0x469, /* LMSW16r*/
0x469, /* LMSW16r*/
0x469, /* LMSW16r*/
0x469, /* LMSW16r*/
0xa85, /* SWAPGS*/
0x8ce, /* RDTSCP*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
/* Table4741 */
0x431, /* LAR16rm*/
0x432, /* LAR16rr*/
/* Table4742 */
0x4b6, /* LSL16rm*/
0x4b7, /* LSL16rr*/
/* Table4743 */
0xa86, /* SYSCALL*/
/* Table4744 */
0x178, /* CLTS*/
/* Table4745 */
0xa8a, /* SYSRET*/
/* Table4746 */
0x39d, /* INVD*/
/* Table4747 */
0x116c, /* WBINVD*/
/* Table4748 */
0xab4, /* TRAP*/
/* Table4749 */
0x812, /* PREFETCH*/
0x817, /* PREFETCHW*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
/* Table4750 */
0x2fe, /* FEMMS*/
/* Table4751 */
0x650, /* MOVUPDrm*/
0x651, /* MOVUPDrr*/
/* Table4752 */
0x64f, /* MOVUPDmr*/
0x652, /* MOVUPDrr_REV*/
/* Table4753 */
0x618, /* MOVLPDrm*/
0x611, /* MOVHLPSrr*/
/* Table4754 */
0x617, /* MOVLPDmr*/
0, /* PHI*/
/* Table4755 */
0xad3, /* UNPCKLPDrm*/
0xad4, /* UNPCKLPDrr*/
/* Table4756 */
0xacf, /* UNPCKHPDrm*/
0xad0, /* UNPCKHPDrr*/
/* Table4757 */
0x613, /* MOVHPDrm*/
0x616, /* MOVLHPSrr*/
/* Table4758 */
0x612, /* MOVHPDmr*/
0, /* PHI*/
/* Table4759 */
0x813, /* PREFETCHNTA*/
0x814, /* PREFETCHT0*/
0x815, /* PREFETCHT1*/
0x816, /* PREFETCHT2*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
/* Table4760 */
0x6d2, /* NOOPW*/
0, /* PHI*/
/* Table4761 */
0, /* PHI*/
0x5db, /* MOV64rc*/
/* Table4762 */
0, /* PHI*/
0x5dc, /* MOV64rd*/
/* Table4763 */
0, /* PHI*/
0x5d5, /* MOV64cr*/
/* Table4764 */
0, /* PHI*/
0x5d6, /* MOV64dr*/
/* Table4765 */
0x5f6, /* MOVAPDrm*/
0x5f7, /* MOVAPDrr*/
/* Table4766 */
0x5f5, /* MOVAPDmr*/
0x5f8, /* MOVAPDrr_REV*/
/* Table4767 */
0x4f8, /* MMX_CVTPI2PDirm*/
0x4f9, /* MMX_CVTPI2PDirr*/
/* Table4768 */
0x624, /* MOVNTPDmr*/
0, /* PHI*/
/* Table4769 */
0x4fe, /* MMX_CVTTPD2PIirm*/
0x4ff, /* MMX_CVTTPD2PIirr*/
/* Table4770 */
0x4f6, /* MMX_CVTPD2PIirm*/
0x4f7, /* MMX_CVTPD2PIirr*/
/* Table4771 */
0xabf, /* UCOMISDrm*/
0xac0, /* UCOMISDrr*/
/* Table4772 */
0x248, /* COMISDrm*/
0x249, /* COMISDrr*/
/* Table4773 */
0x1174, /* WRMSR*/
/* Table4774 */
0x8cd, /* RDTSC*/
/* Table4775 */
0x8c5, /* RDMSR*/
/* Table4776 */
0x8c6, /* RDPMC*/
/* Table4777 */
0xa87, /* SYSENTER*/
/* Table4778 */
0xa88, /* SYSEXIT*/
/* Table4779 */
0x1e4, /* CMOVO16rm*/
0x1e5, /* CMOVO16rr*/
/* Table4780 */
0x1ce, /* CMOVNO16rm*/
0x1cf, /* CMOVNO16rr*/
/* Table4781 */
0x186, /* CMOVB16rm*/
0x187, /* CMOVB16rr*/
/* Table4782 */
0x180, /* CMOVAE16rm*/
0x181, /* CMOVAE16rr*/
/* Table4783 */
0x19a, /* CMOVE16rm*/
0x19b, /* CMOVE16rr*/
/* Table4784 */
0x1c4, /* CMOVNE16rm*/
0x1c5, /* CMOVNE16rr*/
/* Table4785 */
0x18c, /* CMOVBE16rm*/
0x18d, /* CMOVBE16rr*/
/* Table4786 */
0x17a, /* CMOVA16rm*/
0x17b, /* CMOVA16rr*/
/* Table4787 */
0x1f4, /* CMOVS16rm*/
0x1f5, /* CMOVS16rr*/
/* Table4788 */
0x1de, /* CMOVNS16rm*/
0x1df, /* CMOVNS16rr*/
/* Table4789 */
0x1ea, /* CMOVP16rm*/
0x1eb, /* CMOVP16rr*/
/* Table4790 */
0x1d4, /* CMOVNP16rm*/
0x1d5, /* CMOVNP16rr*/
/* Table4791 */
0x1b0, /* CMOVL16rm*/
0x1b1, /* CMOVL16rr*/
/* Table4792 */
0x1aa, /* CMOVGE16rm*/
0x1ab, /* CMOVGE16rr*/
/* Table4793 */
0x1b6, /* CMOVLE16rm*/
0x1b7, /* CMOVLE16rr*/
/* Table4794 */
0x1a4, /* CMOVG16rm*/
0x1a5, /* CMOVG16rr*/
/* Table4795 */
0, /* PHI*/
0x61c, /* MOVMSKPDrr32*/
/* Table4796 */
0x9ff, /* SQRTPDm*/
0xa00, /* SQRTPDr*/
/* Table4797 */
0x927, /* RSQRTPSm*/
0x929, /* RSQRTPSr*/
/* Table4798 */
0x8a1, /* RCPPSm*/
0x8a3, /* RCPPSr*/
/* Table4799 */
0xd5, /* ANDPDrm*/
0xd6, /* ANDPDrr*/
/* Table4800 */
0xd1, /* ANDNPDrm*/
0xd2, /* ANDNPDrr*/
/* Table4801 */
0x6fe, /* ORPDrm*/
0x6ff, /* ORPDrr*/
/* Table4802 */
0x11b7, /* XORPDrm*/
0x11b8, /* XORPDrr*/
/* Table4803 */
0x72, /* ADDPDrm*/
0x73, /* ADDPDrr*/
/* Table4804 */
0x679, /* MULPDrm*/
0x67a, /* MULPDrr*/
/* Table4805 */
0x267, /* CVTPD2PSrm*/
0x268, /* CVTPD2PSrr*/
/* Table4806 */
0x269, /* CVTPS2DQrm*/
0x26a, /* CVTPS2DQrr*/
/* Table4807 */
0xa52, /* SUBPDrm*/
0xa53, /* SUBPDrr*/
/* Table4808 */
0x4ea, /* MINPDrm*/
0x4eb, /* MINPDrr*/
/* Table4809 */
0x2a6, /* DIVPDrm*/
0x2a7, /* DIVPDrr*/
/* Table4810 */
0x4d5, /* MAXPDrm*/
0x4d6, /* MAXPDrr*/
/* Table4811 */
0x85e, /* PUNPCKLBWrm*/
0x85f, /* PUNPCKLBWrr*/
/* Table4812 */
0x864, /* PUNPCKLWDrm*/
0x865, /* PUNPCKLWDrr*/
/* Table4813 */
0x860, /* PUNPCKLDQrm*/
0x861, /* PUNPCKLDQrr*/
/* Table4814 */
0x713, /* PACKSSWBrm*/
0x714, /* PACKSSWBrr*/
/* Table4815 */
0x74c, /* PCMPGTBrm*/
0x74d, /* PCMPGTBrr*/
/* Table4816 */
0x752, /* PCMPGTWrm*/
0x753, /* PCMPGTWrr*/
/* Table4817 */
0x74e, /* PCMPGTDrm*/
0x74f, /* PCMPGTDrr*/
/* Table4818 */
0x717, /* PACKUSWBrm*/
0x718, /* PACKUSWBrr*/
/* Table4819 */
0x856, /* PUNPCKHBWrm*/
0x857, /* PUNPCKHBWrr*/
/* Table4820 */
0x85c, /* PUNPCKHWDrm*/
0x85d, /* PUNPCKHWDrr*/
/* Table4821 */
0x858, /* PUNPCKHDQrm*/
0x859, /* PUNPCKHDQrr*/
/* Table4822 */
0x711, /* PACKSSDWrm*/
0x712, /* PACKSSDWrr*/
/* Table4823 */
0x862, /* PUNPCKLQDQrm*/
0x863, /* PUNPCKLQDQrr*/
/* Table4824 */
0x85a, /* PUNPCKHQDQrm*/
0x85b, /* PUNPCKHQDQrr*/
/* Table4825 */
0x605, /* MOVDI2PDIrm*/
0x606, /* MOVDI2PDIrr*/
/* Table4826 */
0x60a, /* MOVDQArm*/
0x60b, /* MOVDQArr*/
/* Table4827 */
0x81c, /* PSHUFDmi*/
0x81d, /* PSHUFDri*/
/* Table4828 */
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x83f, /* PSRLWri*/
0, /* PHI*/
0x835, /* PSRAWri*/
0, /* PHI*/
0x82f, /* PSLLWri*/
0, /* PHI*/
/* Table4829 */
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x839, /* PSRLDri*/
0, /* PHI*/
0x832, /* PSRADri*/
0, /* PHI*/
0x829, /* PSLLDri*/
0, /* PHI*/
/* Table4830 */
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x83c, /* PSRLQri*/
0x838, /* PSRLDQri*/
0, /* PHI*/
0, /* PHI*/
0x82c, /* PSLLQri*/
0x828, /* PSLLDQri*/
/* Table4831 */
0x73c, /* PCMPEQBrm*/
0x73d, /* PCMPEQBrr*/
/* Table4832 */
0x742, /* PCMPEQWrm*/
0x743, /* PCMPEQWrr*/
/* Table4833 */
0x73e, /* PCMPEQDrm*/
0x73f, /* PCMPEQDrr*/
/* Table4834 */
0x502, /* MMX_EMMS*/
/* Table4835 */
0xe19, /* VMREAD64rm*/
0x2ea, /* EXTRQI*/
/* Table4836 */
0xe32, /* VMWRITE64rm*/
0x2e9, /* EXTRQ*/
/* Table4837 */
0x34a, /* HADDPDrm*/
0x34b, /* HADDPDrr*/
/* Table4838 */
0x34f, /* HSUBPDrm*/
0x350, /* HSUBPDrr*/
/* Table4839 */
0x629, /* MOVPDI2DImr*/
0x62a, /* MOVPDI2DIrr*/
/* Table4840 */
0x609, /* MOVDQAmr*/
0x60c, /* MOVDQArr_REV*/
/* Table4841 */
0x42a, /* JO_4*/
/* Table4842 */
0x424, /* JNO_4*/
/* Table4843 */
0x40c, /* JB_4*/
/* Table4844 */
0x406, /* JAE_4*/
/* Table4845 */
0x411, /* JE_4*/
/* Table4846 */
0x422, /* JNE_4*/
/* Table4847 */
0x40a, /* JBE_4*/
/* Table4848 */
0x408, /* JA_4*/
/* Table4849 */
0x42f, /* JS_4*/
/* Table4850 */
0x428, /* JNS_4*/
/* Table4851 */
0x42c, /* JP_4*/
/* Table4852 */
0x426, /* JNP_4*/
/* Table4853 */
0x419, /* JL_4*/
/* Table4854 */
0x413, /* JGE_4*/
/* Table4855 */
0x417, /* JLE_4*/
/* Table4856 */
0x415, /* JG_4*/
/* Table4857 */
0x992, /* SETOm*/
0x993, /* SETOr*/
/* Table4858 */
0x98c, /* SETNOm*/
0x98d, /* SETNOr*/
/* Table4859 */
0x97e, /* SETBm*/
0x97f, /* SETBr*/
/* Table4860 */
0x974, /* SETAEm*/
0x975, /* SETAEr*/
/* Table4861 */
0x980, /* SETEm*/
0x981, /* SETEr*/
/* Table4862 */
0x98a, /* SETNEm*/
0x98b, /* SETNEr*/
/* Table4863 */
0x978, /* SETBEm*/
0x979, /* SETBEr*/
/* Table4864 */
0x976, /* SETAm*/
0x977, /* SETAr*/
/* Table4865 */
0x996, /* SETSm*/
0x997, /* SETSr*/
/* Table4866 */
0x990, /* SETNSm*/
0x991, /* SETNSr*/
/* Table4867 */
0x994, /* SETPm*/
0x995, /* SETPr*/
/* Table4868 */
0x98e, /* SETNPm*/
0x98f, /* SETNPr*/
/* Table4869 */
0x988, /* SETLm*/
0x989, /* SETLr*/
/* Table4870 */
0x982, /* SETGEm*/
0x983, /* SETGEr*/
/* Table4871 */
0x986, /* SETLEm*/
0x987, /* SETLEr*/
/* Table4872 */
0x984, /* SETGm*/
0x985, /* SETGr*/
/* Table4873 */
0x87c, /* PUSHFS16*/
/* Table4874 */
0x808, /* POPFS16*/
/* Table4875 */
0x254, /* CPUID*/
/* Table4876 */
0x131, /* BT16mr*/
0x133, /* BT16rr*/
/* Table4877 */
0x9b4, /* SHLD16mri8*/
0x9b6, /* SHLD16rri8*/
/* Table4878 */
0x9b3, /* SHLD16mrCL*/
0x9b5, /* SHLD16rrCL*/
/* Table4879 */
0x87f, /* PUSHGS16*/
/* Table4880 */
0x80b, /* POPGS16*/
/* Table4881 */
0x926, /* RSM*/
/* Table4882 */
0x155, /* BTS16mr*/
0x157, /* BTS16rr*/
/* Table4883 */
0x9dc, /* SHRD16mri8*/
0x9de, /* SHRD16rri8*/
/* Table4884 */
0x9db, /* SHRD16mrCL*/
0x9dd, /* SHRD16rrCL*/
/* Table4885 */
0x329, /* FXSAVE*/
0x327, /* FXRSTOR*/
0x43e, /* LDMXCSR*/
0xa15, /* STMXCSR*/
0x11bd, /* XSAVE*/
0x11bb, /* XRSTOR*/
0x11bf, /* XSAVEOPT*/
0x175, /* CLFLUSH*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x45b, /* LFENCE*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x4e1, /* MFENCE*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x998, /* SFENCE*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
/* Table4886 */
0x369, /* IMUL16rm*/
0x36c, /* IMUL16rr*/
/* Table4887 */
0x246, /* CMPXCHG8rm*/
0x247, /* CMPXCHG8rr*/
/* Table4888 */
0x23f, /* CMPXCHG16rm*/
0x240, /* CMPXCHG16rr*/
/* Table4889 */
0x4bc, /* LSS16rm*/
0, /* PHI*/
/* Table4890 */
0x149, /* BTR16mr*/
0x14b, /* BTR16rr*/
/* Table4891 */
0x45c, /* LFS16rm*/
0, /* PHI*/
/* Table4892 */
0x461, /* LGS16rm*/
0, /* PHI*/
/* Table4893 */
0x65d, /* MOVZX16rm8*/
0x65e, /* MOVZX16rr8*/
/* Table4894 */
0x661, /* MOVZX32rm16*/
0x663, /* MOVZX32rr16*/
/* Table4895 */
0xace, /* UD2B*/
/* Table4896 */
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x130, /* BT16mi8*/
0x154, /* BTS16mi8*/
0x148, /* BTR16mi8*/
0x13c, /* BTC16mi8*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x132, /* BT16ri8*/
0x156, /* BTS16ri8*/
0x14a, /* BTR16ri8*/
0x13e, /* BTC16ri8*/
/* Table4897 */
0x13d, /* BTC16mr*/
0x13f, /* BTC16rr*/
/* Table4898 */
0x122, /* BSF16rm*/
0x123, /* BSF16rr*/
/* Table4899 */
0x128, /* BSR16rm*/
0x129, /* BSR16rr*/
/* Table4900 */
0x643, /* MOVSX16rm8*/
0x644, /* MOVSX16rr8*/
/* Table4901 */
0x645, /* MOVSX32rm16*/
0x647, /* MOVSX32rr16*/
/* Table4902 */
0x117c, /* XADD8rm*/
0x117d, /* XADD8rr*/
/* Table4903 */
0x1176, /* XADD16rm*/
0x1177, /* XADD16rr*/
/* Table4904 */
0x22a, /* CMPPDrmi*/
0x22c, /* CMPPDrri*/
/* Table4905 */
0x623, /* MOVNTImr*/
0, /* PHI*/
/* Table4906 */
0x7aa, /* PINSRWrmi*/
0x7ab, /* PINSRWrri*/
/* Table4907 */
0, /* PHI*/
0x76b, /* PEXTRWri*/
/* Table4908 */
0x9eb, /* SHUFPDrmi*/
0x9ec, /* SHUFPDrri*/
/* Table4909 */
0, /* PHI*/
0x245, /* CMPXCHG8B*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0xd72, /* VMCLEARm*/
0xe16, /* VMPTRSTm*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x8c7, /* RDRAND16r*/
0x8ca, /* RDSEED16r*/
/* Table4910 */
0x12e, /* BSWAP32r*/
/* Table4911 */
0x12e, /* BSWAP32r*/
/* Table4912 */
0x12e, /* BSWAP32r*/
/* Table4913 */
0x12e, /* BSWAP32r*/
/* Table4914 */
0x12e, /* BSWAP32r*/
/* Table4915 */
0x12e, /* BSWAP32r*/
/* Table4916 */
0x12e, /* BSWAP32r*/
/* Table4917 */
0x12e, /* BSWAP32r*/
/* Table4918 */
0x7e, /* ADDSUBPDrm*/
0x7f, /* ADDSUBPDrr*/
/* Table4919 */
0x840, /* PSRLWrm*/
0x841, /* PSRLWrr*/
/* Table4920 */
0x83a, /* PSRLDrm*/
0x83b, /* PSRLDrr*/
/* Table4921 */
0x83d, /* PSRLQrm*/
0x83e, /* PSRLQrr*/
/* Table4922 */
0x71d, /* PADDQrm*/
0x71e, /* PADDQrr*/
/* Table4923 */
0x7ed, /* PMULLWrm*/
0x7ee, /* PMULLWrr*/
/* Table4924 */
0x61b, /* MOVLQ128mr*/
0, /* PHI*/
/* Table4925 */
0, /* PHI*/
0x7c8, /* PMOVMSKBrr*/
/* Table4926 */
0x84c, /* PSUBUSBrm*/
0x84d, /* PSUBUSBrr*/
/* Table4927 */
0x84e, /* PSUBUSWrm*/
0x84f, /* PSUBUSWrr*/
/* Table4928 */
0x7c2, /* PMINUBrm*/
0x7c3, /* PMINUBrr*/
/* Table4929 */
0x72d, /* PANDrm*/
0x72e, /* PANDrr*/
/* Table4930 */
0x723, /* PADDUSBrm*/
0x724, /* PADDUSBrr*/
/* Table4931 */
0x725, /* PADDUSWrm*/
0x726, /* PADDUSWrr*/
/* Table4932 */
0x7b6, /* PMAXUBrm*/
0x7b7, /* PMAXUBrr*/
/* Table4933 */
0x72b, /* PANDNrm*/
0x72c, /* PANDNrr*/
/* Table4934 */
0x730, /* PAVGBrm*/
0x731, /* PAVGBrr*/
/* Table4935 */
0x836, /* PSRAWrm*/
0x837, /* PSRAWrr*/
/* Table4936 */
0x833, /* PSRADrm*/
0x834, /* PSRADrr*/
/* Table4937 */
0x734, /* PAVGWrm*/
0x735, /* PAVGWrr*/
/* Table4938 */
0x7e7, /* PMULHUWrm*/
0x7e8, /* PMULHUWrr*/
/* Table4939 */
0x7e9, /* PMULHWrm*/
0x7ea, /* PMULHWrr*/
/* Table4940 */
0x281, /* CVTTPD2DQrm*/
0x282, /* CVTTPD2DQrr*/
/* Table4941 */
0x621, /* MOVNTDQmr*/
0, /* PHI*/
/* Table4942 */
0x848, /* PSUBSBrm*/
0x849, /* PSUBSBrr*/
/* Table4943 */
0x84a, /* PSUBSWrm*/
0x84b, /* PSUBSWrr*/
/* Table4944 */
0x7c0, /* PMINSWrm*/
0x7c1, /* PMINSWrr*/
/* Table4945 */
0x810, /* PORrm*/
0x811, /* PORrr*/
/* Table4946 */
0x71f, /* PADDSBrm*/
0x720, /* PADDSBrr*/
/* Table4947 */
0x721, /* PADDSWrm*/
0x722, /* PADDSWrr*/
/* Table4948 */
0x7b4, /* PMAXSWrm*/
0x7b5, /* PMAXSWrr*/
/* Table4949 */
0x887, /* PXORrm*/
0x888, /* PXORrr*/
/* Table4950 */
0x830, /* PSLLWrm*/
0x831, /* PSLLWrr*/
/* Table4951 */
0x82a, /* PSLLDrm*/
0x82b, /* PSLLDrr*/
/* Table4952 */
0x82d, /* PSLLQrm*/
0x82e, /* PSLLQrr*/
/* Table4953 */
0x7ef, /* PMULUDQrm*/
0x7f0, /* PMULUDQrr*/
/* Table4954 */
0x7ae, /* PMADDWDrm*/
0x7af, /* PMADDWDrr*/
/* Table4955 */
0x818, /* PSADBWrm*/
0x819, /* PSADBWrr*/
/* Table4956 */
0, /* PHI*/
0x4cc, /* MASKMOVDQU64*/
/* Table4957 */
0x842, /* PSUBBrm*/
0x843, /* PSUBBrr*/
/* Table4958 */
0x850, /* PSUBWrm*/
0x851, /* PSUBWrr*/
/* Table4959 */
0x844, /* PSUBDrm*/
0x845, /* PSUBDrr*/
/* Table4960 */
0x846, /* PSUBQrm*/
0x847, /* PSUBQrr*/
/* Table4961 */
0x719, /* PADDBrm*/
0x71a, /* PADDBrr*/
/* Table4962 */
0x727, /* PADDWrm*/
0x728, /* PADDWrr*/
/* Table4963 */
0x71b, /* PADDDrm*/
0x71c, /* PADDDrr*/
/* Table4964 */
0x9f6, /* SLDT16m*/
0xa1d, /* STRm*/
0x466, /* LLDT16m*/
0x4bf, /* LTRm*/
0xb9b, /* VERRm*/
0xb9d, /* VERWm*/
0, /* PHI*/
0, /* PHI*/
0x9f8, /* SLDT32r*/
0xa1b, /* STR32r*/
0x467, /* LLDT16r*/
0x4c0, /* LTRr*/
0xb9c, /* VERRr*/
0xb9e, /* VERWr*/
0, /* PHI*/
0, /* PHI*/
/* Table4965 */
0x99a, /* SGDTm*/
0x9f0, /* SIDTm*/
0x460, /* LGDTm*/
0x465, /* LIDTm*/
0x9fb, /* SMSW16m*/
0, /* PHI*/
0x468, /* LMSW16m*/
0x3a0, /* INVLPG*/
0, /* PHI*/
0xd71, /* VMCALL*/
0xd90, /* VMLAUNCH*/
0xe1b, /* VMRESUME*/
0xe34, /* VMXOFF*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x5b3, /* MONITORrrr*/
0x69e, /* MWAITrr*/
0x172, /* CLAC*/
0xa10, /* STAC*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x1193, /* XGETBV*/
0x11c1, /* XSETBV*/
0, /* PHI*/
0, /* PHI*/
0xd73, /* VMFUNC*/
0x1192, /* XEND*/
0x11c5, /* XTEST*/
0, /* PHI*/
0xe1d, /* VMRUN64*/
0xd93, /* VMMCALL*/
0xd92, /* VMLOAD64*/
0xe1f, /* VMSAVE64*/
0xa13, /* STGI*/
0x176, /* CLGI*/
0x9f5, /* SKINIT*/
0x3a2, /* INVLPGA64*/
0x9fd, /* SMSW32r*/
0x9fd, /* SMSW32r*/
0x9fd, /* SMSW32r*/
0x9fd, /* SMSW32r*/
0x9fd, /* SMSW32r*/
0x9fd, /* SMSW32r*/
0x9fd, /* SMSW32r*/
0x9fd, /* SMSW32r*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x469, /* LMSW16r*/
0x469, /* LMSW16r*/
0x469, /* LMSW16r*/
0x469, /* LMSW16r*/
0x469, /* LMSW16r*/
0x469, /* LMSW16r*/
0x469, /* LMSW16r*/
0x469, /* LMSW16r*/
0xa85, /* SWAPGS*/
0x8ce, /* RDTSCP*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
/* Table4966 */
0x433, /* LAR32rm*/
0x434, /* LAR32rr*/
/* Table4967 */
0x4b8, /* LSL32rm*/
0x4b9, /* LSL32rr*/
/* Table4968 */
0xa86, /* SYSCALL*/
/* Table4969 */
0x178, /* CLTS*/
/* Table4970 */
0xa8a, /* SYSRET*/
/* Table4971 */
0x39d, /* INVD*/
/* Table4972 */
0x116c, /* WBINVD*/
/* Table4973 */
0xab4, /* TRAP*/
/* Table4974 */
0x812, /* PREFETCH*/
0x817, /* PREFETCHW*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
/* Table4975 */
0x2fe, /* FEMMS*/
/* Table4976 */
0x654, /* MOVUPSrm*/
0x655, /* MOVUPSrr*/
/* Table4977 */
0x653, /* MOVUPSmr*/
0x656, /* MOVUPSrr_REV*/
/* Table4978 */
0x61a, /* MOVLPSrm*/
0x611, /* MOVHLPSrr*/
/* Table4979 */
0x619, /* MOVLPSmr*/
0, /* PHI*/
/* Table4980 */
0xad5, /* UNPCKLPSrm*/
0xad6, /* UNPCKLPSrr*/
/* Table4981 */
0xad1, /* UNPCKHPSrm*/
0xad2, /* UNPCKHPSrr*/
/* Table4982 */
0x615, /* MOVHPSrm*/
0x616, /* MOVLHPSrr*/
/* Table4983 */
0x614, /* MOVHPSmr*/
0, /* PHI*/
/* Table4984 */
0x813, /* PREFETCHNTA*/
0x814, /* PREFETCHT0*/
0x815, /* PREFETCHT1*/
0x816, /* PREFETCHT2*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
/* Table4985 */
0x6d1, /* NOOPL*/
0, /* PHI*/
/* Table4986 */
0, /* PHI*/
0x5db, /* MOV64rc*/
/* Table4987 */
0, /* PHI*/
0x5dc, /* MOV64rd*/
/* Table4988 */
0, /* PHI*/
0x5d5, /* MOV64cr*/
/* Table4989 */
0, /* PHI*/
0x5d6, /* MOV64dr*/
/* Table4990 */
0x5fa, /* MOVAPSrm*/
0x5fb, /* MOVAPSrr*/
/* Table4991 */
0x5f9, /* MOVAPSmr*/
0x5fc, /* MOVAPSrr_REV*/
/* Table4992 */
0x4fa, /* MMX_CVTPI2PSirm*/
0x4fb, /* MMX_CVTPI2PSirr*/
/* Table4993 */
0x625, /* MOVNTPSmr*/
0, /* PHI*/
/* Table4994 */
0x500, /* MMX_CVTTPS2PIirm*/
0x501, /* MMX_CVTTPS2PIirr*/
/* Table4995 */
0x4fc, /* MMX_CVTPS2PIirm*/
0x4fd, /* MMX_CVTPS2PIirr*/
/* Table4996 */
0xac1, /* UCOMISSrm*/
0xac2, /* UCOMISSrr*/
/* Table4997 */
0x24a, /* COMISSrm*/
0x24b, /* COMISSrr*/
/* Table4998 */
0x1174, /* WRMSR*/
/* Table4999 */
0x8cd, /* RDTSC*/
/* Table5000 */
0x8c5, /* RDMSR*/
/* Table5001 */
0x8c6, /* RDPMC*/
/* Table5002 */
0xa87, /* SYSENTER*/
/* Table5003 */
0xa88, /* SYSEXIT*/
/* Table5004 */
0x1e6, /* CMOVO32rm*/
0x1e7, /* CMOVO32rr*/
/* Table5005 */
0x1d0, /* CMOVNO32rm*/
0x1d1, /* CMOVNO32rr*/
/* Table5006 */
0x188, /* CMOVB32rm*/
0x189, /* CMOVB32rr*/
/* Table5007 */
0x182, /* CMOVAE32rm*/
0x183, /* CMOVAE32rr*/
/* Table5008 */
0x19c, /* CMOVE32rm*/
0x19d, /* CMOVE32rr*/
/* Table5009 */
0x1c6, /* CMOVNE32rm*/
0x1c7, /* CMOVNE32rr*/
/* Table5010 */
0x18e, /* CMOVBE32rm*/
0x18f, /* CMOVBE32rr*/
/* Table5011 */
0x17c, /* CMOVA32rm*/
0x17d, /* CMOVA32rr*/
/* Table5012 */
0x1f6, /* CMOVS32rm*/
0x1f7, /* CMOVS32rr*/
/* Table5013 */
0x1e0, /* CMOVNS32rm*/
0x1e1, /* CMOVNS32rr*/
/* Table5014 */
0x1ec, /* CMOVP32rm*/
0x1ed, /* CMOVP32rr*/
/* Table5015 */
0x1d6, /* CMOVNP32rm*/
0x1d7, /* CMOVNP32rr*/
/* Table5016 */
0x1b2, /* CMOVL32rm*/
0x1b3, /* CMOVL32rr*/
/* Table5017 */
0x1ac, /* CMOVGE32rm*/
0x1ad, /* CMOVGE32rr*/
/* Table5018 */
0x1b8, /* CMOVLE32rm*/
0x1b9, /* CMOVLE32rr*/
/* Table5019 */
0x1a6, /* CMOVG32rm*/
0x1a7, /* CMOVG32rr*/
/* Table5020 */
0, /* PHI*/
0x61e, /* MOVMSKPSrr32*/
/* Table5021 */
0xa01, /* SQRTPSm*/
0xa02, /* SQRTPSr*/
/* Table5022 */
0x927, /* RSQRTPSm*/
0x929, /* RSQRTPSr*/
/* Table5023 */
0x8a1, /* RCPPSm*/
0x8a3, /* RCPPSr*/
/* Table5024 */
0xd7, /* ANDPSrm*/
0xd8, /* ANDPSrr*/
/* Table5025 */
0xd3, /* ANDNPSrm*/
0xd4, /* ANDNPSrr*/
/* Table5026 */
0x700, /* ORPSrm*/
0x701, /* ORPSrr*/
/* Table5027 */
0x11b9, /* XORPSrm*/
0x11ba, /* XORPSrr*/
/* Table5028 */
0x74, /* ADDPSrm*/
0x75, /* ADDPSrr*/
/* Table5029 */
0x67b, /* MULPSrm*/
0x67c, /* MULPSrr*/
/* Table5030 */
0x26b, /* CVTPS2PDrm*/
0x26c, /* CVTPS2PDrr*/
/* Table5031 */
0x263, /* CVTDQ2PSrm*/
0x264, /* CVTDQ2PSrr*/
/* Table5032 */
0xa54, /* SUBPSrm*/
0xa55, /* SUBPSrr*/
/* Table5033 */
0x4ec, /* MINPSrm*/
0x4ed, /* MINPSrr*/
/* Table5034 */
0x2a8, /* DIVPSrm*/
0x2a9, /* DIVPSrr*/
/* Table5035 */
0x4d7, /* MAXPSrm*/
0x4d8, /* MAXPSrr*/
/* Table5036 */
0x5aa, /* MMX_PUNPCKLBWirm*/
0x5ab, /* MMX_PUNPCKLBWirr*/
/* Table5037 */
0x5ae, /* MMX_PUNPCKLWDirm*/
0x5af, /* MMX_PUNPCKLWDirr*/
/* Table5038 */
0x5ac, /* MMX_PUNPCKLDQirm*/
0x5ad, /* MMX_PUNPCKLDQirr*/
/* Table5039 */
0x51e, /* MMX_PACKSSWBirm*/
0x51f, /* MMX_PACKSSWBirr*/
/* Table5040 */
0x542, /* MMX_PCMPGTBirm*/
0x543, /* MMX_PCMPGTBirr*/
/* Table5041 */
0x546, /* MMX_PCMPGTWirm*/
0x547, /* MMX_PCMPGTWirr*/
/* Table5042 */
0x544, /* MMX_PCMPGTDirm*/
0x545, /* MMX_PCMPGTDirr*/
/* Table5043 */
0x520, /* MMX_PACKUSWBirm*/
0x521, /* MMX_PACKUSWBirr*/
/* Table5044 */
0x5a4, /* MMX_PUNPCKHBWirm*/
0x5a5, /* MMX_PUNPCKHBWirr*/
/* Table5045 */
0x5a8, /* MMX_PUNPCKHWDirm*/
0x5a9, /* MMX_PUNPCKHWDirr*/
/* Table5046 */
0x5a6, /* MMX_PUNPCKHDQirm*/
0x5a7, /* MMX_PUNPCKHDQirr*/
/* Table5047 */
0x51c, /* MMX_PACKSSDWirm*/
0x51d, /* MMX_PACKSSDWirr*/
/* Table5048 */
0x508, /* MMX_MOVD64rm*/
0x509, /* MMX_MOVD64rr*/
/* Table5049 */
0x512, /* MMX_MOVQ64rm*/
0x513, /* MMX_MOVQ64rr*/
/* Table5050 */
0x574, /* MMX_PSHUFWmi*/
0x575, /* MMX_PSHUFWri*/
/* Table5051 */
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x591, /* MMX_PSRLWri*/
0, /* PHI*/
0x588, /* MMX_PSRAWri*/
0, /* PHI*/
0x582, /* MMX_PSLLWri*/
0, /* PHI*/
/* Table5052 */
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x58b, /* MMX_PSRLDri*/
0, /* PHI*/
0x585, /* MMX_PSRADri*/
0, /* PHI*/
0x57c, /* MMX_PSLLDri*/
0, /* PHI*/
/* Table5053 */
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x58e, /* MMX_PSRLQri*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x57f, /* MMX_PSLLQri*/
0, /* PHI*/
/* Table5054 */
0x53c, /* MMX_PCMPEQBirm*/
0x53d, /* MMX_PCMPEQBirr*/
/* Table5055 */
0x540, /* MMX_PCMPEQWirm*/
0x541, /* MMX_PCMPEQWirr*/
/* Table5056 */
0x53e, /* MMX_PCMPEQDirm*/
0x53f, /* MMX_PCMPEQDirr*/
/* Table5057 */
0x502, /* MMX_EMMS*/
/* Table5058 */
0xe19, /* VMREAD64rm*/
0xe1a, /* VMREAD64rr*/
/* Table5059 */
0xe32, /* VMWRITE64rm*/
0xe33, /* VMWRITE64rr*/
/* Table5060 */
0x507, /* MMX_MOVD64mr*/
0x506, /* MMX_MOVD64grr*/
/* Table5061 */
0x511, /* MMX_MOVQ64mr*/
0, /* PHI*/
/* Table5062 */
0x42a, /* JO_4*/
/* Table5063 */
0x424, /* JNO_4*/
/* Table5064 */
0x40c, /* JB_4*/
/* Table5065 */
0x406, /* JAE_4*/
/* Table5066 */
0x411, /* JE_4*/
/* Table5067 */
0x422, /* JNE_4*/
/* Table5068 */
0x40a, /* JBE_4*/
/* Table5069 */
0x408, /* JA_4*/
/* Table5070 */
0x42f, /* JS_4*/
/* Table5071 */
0x428, /* JNS_4*/
/* Table5072 */
0x42c, /* JP_4*/
/* Table5073 */
0x426, /* JNP_4*/
/* Table5074 */
0x419, /* JL_4*/
/* Table5075 */
0x413, /* JGE_4*/
/* Table5076 */
0x417, /* JLE_4*/
/* Table5077 */
0x415, /* JG_4*/
/* Table5078 */
0x992, /* SETOm*/
0x993, /* SETOr*/
/* Table5079 */
0x98c, /* SETNOm*/
0x98d, /* SETNOr*/
/* Table5080 */
0x97e, /* SETBm*/
0x97f, /* SETBr*/
/* Table5081 */
0x974, /* SETAEm*/
0x975, /* SETAEr*/
/* Table5082 */
0x980, /* SETEm*/
0x981, /* SETEr*/
/* Table5083 */
0x98a, /* SETNEm*/
0x98b, /* SETNEr*/
/* Table5084 */
0x978, /* SETBEm*/
0x979, /* SETBEr*/
/* Table5085 */
0x976, /* SETAm*/
0x977, /* SETAr*/
/* Table5086 */
0x996, /* SETSm*/
0x997, /* SETSr*/
/* Table5087 */
0x990, /* SETNSm*/
0x991, /* SETNSr*/
/* Table5088 */
0x994, /* SETPm*/
0x995, /* SETPr*/
/* Table5089 */
0x98e, /* SETNPm*/
0x98f, /* SETNPr*/
/* Table5090 */
0x988, /* SETLm*/
0x989, /* SETLr*/
/* Table5091 */
0x982, /* SETGEm*/
0x983, /* SETGEr*/
/* Table5092 */
0x986, /* SETLEm*/
0x987, /* SETLEr*/
/* Table5093 */
0x984, /* SETGm*/
0x985, /* SETGr*/
/* Table5094 */
0x87e, /* PUSHFS64*/
/* Table5095 */
0x80a, /* POPFS64*/
/* Table5096 */
0x254, /* CPUID*/
/* Table5097 */
0x135, /* BT32mr*/
0x137, /* BT32rr*/
/* Table5098 */
0x9b8, /* SHLD32mri8*/
0x9ba, /* SHLD32rri8*/
/* Table5099 */
0x9b7, /* SHLD32mrCL*/
0x9b9, /* SHLD32rrCL*/
/* Table5100 */
0x881, /* PUSHGS64*/
/* Table5101 */
0x80d, /* POPGS64*/
/* Table5102 */
0x926, /* RSM*/
/* Table5103 */
0x159, /* BTS32mr*/
0x15b, /* BTS32rr*/
/* Table5104 */
0x9e0, /* SHRD32mri8*/
0x9e2, /* SHRD32rri8*/
/* Table5105 */
0x9df, /* SHRD32mrCL*/
0x9e1, /* SHRD32rrCL*/
/* Table5106 */
0x329, /* FXSAVE*/
0x327, /* FXRSTOR*/
0x43e, /* LDMXCSR*/
0xa15, /* STMXCSR*/
0x11bd, /* XSAVE*/
0x11bb, /* XRSTOR*/
0x11bf, /* XSAVEOPT*/
0x175, /* CLFLUSH*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x45b, /* LFENCE*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x4e1, /* MFENCE*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x998, /* SFENCE*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
/* Table5107 */
0x371, /* IMUL32rm*/
0x374, /* IMUL32rr*/
/* Table5108 */
0x246, /* CMPXCHG8rm*/
0x247, /* CMPXCHG8rr*/
/* Table5109 */
0x241, /* CMPXCHG32rm*/
0x242, /* CMPXCHG32rr*/
/* Table5110 */
0x4bd, /* LSS32rm*/
0, /* PHI*/
/* Table5111 */
0x14d, /* BTR32mr*/
0x14f, /* BTR32rr*/
/* Table5112 */
0x45d, /* LFS32rm*/
0, /* PHI*/
/* Table5113 */
0x462, /* LGS32rm*/
0, /* PHI*/
/* Table5114 */
0x662, /* MOVZX32rm8*/
0x664, /* MOVZX32rr8*/
/* Table5115 */
0x661, /* MOVZX32rm16*/
0x663, /* MOVZX32rr16*/
/* Table5116 */
0xace, /* UD2B*/
/* Table5117 */
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x134, /* BT32mi8*/
0x158, /* BTS32mi8*/
0x14c, /* BTR32mi8*/
0x140, /* BTC32mi8*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x136, /* BT32ri8*/
0x15a, /* BTS32ri8*/
0x14e, /* BTR32ri8*/
0x142, /* BTC32ri8*/
/* Table5118 */
0x141, /* BTC32mr*/
0x143, /* BTC32rr*/
/* Table5119 */
0x124, /* BSF32rm*/
0x125, /* BSF32rr*/
/* Table5120 */
0x12a, /* BSR32rm*/
0x12b, /* BSR32rr*/
/* Table5121 */
0x646, /* MOVSX32rm8*/
0x648, /* MOVSX32rr8*/
/* Table5122 */
0x645, /* MOVSX32rm16*/
0x647, /* MOVSX32rr16*/
/* Table5123 */
0x117c, /* XADD8rm*/
0x117d, /* XADD8rr*/
/* Table5124 */
0x1178, /* XADD32rm*/
0x1179, /* XADD32rr*/
/* Table5125 */
0x22e, /* CMPPSrmi*/
0x230, /* CMPPSrri*/
/* Table5126 */
0x623, /* MOVNTImr*/
0, /* PHI*/
/* Table5127 */
0x555, /* MMX_PINSRWirmi*/
0x556, /* MMX_PINSRWirri*/
/* Table5128 */
0, /* PHI*/
0x548, /* MMX_PEXTRWirri*/
/* Table5129 */
0x9ed, /* SHUFPSrmi*/
0x9ee, /* SHUFPSrri*/
/* Table5130 */
0, /* PHI*/
0x245, /* CMPXCHG8B*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0xe15, /* VMPTRLDm*/
0xe16, /* VMPTRSTm*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x8c8, /* RDRAND32r*/
0x8cb, /* RDSEED32r*/
/* Table5131 */
0x12e, /* BSWAP32r*/
/* Table5132 */
0x12e, /* BSWAP32r*/
/* Table5133 */
0x12e, /* BSWAP32r*/
/* Table5134 */
0x12e, /* BSWAP32r*/
/* Table5135 */
0x12e, /* BSWAP32r*/
/* Table5136 */
0x12e, /* BSWAP32r*/
/* Table5137 */
0x12e, /* BSWAP32r*/
/* Table5138 */
0x12e, /* BSWAP32r*/
/* Table5139 */
0x592, /* MMX_PSRLWrm*/
0x593, /* MMX_PSRLWrr*/
/* Table5140 */
0x58c, /* MMX_PSRLDrm*/
0x58d, /* MMX_PSRLDrr*/
/* Table5141 */
0x58f, /* MMX_PSRLQrm*/
0x590, /* MMX_PSRLQrr*/
/* Table5142 */
0x526, /* MMX_PADDQirm*/
0x527, /* MMX_PADDQirr*/
/* Table5143 */
0x56a, /* MMX_PMULLWirm*/
0x56b, /* MMX_PMULLWirr*/
/* Table5144 */
0, /* PHI*/
0x563, /* MMX_PMOVMSKBrr*/
/* Table5145 */
0x59e, /* MMX_PSUBUSBirm*/
0x59f, /* MMX_PSUBUSBirr*/
/* Table5146 */
0x5a0, /* MMX_PSUBUSWirm*/
0x5a1, /* MMX_PSUBUSWirr*/
/* Table5147 */
0x561, /* MMX_PMINUBirm*/
0x562, /* MMX_PMINUBirr*/
/* Table5148 */
0x536, /* MMX_PANDirm*/
0x537, /* MMX_PANDirr*/
/* Table5149 */
0x52c, /* MMX_PADDUSBirm*/
0x52d, /* MMX_PADDUSBirr*/
/* Table5150 */
0x52e, /* MMX_PADDUSWirm*/
0x52f, /* MMX_PADDUSWirr*/
/* Table5151 */
0x55d, /* MMX_PMAXUBirm*/
0x55e, /* MMX_PMAXUBirr*/
/* Table5152 */
0x534, /* MMX_PANDNirm*/
0x535, /* MMX_PANDNirr*/
/* Table5153 */
0x538, /* MMX_PAVGBirm*/
0x539, /* MMX_PAVGBirr*/
/* Table5154 */
0x589, /* MMX_PSRAWrm*/
0x58a, /* MMX_PSRAWrr*/
/* Table5155 */
0x586, /* MMX_PSRADrm*/
0x587, /* MMX_PSRADrr*/
/* Table5156 */
0x53a, /* MMX_PAVGWirm*/
0x53b, /* MMX_PAVGWirr*/
/* Table5157 */
0x566, /* MMX_PMULHUWirm*/
0x567, /* MMX_PMULHUWirr*/
/* Table5158 */
0x568, /* MMX_PMULHWirm*/
0x569, /* MMX_PMULHWirr*/
/* Table5159 */
0x50e, /* MMX_MOVNTQmr*/
0, /* PHI*/
/* Table5160 */
0x59a, /* MMX_PSUBSBirm*/
0x59b, /* MMX_PSUBSBirr*/
/* Table5161 */
0x59c, /* MMX_PSUBSWirm*/
0x59d, /* MMX_PSUBSWirr*/
/* Table5162 */
0x55f, /* MMX_PMINSWirm*/
0x560, /* MMX_PMINSWirr*/
/* Table5163 */
0x56e, /* MMX_PORirm*/
0x56f, /* MMX_PORirr*/
/* Table5164 */
0x528, /* MMX_PADDSBirm*/
0x529, /* MMX_PADDSBirr*/
/* Table5165 */
0x52a, /* MMX_PADDSWirm*/
0x52b, /* MMX_PADDSWirr*/
/* Table5166 */
0x55b, /* MMX_PMAXSWirm*/
0x55c, /* MMX_PMAXSWirr*/
/* Table5167 */
0x5b0, /* MMX_PXORirm*/
0x5b1, /* MMX_PXORirr*/
/* Table5168 */
0x583, /* MMX_PSLLWrm*/
0x584, /* MMX_PSLLWrr*/
/* Table5169 */
0x57d, /* MMX_PSLLDrm*/
0x57e, /* MMX_PSLLDrr*/
/* Table5170 */
0x580, /* MMX_PSLLQrm*/
0x581, /* MMX_PSLLQrr*/
/* Table5171 */
0x56c, /* MMX_PMULUDQirm*/
0x56d, /* MMX_PMULUDQirr*/
/* Table5172 */
0x559, /* MMX_PMADDWDirm*/
0x55a, /* MMX_PMADDWDirr*/
/* Table5173 */
0x570, /* MMX_PSADBWirm*/
0x571, /* MMX_PSADBWirr*/
/* Table5174 */
0, /* PHI*/
0x504, /* MMX_MASKMOVQ64*/
/* Table5175 */
0x594, /* MMX_PSUBBirm*/
0x595, /* MMX_PSUBBirr*/
/* Table5176 */
0x5a2, /* MMX_PSUBWirm*/
0x5a3, /* MMX_PSUBWirr*/
/* Table5177 */
0x596, /* MMX_PSUBDirm*/
0x597, /* MMX_PSUBDirr*/
/* Table5178 */
0x598, /* MMX_PSUBQirm*/
0x599, /* MMX_PSUBQirr*/
/* Table5179 */
0x522, /* MMX_PADDBirm*/
0x523, /* MMX_PADDBirr*/
/* Table5180 */
0x530, /* MMX_PADDWirm*/
0x531, /* MMX_PADDWirr*/
/* Table5181 */
0x524, /* MMX_PADDDirm*/
0x525, /* MMX_PADDDirr*/
/* Table5182 */
0x9f6, /* SLDT16m*/
0xa1d, /* STRm*/
0x466, /* LLDT16m*/
0x4bf, /* LTRm*/
0xb9b, /* VERRm*/
0xb9d, /* VERWm*/
0, /* PHI*/
0, /* PHI*/
0x9f8, /* SLDT32r*/
0xa1b, /* STR32r*/
0x467, /* LLDT16r*/
0x4c0, /* LTRr*/
0xb9c, /* VERRr*/
0xb9e, /* VERWr*/
0, /* PHI*/
0, /* PHI*/
/* Table5183 */
0x99a, /* SGDTm*/
0x9f0, /* SIDTm*/
0x460, /* LGDTm*/
0x465, /* LIDTm*/
0x9fb, /* SMSW16m*/
0, /* PHI*/
0x468, /* LMSW16m*/
0x3a0, /* INVLPG*/
0, /* PHI*/
0xd71, /* VMCALL*/
0xd90, /* VMLAUNCH*/
0xe1b, /* VMRESUME*/
0xe34, /* VMXOFF*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x5b3, /* MONITORrrr*/
0x69e, /* MWAITrr*/
0x172, /* CLAC*/
0xa10, /* STAC*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x1193, /* XGETBV*/
0x11c1, /* XSETBV*/
0, /* PHI*/
0, /* PHI*/
0xd73, /* VMFUNC*/
0x1192, /* XEND*/
0x11c5, /* XTEST*/
0, /* PHI*/
0xe1d, /* VMRUN64*/
0xd93, /* VMMCALL*/
0xd92, /* VMLOAD64*/
0xe1f, /* VMSAVE64*/
0xa13, /* STGI*/
0x176, /* CLGI*/
0x9f5, /* SKINIT*/
0x3a2, /* INVLPGA64*/
0x9fd, /* SMSW32r*/
0x9fd, /* SMSW32r*/
0x9fd, /* SMSW32r*/
0x9fd, /* SMSW32r*/
0x9fd, /* SMSW32r*/
0x9fd, /* SMSW32r*/
0x9fd, /* SMSW32r*/
0x9fd, /* SMSW32r*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x469, /* LMSW16r*/
0x469, /* LMSW16r*/
0x469, /* LMSW16r*/
0x469, /* LMSW16r*/
0x469, /* LMSW16r*/
0x469, /* LMSW16r*/
0x469, /* LMSW16r*/
0x469, /* LMSW16r*/
0xa85, /* SWAPGS*/
0x8ce, /* RDTSCP*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
/* Table5184 */
0x433, /* LAR32rm*/
0x434, /* LAR32rr*/
/* Table5185 */
0x4b8, /* LSL32rm*/
0x4b9, /* LSL32rr*/
/* Table5186 */
0xa86, /* SYSCALL*/
/* Table5187 */
0x178, /* CLTS*/
/* Table5188 */
0xa8a, /* SYSRET*/
/* Table5189 */
0x39d, /* INVD*/
/* Table5190 */
0x116c, /* WBINVD*/
/* Table5191 */
0xab4, /* TRAP*/
/* Table5192 */
0x812, /* PREFETCH*/
0x817, /* PREFETCHW*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
/* Table5193 */
0x2fe, /* FEMMS*/
/* Table5194 */
0x632, /* MOVSDrm*/
0x633, /* MOVSDrr*/
/* Table5195 */
0x631, /* MOVSDmr*/
0x634, /* MOVSDrr_REV*/
/* Table5196 */
0x603, /* MOVDDUPrm*/
0x604, /* MOVDDUPrr*/
/* Table5197 */
0x619, /* MOVLPSmr*/
0, /* PHI*/
/* Table5198 */
0xad5, /* UNPCKLPSrm*/
0xad6, /* UNPCKLPSrr*/
/* Table5199 */
0xad1, /* UNPCKHPSrm*/
0xad2, /* UNPCKHPSrr*/
/* Table5200 */
0x615, /* MOVHPSrm*/
0x616, /* MOVLHPSrr*/
/* Table5201 */
0x614, /* MOVHPSmr*/
0, /* PHI*/
/* Table5202 */
0x813, /* PREFETCHNTA*/
0x814, /* PREFETCHT0*/
0x815, /* PREFETCHT1*/
0x816, /* PREFETCHT2*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
/* Table5203 */
0x6d1, /* NOOPL*/
0, /* PHI*/
/* Table5204 */
0, /* PHI*/
0x5db, /* MOV64rc*/
/* Table5205 */
0, /* PHI*/
0x5dc, /* MOV64rd*/
/* Table5206 */
0, /* PHI*/
0x5d5, /* MOV64cr*/
/* Table5207 */
0, /* PHI*/
0x5d6, /* MOV64dr*/
/* Table5208 */
0x5fa, /* MOVAPSrm*/
0x5fb, /* MOVAPSrr*/
/* Table5209 */
0x5f9, /* MOVAPSmr*/
0x5fc, /* MOVAPSrr_REV*/
/* Table5210 */
0x275, /* CVTSI2SDrm*/
0x276, /* CVTSI2SDrr*/
/* Table5211 */
0x626, /* MOVNTSD*/
0, /* PHI*/
/* Table5212 */
0x287, /* CVTTSD2SIrm*/
0x288, /* CVTTSD2SIrr*/
/* Table5213 */
0x26f, /* CVTSD2SIrm*/
0x270, /* CVTSD2SIrr*/
/* Table5214 */
0xac1, /* UCOMISSrm*/
0xac2, /* UCOMISSrr*/
/* Table5215 */
0x24a, /* COMISSrm*/
0x24b, /* COMISSrr*/
/* Table5216 */
0x1174, /* WRMSR*/
/* Table5217 */
0x8cd, /* RDTSC*/
/* Table5218 */
0x8c5, /* RDMSR*/
/* Table5219 */
0x8c6, /* RDPMC*/
/* Table5220 */
0xa87, /* SYSENTER*/
/* Table5221 */
0xa88, /* SYSEXIT*/
/* Table5222 */
0x1e6, /* CMOVO32rm*/
0x1e7, /* CMOVO32rr*/
/* Table5223 */
0x1d0, /* CMOVNO32rm*/
0x1d1, /* CMOVNO32rr*/
/* Table5224 */
0x188, /* CMOVB32rm*/
0x189, /* CMOVB32rr*/
/* Table5225 */
0x182, /* CMOVAE32rm*/
0x183, /* CMOVAE32rr*/
/* Table5226 */
0x19c, /* CMOVE32rm*/
0x19d, /* CMOVE32rr*/
/* Table5227 */
0x1c6, /* CMOVNE32rm*/
0x1c7, /* CMOVNE32rr*/
/* Table5228 */
0x18e, /* CMOVBE32rm*/
0x18f, /* CMOVBE32rr*/
/* Table5229 */
0x17c, /* CMOVA32rm*/
0x17d, /* CMOVA32rr*/
/* Table5230 */
0x1f6, /* CMOVS32rm*/
0x1f7, /* CMOVS32rr*/
/* Table5231 */
0x1e0, /* CMOVNS32rm*/
0x1e1, /* CMOVNS32rr*/
/* Table5232 */
0x1ec, /* CMOVP32rm*/
0x1ed, /* CMOVP32rr*/
/* Table5233 */
0x1d6, /* CMOVNP32rm*/
0x1d7, /* CMOVNP32rr*/
/* Table5234 */
0x1b2, /* CMOVL32rm*/
0x1b3, /* CMOVL32rr*/
/* Table5235 */
0x1ac, /* CMOVGE32rm*/
0x1ad, /* CMOVGE32rr*/
/* Table5236 */
0x1b8, /* CMOVLE32rm*/
0x1b9, /* CMOVLE32rr*/
/* Table5237 */
0x1a6, /* CMOVG32rm*/
0x1a7, /* CMOVG32rr*/
/* Table5238 */
0, /* PHI*/
0x61e, /* MOVMSKPSrr32*/
/* Table5239 */
0xa03, /* SQRTSDm*/
0xa05, /* SQRTSDr*/
/* Table5240 */
0x927, /* RSQRTPSm*/
0x929, /* RSQRTPSr*/
/* Table5241 */
0x8a1, /* RCPPSm*/
0x8a3, /* RCPPSr*/
/* Table5242 */
0xd7, /* ANDPSrm*/
0xd8, /* ANDPSrr*/
/* Table5243 */
0xd3, /* ANDNPSrm*/
0xd4, /* ANDNPSrr*/
/* Table5244 */
0x700, /* ORPSrm*/
0x701, /* ORPSrr*/
/* Table5245 */
0x11b9, /* XORPSrm*/
0x11ba, /* XORPSrr*/
/* Table5246 */
0x76, /* ADDSDrm*/
0x78, /* ADDSDrr*/
/* Table5247 */
0x67d, /* MULSDrm*/
0x67f, /* MULSDrr*/
/* Table5248 */
0x271, /* CVTSD2SSrm*/
0x272, /* CVTSD2SSrr*/
/* Table5249 */
0x263, /* CVTDQ2PSrm*/
0x264, /* CVTDQ2PSrr*/
/* Table5250 */
0xa68, /* SUBSDrm*/
0xa6a, /* SUBSDrr*/
/* Table5251 */
0x4ee, /* MINSDrm*/
0x4f0, /* MINSDrr*/
/* Table5252 */
0x2bc, /* DIVSDrm*/
0x2be, /* DIVSDrr*/
/* Table5253 */
0x4d9, /* MAXSDrm*/
0x4db, /* MAXSDrr*/
/* Table5254 */
0x5aa, /* MMX_PUNPCKLBWirm*/
0x5ab, /* MMX_PUNPCKLBWirr*/
/* Table5255 */
0x5ae, /* MMX_PUNPCKLWDirm*/
0x5af, /* MMX_PUNPCKLWDirr*/
/* Table5256 */
0x5ac, /* MMX_PUNPCKLDQirm*/
0x5ad, /* MMX_PUNPCKLDQirr*/
/* Table5257 */
0x51e, /* MMX_PACKSSWBirm*/
0x51f, /* MMX_PACKSSWBirr*/
/* Table5258 */
0x542, /* MMX_PCMPGTBirm*/
0x543, /* MMX_PCMPGTBirr*/
/* Table5259 */
0x546, /* MMX_PCMPGTWirm*/
0x547, /* MMX_PCMPGTWirr*/
/* Table5260 */
0x544, /* MMX_PCMPGTDirm*/
0x545, /* MMX_PCMPGTDirr*/
/* Table5261 */
0x520, /* MMX_PACKUSWBirm*/
0x521, /* MMX_PACKUSWBirr*/
/* Table5262 */
0x5a4, /* MMX_PUNPCKHBWirm*/
0x5a5, /* MMX_PUNPCKHBWirr*/
/* Table5263 */
0x5a8, /* MMX_PUNPCKHWDirm*/
0x5a9, /* MMX_PUNPCKHWDirr*/
/* Table5264 */
0x5a6, /* MMX_PUNPCKHDQirm*/
0x5a7, /* MMX_PUNPCKHDQirr*/
/* Table5265 */
0x51c, /* MMX_PACKSSDWirm*/
0x51d, /* MMX_PACKSSDWirr*/
/* Table5266 */
0x508, /* MMX_MOVD64rm*/
0x509, /* MMX_MOVD64rr*/
/* Table5267 */
0x512, /* MMX_MOVQ64rm*/
0x513, /* MMX_MOVQ64rr*/
/* Table5268 */
0x820, /* PSHUFLWmi*/
0x821, /* PSHUFLWri*/
/* Table5269 */
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x591, /* MMX_PSRLWri*/
0, /* PHI*/
0x588, /* MMX_PSRAWri*/
0, /* PHI*/
0x582, /* MMX_PSLLWri*/
0, /* PHI*/
/* Table5270 */
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x58b, /* MMX_PSRLDri*/
0, /* PHI*/
0x585, /* MMX_PSRADri*/
0, /* PHI*/
0x57c, /* MMX_PSLLDri*/
0, /* PHI*/
/* Table5271 */
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x58e, /* MMX_PSRLQri*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x57f, /* MMX_PSLLQri*/
0, /* PHI*/
/* Table5272 */
0x53c, /* MMX_PCMPEQBirm*/
0x53d, /* MMX_PCMPEQBirr*/
/* Table5273 */
0x540, /* MMX_PCMPEQWirm*/
0x541, /* MMX_PCMPEQWirr*/
/* Table5274 */
0x53e, /* MMX_PCMPEQDirm*/
0x53f, /* MMX_PCMPEQDirr*/
/* Table5275 */
0x502, /* MMX_EMMS*/
/* Table5276 */
0xe19, /* VMREAD64rm*/
0x399, /* INSERTQI*/
/* Table5277 */
0xe32, /* VMWRITE64rm*/
0x398, /* INSERTQ*/
/* Table5278 */
0x34c, /* HADDPSrm*/
0x34d, /* HADDPSrr*/
/* Table5279 */
0x351, /* HSUBPSrm*/
0x352, /* HSUBPSrr*/
/* Table5280 */
0x507, /* MMX_MOVD64mr*/
0x506, /* MMX_MOVD64grr*/
/* Table5281 */
0x511, /* MMX_MOVQ64mr*/
0, /* PHI*/
/* Table5282 */
0x42a, /* JO_4*/
/* Table5283 */
0x424, /* JNO_4*/
/* Table5284 */
0x40c, /* JB_4*/
/* Table5285 */
0x406, /* JAE_4*/
/* Table5286 */
0x411, /* JE_4*/
/* Table5287 */
0x422, /* JNE_4*/
/* Table5288 */
0x40a, /* JBE_4*/
/* Table5289 */
0x408, /* JA_4*/
/* Table5290 */
0x42f, /* JS_4*/
/* Table5291 */
0x428, /* JNS_4*/
/* Table5292 */
0x42c, /* JP_4*/
/* Table5293 */
0x426, /* JNP_4*/
/* Table5294 */
0x419, /* JL_4*/
/* Table5295 */
0x413, /* JGE_4*/
/* Table5296 */
0x417, /* JLE_4*/
/* Table5297 */
0x415, /* JG_4*/
/* Table5298 */
0x992, /* SETOm*/
0x993, /* SETOr*/
/* Table5299 */
0x98c, /* SETNOm*/
0x98d, /* SETNOr*/
/* Table5300 */
0x97e, /* SETBm*/
0x97f, /* SETBr*/
/* Table5301 */
0x974, /* SETAEm*/
0x975, /* SETAEr*/
/* Table5302 */
0x980, /* SETEm*/
0x981, /* SETEr*/
/* Table5303 */
0x98a, /* SETNEm*/
0x98b, /* SETNEr*/
/* Table5304 */
0x978, /* SETBEm*/
0x979, /* SETBEr*/
/* Table5305 */
0x976, /* SETAm*/
0x977, /* SETAr*/
/* Table5306 */
0x996, /* SETSm*/
0x997, /* SETSr*/
/* Table5307 */
0x990, /* SETNSm*/
0x991, /* SETNSr*/
/* Table5308 */
0x994, /* SETPm*/
0x995, /* SETPr*/
/* Table5309 */
0x98e, /* SETNPm*/
0x98f, /* SETNPr*/
/* Table5310 */
0x988, /* SETLm*/
0x989, /* SETLr*/
/* Table5311 */
0x982, /* SETGEm*/
0x983, /* SETGEr*/
/* Table5312 */
0x986, /* SETLEm*/
0x987, /* SETLEr*/
/* Table5313 */
0x984, /* SETGm*/
0x985, /* SETGr*/
/* Table5314 */
0x87e, /* PUSHFS64*/
/* Table5315 */
0x80a, /* POPFS64*/
/* Table5316 */
0x254, /* CPUID*/
/* Table5317 */
0x135, /* BT32mr*/
0x137, /* BT32rr*/
/* Table5318 */
0x9b8, /* SHLD32mri8*/
0x9ba, /* SHLD32rri8*/
/* Table5319 */
0x9b7, /* SHLD32mrCL*/
0x9b9, /* SHLD32rrCL*/
/* Table5320 */
0x881, /* PUSHGS64*/
/* Table5321 */
0x80d, /* POPGS64*/
/* Table5322 */
0x926, /* RSM*/
/* Table5323 */
0x159, /* BTS32mr*/
0x15b, /* BTS32rr*/
/* Table5324 */
0x9e0, /* SHRD32mri8*/
0x9e2, /* SHRD32rri8*/
/* Table5325 */
0x9df, /* SHRD32mrCL*/
0x9e1, /* SHRD32rrCL*/
/* Table5326 */
0x329, /* FXSAVE*/
0x327, /* FXRSTOR*/
0x43e, /* LDMXCSR*/
0xa15, /* STMXCSR*/
0x11bd, /* XSAVE*/
0x11bb, /* XRSTOR*/
0x11bf, /* XSAVEOPT*/
0x175, /* CLFLUSH*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x45b, /* LFENCE*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x4e1, /* MFENCE*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x998, /* SFENCE*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
/* Table5327 */
0x371, /* IMUL32rm*/
0x374, /* IMUL32rr*/
/* Table5328 */
0x246, /* CMPXCHG8rm*/
0x247, /* CMPXCHG8rr*/
/* Table5329 */
0x241, /* CMPXCHG32rm*/
0x242, /* CMPXCHG32rr*/
/* Table5330 */
0x4bd, /* LSS32rm*/
0, /* PHI*/
/* Table5331 */
0x14d, /* BTR32mr*/
0x14f, /* BTR32rr*/
/* Table5332 */
0x45d, /* LFS32rm*/
0, /* PHI*/
/* Table5333 */
0x462, /* LGS32rm*/
0, /* PHI*/
/* Table5334 */
0x662, /* MOVZX32rm8*/
0x664, /* MOVZX32rr8*/
/* Table5335 */
0x661, /* MOVZX32rm16*/
0x663, /* MOVZX32rr16*/
/* Table5336 */
0xace, /* UD2B*/
/* Table5337 */
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x134, /* BT32mi8*/
0x158, /* BTS32mi8*/
0x14c, /* BTR32mi8*/
0x140, /* BTC32mi8*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x136, /* BT32ri8*/
0x15a, /* BTS32ri8*/
0x14e, /* BTR32ri8*/
0x142, /* BTC32ri8*/
/* Table5338 */
0x141, /* BTC32mr*/
0x143, /* BTC32rr*/
/* Table5339 */
0x124, /* BSF32rm*/
0x125, /* BSF32rr*/
/* Table5340 */
0x12a, /* BSR32rm*/
0x12b, /* BSR32rr*/
/* Table5341 */
0x646, /* MOVSX32rm8*/
0x648, /* MOVSX32rr8*/
/* Table5342 */
0x645, /* MOVSX32rm16*/
0x647, /* MOVSX32rr16*/
/* Table5343 */
0x117c, /* XADD8rm*/
0x117d, /* XADD8rr*/
/* Table5344 */
0x1178, /* XADD32rm*/
0x1179, /* XADD32rr*/
/* Table5345 */
0x236, /* CMPSDrm*/
0x238, /* CMPSDrr*/
/* Table5346 */
0x623, /* MOVNTImr*/
0, /* PHI*/
/* Table5347 */
0x555, /* MMX_PINSRWirmi*/
0x556, /* MMX_PINSRWirri*/
/* Table5348 */
0, /* PHI*/
0x548, /* MMX_PEXTRWirri*/
/* Table5349 */
0x9ed, /* SHUFPSrmi*/
0x9ee, /* SHUFPSrri*/
/* Table5350 */
0, /* PHI*/
0x245, /* CMPXCHG8B*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0xe15, /* VMPTRLDm*/
0xe16, /* VMPTRSTm*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x8c8, /* RDRAND32r*/
0x8cb, /* RDSEED32r*/
/* Table5351 */
0x12e, /* BSWAP32r*/
/* Table5352 */
0x12e, /* BSWAP32r*/
/* Table5353 */
0x12e, /* BSWAP32r*/
/* Table5354 */
0x12e, /* BSWAP32r*/
/* Table5355 */
0x12e, /* BSWAP32r*/
/* Table5356 */
0x12e, /* BSWAP32r*/
/* Table5357 */
0x12e, /* BSWAP32r*/
/* Table5358 */
0x12e, /* BSWAP32r*/
/* Table5359 */
0x80, /* ADDSUBPSrm*/
0x81, /* ADDSUBPSrr*/
/* Table5360 */
0x592, /* MMX_PSRLWrm*/
0x593, /* MMX_PSRLWrr*/
/* Table5361 */
0x58c, /* MMX_PSRLDrm*/
0x58d, /* MMX_PSRLDrr*/
/* Table5362 */
0x58f, /* MMX_PSRLQrm*/
0x590, /* MMX_PSRLQrr*/
/* Table5363 */
0x526, /* MMX_PADDQirm*/
0x527, /* MMX_PADDQirr*/
/* Table5364 */
0x56a, /* MMX_PMULLWirm*/
0x56b, /* MMX_PMULLWirr*/
/* Table5365 */
0, /* PHI*/
0x50c, /* MMX_MOVDQ2Qrr*/
/* Table5366 */
0, /* PHI*/
0x563, /* MMX_PMOVMSKBrr*/
/* Table5367 */
0x59e, /* MMX_PSUBUSBirm*/
0x59f, /* MMX_PSUBUSBirr*/
/* Table5368 */
0x5a0, /* MMX_PSUBUSWirm*/
0x5a1, /* MMX_PSUBUSWirr*/
/* Table5369 */
0x561, /* MMX_PMINUBirm*/
0x562, /* MMX_PMINUBirr*/
/* Table5370 */
0x536, /* MMX_PANDirm*/
0x537, /* MMX_PANDirr*/
/* Table5371 */
0x52c, /* MMX_PADDUSBirm*/
0x52d, /* MMX_PADDUSBirr*/
/* Table5372 */
0x52e, /* MMX_PADDUSWirm*/
0x52f, /* MMX_PADDUSWirr*/
/* Table5373 */
0x55d, /* MMX_PMAXUBirm*/
0x55e, /* MMX_PMAXUBirr*/
/* Table5374 */
0x534, /* MMX_PANDNirm*/
0x535, /* MMX_PANDNirr*/
/* Table5375 */
0x538, /* MMX_PAVGBirm*/
0x539, /* MMX_PAVGBirr*/
/* Table5376 */
0x589, /* MMX_PSRAWrm*/
0x58a, /* MMX_PSRAWrr*/
/* Table5377 */
0x586, /* MMX_PSRADrm*/
0x587, /* MMX_PSRADrr*/
/* Table5378 */
0x53a, /* MMX_PAVGWirm*/
0x53b, /* MMX_PAVGWirr*/
/* Table5379 */
0x566, /* MMX_PMULHUWirm*/
0x567, /* MMX_PMULHUWirr*/
/* Table5380 */
0x568, /* MMX_PMULHWirm*/
0x569, /* MMX_PMULHWirr*/
/* Table5381 */
0x265, /* CVTPD2DQrm*/
0x266, /* CVTPD2DQrr*/
/* Table5382 */
0x50e, /* MMX_MOVNTQmr*/
0, /* PHI*/
/* Table5383 */
0x59a, /* MMX_PSUBSBirm*/
0x59b, /* MMX_PSUBSBirr*/
/* Table5384 */
0x59c, /* MMX_PSUBSWirm*/
0x59d, /* MMX_PSUBSWirr*/
/* Table5385 */
0x55f, /* MMX_PMINSWirm*/
0x560, /* MMX_PMINSWirr*/
/* Table5386 */
0x56e, /* MMX_PORirm*/
0x56f, /* MMX_PORirr*/
/* Table5387 */
0x528, /* MMX_PADDSBirm*/
0x529, /* MMX_PADDSBirr*/
/* Table5388 */
0x52a, /* MMX_PADDSWirm*/
0x52b, /* MMX_PADDSWirr*/
/* Table5389 */
0x55b, /* MMX_PMAXSWirm*/
0x55c, /* MMX_PMAXSWirr*/
/* Table5390 */
0x5b0, /* MMX_PXORirm*/
0x5b1, /* MMX_PXORirr*/
/* Table5391 */
0x43d, /* LDDQUrm*/
0, /* PHI*/
/* Table5392 */
0x583, /* MMX_PSLLWrm*/
0x584, /* MMX_PSLLWrr*/
/* Table5393 */
0x57d, /* MMX_PSLLDrm*/
0x57e, /* MMX_PSLLDrr*/
/* Table5394 */
0x580, /* MMX_PSLLQrm*/
0x581, /* MMX_PSLLQrr*/
/* Table5395 */
0x56c, /* MMX_PMULUDQirm*/
0x56d, /* MMX_PMULUDQirr*/
/* Table5396 */
0x559, /* MMX_PMADDWDirm*/
0x55a, /* MMX_PMADDWDirr*/
/* Table5397 */
0x570, /* MMX_PSADBWirm*/
0x571, /* MMX_PSADBWirr*/
/* Table5398 */
0, /* PHI*/
0x504, /* MMX_MASKMOVQ64*/
/* Table5399 */
0x594, /* MMX_PSUBBirm*/
0x595, /* MMX_PSUBBirr*/
/* Table5400 */
0x5a2, /* MMX_PSUBWirm*/
0x5a3, /* MMX_PSUBWirr*/
/* Table5401 */
0x596, /* MMX_PSUBDirm*/
0x597, /* MMX_PSUBDirr*/
/* Table5402 */
0x598, /* MMX_PSUBQirm*/
0x599, /* MMX_PSUBQirr*/
/* Table5403 */
0x522, /* MMX_PADDBirm*/
0x523, /* MMX_PADDBirr*/
/* Table5404 */
0x530, /* MMX_PADDWirm*/
0x531, /* MMX_PADDWirr*/
/* Table5405 */
0x524, /* MMX_PADDDirm*/
0x525, /* MMX_PADDDirr*/
/* Table5406 */
0x9f6, /* SLDT16m*/
0xa1d, /* STRm*/
0x466, /* LLDT16m*/
0x4bf, /* LTRm*/
0xb9b, /* VERRm*/
0xb9d, /* VERWm*/
0, /* PHI*/
0, /* PHI*/
0x9f8, /* SLDT32r*/
0xa1b, /* STR32r*/
0x467, /* LLDT16r*/
0x4c0, /* LTRr*/
0xb9c, /* VERRr*/
0xb9e, /* VERWr*/
0, /* PHI*/
0, /* PHI*/
/* Table5407 */
0x99a, /* SGDTm*/
0x9f0, /* SIDTm*/
0x460, /* LGDTm*/
0x465, /* LIDTm*/
0x9fb, /* SMSW16m*/
0, /* PHI*/
0x468, /* LMSW16m*/
0x3a0, /* INVLPG*/
0, /* PHI*/
0xd71, /* VMCALL*/
0xd90, /* VMLAUNCH*/
0xe1b, /* VMRESUME*/
0xe34, /* VMXOFF*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x5b3, /* MONITORrrr*/
0x69e, /* MWAITrr*/
0x172, /* CLAC*/
0xa10, /* STAC*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x1193, /* XGETBV*/
0x11c1, /* XSETBV*/
0, /* PHI*/
0, /* PHI*/
0xd73, /* VMFUNC*/
0x1192, /* XEND*/
0x11c5, /* XTEST*/
0, /* PHI*/
0xe1d, /* VMRUN64*/
0xd93, /* VMMCALL*/
0xd92, /* VMLOAD64*/
0xe1f, /* VMSAVE64*/
0xa13, /* STGI*/
0x176, /* CLGI*/
0x9f5, /* SKINIT*/
0x3a2, /* INVLPGA64*/
0x9fd, /* SMSW32r*/
0x9fd, /* SMSW32r*/
0x9fd, /* SMSW32r*/
0x9fd, /* SMSW32r*/
0x9fd, /* SMSW32r*/
0x9fd, /* SMSW32r*/
0x9fd, /* SMSW32r*/
0x9fd, /* SMSW32r*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x469, /* LMSW16r*/
0x469, /* LMSW16r*/
0x469, /* LMSW16r*/
0x469, /* LMSW16r*/
0x469, /* LMSW16r*/
0x469, /* LMSW16r*/
0x469, /* LMSW16r*/
0x469, /* LMSW16r*/
0xa85, /* SWAPGS*/
0x8ce, /* RDTSCP*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
/* Table5408 */
0x433, /* LAR32rm*/
0x434, /* LAR32rr*/
/* Table5409 */
0x4b8, /* LSL32rm*/
0x4b9, /* LSL32rr*/
/* Table5410 */
0xa86, /* SYSCALL*/
/* Table5411 */
0x178, /* CLTS*/
/* Table5412 */
0xa8a, /* SYSRET*/
/* Table5413 */
0x39d, /* INVD*/
/* Table5414 */
0x116c, /* WBINVD*/
/* Table5415 */
0xab4, /* TRAP*/
/* Table5416 */
0x812, /* PREFETCH*/
0x817, /* PREFETCHW*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
/* Table5417 */
0x2fe, /* FEMMS*/
/* Table5418 */
0x63f, /* MOVSSrm*/
0x640, /* MOVSSrr*/
/* Table5419 */
0x63e, /* MOVSSmr*/
0x641, /* MOVSSrr_REV*/
/* Table5420 */
0x639, /* MOVSLDUPrm*/
0x63a, /* MOVSLDUPrr*/
/* Table5421 */
0x619, /* MOVLPSmr*/
0, /* PHI*/
/* Table5422 */
0xad5, /* UNPCKLPSrm*/
0xad6, /* UNPCKLPSrr*/
/* Table5423 */
0xad1, /* UNPCKHPSrm*/
0xad2, /* UNPCKHPSrr*/
/* Table5424 */
0x637, /* MOVSHDUPrm*/
0x638, /* MOVSHDUPrr*/
/* Table5425 */
0x614, /* MOVHPSmr*/
0, /* PHI*/
/* Table5426 */
0x813, /* PREFETCHNTA*/
0x814, /* PREFETCHT0*/
0x815, /* PREFETCHT1*/
0x816, /* PREFETCHT2*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
/* Table5427 */
0x6d1, /* NOOPL*/
0, /* PHI*/
/* Table5428 */
0, /* PHI*/
0x5db, /* MOV64rc*/
/* Table5429 */
0, /* PHI*/
0x5dc, /* MOV64rd*/
/* Table5430 */
0, /* PHI*/
0x5d5, /* MOV64cr*/
/* Table5431 */
0, /* PHI*/
0x5d6, /* MOV64dr*/
/* Table5432 */
0x5fa, /* MOVAPSrm*/
0x5fb, /* MOVAPSrr*/
/* Table5433 */
0x5f9, /* MOVAPSmr*/
0x5fc, /* MOVAPSrr_REV*/
/* Table5434 */
0x279, /* CVTSI2SSrm*/
0x27a, /* CVTSI2SSrr*/
/* Table5435 */
0x627, /* MOVNTSS*/
0, /* PHI*/
/* Table5436 */
0x28b, /* CVTTSS2SIrm*/
0x28c, /* CVTTSS2SIrr*/
/* Table5437 */
0x27f, /* CVTSS2SIrm*/
0x280, /* CVTSS2SIrr*/
/* Table5438 */
0xac1, /* UCOMISSrm*/
0xac2, /* UCOMISSrr*/
/* Table5439 */
0x24a, /* COMISSrm*/
0x24b, /* COMISSrr*/
/* Table5440 */
0x1174, /* WRMSR*/
/* Table5441 */
0x8cd, /* RDTSC*/
/* Table5442 */
0x8c5, /* RDMSR*/
/* Table5443 */
0x8c6, /* RDPMC*/
/* Table5444 */
0xa87, /* SYSENTER*/
/* Table5445 */
0xa88, /* SYSEXIT*/
/* Table5446 */
0x1e6, /* CMOVO32rm*/
0x1e7, /* CMOVO32rr*/
/* Table5447 */
0x1d0, /* CMOVNO32rm*/
0x1d1, /* CMOVNO32rr*/
/* Table5448 */
0x188, /* CMOVB32rm*/
0x189, /* CMOVB32rr*/
/* Table5449 */
0x182, /* CMOVAE32rm*/
0x183, /* CMOVAE32rr*/
/* Table5450 */
0x19c, /* CMOVE32rm*/
0x19d, /* CMOVE32rr*/
/* Table5451 */
0x1c6, /* CMOVNE32rm*/
0x1c7, /* CMOVNE32rr*/
/* Table5452 */
0x18e, /* CMOVBE32rm*/
0x18f, /* CMOVBE32rr*/
/* Table5453 */
0x17c, /* CMOVA32rm*/
0x17d, /* CMOVA32rr*/
/* Table5454 */
0x1f6, /* CMOVS32rm*/
0x1f7, /* CMOVS32rr*/
/* Table5455 */
0x1e0, /* CMOVNS32rm*/
0x1e1, /* CMOVNS32rr*/
/* Table5456 */
0x1ec, /* CMOVP32rm*/
0x1ed, /* CMOVP32rr*/
/* Table5457 */
0x1d6, /* CMOVNP32rm*/
0x1d7, /* CMOVNP32rr*/
/* Table5458 */
0x1b2, /* CMOVL32rm*/
0x1b3, /* CMOVL32rr*/
/* Table5459 */
0x1ac, /* CMOVGE32rm*/
0x1ad, /* CMOVGE32rr*/
/* Table5460 */
0x1b8, /* CMOVLE32rm*/
0x1b9, /* CMOVLE32rr*/
/* Table5461 */
0x1a6, /* CMOVG32rm*/
0x1a7, /* CMOVG32rr*/
/* Table5462 */
0, /* PHI*/
0x61e, /* MOVMSKPSrr32*/
/* Table5463 */
0xa07, /* SQRTSSm*/
0xa09, /* SQRTSSr*/
/* Table5464 */
0x92b, /* RSQRTSSm*/
0x92d, /* RSQRTSSr*/
/* Table5465 */
0x8a5, /* RCPSSm*/
0x8a7, /* RCPSSr*/
/* Table5466 */
0xd7, /* ANDPSrm*/
0xd8, /* ANDPSrr*/
/* Table5467 */
0xd3, /* ANDNPSrm*/
0xd4, /* ANDNPSrr*/
/* Table5468 */
0x700, /* ORPSrm*/
0x701, /* ORPSrr*/
/* Table5469 */
0x11b9, /* XORPSrm*/
0x11ba, /* XORPSrr*/
/* Table5470 */
0x7a, /* ADDSSrm*/
0x7c, /* ADDSSrr*/
/* Table5471 */
0x681, /* MULSSrm*/
0x683, /* MULSSrr*/
/* Table5472 */
0x27b, /* CVTSS2SDrm*/
0x27c, /* CVTSS2SDrr*/
/* Table5473 */
0x283, /* CVTTPS2DQrm*/
0x284, /* CVTTPS2DQrr*/
/* Table5474 */
0xa6c, /* SUBSSrm*/
0xa6e, /* SUBSSrr*/
/* Table5475 */
0x4f2, /* MINSSrm*/
0x4f4, /* MINSSrr*/
/* Table5476 */
0x2c0, /* DIVSSrm*/
0x2c2, /* DIVSSrr*/
/* Table5477 */
0x4dd, /* MAXSSrm*/
0x4df, /* MAXSSrr*/
/* Table5478 */
0x5aa, /* MMX_PUNPCKLBWirm*/
0x5ab, /* MMX_PUNPCKLBWirr*/
/* Table5479 */
0x5ae, /* MMX_PUNPCKLWDirm*/
0x5af, /* MMX_PUNPCKLWDirr*/
/* Table5480 */
0x5ac, /* MMX_PUNPCKLDQirm*/
0x5ad, /* MMX_PUNPCKLDQirr*/
/* Table5481 */
0x51e, /* MMX_PACKSSWBirm*/
0x51f, /* MMX_PACKSSWBirr*/
/* Table5482 */
0x542, /* MMX_PCMPGTBirm*/
0x543, /* MMX_PCMPGTBirr*/
/* Table5483 */
0x546, /* MMX_PCMPGTWirm*/
0x547, /* MMX_PCMPGTWirr*/
/* Table5484 */
0x544, /* MMX_PCMPGTDirm*/
0x545, /* MMX_PCMPGTDirr*/
/* Table5485 */
0x520, /* MMX_PACKUSWBirm*/
0x521, /* MMX_PACKUSWBirr*/
/* Table5486 */
0x5a4, /* MMX_PUNPCKHBWirm*/
0x5a5, /* MMX_PUNPCKHBWirr*/
/* Table5487 */
0x5a8, /* MMX_PUNPCKHWDirm*/
0x5a9, /* MMX_PUNPCKHWDirr*/
/* Table5488 */
0x5a6, /* MMX_PUNPCKHDQirm*/
0x5a7, /* MMX_PUNPCKHDQirr*/
/* Table5489 */
0x51c, /* MMX_PACKSSDWirm*/
0x51d, /* MMX_PACKSSDWirr*/
/* Table5490 */
0x508, /* MMX_MOVD64rm*/
0x509, /* MMX_MOVD64rr*/
/* Table5491 */
0x60e, /* MOVDQUrm*/
0x60f, /* MOVDQUrr*/
/* Table5492 */
0x81e, /* PSHUFHWmi*/
0x81f, /* PSHUFHWri*/
/* Table5493 */
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x591, /* MMX_PSRLWri*/
0, /* PHI*/
0x588, /* MMX_PSRAWri*/
0, /* PHI*/
0x582, /* MMX_PSLLWri*/
0, /* PHI*/
/* Table5494 */
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x58b, /* MMX_PSRLDri*/
0, /* PHI*/
0x585, /* MMX_PSRADri*/
0, /* PHI*/
0x57c, /* MMX_PSLLDri*/
0, /* PHI*/
/* Table5495 */
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x58e, /* MMX_PSRLQri*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x57f, /* MMX_PSLLQri*/
0, /* PHI*/
/* Table5496 */
0x53c, /* MMX_PCMPEQBirm*/
0x53d, /* MMX_PCMPEQBirr*/
/* Table5497 */
0x540, /* MMX_PCMPEQWirm*/
0x541, /* MMX_PCMPEQWirr*/
/* Table5498 */
0x53e, /* MMX_PCMPEQDirm*/
0x53f, /* MMX_PCMPEQDirr*/
/* Table5499 */
0x502, /* MMX_EMMS*/
/* Table5500 */
0xe19, /* VMREAD64rm*/
0xe1a, /* VMREAD64rr*/
/* Table5501 */
0xe32, /* VMWRITE64rm*/
0xe33, /* VMWRITE64rr*/
/* Table5502 */
0x62d, /* MOVQI2PQIrm*/
0x62e, /* MOVQxrxr*/
/* Table5503 */
0x60d, /* MOVDQUmr*/
0x610, /* MOVDQUrr_REV*/
/* Table5504 */
0x42a, /* JO_4*/
/* Table5505 */
0x424, /* JNO_4*/
/* Table5506 */
0x40c, /* JB_4*/
/* Table5507 */
0x406, /* JAE_4*/
/* Table5508 */
0x411, /* JE_4*/
/* Table5509 */
0x422, /* JNE_4*/
/* Table5510 */
0x40a, /* JBE_4*/
/* Table5511 */
0x408, /* JA_4*/
/* Table5512 */
0x42f, /* JS_4*/
/* Table5513 */
0x428, /* JNS_4*/
/* Table5514 */
0x42c, /* JP_4*/
/* Table5515 */
0x426, /* JNP_4*/
/* Table5516 */
0x419, /* JL_4*/
/* Table5517 */
0x413, /* JGE_4*/
/* Table5518 */
0x417, /* JLE_4*/
/* Table5519 */
0x415, /* JG_4*/
/* Table5520 */
0x992, /* SETOm*/
0x993, /* SETOr*/
/* Table5521 */
0x98c, /* SETNOm*/
0x98d, /* SETNOr*/
/* Table5522 */
0x97e, /* SETBm*/
0x97f, /* SETBr*/
/* Table5523 */
0x974, /* SETAEm*/
0x975, /* SETAEr*/
/* Table5524 */
0x980, /* SETEm*/
0x981, /* SETEr*/
/* Table5525 */
0x98a, /* SETNEm*/
0x98b, /* SETNEr*/
/* Table5526 */
0x978, /* SETBEm*/
0x979, /* SETBEr*/
/* Table5527 */
0x976, /* SETAm*/
0x977, /* SETAr*/
/* Table5528 */
0x996, /* SETSm*/
0x997, /* SETSr*/
/* Table5529 */
0x990, /* SETNSm*/
0x991, /* SETNSr*/
/* Table5530 */
0x994, /* SETPm*/
0x995, /* SETPr*/
/* Table5531 */
0x98e, /* SETNPm*/
0x98f, /* SETNPr*/
/* Table5532 */
0x988, /* SETLm*/
0x989, /* SETLr*/
/* Table5533 */
0x982, /* SETGEm*/
0x983, /* SETGEr*/
/* Table5534 */
0x986, /* SETLEm*/
0x987, /* SETLEr*/
/* Table5535 */
0x984, /* SETGm*/
0x985, /* SETGr*/
/* Table5536 */
0x87e, /* PUSHFS64*/
/* Table5537 */
0x80a, /* POPFS64*/
/* Table5538 */
0x254, /* CPUID*/
/* Table5539 */
0x135, /* BT32mr*/
0x137, /* BT32rr*/
/* Table5540 */
0x9b8, /* SHLD32mri8*/
0x9ba, /* SHLD32rri8*/
/* Table5541 */
0x9b7, /* SHLD32mrCL*/
0x9b9, /* SHLD32rrCL*/
/* Table5542 */
0x881, /* PUSHGS64*/
/* Table5543 */
0x80d, /* POPGS64*/
/* Table5544 */
0x926, /* RSM*/
/* Table5545 */
0x159, /* BTS32mr*/
0x15b, /* BTS32rr*/
/* Table5546 */
0x9e0, /* SHRD32mri8*/
0x9e2, /* SHRD32rri8*/
/* Table5547 */
0x9df, /* SHRD32mrCL*/
0x9e1, /* SHRD32rrCL*/
/* Table5548 */
0x329, /* FXSAVE*/
0x327, /* FXRSTOR*/
0x43e, /* LDMXCSR*/
0xa15, /* STMXCSR*/
0x11bd, /* XSAVE*/
0x11bb, /* XRSTOR*/
0x11bf, /* XSAVEOPT*/
0x175, /* CLFLUSH*/
0x8c1, /* RDFSBASE*/
0x8c1, /* RDFSBASE*/
0x8c1, /* RDFSBASE*/
0x8c1, /* RDFSBASE*/
0x8c1, /* RDFSBASE*/
0x8c1, /* RDFSBASE*/
0x8c1, /* RDFSBASE*/
0x8c1, /* RDFSBASE*/
0x8c3, /* RDGSBASE*/
0x8c3, /* RDGSBASE*/
0x8c3, /* RDGSBASE*/
0x8c3, /* RDGSBASE*/
0x8c3, /* RDGSBASE*/
0x8c3, /* RDGSBASE*/
0x8c3, /* RDGSBASE*/
0x8c3, /* RDGSBASE*/
0x1170, /* WRFSBASE*/
0x1170, /* WRFSBASE*/
0x1170, /* WRFSBASE*/
0x1170, /* WRFSBASE*/
0x1170, /* WRFSBASE*/
0x1170, /* WRFSBASE*/
0x1170, /* WRFSBASE*/
0x1170, /* WRFSBASE*/
0x1172, /* WRGSBASE*/
0x1172, /* WRGSBASE*/
0x1172, /* WRGSBASE*/
0x1172, /* WRGSBASE*/
0x1172, /* WRGSBASE*/
0x1172, /* WRGSBASE*/
0x1172, /* WRGSBASE*/
0x1172, /* WRGSBASE*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x45b, /* LFENCE*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x4e1, /* MFENCE*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x998, /* SFENCE*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
/* Table5549 */
0x371, /* IMUL32rm*/
0x374, /* IMUL32rr*/
/* Table5550 */
0x246, /* CMPXCHG8rm*/
0x247, /* CMPXCHG8rr*/
/* Table5551 */
0x241, /* CMPXCHG32rm*/
0x242, /* CMPXCHG32rr*/
/* Table5552 */
0x4bd, /* LSS32rm*/
0, /* PHI*/
/* Table5553 */
0x14d, /* BTR32mr*/
0x14f, /* BTR32rr*/
/* Table5554 */
0x45d, /* LFS32rm*/
0, /* PHI*/
/* Table5555 */
0x462, /* LGS32rm*/
0, /* PHI*/
/* Table5556 */
0x662, /* MOVZX32rm8*/
0x664, /* MOVZX32rr8*/
/* Table5557 */
0x661, /* MOVZX32rm16*/
0x663, /* MOVZX32rr16*/
/* Table5558 */
0x7fd, /* POPCNT32rm*/
0x7fe, /* POPCNT32rr*/
/* Table5559 */
0xace, /* UD2B*/
/* Table5560 */
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x134, /* BT32mi8*/
0x158, /* BTS32mi8*/
0x14c, /* BTR32mi8*/
0x140, /* BTC32mi8*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x136, /* BT32ri8*/
0x15a, /* BTS32ri8*/
0x14e, /* BTR32ri8*/
0x142, /* BTC32ri8*/
/* Table5561 */
0x141, /* BTC32mr*/
0x143, /* BTC32rr*/
/* Table5562 */
0xabb, /* TZCNT32rm*/
0xabc, /* TZCNT32rr*/
/* Table5563 */
0x4c7, /* LZCNT32rm*/
0x4c8, /* LZCNT32rr*/
/* Table5564 */
0x646, /* MOVSX32rm8*/
0x648, /* MOVSX32rr8*/
/* Table5565 */
0x645, /* MOVSX32rm16*/
0x647, /* MOVSX32rr16*/
/* Table5566 */
0x117c, /* XADD8rm*/
0x117d, /* XADD8rr*/
/* Table5567 */
0x1178, /* XADD32rm*/
0x1179, /* XADD32rr*/
/* Table5568 */
0x23a, /* CMPSSrm*/
0x23c, /* CMPSSrr*/
/* Table5569 */
0x623, /* MOVNTImr*/
0, /* PHI*/
/* Table5570 */
0x555, /* MMX_PINSRWirmi*/
0x556, /* MMX_PINSRWirri*/
/* Table5571 */
0, /* PHI*/
0x548, /* MMX_PEXTRWirri*/
/* Table5572 */
0x9ed, /* SHUFPSrmi*/
0x9ee, /* SHUFPSrri*/
/* Table5573 */
0, /* PHI*/
0x245, /* CMPXCHG8B*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0xe35, /* VMXON*/
0xe16, /* VMPTRSTm*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x8c8, /* RDRAND32r*/
0x8cb, /* RDSEED32r*/
/* Table5574 */
0x12e, /* BSWAP32r*/
/* Table5575 */
0x12e, /* BSWAP32r*/
/* Table5576 */
0x12e, /* BSWAP32r*/
/* Table5577 */
0x12e, /* BSWAP32r*/
/* Table5578 */
0x12e, /* BSWAP32r*/
/* Table5579 */
0x12e, /* BSWAP32r*/
/* Table5580 */
0x12e, /* BSWAP32r*/
/* Table5581 */
0x12e, /* BSWAP32r*/
/* Table5582 */
0x592, /* MMX_PSRLWrm*/
0x593, /* MMX_PSRLWrr*/
/* Table5583 */
0x58c, /* MMX_PSRLDrm*/
0x58d, /* MMX_PSRLDrr*/
/* Table5584 */
0x58f, /* MMX_PSRLQrm*/
0x590, /* MMX_PSRLQrr*/
/* Table5585 */
0x526, /* MMX_PADDQirm*/
0x527, /* MMX_PADDQirr*/
/* Table5586 */
0x56a, /* MMX_PMULLWirm*/
0x56b, /* MMX_PMULLWirr*/
/* Table5587 */
0, /* PHI*/
0x50f, /* MMX_MOVQ2DQrr*/
/* Table5588 */
0, /* PHI*/
0x563, /* MMX_PMOVMSKBrr*/
/* Table5589 */
0x59e, /* MMX_PSUBUSBirm*/
0x59f, /* MMX_PSUBUSBirr*/
/* Table5590 */
0x5a0, /* MMX_PSUBUSWirm*/
0x5a1, /* MMX_PSUBUSWirr*/
/* Table5591 */
0x561, /* MMX_PMINUBirm*/
0x562, /* MMX_PMINUBirr*/
/* Table5592 */
0x536, /* MMX_PANDirm*/
0x537, /* MMX_PANDirr*/
/* Table5593 */
0x52c, /* MMX_PADDUSBirm*/
0x52d, /* MMX_PADDUSBirr*/
/* Table5594 */
0x52e, /* MMX_PADDUSWirm*/
0x52f, /* MMX_PADDUSWirr*/
/* Table5595 */
0x55d, /* MMX_PMAXUBirm*/
0x55e, /* MMX_PMAXUBirr*/
/* Table5596 */
0x534, /* MMX_PANDNirm*/
0x535, /* MMX_PANDNirr*/
/* Table5597 */
0x538, /* MMX_PAVGBirm*/
0x539, /* MMX_PAVGBirr*/
/* Table5598 */
0x589, /* MMX_PSRAWrm*/
0x58a, /* MMX_PSRAWrr*/
/* Table5599 */
0x586, /* MMX_PSRADrm*/
0x587, /* MMX_PSRADrr*/
/* Table5600 */
0x53a, /* MMX_PAVGWirm*/
0x53b, /* MMX_PAVGWirr*/
/* Table5601 */
0x566, /* MMX_PMULHUWirm*/
0x567, /* MMX_PMULHUWirr*/
/* Table5602 */
0x568, /* MMX_PMULHWirm*/
0x569, /* MMX_PMULHWirr*/
/* Table5603 */
0x261, /* CVTDQ2PDrm*/
0x262, /* CVTDQ2PDrr*/
/* Table5604 */
0x50e, /* MMX_MOVNTQmr*/
0, /* PHI*/
/* Table5605 */
0x59a, /* MMX_PSUBSBirm*/
0x59b, /* MMX_PSUBSBirr*/
/* Table5606 */
0x59c, /* MMX_PSUBSWirm*/
0x59d, /* MMX_PSUBSWirr*/
/* Table5607 */
0x55f, /* MMX_PMINSWirm*/
0x560, /* MMX_PMINSWirr*/
/* Table5608 */
0x56e, /* MMX_PORirm*/
0x56f, /* MMX_PORirr*/
/* Table5609 */
0x528, /* MMX_PADDSBirm*/
0x529, /* MMX_PADDSBirr*/
/* Table5610 */
0x52a, /* MMX_PADDSWirm*/
0x52b, /* MMX_PADDSWirr*/
/* Table5611 */
0x55b, /* MMX_PMAXSWirm*/
0x55c, /* MMX_PMAXSWirr*/
/* Table5612 */
0x5b0, /* MMX_PXORirm*/
0x5b1, /* MMX_PXORirr*/
/* Table5613 */
0x583, /* MMX_PSLLWrm*/
0x584, /* MMX_PSLLWrr*/
/* Table5614 */
0x57d, /* MMX_PSLLDrm*/
0x57e, /* MMX_PSLLDrr*/
/* Table5615 */
0x580, /* MMX_PSLLQrm*/
0x581, /* MMX_PSLLQrr*/
/* Table5616 */
0x56c, /* MMX_PMULUDQirm*/
0x56d, /* MMX_PMULUDQirr*/
/* Table5617 */
0x559, /* MMX_PMADDWDirm*/
0x55a, /* MMX_PMADDWDirr*/
/* Table5618 */
0x570, /* MMX_PSADBWirm*/
0x571, /* MMX_PSADBWirr*/
/* Table5619 */
0, /* PHI*/
0x504, /* MMX_MASKMOVQ64*/
/* Table5620 */
0x594, /* MMX_PSUBBirm*/
0x595, /* MMX_PSUBBirr*/
/* Table5621 */
0x5a2, /* MMX_PSUBWirm*/
0x5a3, /* MMX_PSUBWirr*/
/* Table5622 */
0x596, /* MMX_PSUBDirm*/
0x597, /* MMX_PSUBDirr*/
/* Table5623 */
0x598, /* MMX_PSUBQirm*/
0x599, /* MMX_PSUBQirr*/
/* Table5624 */
0x522, /* MMX_PADDBirm*/
0x523, /* MMX_PADDBirr*/
/* Table5625 */
0x530, /* MMX_PADDWirm*/
0x531, /* MMX_PADDWirr*/
/* Table5626 */
0x524, /* MMX_PADDDirm*/
0x525, /* MMX_PADDDirr*/
/* Table5627 */
0x7fb, /* POPCNT16rm*/
0x7fc, /* POPCNT16rr*/
/* Table5628 */
0xab9, /* TZCNT16rm*/
0xaba, /* TZCNT16rr*/
/* Table5629 */
0x4c5, /* LZCNT16rm*/
0x4c6, /* LZCNT16rr*/
/* Table5630 */
0x9f9, /* SLDT64m*/
0xa1d, /* STRm*/
0x466, /* LLDT16m*/
0x4bf, /* LTRm*/
0xb9b, /* VERRm*/
0xb9d, /* VERWm*/
0, /* PHI*/
0, /* PHI*/
0x9fa, /* SLDT64r*/
0xa1c, /* STR64r*/
0x467, /* LLDT16r*/
0x4c0, /* LTRr*/
0xb9c, /* VERRr*/
0xb9e, /* VERWr*/
0, /* PHI*/
0, /* PHI*/
/* Table5631 */
0x99a, /* SGDTm*/
0x9f0, /* SIDTm*/
0x460, /* LGDTm*/
0x465, /* LIDTm*/
0x9fb, /* SMSW16m*/
0, /* PHI*/
0x468, /* LMSW16m*/
0x3a0, /* INVLPG*/
0, /* PHI*/
0xd71, /* VMCALL*/
0xd90, /* VMLAUNCH*/
0xe1b, /* VMRESUME*/
0xe34, /* VMXOFF*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x5b3, /* MONITORrrr*/
0x69e, /* MWAITrr*/
0x172, /* CLAC*/
0xa10, /* STAC*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x1193, /* XGETBV*/
0x11c1, /* XSETBV*/
0, /* PHI*/
0, /* PHI*/
0xd73, /* VMFUNC*/
0x1192, /* XEND*/
0x11c5, /* XTEST*/
0, /* PHI*/
0xe1d, /* VMRUN64*/
0xd93, /* VMMCALL*/
0xd92, /* VMLOAD64*/
0xe1f, /* VMSAVE64*/
0xa13, /* STGI*/
0x176, /* CLGI*/
0x9f5, /* SKINIT*/
0x3a2, /* INVLPGA64*/
0x9fe, /* SMSW64r*/
0x9fe, /* SMSW64r*/
0x9fe, /* SMSW64r*/
0x9fe, /* SMSW64r*/
0x9fe, /* SMSW64r*/
0x9fe, /* SMSW64r*/
0x9fe, /* SMSW64r*/
0x9fe, /* SMSW64r*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x469, /* LMSW16r*/
0x469, /* LMSW16r*/
0x469, /* LMSW16r*/
0x469, /* LMSW16r*/
0x469, /* LMSW16r*/
0x469, /* LMSW16r*/
0x469, /* LMSW16r*/
0x469, /* LMSW16r*/
0xa85, /* SWAPGS*/
0x8ce, /* RDTSCP*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
/* Table5632 */
0x435, /* LAR64rm*/
0x436, /* LAR64rr*/
/* Table5633 */
0x4ba, /* LSL64rm*/
0x4bb, /* LSL64rr*/
/* Table5634 */
0xa86, /* SYSCALL*/
/* Table5635 */
0x178, /* CLTS*/
/* Table5636 */
0xa8b, /* SYSRET64*/
/* Table5637 */
0x39d, /* INVD*/
/* Table5638 */
0x116c, /* WBINVD*/
/* Table5639 */
0xab4, /* TRAP*/
/* Table5640 */
0x812, /* PREFETCH*/
0x817, /* PREFETCHW*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
/* Table5641 */
0x2fe, /* FEMMS*/
/* Table5642 */
0x63f, /* MOVSSrm*/
0x640, /* MOVSSrr*/
/* Table5643 */
0x63e, /* MOVSSmr*/
0x641, /* MOVSSrr_REV*/
/* Table5644 */
0x639, /* MOVSLDUPrm*/
0x63a, /* MOVSLDUPrr*/
/* Table5645 */
0x619, /* MOVLPSmr*/
0, /* PHI*/
/* Table5646 */
0xad5, /* UNPCKLPSrm*/
0xad6, /* UNPCKLPSrr*/
/* Table5647 */
0xad1, /* UNPCKHPSrm*/
0xad2, /* UNPCKHPSrr*/
/* Table5648 */
0x637, /* MOVSHDUPrm*/
0x638, /* MOVSHDUPrr*/
/* Table5649 */
0x614, /* MOVHPSmr*/
0, /* PHI*/
/* Table5650 */
0x813, /* PREFETCHNTA*/
0x814, /* PREFETCHT0*/
0x815, /* PREFETCHT1*/
0x816, /* PREFETCHT2*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
/* Table5651 */
0x6d1, /* NOOPL*/
0, /* PHI*/
/* Table5652 */
0, /* PHI*/
0x5db, /* MOV64rc*/
/* Table5653 */
0, /* PHI*/
0x5dc, /* MOV64rd*/
/* Table5654 */
0, /* PHI*/
0x5d5, /* MOV64cr*/
/* Table5655 */
0, /* PHI*/
0x5d6, /* MOV64dr*/
/* Table5656 */
0x5fa, /* MOVAPSrm*/
0x5fb, /* MOVAPSrr*/
/* Table5657 */
0x5f9, /* MOVAPSmr*/
0x5fc, /* MOVAPSrr_REV*/
/* Table5658 */
0x277, /* CVTSI2SS64rm*/
0x278, /* CVTSI2SS64rr*/
/* Table5659 */
0x627, /* MOVNTSS*/
0, /* PHI*/
/* Table5660 */
0x289, /* CVTTSS2SI64rm*/
0x28a, /* CVTTSS2SI64rr*/
/* Table5661 */
0x27d, /* CVTSS2SI64rm*/
0x27e, /* CVTSS2SI64rr*/
/* Table5662 */
0xac1, /* UCOMISSrm*/
0xac2, /* UCOMISSrr*/
/* Table5663 */
0x24a, /* COMISSrm*/
0x24b, /* COMISSrr*/
/* Table5664 */
0x1174, /* WRMSR*/
/* Table5665 */
0x8cd, /* RDTSC*/
/* Table5666 */
0x8c5, /* RDMSR*/
/* Table5667 */
0x8c6, /* RDPMC*/
/* Table5668 */
0xa87, /* SYSENTER*/
/* Table5669 */
0xa89, /* SYSEXIT64*/
/* Table5670 */
0x1e8, /* CMOVO64rm*/
0x1e9, /* CMOVO64rr*/
/* Table5671 */
0x1d2, /* CMOVNO64rm*/
0x1d3, /* CMOVNO64rr*/
/* Table5672 */
0x18a, /* CMOVB64rm*/
0x18b, /* CMOVB64rr*/
/* Table5673 */
0x184, /* CMOVAE64rm*/
0x185, /* CMOVAE64rr*/
/* Table5674 */
0x19e, /* CMOVE64rm*/
0x19f, /* CMOVE64rr*/
/* Table5675 */
0x1c8, /* CMOVNE64rm*/
0x1c9, /* CMOVNE64rr*/
/* Table5676 */
0x190, /* CMOVBE64rm*/
0x191, /* CMOVBE64rr*/
/* Table5677 */
0x17e, /* CMOVA64rm*/
0x17f, /* CMOVA64rr*/
/* Table5678 */
0x1f8, /* CMOVS64rm*/
0x1f9, /* CMOVS64rr*/
/* Table5679 */
0x1e2, /* CMOVNS64rm*/
0x1e3, /* CMOVNS64rr*/
/* Table5680 */
0x1ee, /* CMOVP64rm*/
0x1ef, /* CMOVP64rr*/
/* Table5681 */
0x1d8, /* CMOVNP64rm*/
0x1d9, /* CMOVNP64rr*/
/* Table5682 */
0x1b4, /* CMOVL64rm*/
0x1b5, /* CMOVL64rr*/
/* Table5683 */
0x1ae, /* CMOVGE64rm*/
0x1af, /* CMOVGE64rr*/
/* Table5684 */
0x1ba, /* CMOVLE64rm*/
0x1bb, /* CMOVLE64rr*/
/* Table5685 */
0x1a8, /* CMOVG64rm*/
0x1a9, /* CMOVG64rr*/
/* Table5686 */
0, /* PHI*/
0x61e, /* MOVMSKPSrr32*/
/* Table5687 */
0xa07, /* SQRTSSm*/
0xa09, /* SQRTSSr*/
/* Table5688 */
0x92b, /* RSQRTSSm*/
0x92d, /* RSQRTSSr*/
/* Table5689 */
0x8a5, /* RCPSSm*/
0x8a7, /* RCPSSr*/
/* Table5690 */
0xd7, /* ANDPSrm*/
0xd8, /* ANDPSrr*/
/* Table5691 */
0xd3, /* ANDNPSrm*/
0xd4, /* ANDNPSrr*/
/* Table5692 */
0x700, /* ORPSrm*/
0x701, /* ORPSrr*/
/* Table5693 */
0x11b9, /* XORPSrm*/
0x11ba, /* XORPSrr*/
/* Table5694 */
0x7a, /* ADDSSrm*/
0x7c, /* ADDSSrr*/
/* Table5695 */
0x681, /* MULSSrm*/
0x683, /* MULSSrr*/
/* Table5696 */
0x27b, /* CVTSS2SDrm*/
0x27c, /* CVTSS2SDrr*/
/* Table5697 */
0x283, /* CVTTPS2DQrm*/
0x284, /* CVTTPS2DQrr*/
/* Table5698 */
0xa6c, /* SUBSSrm*/
0xa6e, /* SUBSSrr*/
/* Table5699 */
0x4f2, /* MINSSrm*/
0x4f4, /* MINSSrr*/
/* Table5700 */
0x2c0, /* DIVSSrm*/
0x2c2, /* DIVSSrr*/
/* Table5701 */
0x4dd, /* MAXSSrm*/
0x4df, /* MAXSSrr*/
/* Table5702 */
0x5aa, /* MMX_PUNPCKLBWirm*/
0x5ab, /* MMX_PUNPCKLBWirr*/
/* Table5703 */
0x5ae, /* MMX_PUNPCKLWDirm*/
0x5af, /* MMX_PUNPCKLWDirr*/
/* Table5704 */
0x5ac, /* MMX_PUNPCKLDQirm*/
0x5ad, /* MMX_PUNPCKLDQirr*/
/* Table5705 */
0x51e, /* MMX_PACKSSWBirm*/
0x51f, /* MMX_PACKSSWBirr*/
/* Table5706 */
0x542, /* MMX_PCMPGTBirm*/
0x543, /* MMX_PCMPGTBirr*/
/* Table5707 */
0x546, /* MMX_PCMPGTWirm*/
0x547, /* MMX_PCMPGTWirr*/
/* Table5708 */
0x544, /* MMX_PCMPGTDirm*/
0x545, /* MMX_PCMPGTDirr*/
/* Table5709 */
0x520, /* MMX_PACKUSWBirm*/
0x521, /* MMX_PACKUSWBirr*/
/* Table5710 */
0x5a4, /* MMX_PUNPCKHBWirm*/
0x5a5, /* MMX_PUNPCKHBWirr*/
/* Table5711 */
0x5a8, /* MMX_PUNPCKHWDirm*/
0x5a9, /* MMX_PUNPCKHWDirr*/
/* Table5712 */
0x5a6, /* MMX_PUNPCKHDQirm*/
0x5a7, /* MMX_PUNPCKHDQirr*/
/* Table5713 */
0x51c, /* MMX_PACKSSDWirm*/
0x51d, /* MMX_PACKSSDWirr*/
/* Table5714 */
0x508, /* MMX_MOVD64rm*/
0x50b, /* MMX_MOVD64to64rr*/
/* Table5715 */
0x60e, /* MOVDQUrm*/
0x60f, /* MOVDQUrr*/
/* Table5716 */
0x81e, /* PSHUFHWmi*/
0x81f, /* PSHUFHWri*/
/* Table5717 */
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x591, /* MMX_PSRLWri*/
0, /* PHI*/
0x588, /* MMX_PSRAWri*/
0, /* PHI*/
0x582, /* MMX_PSLLWri*/
0, /* PHI*/
/* Table5718 */
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x58b, /* MMX_PSRLDri*/
0, /* PHI*/
0x585, /* MMX_PSRADri*/
0, /* PHI*/
0x57c, /* MMX_PSLLDri*/
0, /* PHI*/
/* Table5719 */
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x58e, /* MMX_PSRLQri*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x57f, /* MMX_PSLLQri*/
0, /* PHI*/
/* Table5720 */
0x53c, /* MMX_PCMPEQBirm*/
0x53d, /* MMX_PCMPEQBirr*/
/* Table5721 */
0x540, /* MMX_PCMPEQWirm*/
0x541, /* MMX_PCMPEQWirr*/
/* Table5722 */
0x53e, /* MMX_PCMPEQDirm*/
0x53f, /* MMX_PCMPEQDirr*/
/* Table5723 */
0x502, /* MMX_EMMS*/
/* Table5724 */
0xe19, /* VMREAD64rm*/
0xe1a, /* VMREAD64rr*/
/* Table5725 */
0xe32, /* VMWRITE64rm*/
0xe33, /* VMWRITE64rr*/
/* Table5726 */
0x62d, /* MOVQI2PQIrm*/
0x505, /* MMX_MOVD64from64rr*/
/* Table5727 */
0x60d, /* MOVDQUmr*/
0x610, /* MOVDQUrr_REV*/
/* Table5728 */
0x42a, /* JO_4*/
/* Table5729 */
0x424, /* JNO_4*/
/* Table5730 */
0x40c, /* JB_4*/
/* Table5731 */
0x406, /* JAE_4*/
/* Table5732 */
0x411, /* JE_4*/
/* Table5733 */
0x422, /* JNE_4*/
/* Table5734 */
0x40a, /* JBE_4*/
/* Table5735 */
0x408, /* JA_4*/
/* Table5736 */
0x42f, /* JS_4*/
/* Table5737 */
0x428, /* JNS_4*/
/* Table5738 */
0x42c, /* JP_4*/
/* Table5739 */
0x426, /* JNP_4*/
/* Table5740 */
0x419, /* JL_4*/
/* Table5741 */
0x413, /* JGE_4*/
/* Table5742 */
0x417, /* JLE_4*/
/* Table5743 */
0x415, /* JG_4*/
/* Table5744 */
0x992, /* SETOm*/
0x993, /* SETOr*/
/* Table5745 */
0x98c, /* SETNOm*/
0x98d, /* SETNOr*/
/* Table5746 */
0x97e, /* SETBm*/
0x97f, /* SETBr*/
/* Table5747 */
0x974, /* SETAEm*/
0x975, /* SETAEr*/
/* Table5748 */
0x980, /* SETEm*/
0x981, /* SETEr*/
/* Table5749 */
0x98a, /* SETNEm*/
0x98b, /* SETNEr*/
/* Table5750 */
0x978, /* SETBEm*/
0x979, /* SETBEr*/
/* Table5751 */
0x976, /* SETAm*/
0x977, /* SETAr*/
/* Table5752 */
0x996, /* SETSm*/
0x997, /* SETSr*/
/* Table5753 */
0x990, /* SETNSm*/
0x991, /* SETNSr*/
/* Table5754 */
0x994, /* SETPm*/
0x995, /* SETPr*/
/* Table5755 */
0x98e, /* SETNPm*/
0x98f, /* SETNPr*/
/* Table5756 */
0x988, /* SETLm*/
0x989, /* SETLr*/
/* Table5757 */
0x982, /* SETGEm*/
0x983, /* SETGEr*/
/* Table5758 */
0x986, /* SETLEm*/
0x987, /* SETLEr*/
/* Table5759 */
0x984, /* SETGm*/
0x985, /* SETGr*/
/* Table5760 */
0x87e, /* PUSHFS64*/
/* Table5761 */
0x80a, /* POPFS64*/
/* Table5762 */
0x254, /* CPUID*/
/* Table5763 */
0x139, /* BT64mr*/
0x13b, /* BT64rr*/
/* Table5764 */
0x9bc, /* SHLD64mri8*/
0x9be, /* SHLD64rri8*/
/* Table5765 */
0x9bb, /* SHLD64mrCL*/
0x9bd, /* SHLD64rrCL*/
/* Table5766 */
0x881, /* PUSHGS64*/
/* Table5767 */
0x80d, /* POPGS64*/
/* Table5768 */
0x926, /* RSM*/
/* Table5769 */
0x15d, /* BTS64mr*/
0x15f, /* BTS64rr*/
/* Table5770 */
0x9e4, /* SHRD64mri8*/
0x9e6, /* SHRD64rri8*/
/* Table5771 */
0x9e3, /* SHRD64mrCL*/
0x9e5, /* SHRD64rrCL*/
/* Table5772 */
0x32a, /* FXSAVE64*/
0x328, /* FXRSTOR64*/
0x43e, /* LDMXCSR*/
0xa15, /* STMXCSR*/
0x11be, /* XSAVE64*/
0x11bc, /* XRSTOR64*/
0x11c0, /* XSAVEOPT64*/
0x175, /* CLFLUSH*/
0x8c2, /* RDFSBASE64*/
0x8c2, /* RDFSBASE64*/
0x8c2, /* RDFSBASE64*/
0x8c2, /* RDFSBASE64*/
0x8c2, /* RDFSBASE64*/
0x8c2, /* RDFSBASE64*/
0x8c2, /* RDFSBASE64*/
0x8c2, /* RDFSBASE64*/
0x8c4, /* RDGSBASE64*/
0x8c4, /* RDGSBASE64*/
0x8c4, /* RDGSBASE64*/
0x8c4, /* RDGSBASE64*/
0x8c4, /* RDGSBASE64*/
0x8c4, /* RDGSBASE64*/
0x8c4, /* RDGSBASE64*/
0x8c4, /* RDGSBASE64*/
0x1171, /* WRFSBASE64*/
0x1171, /* WRFSBASE64*/
0x1171, /* WRFSBASE64*/
0x1171, /* WRFSBASE64*/
0x1171, /* WRFSBASE64*/
0x1171, /* WRFSBASE64*/
0x1171, /* WRFSBASE64*/
0x1171, /* WRFSBASE64*/
0x1173, /* WRGSBASE64*/
0x1173, /* WRGSBASE64*/
0x1173, /* WRGSBASE64*/
0x1173, /* WRGSBASE64*/
0x1173, /* WRGSBASE64*/
0x1173, /* WRGSBASE64*/
0x1173, /* WRGSBASE64*/
0x1173, /* WRGSBASE64*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x45b, /* LFENCE*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x4e1, /* MFENCE*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x998, /* SFENCE*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
/* Table5773 */
0x379, /* IMUL64rm*/
0x37c, /* IMUL64rr*/
/* Table5774 */
0x246, /* CMPXCHG8rm*/
0x247, /* CMPXCHG8rr*/
/* Table5775 */
0x243, /* CMPXCHG64rm*/
0x244, /* CMPXCHG64rr*/
/* Table5776 */
0x4be, /* LSS64rm*/
0, /* PHI*/
/* Table5777 */
0x151, /* BTR64mr*/
0x153, /* BTR64rr*/
/* Table5778 */
0x45e, /* LFS64rm*/
0, /* PHI*/
/* Table5779 */
0x463, /* LGS64rm*/
0, /* PHI*/
/* Table5780 */
0x669, /* MOVZX64rm8_Q*/
0x66e, /* MOVZX64rr8_Q*/
/* Table5781 */
0x666, /* MOVZX64rm16_Q*/
0x66b, /* MOVZX64rr16_Q*/
/* Table5782 */
0x7ff, /* POPCNT64rm*/
0x800, /* POPCNT64rr*/
/* Table5783 */
0xace, /* UD2B*/
/* Table5784 */
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x138, /* BT64mi8*/
0x15c, /* BTS64mi8*/
0x150, /* BTR64mi8*/
0x144, /* BTC64mi8*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x13a, /* BT64ri8*/
0x15e, /* BTS64ri8*/
0x152, /* BTR64ri8*/
0x146, /* BTC64ri8*/
/* Table5785 */
0x145, /* BTC64mr*/
0x147, /* BTC64rr*/
/* Table5786 */
0xabd, /* TZCNT64rm*/
0xabe, /* TZCNT64rr*/
/* Table5787 */
0x4c9, /* LZCNT64rm*/
0x4ca, /* LZCNT64rr*/
/* Table5788 */
0x64b, /* MOVSX64rm8*/
0x64e, /* MOVSX64rr8*/
/* Table5789 */
0x649, /* MOVSX64rm16*/
0x64c, /* MOVSX64rr16*/
/* Table5790 */
0x117c, /* XADD8rm*/
0x117d, /* XADD8rr*/
/* Table5791 */
0x117a, /* XADD64rm*/
0x117b, /* XADD64rr*/
/* Table5792 */
0x23a, /* CMPSSrm*/
0x23c, /* CMPSSrr*/
/* Table5793 */
0x622, /* MOVNTI_64mr*/
0, /* PHI*/
/* Table5794 */
0x555, /* MMX_PINSRWirmi*/
0x556, /* MMX_PINSRWirri*/
/* Table5795 */
0, /* PHI*/
0x548, /* MMX_PEXTRWirri*/
/* Table5796 */
0x9ed, /* SHUFPSrmi*/
0x9ee, /* SHUFPSrri*/
/* Table5797 */
0, /* PHI*/
0x23e, /* CMPXCHG16B*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0xe35, /* VMXON*/
0xe16, /* VMPTRSTm*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x8c9, /* RDRAND64r*/
0x8cc, /* RDSEED64r*/
/* Table5798 */
0x12f, /* BSWAP64r*/
/* Table5799 */
0x12f, /* BSWAP64r*/
/* Table5800 */
0x12f, /* BSWAP64r*/
/* Table5801 */
0x12f, /* BSWAP64r*/
/* Table5802 */
0x12f, /* BSWAP64r*/
/* Table5803 */
0x12f, /* BSWAP64r*/
/* Table5804 */
0x12f, /* BSWAP64r*/
/* Table5805 */
0x12f, /* BSWAP64r*/
/* Table5806 */
0x592, /* MMX_PSRLWrm*/
0x593, /* MMX_PSRLWrr*/
/* Table5807 */
0x58c, /* MMX_PSRLDrm*/
0x58d, /* MMX_PSRLDrr*/
/* Table5808 */
0x58f, /* MMX_PSRLQrm*/
0x590, /* MMX_PSRLQrr*/
/* Table5809 */
0x526, /* MMX_PADDQirm*/
0x527, /* MMX_PADDQirr*/
/* Table5810 */
0x56a, /* MMX_PMULLWirm*/
0x56b, /* MMX_PMULLWirr*/
/* Table5811 */
0, /* PHI*/
0x50f, /* MMX_MOVQ2DQrr*/
/* Table5812 */
0, /* PHI*/
0x563, /* MMX_PMOVMSKBrr*/
/* Table5813 */
0x59e, /* MMX_PSUBUSBirm*/
0x59f, /* MMX_PSUBUSBirr*/
/* Table5814 */
0x5a0, /* MMX_PSUBUSWirm*/
0x5a1, /* MMX_PSUBUSWirr*/
/* Table5815 */
0x561, /* MMX_PMINUBirm*/
0x562, /* MMX_PMINUBirr*/
/* Table5816 */
0x536, /* MMX_PANDirm*/
0x537, /* MMX_PANDirr*/
/* Table5817 */
0x52c, /* MMX_PADDUSBirm*/
0x52d, /* MMX_PADDUSBirr*/
/* Table5818 */
0x52e, /* MMX_PADDUSWirm*/
0x52f, /* MMX_PADDUSWirr*/
/* Table5819 */
0x55d, /* MMX_PMAXUBirm*/
0x55e, /* MMX_PMAXUBirr*/
/* Table5820 */
0x534, /* MMX_PANDNirm*/
0x535, /* MMX_PANDNirr*/
/* Table5821 */
0x538, /* MMX_PAVGBirm*/
0x539, /* MMX_PAVGBirr*/
/* Table5822 */
0x589, /* MMX_PSRAWrm*/
0x58a, /* MMX_PSRAWrr*/
/* Table5823 */
0x586, /* MMX_PSRADrm*/
0x587, /* MMX_PSRADrr*/
/* Table5824 */
0x53a, /* MMX_PAVGWirm*/
0x53b, /* MMX_PAVGWirr*/
/* Table5825 */
0x566, /* MMX_PMULHUWirm*/
0x567, /* MMX_PMULHUWirr*/
/* Table5826 */
0x568, /* MMX_PMULHWirm*/
0x569, /* MMX_PMULHWirr*/
/* Table5827 */
0x261, /* CVTDQ2PDrm*/
0x262, /* CVTDQ2PDrr*/
/* Table5828 */
0x50e, /* MMX_MOVNTQmr*/
0, /* PHI*/
/* Table5829 */
0x59a, /* MMX_PSUBSBirm*/
0x59b, /* MMX_PSUBSBirr*/
/* Table5830 */
0x59c, /* MMX_PSUBSWirm*/
0x59d, /* MMX_PSUBSWirr*/
/* Table5831 */
0x55f, /* MMX_PMINSWirm*/
0x560, /* MMX_PMINSWirr*/
/* Table5832 */
0x56e, /* MMX_PORirm*/
0x56f, /* MMX_PORirr*/
/* Table5833 */
0x528, /* MMX_PADDSBirm*/
0x529, /* MMX_PADDSBirr*/
/* Table5834 */
0x52a, /* MMX_PADDSWirm*/
0x52b, /* MMX_PADDSWirr*/
/* Table5835 */
0x55b, /* MMX_PMAXSWirm*/
0x55c, /* MMX_PMAXSWirr*/
/* Table5836 */
0x5b0, /* MMX_PXORirm*/
0x5b1, /* MMX_PXORirr*/
/* Table5837 */
0x583, /* MMX_PSLLWrm*/
0x584, /* MMX_PSLLWrr*/
/* Table5838 */
0x57d, /* MMX_PSLLDrm*/
0x57e, /* MMX_PSLLDrr*/
/* Table5839 */
0x580, /* MMX_PSLLQrm*/
0x581, /* MMX_PSLLQrr*/
/* Table5840 */
0x56c, /* MMX_PMULUDQirm*/
0x56d, /* MMX_PMULUDQirr*/
/* Table5841 */
0x559, /* MMX_PMADDWDirm*/
0x55a, /* MMX_PMADDWDirr*/
/* Table5842 */
0x570, /* MMX_PSADBWirm*/
0x571, /* MMX_PSADBWirr*/
/* Table5843 */
0, /* PHI*/
0x504, /* MMX_MASKMOVQ64*/
/* Table5844 */
0x594, /* MMX_PSUBBirm*/
0x595, /* MMX_PSUBBirr*/
/* Table5845 */
0x5a2, /* MMX_PSUBWirm*/
0x5a3, /* MMX_PSUBWirr*/
/* Table5846 */
0x596, /* MMX_PSUBDirm*/
0x597, /* MMX_PSUBDirr*/
/* Table5847 */
0x598, /* MMX_PSUBQirm*/
0x599, /* MMX_PSUBQirr*/
/* Table5848 */
0x522, /* MMX_PADDBirm*/
0x523, /* MMX_PADDBirr*/
/* Table5849 */
0x530, /* MMX_PADDWirm*/
0x531, /* MMX_PADDWirr*/
/* Table5850 */
0x524, /* MMX_PADDDirm*/
0x525, /* MMX_PADDDirr*/
/* Table5851 */
0x9f9, /* SLDT64m*/
0xa1d, /* STRm*/
0x466, /* LLDT16m*/
0x4bf, /* LTRm*/
0xb9b, /* VERRm*/
0xb9d, /* VERWm*/
0, /* PHI*/
0, /* PHI*/
0x9fa, /* SLDT64r*/
0xa1c, /* STR64r*/
0x467, /* LLDT16r*/
0x4c0, /* LTRr*/
0xb9c, /* VERRr*/
0xb9e, /* VERWr*/
0, /* PHI*/
0, /* PHI*/
/* Table5852 */
0x99a, /* SGDTm*/
0x9f0, /* SIDTm*/
0x460, /* LGDTm*/
0x465, /* LIDTm*/
0x9fb, /* SMSW16m*/
0, /* PHI*/
0x468, /* LMSW16m*/
0x3a0, /* INVLPG*/
0, /* PHI*/
0xd71, /* VMCALL*/
0xd90, /* VMLAUNCH*/
0xe1b, /* VMRESUME*/
0xe34, /* VMXOFF*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x5b3, /* MONITORrrr*/
0x69e, /* MWAITrr*/
0x172, /* CLAC*/
0xa10, /* STAC*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x1193, /* XGETBV*/
0x11c1, /* XSETBV*/
0, /* PHI*/
0, /* PHI*/
0xd73, /* VMFUNC*/
0x1192, /* XEND*/
0x11c5, /* XTEST*/
0, /* PHI*/
0xe1d, /* VMRUN64*/
0xd93, /* VMMCALL*/
0xd92, /* VMLOAD64*/
0xe1f, /* VMSAVE64*/
0xa13, /* STGI*/
0x176, /* CLGI*/
0x9f5, /* SKINIT*/
0x3a2, /* INVLPGA64*/
0x9fe, /* SMSW64r*/
0x9fe, /* SMSW64r*/
0x9fe, /* SMSW64r*/
0x9fe, /* SMSW64r*/
0x9fe, /* SMSW64r*/
0x9fe, /* SMSW64r*/
0x9fe, /* SMSW64r*/
0x9fe, /* SMSW64r*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x469, /* LMSW16r*/
0x469, /* LMSW16r*/
0x469, /* LMSW16r*/
0x469, /* LMSW16r*/
0x469, /* LMSW16r*/
0x469, /* LMSW16r*/
0x469, /* LMSW16r*/
0x469, /* LMSW16r*/
0xa85, /* SWAPGS*/
0x8ce, /* RDTSCP*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
/* Table5853 */
0x435, /* LAR64rm*/
0x436, /* LAR64rr*/
/* Table5854 */
0x4ba, /* LSL64rm*/
0x4bb, /* LSL64rr*/
/* Table5855 */
0xa86, /* SYSCALL*/
/* Table5856 */
0x178, /* CLTS*/
/* Table5857 */
0xa8b, /* SYSRET64*/
/* Table5858 */
0x39d, /* INVD*/
/* Table5859 */
0x116c, /* WBINVD*/
/* Table5860 */
0xab4, /* TRAP*/
/* Table5861 */
0x812, /* PREFETCH*/
0x817, /* PREFETCHW*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
/* Table5862 */
0x2fe, /* FEMMS*/
/* Table5863 */
0x632, /* MOVSDrm*/
0x633, /* MOVSDrr*/
/* Table5864 */
0x631, /* MOVSDmr*/
0x634, /* MOVSDrr_REV*/
/* Table5865 */
0x603, /* MOVDDUPrm*/
0x604, /* MOVDDUPrr*/
/* Table5866 */
0x619, /* MOVLPSmr*/
0, /* PHI*/
/* Table5867 */
0xad5, /* UNPCKLPSrm*/
0xad6, /* UNPCKLPSrr*/
/* Table5868 */
0xad1, /* UNPCKHPSrm*/
0xad2, /* UNPCKHPSrr*/
/* Table5869 */
0x615, /* MOVHPSrm*/
0x616, /* MOVLHPSrr*/
/* Table5870 */
0x614, /* MOVHPSmr*/
0, /* PHI*/
/* Table5871 */
0x813, /* PREFETCHNTA*/
0x814, /* PREFETCHT0*/
0x815, /* PREFETCHT1*/
0x816, /* PREFETCHT2*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
/* Table5872 */
0x6d1, /* NOOPL*/
0, /* PHI*/
/* Table5873 */
0, /* PHI*/
0x5db, /* MOV64rc*/
/* Table5874 */
0, /* PHI*/
0x5dc, /* MOV64rd*/
/* Table5875 */
0, /* PHI*/
0x5d5, /* MOV64cr*/
/* Table5876 */
0, /* PHI*/
0x5d6, /* MOV64dr*/
/* Table5877 */
0x5fa, /* MOVAPSrm*/
0x5fb, /* MOVAPSrr*/
/* Table5878 */
0x5f9, /* MOVAPSmr*/
0x5fc, /* MOVAPSrr_REV*/
/* Table5879 */
0x273, /* CVTSI2SD64rm*/
0x274, /* CVTSI2SD64rr*/
/* Table5880 */
0x626, /* MOVNTSD*/
0, /* PHI*/
/* Table5881 */
0x285, /* CVTTSD2SI64rm*/
0x286, /* CVTTSD2SI64rr*/
/* Table5882 */
0x26d, /* CVTSD2SI64rm*/
0x26e, /* CVTSD2SI64rr*/
/* Table5883 */
0xac1, /* UCOMISSrm*/
0xac2, /* UCOMISSrr*/
/* Table5884 */
0x24a, /* COMISSrm*/
0x24b, /* COMISSrr*/
/* Table5885 */
0x1174, /* WRMSR*/
/* Table5886 */
0x8cd, /* RDTSC*/
/* Table5887 */
0x8c5, /* RDMSR*/
/* Table5888 */
0x8c6, /* RDPMC*/
/* Table5889 */
0xa87, /* SYSENTER*/
/* Table5890 */
0xa89, /* SYSEXIT64*/
/* Table5891 */
0x1e8, /* CMOVO64rm*/
0x1e9, /* CMOVO64rr*/
/* Table5892 */
0x1d2, /* CMOVNO64rm*/
0x1d3, /* CMOVNO64rr*/
/* Table5893 */
0x18a, /* CMOVB64rm*/
0x18b, /* CMOVB64rr*/
/* Table5894 */
0x184, /* CMOVAE64rm*/
0x185, /* CMOVAE64rr*/
/* Table5895 */
0x19e, /* CMOVE64rm*/
0x19f, /* CMOVE64rr*/
/* Table5896 */
0x1c8, /* CMOVNE64rm*/
0x1c9, /* CMOVNE64rr*/
/* Table5897 */
0x190, /* CMOVBE64rm*/
0x191, /* CMOVBE64rr*/
/* Table5898 */
0x17e, /* CMOVA64rm*/
0x17f, /* CMOVA64rr*/
/* Table5899 */
0x1f8, /* CMOVS64rm*/
0x1f9, /* CMOVS64rr*/
/* Table5900 */
0x1e2, /* CMOVNS64rm*/
0x1e3, /* CMOVNS64rr*/
/* Table5901 */
0x1ee, /* CMOVP64rm*/
0x1ef, /* CMOVP64rr*/
/* Table5902 */
0x1d8, /* CMOVNP64rm*/
0x1d9, /* CMOVNP64rr*/
/* Table5903 */
0x1b4, /* CMOVL64rm*/
0x1b5, /* CMOVL64rr*/
/* Table5904 */
0x1ae, /* CMOVGE64rm*/
0x1af, /* CMOVGE64rr*/
/* Table5905 */
0x1ba, /* CMOVLE64rm*/
0x1bb, /* CMOVLE64rr*/
/* Table5906 */
0x1a8, /* CMOVG64rm*/
0x1a9, /* CMOVG64rr*/
/* Table5907 */
0, /* PHI*/
0x61e, /* MOVMSKPSrr32*/
/* Table5908 */
0xa03, /* SQRTSDm*/
0xa05, /* SQRTSDr*/
/* Table5909 */
0x927, /* RSQRTPSm*/
0x929, /* RSQRTPSr*/
/* Table5910 */
0x8a1, /* RCPPSm*/
0x8a3, /* RCPPSr*/
/* Table5911 */
0xd7, /* ANDPSrm*/
0xd8, /* ANDPSrr*/
/* Table5912 */
0xd3, /* ANDNPSrm*/
0xd4, /* ANDNPSrr*/
/* Table5913 */
0x700, /* ORPSrm*/
0x701, /* ORPSrr*/
/* Table5914 */
0x11b9, /* XORPSrm*/
0x11ba, /* XORPSrr*/
/* Table5915 */
0x76, /* ADDSDrm*/
0x78, /* ADDSDrr*/
/* Table5916 */
0x67d, /* MULSDrm*/
0x67f, /* MULSDrr*/
/* Table5917 */
0x271, /* CVTSD2SSrm*/
0x272, /* CVTSD2SSrr*/
/* Table5918 */
0x263, /* CVTDQ2PSrm*/
0x264, /* CVTDQ2PSrr*/
/* Table5919 */
0xa68, /* SUBSDrm*/
0xa6a, /* SUBSDrr*/
/* Table5920 */
0x4ee, /* MINSDrm*/
0x4f0, /* MINSDrr*/
/* Table5921 */
0x2bc, /* DIVSDrm*/
0x2be, /* DIVSDrr*/
/* Table5922 */
0x4d9, /* MAXSDrm*/
0x4db, /* MAXSDrr*/
/* Table5923 */
0x5aa, /* MMX_PUNPCKLBWirm*/
0x5ab, /* MMX_PUNPCKLBWirr*/
/* Table5924 */
0x5ae, /* MMX_PUNPCKLWDirm*/
0x5af, /* MMX_PUNPCKLWDirr*/
/* Table5925 */
0x5ac, /* MMX_PUNPCKLDQirm*/
0x5ad, /* MMX_PUNPCKLDQirr*/
/* Table5926 */
0x51e, /* MMX_PACKSSWBirm*/
0x51f, /* MMX_PACKSSWBirr*/
/* Table5927 */
0x542, /* MMX_PCMPGTBirm*/
0x543, /* MMX_PCMPGTBirr*/
/* Table5928 */
0x546, /* MMX_PCMPGTWirm*/
0x547, /* MMX_PCMPGTWirr*/
/* Table5929 */
0x544, /* MMX_PCMPGTDirm*/
0x545, /* MMX_PCMPGTDirr*/
/* Table5930 */
0x520, /* MMX_PACKUSWBirm*/
0x521, /* MMX_PACKUSWBirr*/
/* Table5931 */
0x5a4, /* MMX_PUNPCKHBWirm*/
0x5a5, /* MMX_PUNPCKHBWirr*/
/* Table5932 */
0x5a8, /* MMX_PUNPCKHWDirm*/
0x5a9, /* MMX_PUNPCKHWDirr*/
/* Table5933 */
0x5a6, /* MMX_PUNPCKHDQirm*/
0x5a7, /* MMX_PUNPCKHDQirr*/
/* Table5934 */
0x51c, /* MMX_PACKSSDWirm*/
0x51d, /* MMX_PACKSSDWirr*/
/* Table5935 */
0x508, /* MMX_MOVD64rm*/
0x50b, /* MMX_MOVD64to64rr*/
/* Table5936 */
0x512, /* MMX_MOVQ64rm*/
0x513, /* MMX_MOVQ64rr*/
/* Table5937 */
0x820, /* PSHUFLWmi*/
0x821, /* PSHUFLWri*/
/* Table5938 */
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x591, /* MMX_PSRLWri*/
0, /* PHI*/
0x588, /* MMX_PSRAWri*/
0, /* PHI*/
0x582, /* MMX_PSLLWri*/
0, /* PHI*/
/* Table5939 */
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x58b, /* MMX_PSRLDri*/
0, /* PHI*/
0x585, /* MMX_PSRADri*/
0, /* PHI*/
0x57c, /* MMX_PSLLDri*/
0, /* PHI*/
/* Table5940 */
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x58e, /* MMX_PSRLQri*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x57f, /* MMX_PSLLQri*/
0, /* PHI*/
/* Table5941 */
0x53c, /* MMX_PCMPEQBirm*/
0x53d, /* MMX_PCMPEQBirr*/
/* Table5942 */
0x540, /* MMX_PCMPEQWirm*/
0x541, /* MMX_PCMPEQWirr*/
/* Table5943 */
0x53e, /* MMX_PCMPEQDirm*/
0x53f, /* MMX_PCMPEQDirr*/
/* Table5944 */
0x502, /* MMX_EMMS*/
/* Table5945 */
0xe19, /* VMREAD64rm*/
0x399, /* INSERTQI*/
/* Table5946 */
0xe32, /* VMWRITE64rm*/
0x398, /* INSERTQ*/
/* Table5947 */
0x34c, /* HADDPSrm*/
0x34d, /* HADDPSrr*/
/* Table5948 */
0x351, /* HSUBPSrm*/
0x352, /* HSUBPSrr*/
/* Table5949 */
0x507, /* MMX_MOVD64mr*/
0x505, /* MMX_MOVD64from64rr*/
/* Table5950 */
0x511, /* MMX_MOVQ64mr*/
0, /* PHI*/
/* Table5951 */
0x42a, /* JO_4*/
/* Table5952 */
0x424, /* JNO_4*/
/* Table5953 */
0x40c, /* JB_4*/
/* Table5954 */
0x406, /* JAE_4*/
/* Table5955 */
0x411, /* JE_4*/
/* Table5956 */
0x422, /* JNE_4*/
/* Table5957 */
0x40a, /* JBE_4*/
/* Table5958 */
0x408, /* JA_4*/
/* Table5959 */
0x42f, /* JS_4*/
/* Table5960 */
0x428, /* JNS_4*/
/* Table5961 */
0x42c, /* JP_4*/
/* Table5962 */
0x426, /* JNP_4*/
/* Table5963 */
0x419, /* JL_4*/
/* Table5964 */
0x413, /* JGE_4*/
/* Table5965 */
0x417, /* JLE_4*/
/* Table5966 */
0x415, /* JG_4*/
/* Table5967 */
0x992, /* SETOm*/
0x993, /* SETOr*/
/* Table5968 */
0x98c, /* SETNOm*/
0x98d, /* SETNOr*/
/* Table5969 */
0x97e, /* SETBm*/
0x97f, /* SETBr*/
/* Table5970 */
0x974, /* SETAEm*/
0x975, /* SETAEr*/
/* Table5971 */
0x980, /* SETEm*/
0x981, /* SETEr*/
/* Table5972 */
0x98a, /* SETNEm*/
0x98b, /* SETNEr*/
/* Table5973 */
0x978, /* SETBEm*/
0x979, /* SETBEr*/
/* Table5974 */
0x976, /* SETAm*/
0x977, /* SETAr*/
/* Table5975 */
0x996, /* SETSm*/
0x997, /* SETSr*/
/* Table5976 */
0x990, /* SETNSm*/
0x991, /* SETNSr*/
/* Table5977 */
0x994, /* SETPm*/
0x995, /* SETPr*/
/* Table5978 */
0x98e, /* SETNPm*/
0x98f, /* SETNPr*/
/* Table5979 */
0x988, /* SETLm*/
0x989, /* SETLr*/
/* Table5980 */
0x982, /* SETGEm*/
0x983, /* SETGEr*/
/* Table5981 */
0x986, /* SETLEm*/
0x987, /* SETLEr*/
/* Table5982 */
0x984, /* SETGm*/
0x985, /* SETGr*/
/* Table5983 */
0x87e, /* PUSHFS64*/
/* Table5984 */
0x80a, /* POPFS64*/
/* Table5985 */
0x254, /* CPUID*/
/* Table5986 */
0x139, /* BT64mr*/
0x13b, /* BT64rr*/
/* Table5987 */
0x9bc, /* SHLD64mri8*/
0x9be, /* SHLD64rri8*/
/* Table5988 */
0x9bb, /* SHLD64mrCL*/
0x9bd, /* SHLD64rrCL*/
/* Table5989 */
0x881, /* PUSHGS64*/
/* Table5990 */
0x80d, /* POPGS64*/
/* Table5991 */
0x926, /* RSM*/
/* Table5992 */
0x15d, /* BTS64mr*/
0x15f, /* BTS64rr*/
/* Table5993 */
0x9e4, /* SHRD64mri8*/
0x9e6, /* SHRD64rri8*/
/* Table5994 */
0x9e3, /* SHRD64mrCL*/
0x9e5, /* SHRD64rrCL*/
/* Table5995 */
0x32a, /* FXSAVE64*/
0x328, /* FXRSTOR64*/
0x43e, /* LDMXCSR*/
0xa15, /* STMXCSR*/
0x11be, /* XSAVE64*/
0x11bc, /* XRSTOR64*/
0x11c0, /* XSAVEOPT64*/
0x175, /* CLFLUSH*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x45b, /* LFENCE*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x4e1, /* MFENCE*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x998, /* SFENCE*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
/* Table5996 */
0x379, /* IMUL64rm*/
0x37c, /* IMUL64rr*/
/* Table5997 */
0x246, /* CMPXCHG8rm*/
0x247, /* CMPXCHG8rr*/
/* Table5998 */
0x243, /* CMPXCHG64rm*/
0x244, /* CMPXCHG64rr*/
/* Table5999 */
0x4be, /* LSS64rm*/
0, /* PHI*/
/* Table6000 */
0x151, /* BTR64mr*/
0x153, /* BTR64rr*/
/* Table6001 */
0x45e, /* LFS64rm*/
0, /* PHI*/
/* Table6002 */
0x463, /* LGS64rm*/
0, /* PHI*/
/* Table6003 */
0x669, /* MOVZX64rm8_Q*/
0x66e, /* MOVZX64rr8_Q*/
/* Table6004 */
0x666, /* MOVZX64rm16_Q*/
0x66b, /* MOVZX64rr16_Q*/
/* Table6005 */
0xace, /* UD2B*/
/* Table6006 */
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x138, /* BT64mi8*/
0x15c, /* BTS64mi8*/
0x150, /* BTR64mi8*/
0x144, /* BTC64mi8*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x13a, /* BT64ri8*/
0x15e, /* BTS64ri8*/
0x152, /* BTR64ri8*/
0x146, /* BTC64ri8*/
/* Table6007 */
0x145, /* BTC64mr*/
0x147, /* BTC64rr*/
/* Table6008 */
0x126, /* BSF64rm*/
0x127, /* BSF64rr*/
/* Table6009 */
0x12c, /* BSR64rm*/
0x12d, /* BSR64rr*/
/* Table6010 */
0x64b, /* MOVSX64rm8*/
0x64e, /* MOVSX64rr8*/
/* Table6011 */
0x649, /* MOVSX64rm16*/
0x64c, /* MOVSX64rr16*/
/* Table6012 */
0x117c, /* XADD8rm*/
0x117d, /* XADD8rr*/
/* Table6013 */
0x117a, /* XADD64rm*/
0x117b, /* XADD64rr*/
/* Table6014 */
0x236, /* CMPSDrm*/
0x238, /* CMPSDrr*/
/* Table6015 */
0x622, /* MOVNTI_64mr*/
0, /* PHI*/
/* Table6016 */
0x555, /* MMX_PINSRWirmi*/
0x556, /* MMX_PINSRWirri*/
/* Table6017 */
0, /* PHI*/
0x548, /* MMX_PEXTRWirri*/
/* Table6018 */
0x9ed, /* SHUFPSrmi*/
0x9ee, /* SHUFPSrri*/
/* Table6019 */
0, /* PHI*/
0x23e, /* CMPXCHG16B*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0xe15, /* VMPTRLDm*/
0xe16, /* VMPTRSTm*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x8c9, /* RDRAND64r*/
0x8cc, /* RDSEED64r*/
/* Table6020 */
0x12f, /* BSWAP64r*/
/* Table6021 */
0x12f, /* BSWAP64r*/
/* Table6022 */
0x12f, /* BSWAP64r*/
/* Table6023 */
0x12f, /* BSWAP64r*/
/* Table6024 */
0x12f, /* BSWAP64r*/
/* Table6025 */
0x12f, /* BSWAP64r*/
/* Table6026 */
0x12f, /* BSWAP64r*/
/* Table6027 */
0x12f, /* BSWAP64r*/
/* Table6028 */
0x80, /* ADDSUBPSrm*/
0x81, /* ADDSUBPSrr*/
/* Table6029 */
0x592, /* MMX_PSRLWrm*/
0x593, /* MMX_PSRLWrr*/
/* Table6030 */
0x58c, /* MMX_PSRLDrm*/
0x58d, /* MMX_PSRLDrr*/
/* Table6031 */
0x58f, /* MMX_PSRLQrm*/
0x590, /* MMX_PSRLQrr*/
/* Table6032 */
0x526, /* MMX_PADDQirm*/
0x527, /* MMX_PADDQirr*/
/* Table6033 */
0x56a, /* MMX_PMULLWirm*/
0x56b, /* MMX_PMULLWirr*/
/* Table6034 */
0, /* PHI*/
0x50c, /* MMX_MOVDQ2Qrr*/
/* Table6035 */
0, /* PHI*/
0x563, /* MMX_PMOVMSKBrr*/
/* Table6036 */
0x59e, /* MMX_PSUBUSBirm*/
0x59f, /* MMX_PSUBUSBirr*/
/* Table6037 */
0x5a0, /* MMX_PSUBUSWirm*/
0x5a1, /* MMX_PSUBUSWirr*/
/* Table6038 */
0x561, /* MMX_PMINUBirm*/
0x562, /* MMX_PMINUBirr*/
/* Table6039 */
0x536, /* MMX_PANDirm*/
0x537, /* MMX_PANDirr*/
/* Table6040 */
0x52c, /* MMX_PADDUSBirm*/
0x52d, /* MMX_PADDUSBirr*/
/* Table6041 */
0x52e, /* MMX_PADDUSWirm*/
0x52f, /* MMX_PADDUSWirr*/
/* Table6042 */
0x55d, /* MMX_PMAXUBirm*/
0x55e, /* MMX_PMAXUBirr*/
/* Table6043 */
0x534, /* MMX_PANDNirm*/
0x535, /* MMX_PANDNirr*/
/* Table6044 */
0x538, /* MMX_PAVGBirm*/
0x539, /* MMX_PAVGBirr*/
/* Table6045 */
0x589, /* MMX_PSRAWrm*/
0x58a, /* MMX_PSRAWrr*/
/* Table6046 */
0x586, /* MMX_PSRADrm*/
0x587, /* MMX_PSRADrr*/
/* Table6047 */
0x53a, /* MMX_PAVGWirm*/
0x53b, /* MMX_PAVGWirr*/
/* Table6048 */
0x566, /* MMX_PMULHUWirm*/
0x567, /* MMX_PMULHUWirr*/
/* Table6049 */
0x568, /* MMX_PMULHWirm*/
0x569, /* MMX_PMULHWirr*/
/* Table6050 */
0x265, /* CVTPD2DQrm*/
0x266, /* CVTPD2DQrr*/
/* Table6051 */
0x50e, /* MMX_MOVNTQmr*/
0, /* PHI*/
/* Table6052 */
0x59a, /* MMX_PSUBSBirm*/
0x59b, /* MMX_PSUBSBirr*/
/* Table6053 */
0x59c, /* MMX_PSUBSWirm*/
0x59d, /* MMX_PSUBSWirr*/
/* Table6054 */
0x55f, /* MMX_PMINSWirm*/
0x560, /* MMX_PMINSWirr*/
/* Table6055 */
0x56e, /* MMX_PORirm*/
0x56f, /* MMX_PORirr*/
/* Table6056 */
0x528, /* MMX_PADDSBirm*/
0x529, /* MMX_PADDSBirr*/
/* Table6057 */
0x52a, /* MMX_PADDSWirm*/
0x52b, /* MMX_PADDSWirr*/
/* Table6058 */
0x55b, /* MMX_PMAXSWirm*/
0x55c, /* MMX_PMAXSWirr*/
/* Table6059 */
0x5b0, /* MMX_PXORirm*/
0x5b1, /* MMX_PXORirr*/
/* Table6060 */
0x43d, /* LDDQUrm*/
0, /* PHI*/
/* Table6061 */
0x583, /* MMX_PSLLWrm*/
0x584, /* MMX_PSLLWrr*/
/* Table6062 */
0x57d, /* MMX_PSLLDrm*/
0x57e, /* MMX_PSLLDrr*/
/* Table6063 */
0x580, /* MMX_PSLLQrm*/
0x581, /* MMX_PSLLQrr*/
/* Table6064 */
0x56c, /* MMX_PMULUDQirm*/
0x56d, /* MMX_PMULUDQirr*/
/* Table6065 */
0x559, /* MMX_PMADDWDirm*/
0x55a, /* MMX_PMADDWDirr*/
/* Table6066 */
0x570, /* MMX_PSADBWirm*/
0x571, /* MMX_PSADBWirr*/
/* Table6067 */
0, /* PHI*/
0x504, /* MMX_MASKMOVQ64*/
/* Table6068 */
0x594, /* MMX_PSUBBirm*/
0x595, /* MMX_PSUBBirr*/
/* Table6069 */
0x5a2, /* MMX_PSUBWirm*/
0x5a3, /* MMX_PSUBWirr*/
/* Table6070 */
0x596, /* MMX_PSUBDirm*/
0x597, /* MMX_PSUBDirr*/
/* Table6071 */
0x598, /* MMX_PSUBQirm*/
0x599, /* MMX_PSUBQirr*/
/* Table6072 */
0x522, /* MMX_PADDBirm*/
0x523, /* MMX_PADDBirr*/
/* Table6073 */
0x530, /* MMX_PADDWirm*/
0x531, /* MMX_PADDWirr*/
/* Table6074 */
0x524, /* MMX_PADDDirm*/
0x525, /* MMX_PADDDirr*/
/* Table6075 */
0x9f9, /* SLDT64m*/
0xa1d, /* STRm*/
0x466, /* LLDT16m*/
0x4bf, /* LTRm*/
0xb9b, /* VERRm*/
0xb9d, /* VERWm*/
0, /* PHI*/
0, /* PHI*/
0x9fa, /* SLDT64r*/
0xa1c, /* STR64r*/
0x467, /* LLDT16r*/
0x4c0, /* LTRr*/
0xb9c, /* VERRr*/
0xb9e, /* VERWr*/
0, /* PHI*/
0, /* PHI*/
/* Table6076 */
0x99a, /* SGDTm*/
0x9f0, /* SIDTm*/
0x460, /* LGDTm*/
0x465, /* LIDTm*/
0x9fb, /* SMSW16m*/
0, /* PHI*/
0x468, /* LMSW16m*/
0x3a0, /* INVLPG*/
0, /* PHI*/
0xd71, /* VMCALL*/
0xd90, /* VMLAUNCH*/
0xe1b, /* VMRESUME*/
0xe34, /* VMXOFF*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x5b3, /* MONITORrrr*/
0x69e, /* MWAITrr*/
0x172, /* CLAC*/
0xa10, /* STAC*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x1193, /* XGETBV*/
0x11c1, /* XSETBV*/
0, /* PHI*/
0, /* PHI*/
0xd73, /* VMFUNC*/
0x1192, /* XEND*/
0x11c5, /* XTEST*/
0, /* PHI*/
0xe1d, /* VMRUN64*/
0xd93, /* VMMCALL*/
0xd92, /* VMLOAD64*/
0xe1f, /* VMSAVE64*/
0xa13, /* STGI*/
0x176, /* CLGI*/
0x9f5, /* SKINIT*/
0x3a2, /* INVLPGA64*/
0x9fe, /* SMSW64r*/
0x9fe, /* SMSW64r*/
0x9fe, /* SMSW64r*/
0x9fe, /* SMSW64r*/
0x9fe, /* SMSW64r*/
0x9fe, /* SMSW64r*/
0x9fe, /* SMSW64r*/
0x9fe, /* SMSW64r*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x469, /* LMSW16r*/
0x469, /* LMSW16r*/
0x469, /* LMSW16r*/
0x469, /* LMSW16r*/
0x469, /* LMSW16r*/
0x469, /* LMSW16r*/
0x469, /* LMSW16r*/
0x469, /* LMSW16r*/
0xa85, /* SWAPGS*/
0x8ce, /* RDTSCP*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
/* Table6077 */
0x435, /* LAR64rm*/
0x436, /* LAR64rr*/
/* Table6078 */
0x4ba, /* LSL64rm*/
0x4bb, /* LSL64rr*/
/* Table6079 */
0xa86, /* SYSCALL*/
/* Table6080 */
0x178, /* CLTS*/
/* Table6081 */
0xa8b, /* SYSRET64*/
/* Table6082 */
0x39d, /* INVD*/
/* Table6083 */
0x116c, /* WBINVD*/
/* Table6084 */
0xab4, /* TRAP*/
/* Table6085 */
0x812, /* PREFETCH*/
0x817, /* PREFETCHW*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
/* Table6086 */
0x2fe, /* FEMMS*/
/* Table6087 */
0x650, /* MOVUPDrm*/
0x651, /* MOVUPDrr*/
/* Table6088 */
0x64f, /* MOVUPDmr*/
0x652, /* MOVUPDrr_REV*/
/* Table6089 */
0x618, /* MOVLPDrm*/
0x611, /* MOVHLPSrr*/
/* Table6090 */
0x617, /* MOVLPDmr*/
0, /* PHI*/
/* Table6091 */
0xad3, /* UNPCKLPDrm*/
0xad4, /* UNPCKLPDrr*/
/* Table6092 */
0xacf, /* UNPCKHPDrm*/
0xad0, /* UNPCKHPDrr*/
/* Table6093 */
0x613, /* MOVHPDrm*/
0x616, /* MOVLHPSrr*/
/* Table6094 */
0x612, /* MOVHPDmr*/
0, /* PHI*/
/* Table6095 */
0x813, /* PREFETCHNTA*/
0x814, /* PREFETCHT0*/
0x815, /* PREFETCHT1*/
0x816, /* PREFETCHT2*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
/* Table6096 */
0x6d2, /* NOOPW*/
0, /* PHI*/
/* Table6097 */
0, /* PHI*/
0x5db, /* MOV64rc*/
/* Table6098 */
0, /* PHI*/
0x5dc, /* MOV64rd*/
/* Table6099 */
0, /* PHI*/
0x5d5, /* MOV64cr*/
/* Table6100 */
0, /* PHI*/
0x5d6, /* MOV64dr*/
/* Table6101 */
0x5f6, /* MOVAPDrm*/
0x5f7, /* MOVAPDrr*/
/* Table6102 */
0x5f5, /* MOVAPDmr*/
0x5f8, /* MOVAPDrr_REV*/
/* Table6103 */
0x4f8, /* MMX_CVTPI2PDirm*/
0x4f9, /* MMX_CVTPI2PDirr*/
/* Table6104 */
0x624, /* MOVNTPDmr*/
0, /* PHI*/
/* Table6105 */
0x4fe, /* MMX_CVTTPD2PIirm*/
0x4ff, /* MMX_CVTTPD2PIirr*/
/* Table6106 */
0x4f6, /* MMX_CVTPD2PIirm*/
0x4f7, /* MMX_CVTPD2PIirr*/
/* Table6107 */
0xabf, /* UCOMISDrm*/
0xac0, /* UCOMISDrr*/
/* Table6108 */
0x248, /* COMISDrm*/
0x249, /* COMISDrr*/
/* Table6109 */
0x1174, /* WRMSR*/
/* Table6110 */
0x8cd, /* RDTSC*/
/* Table6111 */
0x8c5, /* RDMSR*/
/* Table6112 */
0x8c6, /* RDPMC*/
/* Table6113 */
0xa87, /* SYSENTER*/
/* Table6114 */
0xa89, /* SYSEXIT64*/
/* Table6115 */
0x1e8, /* CMOVO64rm*/
0x1e9, /* CMOVO64rr*/
/* Table6116 */
0x1d2, /* CMOVNO64rm*/
0x1d3, /* CMOVNO64rr*/
/* Table6117 */
0x18a, /* CMOVB64rm*/
0x18b, /* CMOVB64rr*/
/* Table6118 */
0x184, /* CMOVAE64rm*/
0x185, /* CMOVAE64rr*/
/* Table6119 */
0x19e, /* CMOVE64rm*/
0x19f, /* CMOVE64rr*/
/* Table6120 */
0x1c8, /* CMOVNE64rm*/
0x1c9, /* CMOVNE64rr*/
/* Table6121 */
0x190, /* CMOVBE64rm*/
0x191, /* CMOVBE64rr*/
/* Table6122 */
0x17e, /* CMOVA64rm*/
0x17f, /* CMOVA64rr*/
/* Table6123 */
0x1f8, /* CMOVS64rm*/
0x1f9, /* CMOVS64rr*/
/* Table6124 */
0x1e2, /* CMOVNS64rm*/
0x1e3, /* CMOVNS64rr*/
/* Table6125 */
0x1ee, /* CMOVP64rm*/
0x1ef, /* CMOVP64rr*/
/* Table6126 */
0x1d8, /* CMOVNP64rm*/
0x1d9, /* CMOVNP64rr*/
/* Table6127 */
0x1b4, /* CMOVL64rm*/
0x1b5, /* CMOVL64rr*/
/* Table6128 */
0x1ae, /* CMOVGE64rm*/
0x1af, /* CMOVGE64rr*/
/* Table6129 */
0x1ba, /* CMOVLE64rm*/
0x1bb, /* CMOVLE64rr*/
/* Table6130 */
0x1a8, /* CMOVG64rm*/
0x1a9, /* CMOVG64rr*/
/* Table6131 */
0, /* PHI*/
0x61c, /* MOVMSKPDrr32*/
/* Table6132 */
0x9ff, /* SQRTPDm*/
0xa00, /* SQRTPDr*/
/* Table6133 */
0x927, /* RSQRTPSm*/
0x929, /* RSQRTPSr*/
/* Table6134 */
0x8a1, /* RCPPSm*/
0x8a3, /* RCPPSr*/
/* Table6135 */
0xd5, /* ANDPDrm*/
0xd6, /* ANDPDrr*/
/* Table6136 */
0xd1, /* ANDNPDrm*/
0xd2, /* ANDNPDrr*/
/* Table6137 */
0x6fe, /* ORPDrm*/
0x6ff, /* ORPDrr*/
/* Table6138 */
0x11b7, /* XORPDrm*/
0x11b8, /* XORPDrr*/
/* Table6139 */
0x72, /* ADDPDrm*/
0x73, /* ADDPDrr*/
/* Table6140 */
0x679, /* MULPDrm*/
0x67a, /* MULPDrr*/
/* Table6141 */
0x267, /* CVTPD2PSrm*/
0x268, /* CVTPD2PSrr*/
/* Table6142 */
0x269, /* CVTPS2DQrm*/
0x26a, /* CVTPS2DQrr*/
/* Table6143 */
0xa52, /* SUBPDrm*/
0xa53, /* SUBPDrr*/
/* Table6144 */
0x4ea, /* MINPDrm*/
0x4eb, /* MINPDrr*/
/* Table6145 */
0x2a6, /* DIVPDrm*/
0x2a7, /* DIVPDrr*/
/* Table6146 */
0x4d5, /* MAXPDrm*/
0x4d6, /* MAXPDrr*/
/* Table6147 */
0x85e, /* PUNPCKLBWrm*/
0x85f, /* PUNPCKLBWrr*/
/* Table6148 */
0x864, /* PUNPCKLWDrm*/
0x865, /* PUNPCKLWDrr*/
/* Table6149 */
0x860, /* PUNPCKLDQrm*/
0x861, /* PUNPCKLDQrr*/
/* Table6150 */
0x713, /* PACKSSWBrm*/
0x714, /* PACKSSWBrr*/
/* Table6151 */
0x74c, /* PCMPGTBrm*/
0x74d, /* PCMPGTBrr*/
/* Table6152 */
0x752, /* PCMPGTWrm*/
0x753, /* PCMPGTWrr*/
/* Table6153 */
0x74e, /* PCMPGTDrm*/
0x74f, /* PCMPGTDrr*/
/* Table6154 */
0x717, /* PACKUSWBrm*/
0x718, /* PACKUSWBrr*/
/* Table6155 */
0x856, /* PUNPCKHBWrm*/
0x857, /* PUNPCKHBWrr*/
/* Table6156 */
0x85c, /* PUNPCKHWDrm*/
0x85d, /* PUNPCKHWDrr*/
/* Table6157 */
0x858, /* PUNPCKHDQrm*/
0x859, /* PUNPCKHDQrr*/
/* Table6158 */
0x711, /* PACKSSDWrm*/
0x712, /* PACKSSDWrr*/
/* Table6159 */
0x862, /* PUNPCKLQDQrm*/
0x863, /* PUNPCKLQDQrr*/
/* Table6160 */
0x85a, /* PUNPCKHQDQrm*/
0x85b, /* PUNPCKHQDQrr*/
/* Table6161 */
0x605, /* MOVDI2PDIrm*/
0x5e6, /* MOV64toPQIrr*/
/* Table6162 */
0x60a, /* MOVDQArm*/
0x60b, /* MOVDQArr*/
/* Table6163 */
0x81c, /* PSHUFDmi*/
0x81d, /* PSHUFDri*/
/* Table6164 */
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x83f, /* PSRLWri*/
0, /* PHI*/
0x835, /* PSRAWri*/
0, /* PHI*/
0x82f, /* PSLLWri*/
0, /* PHI*/
/* Table6165 */
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x839, /* PSRLDri*/
0, /* PHI*/
0x832, /* PSRADri*/
0, /* PHI*/
0x829, /* PSLLDri*/
0, /* PHI*/
/* Table6166 */
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x83c, /* PSRLQri*/
0x838, /* PSRLDQri*/
0, /* PHI*/
0, /* PHI*/
0x82c, /* PSLLQri*/
0x828, /* PSLLDQri*/
/* Table6167 */
0x73c, /* PCMPEQBrm*/
0x73d, /* PCMPEQBrr*/
/* Table6168 */
0x742, /* PCMPEQWrm*/
0x743, /* PCMPEQWrr*/
/* Table6169 */
0x73e, /* PCMPEQDrm*/
0x73f, /* PCMPEQDrr*/
/* Table6170 */
0x502, /* MMX_EMMS*/
/* Table6171 */
0xe19, /* VMREAD64rm*/
0x2ea, /* EXTRQI*/
/* Table6172 */
0xe32, /* VMWRITE64rm*/
0x2e9, /* EXTRQ*/
/* Table6173 */
0x34a, /* HADDPDrm*/
0x34b, /* HADDPDrr*/
/* Table6174 */
0x34f, /* HSUBPDrm*/
0x350, /* HSUBPDrr*/
/* Table6175 */
0x629, /* MOVPDI2DImr*/
0x62c, /* MOVPQIto64rr*/
/* Table6176 */
0x609, /* MOVDQAmr*/
0x60c, /* MOVDQArr_REV*/
/* Table6177 */
0x42a, /* JO_4*/
/* Table6178 */
0x424, /* JNO_4*/
/* Table6179 */
0x40c, /* JB_4*/
/* Table6180 */
0x406, /* JAE_4*/
/* Table6181 */
0x411, /* JE_4*/
/* Table6182 */
0x422, /* JNE_4*/
/* Table6183 */
0x40a, /* JBE_4*/
/* Table6184 */
0x408, /* JA_4*/
/* Table6185 */
0x42f, /* JS_4*/
/* Table6186 */
0x428, /* JNS_4*/
/* Table6187 */
0x42c, /* JP_4*/
/* Table6188 */
0x426, /* JNP_4*/
/* Table6189 */
0x419, /* JL_4*/
/* Table6190 */
0x413, /* JGE_4*/
/* Table6191 */
0x417, /* JLE_4*/
/* Table6192 */
0x415, /* JG_4*/
/* Table6193 */
0x992, /* SETOm*/
0x993, /* SETOr*/
/* Table6194 */
0x98c, /* SETNOm*/
0x98d, /* SETNOr*/
/* Table6195 */
0x97e, /* SETBm*/
0x97f, /* SETBr*/
/* Table6196 */
0x974, /* SETAEm*/
0x975, /* SETAEr*/
/* Table6197 */
0x980, /* SETEm*/
0x981, /* SETEr*/
/* Table6198 */
0x98a, /* SETNEm*/
0x98b, /* SETNEr*/
/* Table6199 */
0x978, /* SETBEm*/
0x979, /* SETBEr*/
/* Table6200 */
0x976, /* SETAm*/
0x977, /* SETAr*/
/* Table6201 */
0x996, /* SETSm*/
0x997, /* SETSr*/
/* Table6202 */
0x990, /* SETNSm*/
0x991, /* SETNSr*/
/* Table6203 */
0x994, /* SETPm*/
0x995, /* SETPr*/
/* Table6204 */
0x98e, /* SETNPm*/
0x98f, /* SETNPr*/
/* Table6205 */
0x988, /* SETLm*/
0x989, /* SETLr*/
/* Table6206 */
0x982, /* SETGEm*/
0x983, /* SETGEr*/
/* Table6207 */
0x986, /* SETLEm*/
0x987, /* SETLEr*/
/* Table6208 */
0x984, /* SETGm*/
0x985, /* SETGr*/
/* Table6209 */
0x87c, /* PUSHFS16*/
/* Table6210 */
0x808, /* POPFS16*/
/* Table6211 */
0x254, /* CPUID*/
/* Table6212 */
0x139, /* BT64mr*/
0x13b, /* BT64rr*/
/* Table6213 */
0x9bc, /* SHLD64mri8*/
0x9be, /* SHLD64rri8*/
/* Table6214 */
0x9bb, /* SHLD64mrCL*/
0x9bd, /* SHLD64rrCL*/
/* Table6215 */
0x87f, /* PUSHGS16*/
/* Table6216 */
0x80b, /* POPGS16*/
/* Table6217 */
0x926, /* RSM*/
/* Table6218 */
0x15d, /* BTS64mr*/
0x15f, /* BTS64rr*/
/* Table6219 */
0x9e4, /* SHRD64mri8*/
0x9e6, /* SHRD64rri8*/
/* Table6220 */
0x9e3, /* SHRD64mrCL*/
0x9e5, /* SHRD64rrCL*/
/* Table6221 */
0x32a, /* FXSAVE64*/
0x328, /* FXRSTOR64*/
0x43e, /* LDMXCSR*/
0xa15, /* STMXCSR*/
0x11be, /* XSAVE64*/
0x11bc, /* XRSTOR64*/
0x11c0, /* XSAVEOPT64*/
0x175, /* CLFLUSH*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x45b, /* LFENCE*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x4e1, /* MFENCE*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x998, /* SFENCE*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
/* Table6222 */
0x379, /* IMUL64rm*/
0x37c, /* IMUL64rr*/
/* Table6223 */
0x246, /* CMPXCHG8rm*/
0x247, /* CMPXCHG8rr*/
/* Table6224 */
0x243, /* CMPXCHG64rm*/
0x244, /* CMPXCHG64rr*/
/* Table6225 */
0x4be, /* LSS64rm*/
0, /* PHI*/
/* Table6226 */
0x151, /* BTR64mr*/
0x153, /* BTR64rr*/
/* Table6227 */
0x45e, /* LFS64rm*/
0, /* PHI*/
/* Table6228 */
0x463, /* LGS64rm*/
0, /* PHI*/
/* Table6229 */
0x669, /* MOVZX64rm8_Q*/
0x66e, /* MOVZX64rr8_Q*/
/* Table6230 */
0x666, /* MOVZX64rm16_Q*/
0x66b, /* MOVZX64rr16_Q*/
/* Table6231 */
0xace, /* UD2B*/
/* Table6232 */
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x138, /* BT64mi8*/
0x15c, /* BTS64mi8*/
0x150, /* BTR64mi8*/
0x144, /* BTC64mi8*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x13a, /* BT64ri8*/
0x15e, /* BTS64ri8*/
0x152, /* BTR64ri8*/
0x146, /* BTC64ri8*/
/* Table6233 */
0x145, /* BTC64mr*/
0x147, /* BTC64rr*/
/* Table6234 */
0x126, /* BSF64rm*/
0x127, /* BSF64rr*/
/* Table6235 */
0x12c, /* BSR64rm*/
0x12d, /* BSR64rr*/
/* Table6236 */
0x64b, /* MOVSX64rm8*/
0x64e, /* MOVSX64rr8*/
/* Table6237 */
0x649, /* MOVSX64rm16*/
0x64c, /* MOVSX64rr16*/
/* Table6238 */
0x117c, /* XADD8rm*/
0x117d, /* XADD8rr*/
/* Table6239 */
0x117a, /* XADD64rm*/
0x117b, /* XADD64rr*/
/* Table6240 */
0x22a, /* CMPPDrmi*/
0x22c, /* CMPPDrri*/
/* Table6241 */
0x622, /* MOVNTI_64mr*/
0, /* PHI*/
/* Table6242 */
0x7aa, /* PINSRWrmi*/
0x7ab, /* PINSRWrri*/
/* Table6243 */
0, /* PHI*/
0x76b, /* PEXTRWri*/
/* Table6244 */
0x9eb, /* SHUFPDrmi*/
0x9ec, /* SHUFPDrri*/
/* Table6245 */
0, /* PHI*/
0x23e, /* CMPXCHG16B*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0xd72, /* VMCLEARm*/
0xe16, /* VMPTRSTm*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x8c9, /* RDRAND64r*/
0x8cc, /* RDSEED64r*/
/* Table6246 */
0x12f, /* BSWAP64r*/
/* Table6247 */
0x12f, /* BSWAP64r*/
/* Table6248 */
0x12f, /* BSWAP64r*/
/* Table6249 */
0x12f, /* BSWAP64r*/
/* Table6250 */
0x12f, /* BSWAP64r*/
/* Table6251 */
0x12f, /* BSWAP64r*/
/* Table6252 */
0x12f, /* BSWAP64r*/
/* Table6253 */
0x12f, /* BSWAP64r*/
/* Table6254 */
0x7e, /* ADDSUBPDrm*/
0x7f, /* ADDSUBPDrr*/
/* Table6255 */
0x840, /* PSRLWrm*/
0x841, /* PSRLWrr*/
/* Table6256 */
0x83a, /* PSRLDrm*/
0x83b, /* PSRLDrr*/
/* Table6257 */
0x83d, /* PSRLQrm*/
0x83e, /* PSRLQrr*/
/* Table6258 */
0x71d, /* PADDQrm*/
0x71e, /* PADDQrr*/
/* Table6259 */
0x7ed, /* PMULLWrm*/
0x7ee, /* PMULLWrr*/
/* Table6260 */
0x61b, /* MOVLQ128mr*/
0, /* PHI*/
/* Table6261 */
0, /* PHI*/
0x7c8, /* PMOVMSKBrr*/
/* Table6262 */
0x84c, /* PSUBUSBrm*/
0x84d, /* PSUBUSBrr*/
/* Table6263 */
0x84e, /* PSUBUSWrm*/
0x84f, /* PSUBUSWrr*/
/* Table6264 */
0x7c2, /* PMINUBrm*/
0x7c3, /* PMINUBrr*/
/* Table6265 */
0x72d, /* PANDrm*/
0x72e, /* PANDrr*/
/* Table6266 */
0x723, /* PADDUSBrm*/
0x724, /* PADDUSBrr*/
/* Table6267 */
0x725, /* PADDUSWrm*/
0x726, /* PADDUSWrr*/
/* Table6268 */
0x7b6, /* PMAXUBrm*/
0x7b7, /* PMAXUBrr*/
/* Table6269 */
0x72b, /* PANDNrm*/
0x72c, /* PANDNrr*/
/* Table6270 */
0x730, /* PAVGBrm*/
0x731, /* PAVGBrr*/
/* Table6271 */
0x836, /* PSRAWrm*/
0x837, /* PSRAWrr*/
/* Table6272 */
0x833, /* PSRADrm*/
0x834, /* PSRADrr*/
/* Table6273 */
0x734, /* PAVGWrm*/
0x735, /* PAVGWrr*/
/* Table6274 */
0x7e7, /* PMULHUWrm*/
0x7e8, /* PMULHUWrr*/
/* Table6275 */
0x7e9, /* PMULHWrm*/
0x7ea, /* PMULHWrr*/
/* Table6276 */
0x281, /* CVTTPD2DQrm*/
0x282, /* CVTTPD2DQrr*/
/* Table6277 */
0x621, /* MOVNTDQmr*/
0, /* PHI*/
/* Table6278 */
0x848, /* PSUBSBrm*/
0x849, /* PSUBSBrr*/
/* Table6279 */
0x84a, /* PSUBSWrm*/
0x84b, /* PSUBSWrr*/
/* Table6280 */
0x7c0, /* PMINSWrm*/
0x7c1, /* PMINSWrr*/
/* Table6281 */
0x810, /* PORrm*/
0x811, /* PORrr*/
/* Table6282 */
0x71f, /* PADDSBrm*/
0x720, /* PADDSBrr*/
/* Table6283 */
0x721, /* PADDSWrm*/
0x722, /* PADDSWrr*/
/* Table6284 */
0x7b4, /* PMAXSWrm*/
0x7b5, /* PMAXSWrr*/
/* Table6285 */
0x887, /* PXORrm*/
0x888, /* PXORrr*/
/* Table6286 */
0x830, /* PSLLWrm*/
0x831, /* PSLLWrr*/
/* Table6287 */
0x82a, /* PSLLDrm*/
0x82b, /* PSLLDrr*/
/* Table6288 */
0x82d, /* PSLLQrm*/
0x82e, /* PSLLQrr*/
/* Table6289 */
0x7ef, /* PMULUDQrm*/
0x7f0, /* PMULUDQrr*/
/* Table6290 */
0x7ae, /* PMADDWDrm*/
0x7af, /* PMADDWDrr*/
/* Table6291 */
0x818, /* PSADBWrm*/
0x819, /* PSADBWrr*/
/* Table6292 */
0, /* PHI*/
0x4cc, /* MASKMOVDQU64*/
/* Table6293 */
0x842, /* PSUBBrm*/
0x843, /* PSUBBrr*/
/* Table6294 */
0x850, /* PSUBWrm*/
0x851, /* PSUBWrr*/
/* Table6295 */
0x844, /* PSUBDrm*/
0x845, /* PSUBDrr*/
/* Table6296 */
0x846, /* PSUBQrm*/
0x847, /* PSUBQrr*/
/* Table6297 */
0x719, /* PADDBrm*/
0x71a, /* PADDBrr*/
/* Table6298 */
0x727, /* PADDWrm*/
0x728, /* PADDWrr*/
/* Table6299 */
0x71b, /* PADDDrm*/
0x71c, /* PADDDrr*/
/* Table6300 */
0xe08, /* VMOVUPSrm*/
0xe09, /* VMOVUPSrr*/
/* Table6301 */
0xe07, /* VMOVUPSmr*/
0xe0a, /* VMOVUPSrr_REV*/
/* Table6302 */
0xdc8, /* VMOVLPSrm*/
0xdbf, /* VMOVHLPSrr*/
/* Table6303 */
0xdc7, /* VMOVLPSmr*/
0, /* PHI*/
/* Table6304 */
0x115c, /* VUNPCKLPSrm*/
0x115d, /* VUNPCKLPSrr*/
/* Table6305 */
0x1154, /* VUNPCKHPSrm*/
0x1155, /* VUNPCKHPSrr*/
/* Table6306 */
0xdc3, /* VMOVHPSrm*/
0xdc4, /* VMOVLHPSrr*/
/* Table6307 */
0xdc2, /* VMOVHPSmr*/
0, /* PHI*/
/* Table6308 */
0xda4, /* VMOVAPSrm*/
0xda5, /* VMOVAPSrr*/
/* Table6309 */
0xda3, /* VMOVAPSmr*/
0xda6, /* VMOVAPSrr_REV*/
/* Table6310 */
0xddd, /* VMOVNTPSmr*/
0, /* PHI*/
/* Table6311 */
0x114c, /* VUCOMISSrm*/
0x114d, /* VUCOMISSrr*/
/* Table6312 */
0xb3f, /* VCOMISSrm*/
0xb40, /* VCOMISSrr*/
/* Table6313 */
0, /* PHI*/
0xdd4, /* VMOVMSKPSrr32*/
/* Table6314 */
0x1129, /* VSQRTPSm*/
0x112a, /* VSQRTPSr*/
/* Table6315 */
0x1114, /* VRSQRTPSm*/
0x1116, /* VRSQRTPSr*/
/* Table6316 */
0x10fb, /* VRCPPSm*/
0x10fd, /* VRCPPSr*/
/* Table6317 */
0xb0a, /* VANDPSrm*/
0xb0b, /* VANDPSrr*/
/* Table6318 */
0xb02, /* VANDNPSrm*/
0xb03, /* VANDNPSrr*/
/* Table6319 */
0xe3c, /* VORPSrm*/
0xe3d, /* VORPSrr*/
/* Table6320 */
0x1164, /* VXORPSrm*/
0x1165, /* VXORPSrr*/
/* Table6321 */
0xade, /* VADDPSrm*/
0xadf, /* VADDPSrr*/
/* Table6322 */
0xe26, /* VMULPSrm*/
0xe27, /* VMULPSrr*/
/* Table6323 */
0xb5b, /* VCVTPS2PDrm*/
0xb5c, /* VCVTPS2PDrr*/
/* Table6324 */
0xb47, /* VCVTDQ2PSrm*/
0xb48, /* VCVTDQ2PSrr*/
/* Table6325 */
0x1138, /* VSUBPSrm*/
0x1139, /* VSUBPSrr*/
/* Table6326 */
0xd86, /* VMINPSrm*/
0xd87, /* VMINPSrr*/
/* Table6327 */
0xb8b, /* VDIVPSrm*/
0xb8c, /* VDIVPSrr*/
/* Table6328 */
0xd67, /* VMAXPSrm*/
0xd68, /* VMAXPSrr*/
/* Table6329 */
0x1167, /* VZEROUPPER*/
/* Table6330 */
0, /* PHI*/
0, /* PHI*/
0xd4a, /* VLDMXCSR*/
0x1131, /* VSTMXCSR*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
/* Table6331 */
0xb31, /* VCMPPSrmi*/
0xb33, /* VCMPPSrri*/
/* Table6332 */
0x1121, /* VSHUFPSrmi*/
0x1122, /* VSHUFPSrri*/
/* Table6333 */
0xdf8, /* VMOVSSrm*/
0xdf9, /* VMOVSSrr*/
/* Table6334 */
0xdf7, /* VMOVSSmr*/
0xdfa, /* VMOVSSrr_REV*/
/* Table6335 */
0xdf3, /* VMOVSLDUPrm*/
0xdf4, /* VMOVSLDUPrr*/
/* Table6336 */
0xdef, /* VMOVSHDUPrm*/
0xdf0, /* VMOVSHDUPrr*/
/* Table6337 */
0xb6d, /* VCVTSI2SSrm*/
0xb6e, /* VCVTSI2SSrr*/
/* Table6338 */
0xb83, /* VCVTTSS2SIrm*/
0xb84, /* VCVTTSS2SIrr*/
/* Table6339 */
0xb73, /* VCVTSS2SIrm*/
0xb74, /* VCVTSS2SIrr*/
/* Table6340 */
0x112e, /* VSQRTSSm*/
0x1130, /* VSQRTSSr*/
/* Table6341 */
0x1118, /* VRSQRTSSm*/
0x111a, /* VRSQRTSSr*/
/* Table6342 */
0x10ff, /* VRCPSSm*/
0x1101, /* VRCPSSr*/
/* Table6343 */
0xae4, /* VADDSSrm*/
0xae6, /* VADDSSrr*/
/* Table6344 */
0xe2c, /* VMULSSrm*/
0xe2e, /* VMULSSrr*/
/* Table6345 */
0xb6f, /* VCVTSS2SDrm*/
0xb70, /* VCVTSS2SDrr*/
/* Table6346 */
0xb7b, /* VCVTTPS2DQrm*/
0xb7c, /* VCVTTPS2DQrr*/
/* Table6347 */
0x113e, /* VSUBSSrm*/
0x1140, /* VSUBSSrr*/
/* Table6348 */
0xd8c, /* VMINSSrm*/
0xd8e, /* VMINSSrr*/
/* Table6349 */
0xb91, /* VDIVSSrm*/
0xb93, /* VDIVSSrr*/
/* Table6350 */
0xd6d, /* VMAXSSrm*/
0xd6f, /* VMAXSSrr*/
/* Table6351 */
0xdbc, /* VMOVDQUrm*/
0xdbd, /* VMOVDQUrr*/
/* Table6352 */
0x1055, /* VPSHUFHWmi*/
0x1056, /* VPSHUFHWri*/
/* Table6353 */
0xde2, /* VMOVQI2PQIrm*/
0xde6, /* VMOVQxrxr*/
/* Table6354 */
0xdbb, /* VMOVDQUmr*/
0xdbe, /* VMOVDQUrr_REV*/
/* Table6355 */
0xb39, /* VCMPSSrm*/
0xb3b, /* VCMPSSrr*/
/* Table6356 */
0xb43, /* VCVTDQ2PDrm*/
0xb44, /* VCVTDQ2PDrr*/
/* Table6357 */
0xde8, /* VMOVSDrm*/
0xde9, /* VMOVSDrr*/
/* Table6358 */
0xde7, /* VMOVSDmr*/
0xdea, /* VMOVSDrr_REV*/
/* Table6359 */
0xda9, /* VMOVDDUPrm*/
0xdaa, /* VMOVDDUPrr*/
/* Table6360 */
0xb69, /* VCVTSI2SDrm*/
0xb6a, /* VCVTSI2SDrr*/
/* Table6361 */
0xb7f, /* VCVTTSD2SIrm*/
0xb80, /* VCVTTSD2SIrr*/
/* Table6362 */
0xb63, /* VCVTSD2SIrm*/
0xb64, /* VCVTSD2SIrr*/
/* Table6363 */
0x112b, /* VSQRTSDm*/
0x112d, /* VSQRTSDr*/
/* Table6364 */
0xae0, /* VADDSDrm*/
0xae2, /* VADDSDrr*/
/* Table6365 */
0xe28, /* VMULSDrm*/
0xe2a, /* VMULSDrr*/
/* Table6366 */
0xb65, /* VCVTSD2SSrm*/
0xb66, /* VCVTSD2SSrr*/
/* Table6367 */
0x113a, /* VSUBSDrm*/
0x113c, /* VSUBSDrr*/
/* Table6368 */
0xd88, /* VMINSDrm*/
0xd8a, /* VMINSDrr*/
/* Table6369 */
0xb8d, /* VDIVSDrm*/
0xb8f, /* VDIVSDrr*/
/* Table6370 */
0xd69, /* VMAXSDrm*/
0xd6b, /* VMAXSDrr*/
/* Table6371 */
0x1059, /* VPSHUFLWmi*/
0x105a, /* VPSHUFLWri*/
/* Table6372 */
0xd38, /* VHADDPSrm*/
0xd39, /* VHADDPSrr*/
/* Table6373 */
0xd40, /* VHSUBPSrm*/
0xd41, /* VHSUBPSrr*/
/* Table6374 */
0xb35, /* VCMPSDrm*/
0xb37, /* VCMPSDrr*/
/* Table6375 */
0xaee, /* VADDSUBPSrm*/
0xaef, /* VADDSUBPSrr*/
/* Table6376 */
0xb49, /* VCVTPD2DQXrm*/
0xb4c, /* VCVTPD2DQrr*/
/* Table6377 */
0xd49, /* VLDDQUrm*/
0, /* PHI*/
/* Table6378 */
0xe00, /* VMOVUPDrm*/
0xe01, /* VMOVUPDrr*/
/* Table6379 */
0xdff, /* VMOVUPDmr*/
0xe02, /* VMOVUPDrr_REV*/
/* Table6380 */
0xdc6, /* VMOVLPDrm*/
0, /* PHI*/
/* Table6381 */
0xdc5, /* VMOVLPDmr*/
0, /* PHI*/
/* Table6382 */
0x1158, /* VUNPCKLPDrm*/
0x1159, /* VUNPCKLPDrr*/
/* Table6383 */
0x1150, /* VUNPCKHPDrm*/
0x1151, /* VUNPCKHPDrr*/
/* Table6384 */
0xdc1, /* VMOVHPDrm*/
0, /* PHI*/
/* Table6385 */
0xdc0, /* VMOVHPDmr*/
0, /* PHI*/
/* Table6386 */
0xd9c, /* VMOVAPDrm*/
0xd9d, /* VMOVAPDrr*/
/* Table6387 */
0xd9b, /* VMOVAPDmr*/
0xd9e, /* VMOVAPDrr_REV*/
/* Table6388 */
0xddb, /* VMOVNTPDmr*/
0, /* PHI*/
/* Table6389 */
0x114a, /* VUCOMISDrm*/
0x114b, /* VUCOMISDrr*/
/* Table6390 */
0xb3d, /* VCOMISDrm*/
0xb3e, /* VCOMISDrr*/
/* Table6391 */
0, /* PHI*/
0xdce, /* VMOVMSKPDrr32*/
/* Table6392 */
0x1125, /* VSQRTPDm*/
0x1126, /* VSQRTPDr*/
/* Table6393 */
0xb06, /* VANDPDrm*/
0xb07, /* VANDPDrr*/
/* Table6394 */
0xafe, /* VANDNPDrm*/
0xaff, /* VANDNPDrr*/
/* Table6395 */
0xe38, /* VORPDrm*/
0xe39, /* VORPDrr*/
/* Table6396 */
0x1160, /* VXORPDrm*/
0x1161, /* VXORPDrr*/
/* Table6397 */
0xada, /* VADDPDrm*/
0xadb, /* VADDPDrr*/
/* Table6398 */
0xe22, /* VMULPDrm*/
0xe23, /* VMULPDrr*/
/* Table6399 */
0xb4d, /* VCVTPD2PSXrm*/
0xb50, /* VCVTPD2PSrr*/
/* Table6400 */
0xb57, /* VCVTPS2DQrm*/
0xb58, /* VCVTPS2DQrr*/
/* Table6401 */
0x1134, /* VSUBPDrm*/
0x1135, /* VSUBPDrr*/
/* Table6402 */
0xd82, /* VMINPDrm*/
0xd83, /* VMINPDrr*/
/* Table6403 */
0xb87, /* VDIVPDrm*/
0xb88, /* VDIVPDrr*/
/* Table6404 */
0xd63, /* VMAXPDrm*/
0xd64, /* VMAXPDrr*/
/* Table6405 */
0x10e5, /* VPUNPCKLBWrm*/
0x10e6, /* VPUNPCKLBWrr*/
/* Table6406 */
0x10f1, /* VPUNPCKLWDrm*/
0x10f2, /* VPUNPCKLWDrr*/
/* Table6407 */
0x10e9, /* VPUNPCKLDQrm*/
0x10ea, /* VPUNPCKLDQrr*/
/* Table6408 */
0xe50, /* VPACKSSWBrm*/
0xe51, /* VPACKSSWBrr*/
/* Table6409 */
0xecc, /* VPCMPGTBrm*/
0xecd, /* VPCMPGTBrr*/
/* Table6410 */
0xed8, /* VPCMPGTWrm*/
0xed9, /* VPCMPGTWrr*/
/* Table6411 */
0xed0, /* VPCMPGTDrm*/
0xed1, /* VPCMPGTDrr*/
/* Table6412 */
0xe58, /* VPACKUSWBrm*/
0xe59, /* VPACKUSWBrr*/
/* Table6413 */
0x10d5, /* VPUNPCKHBWrm*/
0x10d6, /* VPUNPCKHBWrr*/
/* Table6414 */
0x10e1, /* VPUNPCKHWDrm*/
0x10e2, /* VPUNPCKHWDrr*/
/* Table6415 */
0x10d9, /* VPUNPCKHDQrm*/
0x10da, /* VPUNPCKHDQrr*/
/* Table6416 */
0xe4c, /* VPACKSSDWrm*/
0xe4d, /* VPACKSSDWrr*/
/* Table6417 */
0x10ed, /* VPUNPCKLQDQrm*/
0x10ee, /* VPUNPCKLQDQrr*/
/* Table6418 */
0x10dd, /* VPUNPCKHQDQrm*/
0x10de, /* VPUNPCKHQDQrr*/
/* Table6419 */
0xdab, /* VMOVDI2PDIrm*/
0xdac, /* VMOVDI2PDIrr*/
/* Table6420 */
0xdb4, /* VMOVDQArm*/
0xdb5, /* VMOVDQArr*/
/* Table6421 */
0x1051, /* VPSHUFDmi*/
0x1052, /* VPSHUFDri*/
/* Table6422 */
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x10ac, /* VPSRLWri*/
0, /* PHI*/
0x1090, /* VPSRAWri*/
0, /* PHI*/
0x1080, /* VPSLLWri*/
0, /* PHI*/
/* Table6423 */
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x1098, /* VPSRLDri*/
0, /* PHI*/
0x1086, /* VPSRADri*/
0, /* PHI*/
0x106c, /* VPSLLDri*/
0, /* PHI*/
/* Table6424 */
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x109e, /* VPSRLQri*/
0x1094, /* VPSRLDQri*/
0, /* PHI*/
0, /* PHI*/
0x1072, /* VPSLLQri*/
0x1068, /* VPSLLDQri*/
/* Table6425 */
0xeb4, /* VPCMPEQBrm*/
0xeb5, /* VPCMPEQBrr*/
/* Table6426 */
0xec0, /* VPCMPEQWrm*/
0xec1, /* VPCMPEQWrr*/
/* Table6427 */
0xeb8, /* VPCMPEQDrm*/
0xeb9, /* VPCMPEQDrr*/
/* Table6428 */
0xd34, /* VHADDPDrm*/
0xd35, /* VHADDPDrr*/
/* Table6429 */
0xd3c, /* VHSUBPDrm*/
0xd3d, /* VHSUBPDrr*/
/* Table6430 */
0xdde, /* VMOVPDI2DImr*/
0xddf, /* VMOVPDI2DIrr*/
/* Table6431 */
0xdb3, /* VMOVDQAmr*/
0xdb6, /* VMOVDQArr_REV*/
/* Table6432 */
0xb29, /* VCMPPDrmi*/
0xb2b, /* VCMPPDrri*/
/* Table6433 */
0xf69, /* VPINSRWrmi*/
0xf6b, /* VPINSRWrri*/
/* Table6434 */
0, /* PHI*/
0xf22, /* VPEXTRWri*/
/* Table6435 */
0x111d, /* VSHUFPDrmi*/
0x111e, /* VSHUFPDrri*/
/* Table6436 */
0xaea, /* VADDSUBPDrm*/
0xaeb, /* VADDSUBPDrr*/
/* Table6437 */
0x10ad, /* VPSRLWrm*/
0x10ae, /* VPSRLWrr*/
/* Table6438 */
0x1099, /* VPSRLDrm*/
0x109a, /* VPSRLDrr*/
/* Table6439 */
0x109f, /* VPSRLQrm*/
0x10a0, /* VPSRLQrr*/
/* Table6440 */
0xe64, /* VPADDQrm*/
0xe65, /* VPADDQrr*/
/* Table6441 */
0x100e, /* VPMULLWrm*/
0x100f, /* VPMULLWrr*/
/* Table6442 */
0xdc9, /* VMOVLQ128mr*/
0, /* PHI*/
/* Table6443 */
0, /* PHI*/
0xfc7, /* VPMOVMSKBrr*/
/* Table6444 */
0x10c5, /* VPSUBUSBrm*/
0x10c6, /* VPSUBUSBrr*/
/* Table6445 */
0x10c9, /* VPSUBUSWrm*/
0x10ca, /* VPSUBUSWrr*/
/* Table6446 */
0xfba, /* VPMINUBrm*/
0xfbb, /* VPMINUBrr*/
/* Table6447 */
0xe84, /* VPANDrm*/
0xe85, /* VPANDrr*/
/* Table6448 */
0xe70, /* VPADDUSBrm*/
0xe71, /* VPADDUSBrr*/
/* Table6449 */
0xe74, /* VPADDUSWrm*/
0xe75, /* VPADDUSWrr*/
/* Table6450 */
0xfa2, /* VPMAXUBrm*/
0xfa3, /* VPMAXUBrr*/
/* Table6451 */
0xe80, /* VPANDNrm*/
0xe81, /* VPANDNrr*/
/* Table6452 */
0xe88, /* VPAVGBrm*/
0xe89, /* VPAVGBrr*/
/* Table6453 */
0x1091, /* VPSRAWrm*/
0x1092, /* VPSRAWrr*/
/* Table6454 */
0x1087, /* VPSRADrm*/
0x1088, /* VPSRADrr*/
/* Table6455 */
0xe8c, /* VPAVGWrm*/
0xe8d, /* VPAVGWrr*/
/* Table6456 */
0x1002, /* VPMULHUWrm*/
0x1003, /* VPMULHUWrr*/
/* Table6457 */
0x1006, /* VPMULHWrm*/
0x1007, /* VPMULHWrr*/
/* Table6458 */
0xb75, /* VCVTTPD2DQXrm*/
0xb78, /* VCVTTPD2DQrr*/
/* Table6459 */
0xdd9, /* VMOVNTDQmr*/
0, /* PHI*/
/* Table6460 */
0x10bd, /* VPSUBSBrm*/
0x10be, /* VPSUBSBrr*/
/* Table6461 */
0x10c1, /* VPSUBSWrm*/
0x10c2, /* VPSUBSWrr*/
/* Table6462 */
0xfb6, /* VPMINSWrm*/
0xfb7, /* VPMINSWrr*/
/* Table6463 */
0x1016, /* VPORrm*/
0x1017, /* VPORrr*/
/* Table6464 */
0xe68, /* VPADDSBrm*/
0xe69, /* VPADDSBrr*/
/* Table6465 */
0xe6c, /* VPADDSWrm*/
0xe6d, /* VPADDSWrr*/
/* Table6466 */
0xf9e, /* VPMAXSWrm*/
0xf9f, /* VPMAXSWrr*/
/* Table6467 */
0x10f5, /* VPXORrm*/
0x10f6, /* VPXORrr*/
/* Table6468 */
0x1081, /* VPSLLWrm*/
0x1082, /* VPSLLWrr*/
/* Table6469 */
0x106d, /* VPSLLDrm*/
0x106e, /* VPSLLDrr*/
/* Table6470 */
0x1073, /* VPSLLQrm*/
0x1074, /* VPSLLQrr*/
/* Table6471 */
0x1012, /* VPMULUDQrm*/
0x1013, /* VPMULUDQrr*/
/* Table6472 */
0xf8a, /* VPMADDWDrm*/
0xf8b, /* VPMADDWDrr*/
/* Table6473 */
0x1031, /* VPSADBWrm*/
0x1032, /* VPSADBWrr*/
/* Table6474 */
0, /* PHI*/
0xd4b, /* VMASKMOVDQU*/
/* Table6475 */
0x10b1, /* VPSUBBrm*/
0x10b2, /* VPSUBBrr*/
/* Table6476 */
0x10cd, /* VPSUBWrm*/
0x10ce, /* VPSUBWrr*/
/* Table6477 */
0x10b5, /* VPSUBDrm*/
0x10b6, /* VPSUBDrr*/
/* Table6478 */
0x10b9, /* VPSUBQrm*/
0x10ba, /* VPSUBQrr*/
/* Table6479 */
0xe5c, /* VPADDBrm*/
0xe5d, /* VPADDBrr*/
/* Table6480 */
0xe78, /* VPADDWrm*/
0xe79, /* VPADDWrr*/
/* Table6481 */
0xe60, /* VPADDDrm*/
0xe61, /* VPADDDrr*/
/* Table6482 */
0xe08, /* VMOVUPSrm*/
0xe09, /* VMOVUPSrr*/
/* Table6483 */
0xe07, /* VMOVUPSmr*/
0xe0a, /* VMOVUPSrr_REV*/
/* Table6484 */
0xdc8, /* VMOVLPSrm*/
0xdbf, /* VMOVHLPSrr*/
/* Table6485 */
0xdc7, /* VMOVLPSmr*/
0, /* PHI*/
/* Table6486 */
0x115c, /* VUNPCKLPSrm*/
0x115d, /* VUNPCKLPSrr*/
/* Table6487 */
0x1154, /* VUNPCKHPSrm*/
0x1155, /* VUNPCKHPSrr*/
/* Table6488 */
0xdc3, /* VMOVHPSrm*/
0xdc4, /* VMOVLHPSrr*/
/* Table6489 */
0xdc2, /* VMOVHPSmr*/
0, /* PHI*/
/* Table6490 */
0xda4, /* VMOVAPSrm*/
0xda5, /* VMOVAPSrr*/
/* Table6491 */
0xda3, /* VMOVAPSmr*/
0xda6, /* VMOVAPSrr_REV*/
/* Table6492 */
0xddd, /* VMOVNTPSmr*/
0, /* PHI*/
/* Table6493 */
0x114c, /* VUCOMISSrm*/
0x114d, /* VUCOMISSrr*/
/* Table6494 */
0xb3f, /* VCOMISSrm*/
0xb40, /* VCOMISSrr*/
/* Table6495 */
0, /* PHI*/
0xdd4, /* VMOVMSKPSrr32*/
/* Table6496 */
0x1129, /* VSQRTPSm*/
0x112a, /* VSQRTPSr*/
/* Table6497 */
0x1114, /* VRSQRTPSm*/
0x1116, /* VRSQRTPSr*/
/* Table6498 */
0x10fb, /* VRCPPSm*/
0x10fd, /* VRCPPSr*/
/* Table6499 */
0xb0a, /* VANDPSrm*/
0xb0b, /* VANDPSrr*/
/* Table6500 */
0xb02, /* VANDNPSrm*/
0xb03, /* VANDNPSrr*/
/* Table6501 */
0xe3c, /* VORPSrm*/
0xe3d, /* VORPSrr*/
/* Table6502 */
0x1164, /* VXORPSrm*/
0x1165, /* VXORPSrr*/
/* Table6503 */
0xade, /* VADDPSrm*/
0xadf, /* VADDPSrr*/
/* Table6504 */
0xe26, /* VMULPSrm*/
0xe27, /* VMULPSrr*/
/* Table6505 */
0xb5b, /* VCVTPS2PDrm*/
0xb5c, /* VCVTPS2PDrr*/
/* Table6506 */
0xb47, /* VCVTDQ2PSrm*/
0xb48, /* VCVTDQ2PSrr*/
/* Table6507 */
0x1138, /* VSUBPSrm*/
0x1139, /* VSUBPSrr*/
/* Table6508 */
0xd86, /* VMINPSrm*/
0xd87, /* VMINPSrr*/
/* Table6509 */
0xb8b, /* VDIVPSrm*/
0xb8c, /* VDIVPSrr*/
/* Table6510 */
0xd67, /* VMAXPSrm*/
0xd68, /* VMAXPSrr*/
/* Table6511 */
0x1167, /* VZEROUPPER*/
/* Table6512 */
0, /* PHI*/
0, /* PHI*/
0xd4a, /* VLDMXCSR*/
0x1131, /* VSTMXCSR*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
/* Table6513 */
0xb31, /* VCMPPSrmi*/
0xb33, /* VCMPPSrri*/
/* Table6514 */
0x1121, /* VSHUFPSrmi*/
0x1122, /* VSHUFPSrri*/
/* Table6515 */
0xdf8, /* VMOVSSrm*/
0xdf9, /* VMOVSSrr*/
/* Table6516 */
0xdf7, /* VMOVSSmr*/
0xdfa, /* VMOVSSrr_REV*/
/* Table6517 */
0xdf3, /* VMOVSLDUPrm*/
0xdf4, /* VMOVSLDUPrr*/
/* Table6518 */
0xdef, /* VMOVSHDUPrm*/
0xdf0, /* VMOVSHDUPrr*/
/* Table6519 */
0xb6b, /* VCVTSI2SS64rm*/
0xb6c, /* VCVTSI2SS64rr*/
/* Table6520 */
0xb81, /* VCVTTSS2SI64rm*/
0xb82, /* VCVTTSS2SI64rr*/
/* Table6521 */
0xb71, /* VCVTSS2SI64rm*/
0xb72, /* VCVTSS2SI64rr*/
/* Table6522 */
0x112e, /* VSQRTSSm*/
0x1130, /* VSQRTSSr*/
/* Table6523 */
0x1118, /* VRSQRTSSm*/
0x111a, /* VRSQRTSSr*/
/* Table6524 */
0x10ff, /* VRCPSSm*/
0x1101, /* VRCPSSr*/
/* Table6525 */
0xae4, /* VADDSSrm*/
0xae6, /* VADDSSrr*/
/* Table6526 */
0xe2c, /* VMULSSrm*/
0xe2e, /* VMULSSrr*/
/* Table6527 */
0xb6f, /* VCVTSS2SDrm*/
0xb70, /* VCVTSS2SDrr*/
/* Table6528 */
0xb7b, /* VCVTTPS2DQrm*/
0xb7c, /* VCVTTPS2DQrr*/
/* Table6529 */
0x113e, /* VSUBSSrm*/
0x1140, /* VSUBSSrr*/
/* Table6530 */
0xd8c, /* VMINSSrm*/
0xd8e, /* VMINSSrr*/
/* Table6531 */
0xb91, /* VDIVSSrm*/
0xb93, /* VDIVSSrr*/
/* Table6532 */
0xd6d, /* VMAXSSrm*/
0xd6f, /* VMAXSSrr*/
/* Table6533 */
0xdbc, /* VMOVDQUrm*/
0xdbd, /* VMOVDQUrr*/
/* Table6534 */
0x1055, /* VPSHUFHWmi*/
0x1056, /* VPSHUFHWri*/
/* Table6535 */
0xde2, /* VMOVQI2PQIrm*/
0xde6, /* VMOVQxrxr*/
/* Table6536 */
0xdbb, /* VMOVDQUmr*/
0xdbe, /* VMOVDQUrr_REV*/
/* Table6537 */
0xb39, /* VCMPSSrm*/
0xb3b, /* VCMPSSrr*/
/* Table6538 */
0xb43, /* VCVTDQ2PDrm*/
0xb44, /* VCVTDQ2PDrr*/
/* Table6539 */
0xde8, /* VMOVSDrm*/
0xde9, /* VMOVSDrr*/
/* Table6540 */
0xde7, /* VMOVSDmr*/
0xdea, /* VMOVSDrr_REV*/
/* Table6541 */
0xda9, /* VMOVDDUPrm*/
0xdaa, /* VMOVDDUPrr*/
/* Table6542 */
0xb67, /* VCVTSI2SD64rm*/
0xb68, /* VCVTSI2SD64rr*/
/* Table6543 */
0xb7d, /* VCVTTSD2SI64rm*/
0xb7e, /* VCVTTSD2SI64rr*/
/* Table6544 */
0xb61, /* VCVTSD2SI64rm*/
0xb62, /* VCVTSD2SI64rr*/
/* Table6545 */
0x112b, /* VSQRTSDm*/
0x112d, /* VSQRTSDr*/
/* Table6546 */
0xae0, /* VADDSDrm*/
0xae2, /* VADDSDrr*/
/* Table6547 */
0xe28, /* VMULSDrm*/
0xe2a, /* VMULSDrr*/
/* Table6548 */
0xb65, /* VCVTSD2SSrm*/
0xb66, /* VCVTSD2SSrr*/
/* Table6549 */
0x113a, /* VSUBSDrm*/
0x113c, /* VSUBSDrr*/
/* Table6550 */
0xd88, /* VMINSDrm*/
0xd8a, /* VMINSDrr*/
/* Table6551 */
0xb8d, /* VDIVSDrm*/
0xb8f, /* VDIVSDrr*/
/* Table6552 */
0xd69, /* VMAXSDrm*/
0xd6b, /* VMAXSDrr*/
/* Table6553 */
0x1059, /* VPSHUFLWmi*/
0x105a, /* VPSHUFLWri*/
/* Table6554 */
0xd38, /* VHADDPSrm*/
0xd39, /* VHADDPSrr*/
/* Table6555 */
0xd40, /* VHSUBPSrm*/
0xd41, /* VHSUBPSrr*/
/* Table6556 */
0xb35, /* VCMPSDrm*/
0xb37, /* VCMPSDrr*/
/* Table6557 */
0xaee, /* VADDSUBPSrm*/
0xaef, /* VADDSUBPSrr*/
/* Table6558 */
0xb49, /* VCVTPD2DQXrm*/
0xb4c, /* VCVTPD2DQrr*/
/* Table6559 */
0xd49, /* VLDDQUrm*/
0, /* PHI*/
/* Table6560 */
0xe00, /* VMOVUPDrm*/
0xe01, /* VMOVUPDrr*/
/* Table6561 */
0xdff, /* VMOVUPDmr*/
0xe02, /* VMOVUPDrr_REV*/
/* Table6562 */
0xdc6, /* VMOVLPDrm*/
0, /* PHI*/
/* Table6563 */
0xdc5, /* VMOVLPDmr*/
0, /* PHI*/
/* Table6564 */
0x1158, /* VUNPCKLPDrm*/
0x1159, /* VUNPCKLPDrr*/
/* Table6565 */
0x1150, /* VUNPCKHPDrm*/
0x1151, /* VUNPCKHPDrr*/
/* Table6566 */
0xdc1, /* VMOVHPDrm*/
0, /* PHI*/
/* Table6567 */
0xdc0, /* VMOVHPDmr*/
0, /* PHI*/
/* Table6568 */
0xd9c, /* VMOVAPDrm*/
0xd9d, /* VMOVAPDrr*/
/* Table6569 */
0xd9b, /* VMOVAPDmr*/
0xd9e, /* VMOVAPDrr_REV*/
/* Table6570 */
0xddb, /* VMOVNTPDmr*/
0, /* PHI*/
/* Table6571 */
0x114a, /* VUCOMISDrm*/
0x114b, /* VUCOMISDrr*/
/* Table6572 */
0xb3d, /* VCOMISDrm*/
0xb3e, /* VCOMISDrr*/
/* Table6573 */
0, /* PHI*/
0xdce, /* VMOVMSKPDrr32*/
/* Table6574 */
0x1125, /* VSQRTPDm*/
0x1126, /* VSQRTPDr*/
/* Table6575 */
0xb06, /* VANDPDrm*/
0xb07, /* VANDPDrr*/
/* Table6576 */
0xafe, /* VANDNPDrm*/
0xaff, /* VANDNPDrr*/
/* Table6577 */
0xe38, /* VORPDrm*/
0xe39, /* VORPDrr*/
/* Table6578 */
0x1160, /* VXORPDrm*/
0x1161, /* VXORPDrr*/
/* Table6579 */
0xada, /* VADDPDrm*/
0xadb, /* VADDPDrr*/
/* Table6580 */
0xe22, /* VMULPDrm*/
0xe23, /* VMULPDrr*/
/* Table6581 */
0xb4d, /* VCVTPD2PSXrm*/
0xb50, /* VCVTPD2PSrr*/
/* Table6582 */
0xb57, /* VCVTPS2DQrm*/
0xb58, /* VCVTPS2DQrr*/
/* Table6583 */
0x1134, /* VSUBPDrm*/
0x1135, /* VSUBPDrr*/
/* Table6584 */
0xd82, /* VMINPDrm*/
0xd83, /* VMINPDrr*/
/* Table6585 */
0xb87, /* VDIVPDrm*/
0xb88, /* VDIVPDrr*/
/* Table6586 */
0xd63, /* VMAXPDrm*/
0xd64, /* VMAXPDrr*/
/* Table6587 */
0x10e5, /* VPUNPCKLBWrm*/
0x10e6, /* VPUNPCKLBWrr*/
/* Table6588 */
0x10f1, /* VPUNPCKLWDrm*/
0x10f2, /* VPUNPCKLWDrr*/
/* Table6589 */
0x10e9, /* VPUNPCKLDQrm*/
0x10ea, /* VPUNPCKLDQrr*/
/* Table6590 */
0xe50, /* VPACKSSWBrm*/
0xe51, /* VPACKSSWBrr*/
/* Table6591 */
0xecc, /* VPCMPGTBrm*/
0xecd, /* VPCMPGTBrr*/
/* Table6592 */
0xed8, /* VPCMPGTWrm*/
0xed9, /* VPCMPGTWrr*/
/* Table6593 */
0xed0, /* VPCMPGTDrm*/
0xed1, /* VPCMPGTDrr*/
/* Table6594 */
0xe58, /* VPACKUSWBrm*/
0xe59, /* VPACKUSWBrr*/
/* Table6595 */
0x10d5, /* VPUNPCKHBWrm*/
0x10d6, /* VPUNPCKHBWrr*/
/* Table6596 */
0x10e1, /* VPUNPCKHWDrm*/
0x10e2, /* VPUNPCKHWDrr*/
/* Table6597 */
0x10d9, /* VPUNPCKHDQrm*/
0x10da, /* VPUNPCKHDQrr*/
/* Table6598 */
0xe4c, /* VPACKSSDWrm*/
0xe4d, /* VPACKSSDWrr*/
/* Table6599 */
0x10ed, /* VPUNPCKLQDQrm*/
0x10ee, /* VPUNPCKLQDQrr*/
/* Table6600 */
0x10dd, /* VPUNPCKHQDQrm*/
0x10de, /* VPUNPCKHQDQrr*/
/* Table6601 */
0xdab, /* VMOVDI2PDIrm*/
0xd94, /* VMOV64toPQIrr*/
/* Table6602 */
0xdb4, /* VMOVDQArm*/
0xdb5, /* VMOVDQArr*/
/* Table6603 */
0x1051, /* VPSHUFDmi*/
0x1052, /* VPSHUFDri*/
/* Table6604 */
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x10ac, /* VPSRLWri*/
0, /* PHI*/
0x1090, /* VPSRAWri*/
0, /* PHI*/
0x1080, /* VPSLLWri*/
0, /* PHI*/
/* Table6605 */
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x1098, /* VPSRLDri*/
0, /* PHI*/
0x1086, /* VPSRADri*/
0, /* PHI*/
0x106c, /* VPSLLDri*/
0, /* PHI*/
/* Table6606 */
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x109e, /* VPSRLQri*/
0x1094, /* VPSRLDQri*/
0, /* PHI*/
0, /* PHI*/
0x1072, /* VPSLLQri*/
0x1068, /* VPSLLDQri*/
/* Table6607 */
0xeb4, /* VPCMPEQBrm*/
0xeb5, /* VPCMPEQBrr*/
/* Table6608 */
0xec0, /* VPCMPEQWrm*/
0xec1, /* VPCMPEQWrr*/
/* Table6609 */
0xeb8, /* VPCMPEQDrm*/
0xeb9, /* VPCMPEQDrr*/
/* Table6610 */
0xd34, /* VHADDPDrm*/
0xd35, /* VHADDPDrr*/
/* Table6611 */
0xd3c, /* VHSUBPDrm*/
0xd3d, /* VHSUBPDrr*/
/* Table6612 */
0xdde, /* VMOVPDI2DImr*/
0xde1, /* VMOVPQIto64rr*/
/* Table6613 */
0xdb3, /* VMOVDQAmr*/
0xdb6, /* VMOVDQArr_REV*/
/* Table6614 */
0xb29, /* VCMPPDrmi*/
0xb2b, /* VCMPPDrri*/
/* Table6615 */
0xf69, /* VPINSRWrmi*/
0xf6b, /* VPINSRWrri*/
/* Table6616 */
0, /* PHI*/
0xf22, /* VPEXTRWri*/
/* Table6617 */
0x111d, /* VSHUFPDrmi*/
0x111e, /* VSHUFPDrri*/
/* Table6618 */
0xaea, /* VADDSUBPDrm*/
0xaeb, /* VADDSUBPDrr*/
/* Table6619 */
0x10ad, /* VPSRLWrm*/
0x10ae, /* VPSRLWrr*/
/* Table6620 */
0x1099, /* VPSRLDrm*/
0x109a, /* VPSRLDrr*/
/* Table6621 */
0x109f, /* VPSRLQrm*/
0x10a0, /* VPSRLQrr*/
/* Table6622 */
0xe64, /* VPADDQrm*/
0xe65, /* VPADDQrr*/
/* Table6623 */
0x100e, /* VPMULLWrm*/
0x100f, /* VPMULLWrr*/
/* Table6624 */
0xdc9, /* VMOVLQ128mr*/
0, /* PHI*/
/* Table6625 */
0, /* PHI*/
0xfc7, /* VPMOVMSKBrr*/
/* Table6626 */
0x10c5, /* VPSUBUSBrm*/
0x10c6, /* VPSUBUSBrr*/
/* Table6627 */
0x10c9, /* VPSUBUSWrm*/
0x10ca, /* VPSUBUSWrr*/
/* Table6628 */
0xfba, /* VPMINUBrm*/
0xfbb, /* VPMINUBrr*/
/* Table6629 */
0xe84, /* VPANDrm*/
0xe85, /* VPANDrr*/
/* Table6630 */
0xe70, /* VPADDUSBrm*/
0xe71, /* VPADDUSBrr*/
/* Table6631 */
0xe74, /* VPADDUSWrm*/
0xe75, /* VPADDUSWrr*/
/* Table6632 */
0xfa2, /* VPMAXUBrm*/
0xfa3, /* VPMAXUBrr*/
/* Table6633 */
0xe80, /* VPANDNrm*/
0xe81, /* VPANDNrr*/
/* Table6634 */
0xe88, /* VPAVGBrm*/
0xe89, /* VPAVGBrr*/
/* Table6635 */
0x1091, /* VPSRAWrm*/
0x1092, /* VPSRAWrr*/
/* Table6636 */
0x1087, /* VPSRADrm*/
0x1088, /* VPSRADrr*/
/* Table6637 */
0xe8c, /* VPAVGWrm*/
0xe8d, /* VPAVGWrr*/
/* Table6638 */
0x1002, /* VPMULHUWrm*/
0x1003, /* VPMULHUWrr*/
/* Table6639 */
0x1006, /* VPMULHWrm*/
0x1007, /* VPMULHWrr*/
/* Table6640 */
0xb75, /* VCVTTPD2DQXrm*/
0xb78, /* VCVTTPD2DQrr*/
/* Table6641 */
0xdd9, /* VMOVNTDQmr*/
0, /* PHI*/
/* Table6642 */
0x10bd, /* VPSUBSBrm*/
0x10be, /* VPSUBSBrr*/
/* Table6643 */
0x10c1, /* VPSUBSWrm*/
0x10c2, /* VPSUBSWrr*/
/* Table6644 */
0xfb6, /* VPMINSWrm*/
0xfb7, /* VPMINSWrr*/
/* Table6645 */
0x1016, /* VPORrm*/
0x1017, /* VPORrr*/
/* Table6646 */
0xe68, /* VPADDSBrm*/
0xe69, /* VPADDSBrr*/
/* Table6647 */
0xe6c, /* VPADDSWrm*/
0xe6d, /* VPADDSWrr*/
/* Table6648 */
0xf9e, /* VPMAXSWrm*/
0xf9f, /* VPMAXSWrr*/
/* Table6649 */
0x10f5, /* VPXORrm*/
0x10f6, /* VPXORrr*/
/* Table6650 */
0x1081, /* VPSLLWrm*/
0x1082, /* VPSLLWrr*/
/* Table6651 */
0x106d, /* VPSLLDrm*/
0x106e, /* VPSLLDrr*/
/* Table6652 */
0x1073, /* VPSLLQrm*/
0x1074, /* VPSLLQrr*/
/* Table6653 */
0x1012, /* VPMULUDQrm*/
0x1013, /* VPMULUDQrr*/
/* Table6654 */
0xf8a, /* VPMADDWDrm*/
0xf8b, /* VPMADDWDrr*/
/* Table6655 */
0x1031, /* VPSADBWrm*/
0x1032, /* VPSADBWrr*/
/* Table6656 */
0, /* PHI*/
0xd4b, /* VMASKMOVDQU*/
/* Table6657 */
0x10b1, /* VPSUBBrm*/
0x10b2, /* VPSUBBrr*/
/* Table6658 */
0x10cd, /* VPSUBWrm*/
0x10ce, /* VPSUBWrr*/
/* Table6659 */
0x10b5, /* VPSUBDrm*/
0x10b6, /* VPSUBDrr*/
/* Table6660 */
0x10b9, /* VPSUBQrm*/
0x10ba, /* VPSUBQrr*/
/* Table6661 */
0xe5c, /* VPADDBrm*/
0xe5d, /* VPADDBrr*/
/* Table6662 */
0xe78, /* VPADDWrm*/
0xe79, /* VPADDWrr*/
/* Table6663 */
0xe60, /* VPADDDrm*/
0xe61, /* VPADDDrr*/
/* Table6664 */
0xe04, /* VMOVUPSYrm*/
0xe05, /* VMOVUPSYrr*/
/* Table6665 */
0xe03, /* VMOVUPSYmr*/
0xe06, /* VMOVUPSYrr_REV*/
/* Table6666 */
0x115a, /* VUNPCKLPSYrm*/
0x115b, /* VUNPCKLPSYrr*/
/* Table6667 */
0x1152, /* VUNPCKHPSYrm*/
0x1153, /* VUNPCKHPSYrr*/
/* Table6668 */
0xda0, /* VMOVAPSYrm*/
0xda1, /* VMOVAPSYrr*/
/* Table6669 */
0xd9f, /* VMOVAPSYmr*/
0xda2, /* VMOVAPSYrr_REV*/
/* Table6670 */
0xddc, /* VMOVNTPSYmr*/
0, /* PHI*/
/* Table6671 */
0x114c, /* VUCOMISSrm*/
0x114d, /* VUCOMISSrr*/
/* Table6672 */
0xb3f, /* VCOMISSrm*/
0xb40, /* VCOMISSrr*/
/* Table6673 */
0, /* PHI*/
0xdd1, /* VMOVMSKPSYrr32*/
/* Table6674 */
0x1127, /* VSQRTPSYm*/
0x1128, /* VSQRTPSYr*/
/* Table6675 */
0x1110, /* VRSQRTPSYm*/
0x1112, /* VRSQRTPSYr*/
/* Table6676 */
0x10f7, /* VRCPPSYm*/
0x10f9, /* VRCPPSYr*/
/* Table6677 */
0xb08, /* VANDPSYrm*/
0xb09, /* VANDPSYrr*/
/* Table6678 */
0xb00, /* VANDNPSYrm*/
0xb01, /* VANDNPSYrr*/
/* Table6679 */
0xe3a, /* VORPSYrm*/
0xe3b, /* VORPSYrr*/
/* Table6680 */
0x1162, /* VXORPSYrm*/
0x1163, /* VXORPSYrr*/
/* Table6681 */
0xadc, /* VADDPSYrm*/
0xadd, /* VADDPSYrr*/
/* Table6682 */
0xe24, /* VMULPSYrm*/
0xe25, /* VMULPSYrr*/
/* Table6683 */
0xb59, /* VCVTPS2PDYrm*/
0xb5a, /* VCVTPS2PDYrr*/
/* Table6684 */
0xb45, /* VCVTDQ2PSYrm*/
0xb46, /* VCVTDQ2PSYrr*/
/* Table6685 */
0x1136, /* VSUBPSYrm*/
0x1137, /* VSUBPSYrr*/
/* Table6686 */
0xd84, /* VMINPSYrm*/
0xd85, /* VMINPSYrr*/
/* Table6687 */
0xb89, /* VDIVPSYrm*/
0xb8a, /* VDIVPSYrr*/
/* Table6688 */
0xd65, /* VMAXPSYrm*/
0xd66, /* VMAXPSYrr*/
/* Table6689 */
0x1166, /* VZEROALL*/
/* Table6690 */
0xb2d, /* VCMPPSYrmi*/
0xb2f, /* VCMPPSYrri*/
/* Table6691 */
0x111f, /* VSHUFPSYrmi*/
0x1120, /* VSHUFPSYrri*/
/* Table6692 */
0xdf8, /* VMOVSSrm*/
0xdf9, /* VMOVSSrr*/
/* Table6693 */
0xdf7, /* VMOVSSmr*/
0xdfa, /* VMOVSSrr_REV*/
/* Table6694 */
0xdf1, /* VMOVSLDUPYrm*/
0xdf2, /* VMOVSLDUPYrr*/
/* Table6695 */
0xded, /* VMOVSHDUPYrm*/
0xdee, /* VMOVSHDUPYrr*/
/* Table6696 */
0xb6d, /* VCVTSI2SSrm*/
0xb6e, /* VCVTSI2SSrr*/
/* Table6697 */
0xb83, /* VCVTTSS2SIrm*/
0xb84, /* VCVTTSS2SIrr*/
/* Table6698 */
0xb73, /* VCVTSS2SIrm*/
0xb74, /* VCVTSS2SIrr*/
/* Table6699 */
0x112e, /* VSQRTSSm*/
0x1130, /* VSQRTSSr*/
/* Table6700 */
0x1118, /* VRSQRTSSm*/
0x111a, /* VRSQRTSSr*/
/* Table6701 */
0x10ff, /* VRCPSSm*/
0x1101, /* VRCPSSr*/
/* Table6702 */
0xae4, /* VADDSSrm*/
0xae6, /* VADDSSrr*/
/* Table6703 */
0xe2c, /* VMULSSrm*/
0xe2e, /* VMULSSrr*/
/* Table6704 */
0xb6f, /* VCVTSS2SDrm*/
0xb70, /* VCVTSS2SDrr*/
/* Table6705 */
0xb79, /* VCVTTPS2DQYrm*/
0xb7a, /* VCVTTPS2DQYrr*/
/* Table6706 */
0x113e, /* VSUBSSrm*/
0x1140, /* VSUBSSrr*/
/* Table6707 */
0xd8c, /* VMINSSrm*/
0xd8e, /* VMINSSrr*/
/* Table6708 */
0xb91, /* VDIVSSrm*/
0xb93, /* VDIVSSrr*/
/* Table6709 */
0xd6d, /* VMAXSSrm*/
0xd6f, /* VMAXSSrr*/
/* Table6710 */
0xdb8, /* VMOVDQUYrm*/
0xdb9, /* VMOVDQUYrr*/
/* Table6711 */
0x1053, /* VPSHUFHWYmi*/
0x1054, /* VPSHUFHWYri*/
/* Table6712 */
0xdb7, /* VMOVDQUYmr*/
0xdba, /* VMOVDQUYrr_REV*/
/* Table6713 */
0xb39, /* VCMPSSrm*/
0xb3b, /* VCMPSSrr*/
/* Table6714 */
0xb41, /* VCVTDQ2PDYrm*/
0xb42, /* VCVTDQ2PDYrr*/
/* Table6715 */
0xde8, /* VMOVSDrm*/
0xde9, /* VMOVSDrr*/
/* Table6716 */
0xde7, /* VMOVSDmr*/
0xdea, /* VMOVSDrr_REV*/
/* Table6717 */
0xda7, /* VMOVDDUPYrm*/
0xda8, /* VMOVDDUPYrr*/
/* Table6718 */
0xb69, /* VCVTSI2SDrm*/
0xb6a, /* VCVTSI2SDrr*/
/* Table6719 */
0xb7f, /* VCVTTSD2SIrm*/
0xb80, /* VCVTTSD2SIrr*/
/* Table6720 */
0xb63, /* VCVTSD2SIrm*/
0xb64, /* VCVTSD2SIrr*/
/* Table6721 */
0x112b, /* VSQRTSDm*/
0x112d, /* VSQRTSDr*/
/* Table6722 */
0xae0, /* VADDSDrm*/
0xae2, /* VADDSDrr*/
/* Table6723 */
0xe28, /* VMULSDrm*/
0xe2a, /* VMULSDrr*/
/* Table6724 */
0xb65, /* VCVTSD2SSrm*/
0xb66, /* VCVTSD2SSrr*/
/* Table6725 */
0x113a, /* VSUBSDrm*/
0x113c, /* VSUBSDrr*/
/* Table6726 */
0xd88, /* VMINSDrm*/
0xd8a, /* VMINSDrr*/
/* Table6727 */
0xb8d, /* VDIVSDrm*/
0xb8f, /* VDIVSDrr*/
/* Table6728 */
0xd69, /* VMAXSDrm*/
0xd6b, /* VMAXSDrr*/
/* Table6729 */
0x1057, /* VPSHUFLWYmi*/
0x1058, /* VPSHUFLWYri*/
/* Table6730 */
0xd36, /* VHADDPSYrm*/
0xd37, /* VHADDPSYrr*/
/* Table6731 */
0xd3e, /* VHSUBPSYrm*/
0xd3f, /* VHSUBPSYrr*/
/* Table6732 */
0xb35, /* VCMPSDrm*/
0xb37, /* VCMPSDrr*/
/* Table6733 */
0xaec, /* VADDSUBPSYrm*/
0xaed, /* VADDSUBPSYrr*/
/* Table6734 */
0xb4a, /* VCVTPD2DQYrm*/
0xb4b, /* VCVTPD2DQYrr*/
/* Table6735 */
0xd48, /* VLDDQUYrm*/
0, /* PHI*/
/* Table6736 */
0xdfc, /* VMOVUPDYrm*/
0xdfd, /* VMOVUPDYrr*/
/* Table6737 */
0xdfb, /* VMOVUPDYmr*/
0xdfe, /* VMOVUPDYrr_REV*/
/* Table6738 */
0x1156, /* VUNPCKLPDYrm*/
0x1157, /* VUNPCKLPDYrr*/
/* Table6739 */
0x114e, /* VUNPCKHPDYrm*/
0x114f, /* VUNPCKHPDYrr*/
/* Table6740 */
0xd98, /* VMOVAPDYrm*/
0xd99, /* VMOVAPDYrr*/
/* Table6741 */
0xd97, /* VMOVAPDYmr*/
0xd9a, /* VMOVAPDYrr_REV*/
/* Table6742 */
0xdda, /* VMOVNTPDYmr*/
0, /* PHI*/
/* Table6743 */
0x114a, /* VUCOMISDrm*/
0x114b, /* VUCOMISDrr*/
/* Table6744 */
0xb3d, /* VCOMISDrm*/
0xb3e, /* VCOMISDrr*/
/* Table6745 */
0, /* PHI*/
0xdcb, /* VMOVMSKPDYrr32*/
/* Table6746 */
0x1123, /* VSQRTPDYm*/
0x1124, /* VSQRTPDYr*/
/* Table6747 */
0xb04, /* VANDPDYrm*/
0xb05, /* VANDPDYrr*/
/* Table6748 */
0xafc, /* VANDNPDYrm*/
0xafd, /* VANDNPDYrr*/
/* Table6749 */
0xe36, /* VORPDYrm*/
0xe37, /* VORPDYrr*/
/* Table6750 */
0x115e, /* VXORPDYrm*/
0x115f, /* VXORPDYrr*/
/* Table6751 */
0xad8, /* VADDPDYrm*/
0xad9, /* VADDPDYrr*/
/* Table6752 */
0xe20, /* VMULPDYrm*/
0xe21, /* VMULPDYrr*/
/* Table6753 */
0xb4e, /* VCVTPD2PSYrm*/
0xb4f, /* VCVTPD2PSYrr*/
/* Table6754 */
0xb55, /* VCVTPS2DQYrm*/
0xb56, /* VCVTPS2DQYrr*/
/* Table6755 */
0x1132, /* VSUBPDYrm*/
0x1133, /* VSUBPDYrr*/
/* Table6756 */
0xd80, /* VMINPDYrm*/
0xd81, /* VMINPDYrr*/
/* Table6757 */
0xb85, /* VDIVPDYrm*/
0xb86, /* VDIVPDYrr*/
/* Table6758 */
0xd61, /* VMAXPDYrm*/
0xd62, /* VMAXPDYrr*/
/* Table6759 */
0x10e3, /* VPUNPCKLBWYrm*/
0x10e4, /* VPUNPCKLBWYrr*/
/* Table6760 */
0x10ef, /* VPUNPCKLWDYrm*/
0x10f0, /* VPUNPCKLWDYrr*/
/* Table6761 */
0x10e7, /* VPUNPCKLDQYrm*/
0x10e8, /* VPUNPCKLDQYrr*/
/* Table6762 */
0xe4e, /* VPACKSSWBYrm*/
0xe4f, /* VPACKSSWBYrr*/
/* Table6763 */
0xeca, /* VPCMPGTBYrm*/
0xecb, /* VPCMPGTBYrr*/
/* Table6764 */
0xed6, /* VPCMPGTWYrm*/
0xed7, /* VPCMPGTWYrr*/
/* Table6765 */
0xece, /* VPCMPGTDYrm*/
0xecf, /* VPCMPGTDYrr*/
/* Table6766 */
0xe56, /* VPACKUSWBYrm*/
0xe57, /* VPACKUSWBYrr*/
/* Table6767 */
0x10d3, /* VPUNPCKHBWYrm*/
0x10d4, /* VPUNPCKHBWYrr*/
/* Table6768 */
0x10df, /* VPUNPCKHWDYrm*/
0x10e0, /* VPUNPCKHWDYrr*/
/* Table6769 */
0x10d7, /* VPUNPCKHDQYrm*/
0x10d8, /* VPUNPCKHDQYrr*/
/* Table6770 */
0xe4a, /* VPACKSSDWYrm*/
0xe4b, /* VPACKSSDWYrr*/
/* Table6771 */
0x10eb, /* VPUNPCKLQDQYrm*/
0x10ec, /* VPUNPCKLQDQYrr*/
/* Table6772 */
0x10db, /* VPUNPCKHQDQYrm*/
0x10dc, /* VPUNPCKHQDQYrr*/
/* Table6773 */
0xdb0, /* VMOVDQAYrm*/
0xdb1, /* VMOVDQAYrr*/
/* Table6774 */
0x104f, /* VPSHUFDYmi*/
0x1050, /* VPSHUFDYri*/
/* Table6775 */
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x10a9, /* VPSRLWYri*/
0, /* PHI*/
0x108d, /* VPSRAWYri*/
0, /* PHI*/
0x107d, /* VPSLLWYri*/
0, /* PHI*/
/* Table6776 */
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x1095, /* VPSRLDYri*/
0, /* PHI*/
0x1083, /* VPSRADYri*/
0, /* PHI*/
0x1069, /* VPSLLDYri*/
0, /* PHI*/
/* Table6777 */
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x109b, /* VPSRLQYri*/
0x1093, /* VPSRLDQYri*/
0, /* PHI*/
0, /* PHI*/
0x106f, /* VPSLLQYri*/
0x1067, /* VPSLLDQYri*/
/* Table6778 */
0xeb2, /* VPCMPEQBYrm*/
0xeb3, /* VPCMPEQBYrr*/
/* Table6779 */
0xebe, /* VPCMPEQWYrm*/
0xebf, /* VPCMPEQWYrr*/
/* Table6780 */
0xeb6, /* VPCMPEQDYrm*/
0xeb7, /* VPCMPEQDYrr*/
/* Table6781 */
0xd32, /* VHADDPDYrm*/
0xd33, /* VHADDPDYrr*/
/* Table6782 */
0xd3a, /* VHSUBPDYrm*/
0xd3b, /* VHSUBPDYrr*/
/* Table6783 */
0xdaf, /* VMOVDQAYmr*/
0xdb2, /* VMOVDQAYrr_REV*/
/* Table6784 */
0xb25, /* VCMPPDYrmi*/
0xb27, /* VCMPPDYrri*/
/* Table6785 */
0x111b, /* VSHUFPDYrmi*/
0x111c, /* VSHUFPDYrri*/
/* Table6786 */
0xae8, /* VADDSUBPDYrm*/
0xae9, /* VADDSUBPDYrr*/
/* Table6787 */
0x10aa, /* VPSRLWYrm*/
0x10ab, /* VPSRLWYrr*/
/* Table6788 */
0x1096, /* VPSRLDYrm*/
0x1097, /* VPSRLDYrr*/
/* Table6789 */
0x109c, /* VPSRLQYrm*/
0x109d, /* VPSRLQYrr*/
/* Table6790 */
0xe62, /* VPADDQYrm*/
0xe63, /* VPADDQYrr*/
/* Table6791 */
0x100c, /* VPMULLWYrm*/
0x100d, /* VPMULLWYrr*/
/* Table6792 */
0, /* PHI*/
0xfc5, /* VPMOVMSKBYrr*/
/* Table6793 */
0x10c3, /* VPSUBUSBYrm*/
0x10c4, /* VPSUBUSBYrr*/
/* Table6794 */
0x10c7, /* VPSUBUSWYrm*/
0x10c8, /* VPSUBUSWYrr*/
/* Table6795 */
0xfb8, /* VPMINUBYrm*/
0xfb9, /* VPMINUBYrr*/
/* Table6796 */
0xe82, /* VPANDYrm*/
0xe83, /* VPANDYrr*/
/* Table6797 */
0xe6e, /* VPADDUSBYrm*/
0xe6f, /* VPADDUSBYrr*/
/* Table6798 */
0xe72, /* VPADDUSWYrm*/
0xe73, /* VPADDUSWYrr*/
/* Table6799 */
0xfa0, /* VPMAXUBYrm*/
0xfa1, /* VPMAXUBYrr*/
/* Table6800 */
0xe7e, /* VPANDNYrm*/
0xe7f, /* VPANDNYrr*/
/* Table6801 */
0xe86, /* VPAVGBYrm*/
0xe87, /* VPAVGBYrr*/
/* Table6802 */
0x108e, /* VPSRAWYrm*/
0x108f, /* VPSRAWYrr*/
/* Table6803 */
0x1084, /* VPSRADYrm*/
0x1085, /* VPSRADYrr*/
/* Table6804 */
0xe8a, /* VPAVGWYrm*/
0xe8b, /* VPAVGWYrr*/
/* Table6805 */
0x1000, /* VPMULHUWYrm*/
0x1001, /* VPMULHUWYrr*/
/* Table6806 */
0x1004, /* VPMULHWYrm*/
0x1005, /* VPMULHWYrr*/
/* Table6807 */
0xb76, /* VCVTTPD2DQYrm*/
0xb77, /* VCVTTPD2DQYrr*/
/* Table6808 */
0xdd8, /* VMOVNTDQYmr*/
0, /* PHI*/
/* Table6809 */
0x10bb, /* VPSUBSBYrm*/
0x10bc, /* VPSUBSBYrr*/
/* Table6810 */
0x10bf, /* VPSUBSWYrm*/
0x10c0, /* VPSUBSWYrr*/
/* Table6811 */
0xfb4, /* VPMINSWYrm*/
0xfb5, /* VPMINSWYrr*/
/* Table6812 */
0x1014, /* VPORYrm*/
0x1015, /* VPORYrr*/
/* Table6813 */
0xe66, /* VPADDSBYrm*/
0xe67, /* VPADDSBYrr*/
/* Table6814 */
0xe6a, /* VPADDSWYrm*/
0xe6b, /* VPADDSWYrr*/
/* Table6815 */
0xf9c, /* VPMAXSWYrm*/
0xf9d, /* VPMAXSWYrr*/
/* Table6816 */
0x10f3, /* VPXORYrm*/
0x10f4, /* VPXORYrr*/
/* Table6817 */
0x107e, /* VPSLLWYrm*/
0x107f, /* VPSLLWYrr*/
/* Table6818 */
0x106a, /* VPSLLDYrm*/
0x106b, /* VPSLLDYrr*/
/* Table6819 */
0x1070, /* VPSLLQYrm*/
0x1071, /* VPSLLQYrr*/
/* Table6820 */
0x1010, /* VPMULUDQYrm*/
0x1011, /* VPMULUDQYrr*/
/* Table6821 */
0xf88, /* VPMADDWDYrm*/
0xf89, /* VPMADDWDYrr*/
/* Table6822 */
0x102f, /* VPSADBWYrm*/
0x1030, /* VPSADBWYrr*/
/* Table6823 */
0x10af, /* VPSUBBYrm*/
0x10b0, /* VPSUBBYrr*/
/* Table6824 */
0x10cb, /* VPSUBWYrm*/
0x10cc, /* VPSUBWYrr*/
/* Table6825 */
0x10b3, /* VPSUBDYrm*/
0x10b4, /* VPSUBDYrr*/
/* Table6826 */
0x10b7, /* VPSUBQYrm*/
0x10b8, /* VPSUBQYrr*/
/* Table6827 */
0xe5a, /* VPADDBYrm*/
0xe5b, /* VPADDBYrr*/
/* Table6828 */
0xe76, /* VPADDWYrm*/
0xe77, /* VPADDWYrr*/
/* Table6829 */
0xe5e, /* VPADDDYrm*/
0xe5f, /* VPADDDYrr*/
/* Table6830 */
0xdfc, /* VMOVUPDYrm*/
0xdfd, /* VMOVUPDYrr*/
/* Table6831 */
0xdfb, /* VMOVUPDYmr*/
0xdfe, /* VMOVUPDYrr_REV*/
/* Table6832 */
0x1156, /* VUNPCKLPDYrm*/
0x1157, /* VUNPCKLPDYrr*/
/* Table6833 */
0x114e, /* VUNPCKHPDYrm*/
0x114f, /* VUNPCKHPDYrr*/
/* Table6834 */
0xd98, /* VMOVAPDYrm*/
0xd99, /* VMOVAPDYrr*/
/* Table6835 */
0xd97, /* VMOVAPDYmr*/
0xd9a, /* VMOVAPDYrr_REV*/
/* Table6836 */
0xdda, /* VMOVNTPDYmr*/
0, /* PHI*/
/* Table6837 */
0x114a, /* VUCOMISDrm*/
0x114b, /* VUCOMISDrr*/
/* Table6838 */
0xb3d, /* VCOMISDrm*/
0xb3e, /* VCOMISDrr*/
/* Table6839 */
0, /* PHI*/
0xdcb, /* VMOVMSKPDYrr32*/
/* Table6840 */
0x1123, /* VSQRTPDYm*/
0x1124, /* VSQRTPDYr*/
/* Table6841 */
0xb04, /* VANDPDYrm*/
0xb05, /* VANDPDYrr*/
/* Table6842 */
0xafc, /* VANDNPDYrm*/
0xafd, /* VANDNPDYrr*/
/* Table6843 */
0xe36, /* VORPDYrm*/
0xe37, /* VORPDYrr*/
/* Table6844 */
0x115e, /* VXORPDYrm*/
0x115f, /* VXORPDYrr*/
/* Table6845 */
0xad8, /* VADDPDYrm*/
0xad9, /* VADDPDYrr*/
/* Table6846 */
0xe20, /* VMULPDYrm*/
0xe21, /* VMULPDYrr*/
/* Table6847 */
0xb4e, /* VCVTPD2PSYrm*/
0xb4f, /* VCVTPD2PSYrr*/
/* Table6848 */
0xb55, /* VCVTPS2DQYrm*/
0xb56, /* VCVTPS2DQYrr*/
/* Table6849 */
0x1132, /* VSUBPDYrm*/
0x1133, /* VSUBPDYrr*/
/* Table6850 */
0xd80, /* VMINPDYrm*/
0xd81, /* VMINPDYrr*/
/* Table6851 */
0xb85, /* VDIVPDYrm*/
0xb86, /* VDIVPDYrr*/
/* Table6852 */
0xd61, /* VMAXPDYrm*/
0xd62, /* VMAXPDYrr*/
/* Table6853 */
0x10e3, /* VPUNPCKLBWYrm*/
0x10e4, /* VPUNPCKLBWYrr*/
/* Table6854 */
0x10ef, /* VPUNPCKLWDYrm*/
0x10f0, /* VPUNPCKLWDYrr*/
/* Table6855 */
0x10e7, /* VPUNPCKLDQYrm*/
0x10e8, /* VPUNPCKLDQYrr*/
/* Table6856 */
0xe4e, /* VPACKSSWBYrm*/
0xe4f, /* VPACKSSWBYrr*/
/* Table6857 */
0xeca, /* VPCMPGTBYrm*/
0xecb, /* VPCMPGTBYrr*/
/* Table6858 */
0xed6, /* VPCMPGTWYrm*/
0xed7, /* VPCMPGTWYrr*/
/* Table6859 */
0xece, /* VPCMPGTDYrm*/
0xecf, /* VPCMPGTDYrr*/
/* Table6860 */
0xe56, /* VPACKUSWBYrm*/
0xe57, /* VPACKUSWBYrr*/
/* Table6861 */
0x10d3, /* VPUNPCKHBWYrm*/
0x10d4, /* VPUNPCKHBWYrr*/
/* Table6862 */
0x10df, /* VPUNPCKHWDYrm*/
0x10e0, /* VPUNPCKHWDYrr*/
/* Table6863 */
0x10d7, /* VPUNPCKHDQYrm*/
0x10d8, /* VPUNPCKHDQYrr*/
/* Table6864 */
0xe4a, /* VPACKSSDWYrm*/
0xe4b, /* VPACKSSDWYrr*/
/* Table6865 */
0x10eb, /* VPUNPCKLQDQYrm*/
0x10ec, /* VPUNPCKLQDQYrr*/
/* Table6866 */
0x10db, /* VPUNPCKHQDQYrm*/
0x10dc, /* VPUNPCKHQDQYrr*/
/* Table6867 */
0xdb0, /* VMOVDQAYrm*/
0xdb1, /* VMOVDQAYrr*/
/* Table6868 */
0x104f, /* VPSHUFDYmi*/
0x1050, /* VPSHUFDYri*/
/* Table6869 */
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x10a9, /* VPSRLWYri*/
0, /* PHI*/
0x108d, /* VPSRAWYri*/
0, /* PHI*/
0x107d, /* VPSLLWYri*/
0, /* PHI*/
/* Table6870 */
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x1095, /* VPSRLDYri*/
0, /* PHI*/
0x1083, /* VPSRADYri*/
0, /* PHI*/
0x1069, /* VPSLLDYri*/
0, /* PHI*/
/* Table6871 */
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x109b, /* VPSRLQYri*/
0x1093, /* VPSRLDQYri*/
0, /* PHI*/
0, /* PHI*/
0x106f, /* VPSLLQYri*/
0x1067, /* VPSLLDQYri*/
/* Table6872 */
0xeb2, /* VPCMPEQBYrm*/
0xeb3, /* VPCMPEQBYrr*/
/* Table6873 */
0xebe, /* VPCMPEQWYrm*/
0xebf, /* VPCMPEQWYrr*/
/* Table6874 */
0xeb6, /* VPCMPEQDYrm*/
0xeb7, /* VPCMPEQDYrr*/
/* Table6875 */
0xd32, /* VHADDPDYrm*/
0xd33, /* VHADDPDYrr*/
/* Table6876 */
0xd3a, /* VHSUBPDYrm*/
0xd3b, /* VHSUBPDYrr*/
/* Table6877 */
0xdaf, /* VMOVDQAYmr*/
0xdb2, /* VMOVDQAYrr_REV*/
/* Table6878 */
0xb25, /* VCMPPDYrmi*/
0xb27, /* VCMPPDYrri*/
/* Table6879 */
0x111b, /* VSHUFPDYrmi*/
0x111c, /* VSHUFPDYrri*/
/* Table6880 */
0xae8, /* VADDSUBPDYrm*/
0xae9, /* VADDSUBPDYrr*/
/* Table6881 */
0x10aa, /* VPSRLWYrm*/
0x10ab, /* VPSRLWYrr*/
/* Table6882 */
0x1096, /* VPSRLDYrm*/
0x1097, /* VPSRLDYrr*/
/* Table6883 */
0x109c, /* VPSRLQYrm*/
0x109d, /* VPSRLQYrr*/
/* Table6884 */
0xe62, /* VPADDQYrm*/
0xe63, /* VPADDQYrr*/
/* Table6885 */
0x100c, /* VPMULLWYrm*/
0x100d, /* VPMULLWYrr*/
/* Table6886 */
0, /* PHI*/
0xfc5, /* VPMOVMSKBYrr*/
/* Table6887 */
0x10c3, /* VPSUBUSBYrm*/
0x10c4, /* VPSUBUSBYrr*/
/* Table6888 */
0x10c7, /* VPSUBUSWYrm*/
0x10c8, /* VPSUBUSWYrr*/
/* Table6889 */
0xfb8, /* VPMINUBYrm*/
0xfb9, /* VPMINUBYrr*/
/* Table6890 */
0xe82, /* VPANDYrm*/
0xe83, /* VPANDYrr*/
/* Table6891 */
0xe6e, /* VPADDUSBYrm*/
0xe6f, /* VPADDUSBYrr*/
/* Table6892 */
0xe72, /* VPADDUSWYrm*/
0xe73, /* VPADDUSWYrr*/
/* Table6893 */
0xfa0, /* VPMAXUBYrm*/
0xfa1, /* VPMAXUBYrr*/
/* Table6894 */
0xe7e, /* VPANDNYrm*/
0xe7f, /* VPANDNYrr*/
/* Table6895 */
0xe86, /* VPAVGBYrm*/
0xe87, /* VPAVGBYrr*/
/* Table6896 */
0x108e, /* VPSRAWYrm*/
0x108f, /* VPSRAWYrr*/
/* Table6897 */
0x1084, /* VPSRADYrm*/
0x1085, /* VPSRADYrr*/
/* Table6898 */
0xe8a, /* VPAVGWYrm*/
0xe8b, /* VPAVGWYrr*/
/* Table6899 */
0x1000, /* VPMULHUWYrm*/
0x1001, /* VPMULHUWYrr*/
/* Table6900 */
0x1004, /* VPMULHWYrm*/
0x1005, /* VPMULHWYrr*/
/* Table6901 */
0xb76, /* VCVTTPD2DQYrm*/
0xb77, /* VCVTTPD2DQYrr*/
/* Table6902 */
0xdd8, /* VMOVNTDQYmr*/
0, /* PHI*/
/* Table6903 */
0x10bb, /* VPSUBSBYrm*/
0x10bc, /* VPSUBSBYrr*/
/* Table6904 */
0x10bf, /* VPSUBSWYrm*/
0x10c0, /* VPSUBSWYrr*/
/* Table6905 */
0xfb4, /* VPMINSWYrm*/
0xfb5, /* VPMINSWYrr*/
/* Table6906 */
0x1014, /* VPORYrm*/
0x1015, /* VPORYrr*/
/* Table6907 */
0xe66, /* VPADDSBYrm*/
0xe67, /* VPADDSBYrr*/
/* Table6908 */
0xe6a, /* VPADDSWYrm*/
0xe6b, /* VPADDSWYrr*/
/* Table6909 */
0xf9c, /* VPMAXSWYrm*/
0xf9d, /* VPMAXSWYrr*/
/* Table6910 */
0x10f3, /* VPXORYrm*/
0x10f4, /* VPXORYrr*/
/* Table6911 */
0x107e, /* VPSLLWYrm*/
0x107f, /* VPSLLWYrr*/
/* Table6912 */
0x106a, /* VPSLLDYrm*/
0x106b, /* VPSLLDYrr*/
/* Table6913 */
0x1070, /* VPSLLQYrm*/
0x1071, /* VPSLLQYrr*/
/* Table6914 */
0x1010, /* VPMULUDQYrm*/
0x1011, /* VPMULUDQYrr*/
/* Table6915 */
0xf88, /* VPMADDWDYrm*/
0xf89, /* VPMADDWDYrr*/
/* Table6916 */
0x102f, /* VPSADBWYrm*/
0x1030, /* VPSADBWYrr*/
/* Table6917 */
0x10af, /* VPSUBBYrm*/
0x10b0, /* VPSUBBYrr*/
/* Table6918 */
0x10cb, /* VPSUBWYrm*/
0x10cc, /* VPSUBWYrr*/
/* Table6919 */
0x10b3, /* VPSUBDYrm*/
0x10b4, /* VPSUBDYrr*/
/* Table6920 */
0x10b7, /* VPSUBQYrm*/
0x10b8, /* VPSUBQYrr*/
/* Table6921 */
0xe5a, /* VPADDBYrm*/
0xe5b, /* VPADDBYrr*/
/* Table6922 */
0xe76, /* VPADDWYrm*/
0xe77, /* VPADDWYrr*/
/* Table6923 */
0xe5e, /* VPADDDYrm*/
0xe5f, /* VPADDDYrr*/
/* Table6924 */
0x572, /* MMX_PSHUFBrm64*/
0x573, /* MMX_PSHUFBrr64*/
/* Table6925 */
0x54b, /* MMX_PHADDWrm64*/
0x54c, /* MMX_PHADDWrr64*/
/* Table6926 */
0x54d, /* MMX_PHADDrm64*/
0x54e, /* MMX_PHADDrr64*/
/* Table6927 */
0x549, /* MMX_PHADDSWrm64*/
0x54a, /* MMX_PHADDSWrr64*/
/* Table6928 */
0x557, /* MMX_PMADDUBSWrm64*/
0x558, /* MMX_PMADDUBSWrr64*/
/* Table6929 */
0x553, /* MMX_PHSUBWrm64*/
0x554, /* MMX_PHSUBWrr64*/
/* Table6930 */
0x54f, /* MMX_PHSUBDrm64*/
0x550, /* MMX_PHSUBDrr64*/
/* Table6931 */
0x551, /* MMX_PHSUBSWrm64*/
0x552, /* MMX_PHSUBSWrr64*/
/* Table6932 */
0x576, /* MMX_PSIGNBrm64*/
0x577, /* MMX_PSIGNBrr64*/
/* Table6933 */
0x57a, /* MMX_PSIGNWrm64*/
0x57b, /* MMX_PSIGNWrr64*/
/* Table6934 */
0x578, /* MMX_PSIGNDrm64*/
0x579, /* MMX_PSIGNDrr64*/
/* Table6935 */
0x564, /* MMX_PMULHRSWrm64*/
0x565, /* MMX_PMULHRSWrr64*/
/* Table6936 */
0x516, /* MMX_PABSBrm64*/
0x517, /* MMX_PABSBrr64*/
/* Table6937 */
0x51a, /* MMX_PABSWrm64*/
0x51b, /* MMX_PABSWrr64*/
/* Table6938 */
0x518, /* MMX_PABSDrm64*/
0x519, /* MMX_PABSDrr64*/
/* Table6939 */
0x600, /* MOVBE32rm*/
0, /* PHI*/
/* Table6940 */
0x5ff, /* MOVBE32mr*/
0, /* PHI*/
/* Table6941 */
0x572, /* MMX_PSHUFBrm64*/
0x573, /* MMX_PSHUFBrr64*/
/* Table6942 */
0x54b, /* MMX_PHADDWrm64*/
0x54c, /* MMX_PHADDWrr64*/
/* Table6943 */
0x54d, /* MMX_PHADDrm64*/
0x54e, /* MMX_PHADDrr64*/
/* Table6944 */
0x549, /* MMX_PHADDSWrm64*/
0x54a, /* MMX_PHADDSWrr64*/
/* Table6945 */
0x557, /* MMX_PMADDUBSWrm64*/
0x558, /* MMX_PMADDUBSWrr64*/
/* Table6946 */
0x553, /* MMX_PHSUBWrm64*/
0x554, /* MMX_PHSUBWrr64*/
/* Table6947 */
0x54f, /* MMX_PHSUBDrm64*/
0x550, /* MMX_PHSUBDrr64*/
/* Table6948 */
0x551, /* MMX_PHSUBSWrm64*/
0x552, /* MMX_PHSUBSWrr64*/
/* Table6949 */
0x576, /* MMX_PSIGNBrm64*/
0x577, /* MMX_PSIGNBrr64*/
/* Table6950 */
0x57a, /* MMX_PSIGNWrm64*/
0x57b, /* MMX_PSIGNWrr64*/
/* Table6951 */
0x578, /* MMX_PSIGNDrm64*/
0x579, /* MMX_PSIGNDrr64*/
/* Table6952 */
0x564, /* MMX_PMULHRSWrm64*/
0x565, /* MMX_PMULHRSWrr64*/
/* Table6953 */
0x516, /* MMX_PABSBrm64*/
0x517, /* MMX_PABSBrr64*/
/* Table6954 */
0x51a, /* MMX_PABSWrm64*/
0x51b, /* MMX_PABSWrr64*/
/* Table6955 */
0x518, /* MMX_PABSDrm64*/
0x519, /* MMX_PABSDrr64*/
/* Table6956 */
0x600, /* MOVBE32rm*/
0, /* PHI*/
/* Table6957 */
0x5ff, /* MOVBE32mr*/
0, /* PHI*/
/* Table6958 */
0x81a, /* PSHUFBrm*/
0x81b, /* PSHUFBrr*/
/* Table6959 */
0x796, /* PHADDWrm*/
0x797, /* PHADDWrr*/
/* Table6960 */
0x792, /* PHADDDrm*/
0x793, /* PHADDDrr*/
/* Table6961 */
0x794, /* PHADDSWrm128*/
0x795, /* PHADDSWrr128*/
/* Table6962 */
0x7ac, /* PMADDUBSWrm128*/
0x7ad, /* PMADDUBSWrr128*/
/* Table6963 */
0x79e, /* PHSUBWrm*/
0x79f, /* PHSUBWrr*/
/* Table6964 */
0x79a, /* PHSUBDrm*/
0x79b, /* PHSUBDrr*/
/* Table6965 */
0x79c, /* PHSUBSWrm128*/
0x79d, /* PHSUBSWrr128*/
/* Table6966 */
0x822, /* PSIGNBrm*/
0x823, /* PSIGNBrr*/
/* Table6967 */
0x826, /* PSIGNWrm*/
0x827, /* PSIGNWrr*/
/* Table6968 */
0x824, /* PSIGNDrm*/
0x825, /* PSIGNDrr*/
/* Table6969 */
0x7e3, /* PMULHRSWrm128*/
0x7e4, /* PMULHRSWrr128*/
/* Table6970 */
0x736, /* PBLENDVBrm0*/
0x737, /* PBLENDVBrr0*/
/* Table6971 */
0x112, /* BLENDVPSrm0*/
0x113, /* BLENDVPSrr0*/
/* Table6972 */
0x110, /* BLENDVPDrm0*/
0x111, /* BLENDVPDrr0*/
/* Table6973 */
0x854, /* PTESTrm*/
0x855, /* PTESTrr*/
/* Table6974 */
0x70b, /* PABSBrm128*/
0x70c, /* PABSBrr128*/
/* Table6975 */
0x70f, /* PABSWrm128*/
0x710, /* PABSWrr128*/
/* Table6976 */
0x70d, /* PABSDrm128*/
0x70e, /* PABSDrr128*/
/* Table6977 */
0x7cd, /* PMOVSXBWrm*/
0x7ce, /* PMOVSXBWrr*/
/* Table6978 */
0x7c9, /* PMOVSXBDrm*/
0x7ca, /* PMOVSXBDrr*/
/* Table6979 */
0x7cb, /* PMOVSXBQrm*/
0x7cc, /* PMOVSXBQrr*/
/* Table6980 */
0x7d1, /* PMOVSXWDrm*/
0x7d2, /* PMOVSXWDrr*/
/* Table6981 */
0x7d3, /* PMOVSXWQrm*/
0x7d4, /* PMOVSXWQrr*/
/* Table6982 */
0x7cf, /* PMOVSXDQrm*/
0x7d0, /* PMOVSXDQrr*/
/* Table6983 */
0x7e1, /* PMULDQrm*/
0x7e2, /* PMULDQrr*/
/* Table6984 */
0x740, /* PCMPEQQrm*/
0x741, /* PCMPEQQrr*/
/* Table6985 */
0x620, /* MOVNTDQArm*/
0, /* PHI*/
/* Table6986 */
0x715, /* PACKUSDWrm*/
0x716, /* PACKUSDWrr*/
/* Table6987 */
0x7d9, /* PMOVZXBWrm*/
0x7da, /* PMOVZXBWrr*/
/* Table6988 */
0x7d5, /* PMOVZXBDrm*/
0x7d6, /* PMOVZXBDrr*/
/* Table6989 */
0x7d7, /* PMOVZXBQrm*/
0x7d8, /* PMOVZXBQrr*/
/* Table6990 */
0x7dd, /* PMOVZXWDrm*/
0x7de, /* PMOVZXWDrr*/
/* Table6991 */
0x7df, /* PMOVZXWQrm*/
0x7e0, /* PMOVZXWQrr*/
/* Table6992 */
0x7db, /* PMOVZXDQrm*/
0x7dc, /* PMOVZXDQrr*/
/* Table6993 */
0x750, /* PCMPGTQrm*/
0x751, /* PCMPGTQrr*/
/* Table6994 */
0x7bc, /* PMINSBrm*/
0x7bd, /* PMINSBrr*/
/* Table6995 */
0x7be, /* PMINSDrm*/
0x7bf, /* PMINSDrr*/
/* Table6996 */
0x7c6, /* PMINUWrm*/
0x7c7, /* PMINUWrr*/
/* Table6997 */
0x7c4, /* PMINUDrm*/
0x7c5, /* PMINUDrr*/
/* Table6998 */
0x7b0, /* PMAXSBrm*/
0x7b1, /* PMAXSBrr*/
/* Table6999 */
0x7b2, /* PMAXSDrm*/
0x7b3, /* PMAXSDrr*/
/* Table7000 */
0x7ba, /* PMAXUWrm*/
0x7bb, /* PMAXUWrr*/
/* Table7001 */
0x7b8, /* PMAXUDrm*/
0x7b9, /* PMAXUDrr*/
/* Table7002 */
0x7eb, /* PMULLDrm*/
0x7ec, /* PMULLDrr*/
/* Table7003 */
0x798, /* PHMINPOSUWrm128*/
0x799, /* PHMINPOSUWrr128*/
/* Table7004 */
0x39e, /* INVEPT32*/
0, /* PHI*/
/* Table7005 */
0x3a5, /* INVVPID32*/
0, /* PHI*/
/* Table7006 */
0x3a3, /* INVPCID32*/
0, /* PHI*/
/* Table7007 */
0xa7, /* AESIMCrm*/
0xa8, /* AESIMCrr*/
/* Table7008 */
0xa5, /* AESENCrm*/
0xa6, /* AESENCrr*/
/* Table7009 */
0xa3, /* AESENCLASTrm*/
0xa4, /* AESENCLASTrr*/
/* Table7010 */
0xa1, /* AESDECrm*/
0xa2, /* AESDECrr*/
/* Table7011 */
0x9f, /* AESDECLASTrm*/
0xa0, /* AESDECLASTrr*/
/* Table7012 */
0x5fe, /* MOVBE16rm*/
0, /* PHI*/
/* Table7013 */
0x5fd, /* MOVBE16mr*/
0, /* PHI*/
/* Table7014 */
0x43, /* ADCX32rm*/
0x44, /* ADCX32rr*/
/* Table7015 */
0x572, /* MMX_PSHUFBrm64*/
0x573, /* MMX_PSHUFBrr64*/
/* Table7016 */
0x54b, /* MMX_PHADDWrm64*/
0x54c, /* MMX_PHADDWrr64*/
/* Table7017 */
0x54d, /* MMX_PHADDrm64*/
0x54e, /* MMX_PHADDrr64*/
/* Table7018 */
0x549, /* MMX_PHADDSWrm64*/
0x54a, /* MMX_PHADDSWrr64*/
/* Table7019 */
0x557, /* MMX_PMADDUBSWrm64*/
0x558, /* MMX_PMADDUBSWrr64*/
/* Table7020 */
0x553, /* MMX_PHSUBWrm64*/
0x554, /* MMX_PHSUBWrr64*/
/* Table7021 */
0x54f, /* MMX_PHSUBDrm64*/
0x550, /* MMX_PHSUBDrr64*/
/* Table7022 */
0x551, /* MMX_PHSUBSWrm64*/
0x552, /* MMX_PHSUBSWrr64*/
/* Table7023 */
0x576, /* MMX_PSIGNBrm64*/
0x577, /* MMX_PSIGNBrr64*/
/* Table7024 */
0x57a, /* MMX_PSIGNWrm64*/
0x57b, /* MMX_PSIGNWrr64*/
/* Table7025 */
0x578, /* MMX_PSIGNDrm64*/
0x579, /* MMX_PSIGNDrr64*/
/* Table7026 */
0x564, /* MMX_PMULHRSWrm64*/
0x565, /* MMX_PMULHRSWrr64*/
/* Table7027 */
0x516, /* MMX_PABSBrm64*/
0x517, /* MMX_PABSBrr64*/
/* Table7028 */
0x51a, /* MMX_PABSWrm64*/
0x51b, /* MMX_PABSWrr64*/
/* Table7029 */
0x518, /* MMX_PABSDrm64*/
0x519, /* MMX_PABSDrr64*/
/* Table7030 */
0x600, /* MOVBE32rm*/
0, /* PHI*/
/* Table7031 */
0x5ff, /* MOVBE32mr*/
0, /* PHI*/
/* Table7032 */
0x572, /* MMX_PSHUFBrm64*/
0x573, /* MMX_PSHUFBrr64*/
/* Table7033 */
0x54b, /* MMX_PHADDWrm64*/
0x54c, /* MMX_PHADDWrr64*/
/* Table7034 */
0x54d, /* MMX_PHADDrm64*/
0x54e, /* MMX_PHADDrr64*/
/* Table7035 */
0x549, /* MMX_PHADDSWrm64*/
0x54a, /* MMX_PHADDSWrr64*/
/* Table7036 */
0x557, /* MMX_PMADDUBSWrm64*/
0x558, /* MMX_PMADDUBSWrr64*/
/* Table7037 */
0x553, /* MMX_PHSUBWrm64*/
0x554, /* MMX_PHSUBWrr64*/
/* Table7038 */
0x54f, /* MMX_PHSUBDrm64*/
0x550, /* MMX_PHSUBDrr64*/
/* Table7039 */
0x551, /* MMX_PHSUBSWrm64*/
0x552, /* MMX_PHSUBSWrr64*/
/* Table7040 */
0x576, /* MMX_PSIGNBrm64*/
0x577, /* MMX_PSIGNBrr64*/
/* Table7041 */
0x57a, /* MMX_PSIGNWrm64*/
0x57b, /* MMX_PSIGNWrr64*/
/* Table7042 */
0x578, /* MMX_PSIGNDrm64*/
0x579, /* MMX_PSIGNDrr64*/
/* Table7043 */
0x564, /* MMX_PMULHRSWrm64*/
0x565, /* MMX_PMULHRSWrr64*/
/* Table7044 */
0x516, /* MMX_PABSBrm64*/
0x517, /* MMX_PABSBrr64*/
/* Table7045 */
0x51a, /* MMX_PABSWrm64*/
0x51b, /* MMX_PABSWrr64*/
/* Table7046 */
0x518, /* MMX_PABSDrm64*/
0x519, /* MMX_PABSDrr64*/
/* Table7047 */
0x258, /* CRC32r32m8*/
0x25b, /* CRC32r32r8*/
/* Table7048 */
0x257, /* CRC32r32m32*/
0x25a, /* CRC32r32r32*/
/* Table7049 */
0x572, /* MMX_PSHUFBrm64*/
0x573, /* MMX_PSHUFBrr64*/
/* Table7050 */
0x54b, /* MMX_PHADDWrm64*/
0x54c, /* MMX_PHADDWrr64*/
/* Table7051 */
0x54d, /* MMX_PHADDrm64*/
0x54e, /* MMX_PHADDrr64*/
/* Table7052 */
0x549, /* MMX_PHADDSWrm64*/
0x54a, /* MMX_PHADDSWrr64*/
/* Table7053 */
0x557, /* MMX_PMADDUBSWrm64*/
0x558, /* MMX_PMADDUBSWrr64*/
/* Table7054 */
0x553, /* MMX_PHSUBWrm64*/
0x554, /* MMX_PHSUBWrr64*/
/* Table7055 */
0x54f, /* MMX_PHSUBDrm64*/
0x550, /* MMX_PHSUBDrr64*/
/* Table7056 */
0x551, /* MMX_PHSUBSWrm64*/
0x552, /* MMX_PHSUBSWrr64*/
/* Table7057 */
0x576, /* MMX_PSIGNBrm64*/
0x577, /* MMX_PSIGNBrr64*/
/* Table7058 */
0x57a, /* MMX_PSIGNWrm64*/
0x57b, /* MMX_PSIGNWrr64*/
/* Table7059 */
0x578, /* MMX_PSIGNDrm64*/
0x579, /* MMX_PSIGNDrr64*/
/* Table7060 */
0x564, /* MMX_PMULHRSWrm64*/
0x565, /* MMX_PMULHRSWrr64*/
/* Table7061 */
0x516, /* MMX_PABSBrm64*/
0x517, /* MMX_PABSBrr64*/
/* Table7062 */
0x51a, /* MMX_PABSWrm64*/
0x51b, /* MMX_PABSWrr64*/
/* Table7063 */
0x518, /* MMX_PABSDrm64*/
0x519, /* MMX_PABSDrr64*/
/* Table7064 */
0x600, /* MOVBE32rm*/
0, /* PHI*/
/* Table7065 */
0x5ff, /* MOVBE32mr*/
0, /* PHI*/
/* Table7066 */
0x9b, /* ADOX32rm*/
0x9c, /* ADOX32rr*/
/* Table7067 */
0x256, /* CRC32r32m16*/
0x259, /* CRC32r32r16*/
/* Table7068 */
0x572, /* MMX_PSHUFBrm64*/
0x573, /* MMX_PSHUFBrr64*/
/* Table7069 */
0x54b, /* MMX_PHADDWrm64*/
0x54c, /* MMX_PHADDWrr64*/
/* Table7070 */
0x54d, /* MMX_PHADDrm64*/
0x54e, /* MMX_PHADDrr64*/
/* Table7071 */
0x549, /* MMX_PHADDSWrm64*/
0x54a, /* MMX_PHADDSWrr64*/
/* Table7072 */
0x557, /* MMX_PMADDUBSWrm64*/
0x558, /* MMX_PMADDUBSWrr64*/
/* Table7073 */
0x553, /* MMX_PHSUBWrm64*/
0x554, /* MMX_PHSUBWrr64*/
/* Table7074 */
0x54f, /* MMX_PHSUBDrm64*/
0x550, /* MMX_PHSUBDrr64*/
/* Table7075 */
0x551, /* MMX_PHSUBSWrm64*/
0x552, /* MMX_PHSUBSWrr64*/
/* Table7076 */
0x576, /* MMX_PSIGNBrm64*/
0x577, /* MMX_PSIGNBrr64*/
/* Table7077 */
0x57a, /* MMX_PSIGNWrm64*/
0x57b, /* MMX_PSIGNWrr64*/
/* Table7078 */
0x578, /* MMX_PSIGNDrm64*/
0x579, /* MMX_PSIGNDrr64*/
/* Table7079 */
0x564, /* MMX_PMULHRSWrm64*/
0x565, /* MMX_PMULHRSWrr64*/
/* Table7080 */
0x516, /* MMX_PABSBrm64*/
0x517, /* MMX_PABSBrr64*/
/* Table7081 */
0x51a, /* MMX_PABSWrm64*/
0x51b, /* MMX_PABSWrr64*/
/* Table7082 */
0x518, /* MMX_PABSDrm64*/
0x519, /* MMX_PABSDrr64*/
/* Table7083 */
0x602, /* MOVBE64rm*/
0, /* PHI*/
/* Table7084 */
0x601, /* MOVBE64mr*/
0, /* PHI*/
/* Table7085 */
0x81a, /* PSHUFBrm*/
0x81b, /* PSHUFBrr*/
/* Table7086 */
0x796, /* PHADDWrm*/
0x797, /* PHADDWrr*/
/* Table7087 */
0x792, /* PHADDDrm*/
0x793, /* PHADDDrr*/
/* Table7088 */
0x794, /* PHADDSWrm128*/
0x795, /* PHADDSWrr128*/
/* Table7089 */
0x7ac, /* PMADDUBSWrm128*/
0x7ad, /* PMADDUBSWrr128*/
/* Table7090 */
0x79e, /* PHSUBWrm*/
0x79f, /* PHSUBWrr*/
/* Table7091 */
0x79a, /* PHSUBDrm*/
0x79b, /* PHSUBDrr*/
/* Table7092 */
0x79c, /* PHSUBSWrm128*/
0x79d, /* PHSUBSWrr128*/
/* Table7093 */
0x822, /* PSIGNBrm*/
0x823, /* PSIGNBrr*/
/* Table7094 */
0x826, /* PSIGNWrm*/
0x827, /* PSIGNWrr*/
/* Table7095 */
0x824, /* PSIGNDrm*/
0x825, /* PSIGNDrr*/
/* Table7096 */
0x7e3, /* PMULHRSWrm128*/
0x7e4, /* PMULHRSWrr128*/
/* Table7097 */
0x736, /* PBLENDVBrm0*/
0x737, /* PBLENDVBrr0*/
/* Table7098 */
0x112, /* BLENDVPSrm0*/
0x113, /* BLENDVPSrr0*/
/* Table7099 */
0x110, /* BLENDVPDrm0*/
0x111, /* BLENDVPDrr0*/
/* Table7100 */
0x854, /* PTESTrm*/
0x855, /* PTESTrr*/
/* Table7101 */
0x70b, /* PABSBrm128*/
0x70c, /* PABSBrr128*/
/* Table7102 */
0x70f, /* PABSWrm128*/
0x710, /* PABSWrr128*/
/* Table7103 */
0x70d, /* PABSDrm128*/
0x70e, /* PABSDrr128*/
/* Table7104 */
0x7cd, /* PMOVSXBWrm*/
0x7ce, /* PMOVSXBWrr*/
/* Table7105 */
0x7c9, /* PMOVSXBDrm*/
0x7ca, /* PMOVSXBDrr*/
/* Table7106 */
0x7cb, /* PMOVSXBQrm*/
0x7cc, /* PMOVSXBQrr*/
/* Table7107 */
0x7d1, /* PMOVSXWDrm*/
0x7d2, /* PMOVSXWDrr*/
/* Table7108 */
0x7d3, /* PMOVSXWQrm*/
0x7d4, /* PMOVSXWQrr*/
/* Table7109 */
0x7cf, /* PMOVSXDQrm*/
0x7d0, /* PMOVSXDQrr*/
/* Table7110 */
0x7e1, /* PMULDQrm*/
0x7e2, /* PMULDQrr*/
/* Table7111 */
0x740, /* PCMPEQQrm*/
0x741, /* PCMPEQQrr*/
/* Table7112 */
0x620, /* MOVNTDQArm*/
0, /* PHI*/
/* Table7113 */
0x715, /* PACKUSDWrm*/
0x716, /* PACKUSDWrr*/
/* Table7114 */
0x7d9, /* PMOVZXBWrm*/
0x7da, /* PMOVZXBWrr*/
/* Table7115 */
0x7d5, /* PMOVZXBDrm*/
0x7d6, /* PMOVZXBDrr*/
/* Table7116 */
0x7d7, /* PMOVZXBQrm*/
0x7d8, /* PMOVZXBQrr*/
/* Table7117 */
0x7dd, /* PMOVZXWDrm*/
0x7de, /* PMOVZXWDrr*/
/* Table7118 */
0x7df, /* PMOVZXWQrm*/
0x7e0, /* PMOVZXWQrr*/
/* Table7119 */
0x7db, /* PMOVZXDQrm*/
0x7dc, /* PMOVZXDQrr*/
/* Table7120 */
0x750, /* PCMPGTQrm*/
0x751, /* PCMPGTQrr*/
/* Table7121 */
0x7bc, /* PMINSBrm*/
0x7bd, /* PMINSBrr*/
/* Table7122 */
0x7be, /* PMINSDrm*/
0x7bf, /* PMINSDrr*/
/* Table7123 */
0x7c6, /* PMINUWrm*/
0x7c7, /* PMINUWrr*/
/* Table7124 */
0x7c4, /* PMINUDrm*/
0x7c5, /* PMINUDrr*/
/* Table7125 */
0x7b0, /* PMAXSBrm*/
0x7b1, /* PMAXSBrr*/
/* Table7126 */
0x7b2, /* PMAXSDrm*/
0x7b3, /* PMAXSDrr*/
/* Table7127 */
0x7ba, /* PMAXUWrm*/
0x7bb, /* PMAXUWrr*/
/* Table7128 */
0x7b8, /* PMAXUDrm*/
0x7b9, /* PMAXUDrr*/
/* Table7129 */
0x7eb, /* PMULLDrm*/
0x7ec, /* PMULLDrr*/
/* Table7130 */
0x798, /* PHMINPOSUWrm128*/
0x799, /* PHMINPOSUWrr128*/
/* Table7131 */
0x39f, /* INVEPT64*/
0, /* PHI*/
/* Table7132 */
0x3a6, /* INVVPID64*/
0, /* PHI*/
/* Table7133 */
0x3a4, /* INVPCID64*/
0, /* PHI*/
/* Table7134 */
0xa7, /* AESIMCrm*/
0xa8, /* AESIMCrr*/
/* Table7135 */
0xa5, /* AESENCrm*/
0xa6, /* AESENCrr*/
/* Table7136 */
0xa3, /* AESENCLASTrm*/
0xa4, /* AESENCLASTrr*/
/* Table7137 */
0xa1, /* AESDECrm*/
0xa2, /* AESDECrr*/
/* Table7138 */
0x9f, /* AESDECLASTrm*/
0xa0, /* AESDECLASTrr*/
/* Table7139 */
0x5fe, /* MOVBE16rm*/
0, /* PHI*/
/* Table7140 */
0x5fd, /* MOVBE16mr*/
0, /* PHI*/
/* Table7141 */
0x43, /* ADCX32rm*/
0x44, /* ADCX32rr*/
/* Table7142 */
0x572, /* MMX_PSHUFBrm64*/
0x573, /* MMX_PSHUFBrr64*/
/* Table7143 */
0x54b, /* MMX_PHADDWrm64*/
0x54c, /* MMX_PHADDWrr64*/
/* Table7144 */
0x54d, /* MMX_PHADDrm64*/
0x54e, /* MMX_PHADDrr64*/
/* Table7145 */
0x549, /* MMX_PHADDSWrm64*/
0x54a, /* MMX_PHADDSWrr64*/
/* Table7146 */
0x557, /* MMX_PMADDUBSWrm64*/
0x558, /* MMX_PMADDUBSWrr64*/
/* Table7147 */
0x553, /* MMX_PHSUBWrm64*/
0x554, /* MMX_PHSUBWrr64*/
/* Table7148 */
0x54f, /* MMX_PHSUBDrm64*/
0x550, /* MMX_PHSUBDrr64*/
/* Table7149 */
0x551, /* MMX_PHSUBSWrm64*/
0x552, /* MMX_PHSUBSWrr64*/
/* Table7150 */
0x576, /* MMX_PSIGNBrm64*/
0x577, /* MMX_PSIGNBrr64*/
/* Table7151 */
0x57a, /* MMX_PSIGNWrm64*/
0x57b, /* MMX_PSIGNWrr64*/
/* Table7152 */
0x578, /* MMX_PSIGNDrm64*/
0x579, /* MMX_PSIGNDrr64*/
/* Table7153 */
0x564, /* MMX_PMULHRSWrm64*/
0x565, /* MMX_PMULHRSWrr64*/
/* Table7154 */
0x516, /* MMX_PABSBrm64*/
0x517, /* MMX_PABSBrr64*/
/* Table7155 */
0x51a, /* MMX_PABSWrm64*/
0x51b, /* MMX_PABSWrr64*/
/* Table7156 */
0x518, /* MMX_PABSDrm64*/
0x519, /* MMX_PABSDrr64*/
/* Table7157 */
0x600, /* MOVBE32rm*/
0, /* PHI*/
/* Table7158 */
0x5ff, /* MOVBE32mr*/
0, /* PHI*/
/* Table7159 */
0x572, /* MMX_PSHUFBrm64*/
0x573, /* MMX_PSHUFBrr64*/
/* Table7160 */
0x54b, /* MMX_PHADDWrm64*/
0x54c, /* MMX_PHADDWrr64*/
/* Table7161 */
0x54d, /* MMX_PHADDrm64*/
0x54e, /* MMX_PHADDrr64*/
/* Table7162 */
0x549, /* MMX_PHADDSWrm64*/
0x54a, /* MMX_PHADDSWrr64*/
/* Table7163 */
0x557, /* MMX_PMADDUBSWrm64*/
0x558, /* MMX_PMADDUBSWrr64*/
/* Table7164 */
0x553, /* MMX_PHSUBWrm64*/
0x554, /* MMX_PHSUBWrr64*/
/* Table7165 */
0x54f, /* MMX_PHSUBDrm64*/
0x550, /* MMX_PHSUBDrr64*/
/* Table7166 */
0x551, /* MMX_PHSUBSWrm64*/
0x552, /* MMX_PHSUBSWrr64*/
/* Table7167 */
0x576, /* MMX_PSIGNBrm64*/
0x577, /* MMX_PSIGNBrr64*/
/* Table7168 */
0x57a, /* MMX_PSIGNWrm64*/
0x57b, /* MMX_PSIGNWrr64*/
/* Table7169 */
0x578, /* MMX_PSIGNDrm64*/
0x579, /* MMX_PSIGNDrr64*/
/* Table7170 */
0x564, /* MMX_PMULHRSWrm64*/
0x565, /* MMX_PMULHRSWrr64*/
/* Table7171 */
0x516, /* MMX_PABSBrm64*/
0x517, /* MMX_PABSBrr64*/
/* Table7172 */
0x51a, /* MMX_PABSWrm64*/
0x51b, /* MMX_PABSWrr64*/
/* Table7173 */
0x518, /* MMX_PABSDrm64*/
0x519, /* MMX_PABSDrr64*/
/* Table7174 */
0x258, /* CRC32r32m8*/
0x25b, /* CRC32r32r8*/
/* Table7175 */
0x257, /* CRC32r32m32*/
0x25a, /* CRC32r32r32*/
/* Table7176 */
0x572, /* MMX_PSHUFBrm64*/
0x573, /* MMX_PSHUFBrr64*/
/* Table7177 */
0x54b, /* MMX_PHADDWrm64*/
0x54c, /* MMX_PHADDWrr64*/
/* Table7178 */
0x54d, /* MMX_PHADDrm64*/
0x54e, /* MMX_PHADDrr64*/
/* Table7179 */
0x549, /* MMX_PHADDSWrm64*/
0x54a, /* MMX_PHADDSWrr64*/
/* Table7180 */
0x557, /* MMX_PMADDUBSWrm64*/
0x558, /* MMX_PMADDUBSWrr64*/
/* Table7181 */
0x553, /* MMX_PHSUBWrm64*/
0x554, /* MMX_PHSUBWrr64*/
/* Table7182 */
0x54f, /* MMX_PHSUBDrm64*/
0x550, /* MMX_PHSUBDrr64*/
/* Table7183 */
0x551, /* MMX_PHSUBSWrm64*/
0x552, /* MMX_PHSUBSWrr64*/
/* Table7184 */
0x576, /* MMX_PSIGNBrm64*/
0x577, /* MMX_PSIGNBrr64*/
/* Table7185 */
0x57a, /* MMX_PSIGNWrm64*/
0x57b, /* MMX_PSIGNWrr64*/
/* Table7186 */
0x578, /* MMX_PSIGNDrm64*/
0x579, /* MMX_PSIGNDrr64*/
/* Table7187 */
0x564, /* MMX_PMULHRSWrm64*/
0x565, /* MMX_PMULHRSWrr64*/
/* Table7188 */
0x516, /* MMX_PABSBrm64*/
0x517, /* MMX_PABSBrr64*/
/* Table7189 */
0x51a, /* MMX_PABSWrm64*/
0x51b, /* MMX_PABSWrr64*/
/* Table7190 */
0x518, /* MMX_PABSDrm64*/
0x519, /* MMX_PABSDrr64*/
/* Table7191 */
0x600, /* MOVBE32rm*/
0, /* PHI*/
/* Table7192 */
0x5ff, /* MOVBE32mr*/
0, /* PHI*/
/* Table7193 */
0x9b, /* ADOX32rm*/
0x9c, /* ADOX32rr*/
/* Table7194 */
0x256, /* CRC32r32m16*/
0x259, /* CRC32r32r16*/
/* Table7195 */
0x572, /* MMX_PSHUFBrm64*/
0x573, /* MMX_PSHUFBrr64*/
/* Table7196 */
0x54b, /* MMX_PHADDWrm64*/
0x54c, /* MMX_PHADDWrr64*/
/* Table7197 */
0x54d, /* MMX_PHADDrm64*/
0x54e, /* MMX_PHADDrr64*/
/* Table7198 */
0x549, /* MMX_PHADDSWrm64*/
0x54a, /* MMX_PHADDSWrr64*/
/* Table7199 */
0x557, /* MMX_PMADDUBSWrm64*/
0x558, /* MMX_PMADDUBSWrr64*/
/* Table7200 */
0x553, /* MMX_PHSUBWrm64*/
0x554, /* MMX_PHSUBWrr64*/
/* Table7201 */
0x54f, /* MMX_PHSUBDrm64*/
0x550, /* MMX_PHSUBDrr64*/
/* Table7202 */
0x551, /* MMX_PHSUBSWrm64*/
0x552, /* MMX_PHSUBSWrr64*/
/* Table7203 */
0x576, /* MMX_PSIGNBrm64*/
0x577, /* MMX_PSIGNBrr64*/
/* Table7204 */
0x57a, /* MMX_PSIGNWrm64*/
0x57b, /* MMX_PSIGNWrr64*/
/* Table7205 */
0x578, /* MMX_PSIGNDrm64*/
0x579, /* MMX_PSIGNDrr64*/
/* Table7206 */
0x564, /* MMX_PMULHRSWrm64*/
0x565, /* MMX_PMULHRSWrr64*/
/* Table7207 */
0x516, /* MMX_PABSBrm64*/
0x517, /* MMX_PABSBrr64*/
/* Table7208 */
0x51a, /* MMX_PABSWrm64*/
0x51b, /* MMX_PABSWrr64*/
/* Table7209 */
0x518, /* MMX_PABSDrm64*/
0x519, /* MMX_PABSDrr64*/
/* Table7210 */
0x602, /* MOVBE64rm*/
0, /* PHI*/
/* Table7211 */
0x601, /* MOVBE64mr*/
0, /* PHI*/
/* Table7212 */
0x9d, /* ADOX64rm*/
0x9e, /* ADOX64rr*/
/* Table7213 */
0x572, /* MMX_PSHUFBrm64*/
0x573, /* MMX_PSHUFBrr64*/
/* Table7214 */
0x54b, /* MMX_PHADDWrm64*/
0x54c, /* MMX_PHADDWrr64*/
/* Table7215 */
0x54d, /* MMX_PHADDrm64*/
0x54e, /* MMX_PHADDrr64*/
/* Table7216 */
0x549, /* MMX_PHADDSWrm64*/
0x54a, /* MMX_PHADDSWrr64*/
/* Table7217 */
0x557, /* MMX_PMADDUBSWrm64*/
0x558, /* MMX_PMADDUBSWrr64*/
/* Table7218 */
0x553, /* MMX_PHSUBWrm64*/
0x554, /* MMX_PHSUBWrr64*/
/* Table7219 */
0x54f, /* MMX_PHSUBDrm64*/
0x550, /* MMX_PHSUBDrr64*/
/* Table7220 */
0x551, /* MMX_PHSUBSWrm64*/
0x552, /* MMX_PHSUBSWrr64*/
/* Table7221 */
0x576, /* MMX_PSIGNBrm64*/
0x577, /* MMX_PSIGNBrr64*/
/* Table7222 */
0x57a, /* MMX_PSIGNWrm64*/
0x57b, /* MMX_PSIGNWrr64*/
/* Table7223 */
0x578, /* MMX_PSIGNDrm64*/
0x579, /* MMX_PSIGNDrr64*/
/* Table7224 */
0x564, /* MMX_PMULHRSWrm64*/
0x565, /* MMX_PMULHRSWrr64*/
/* Table7225 */
0x516, /* MMX_PABSBrm64*/
0x517, /* MMX_PABSBrr64*/
/* Table7226 */
0x51a, /* MMX_PABSWrm64*/
0x51b, /* MMX_PABSWrr64*/
/* Table7227 */
0x518, /* MMX_PABSDrm64*/
0x519, /* MMX_PABSDrr64*/
/* Table7228 */
0x25d, /* CRC32r64m8*/
0x25b, /* CRC32r32r8*/
/* Table7229 */
0x25c, /* CRC32r64m64*/
0x25e, /* CRC32r64r64*/
/* Table7230 */
0x81a, /* PSHUFBrm*/
0x81b, /* PSHUFBrr*/
/* Table7231 */
0x796, /* PHADDWrm*/
0x797, /* PHADDWrr*/
/* Table7232 */
0x792, /* PHADDDrm*/
0x793, /* PHADDDrr*/
/* Table7233 */
0x794, /* PHADDSWrm128*/
0x795, /* PHADDSWrr128*/
/* Table7234 */
0x7ac, /* PMADDUBSWrm128*/
0x7ad, /* PMADDUBSWrr128*/
/* Table7235 */
0x79e, /* PHSUBWrm*/
0x79f, /* PHSUBWrr*/
/* Table7236 */
0x79a, /* PHSUBDrm*/
0x79b, /* PHSUBDrr*/
/* Table7237 */
0x79c, /* PHSUBSWrm128*/
0x79d, /* PHSUBSWrr128*/
/* Table7238 */
0x822, /* PSIGNBrm*/
0x823, /* PSIGNBrr*/
/* Table7239 */
0x826, /* PSIGNWrm*/
0x827, /* PSIGNWrr*/
/* Table7240 */
0x824, /* PSIGNDrm*/
0x825, /* PSIGNDrr*/
/* Table7241 */
0x7e3, /* PMULHRSWrm128*/
0x7e4, /* PMULHRSWrr128*/
/* Table7242 */
0x736, /* PBLENDVBrm0*/
0x737, /* PBLENDVBrr0*/
/* Table7243 */
0x112, /* BLENDVPSrm0*/
0x113, /* BLENDVPSrr0*/
/* Table7244 */
0x110, /* BLENDVPDrm0*/
0x111, /* BLENDVPDrr0*/
/* Table7245 */
0x854, /* PTESTrm*/
0x855, /* PTESTrr*/
/* Table7246 */
0x70b, /* PABSBrm128*/
0x70c, /* PABSBrr128*/
/* Table7247 */
0x70f, /* PABSWrm128*/
0x710, /* PABSWrr128*/
/* Table7248 */
0x70d, /* PABSDrm128*/
0x70e, /* PABSDrr128*/
/* Table7249 */
0x7cd, /* PMOVSXBWrm*/
0x7ce, /* PMOVSXBWrr*/
/* Table7250 */
0x7c9, /* PMOVSXBDrm*/
0x7ca, /* PMOVSXBDrr*/
/* Table7251 */
0x7cb, /* PMOVSXBQrm*/
0x7cc, /* PMOVSXBQrr*/
/* Table7252 */
0x7d1, /* PMOVSXWDrm*/
0x7d2, /* PMOVSXWDrr*/
/* Table7253 */
0x7d3, /* PMOVSXWQrm*/
0x7d4, /* PMOVSXWQrr*/
/* Table7254 */
0x7cf, /* PMOVSXDQrm*/
0x7d0, /* PMOVSXDQrr*/
/* Table7255 */
0x7e1, /* PMULDQrm*/
0x7e2, /* PMULDQrr*/
/* Table7256 */
0x740, /* PCMPEQQrm*/
0x741, /* PCMPEQQrr*/
/* Table7257 */
0x620, /* MOVNTDQArm*/
0, /* PHI*/
/* Table7258 */
0x715, /* PACKUSDWrm*/
0x716, /* PACKUSDWrr*/
/* Table7259 */
0x7d9, /* PMOVZXBWrm*/
0x7da, /* PMOVZXBWrr*/
/* Table7260 */
0x7d5, /* PMOVZXBDrm*/
0x7d6, /* PMOVZXBDrr*/
/* Table7261 */
0x7d7, /* PMOVZXBQrm*/
0x7d8, /* PMOVZXBQrr*/
/* Table7262 */
0x7dd, /* PMOVZXWDrm*/
0x7de, /* PMOVZXWDrr*/
/* Table7263 */
0x7df, /* PMOVZXWQrm*/
0x7e0, /* PMOVZXWQrr*/
/* Table7264 */
0x7db, /* PMOVZXDQrm*/
0x7dc, /* PMOVZXDQrr*/
/* Table7265 */
0x750, /* PCMPGTQrm*/
0x751, /* PCMPGTQrr*/
/* Table7266 */
0x7bc, /* PMINSBrm*/
0x7bd, /* PMINSBrr*/
/* Table7267 */
0x7be, /* PMINSDrm*/
0x7bf, /* PMINSDrr*/
/* Table7268 */
0x7c6, /* PMINUWrm*/
0x7c7, /* PMINUWrr*/
/* Table7269 */
0x7c4, /* PMINUDrm*/
0x7c5, /* PMINUDrr*/
/* Table7270 */
0x7b0, /* PMAXSBrm*/
0x7b1, /* PMAXSBrr*/
/* Table7271 */
0x7b2, /* PMAXSDrm*/
0x7b3, /* PMAXSDrr*/
/* Table7272 */
0x7ba, /* PMAXUWrm*/
0x7bb, /* PMAXUWrr*/
/* Table7273 */
0x7b8, /* PMAXUDrm*/
0x7b9, /* PMAXUDrr*/
/* Table7274 */
0x7eb, /* PMULLDrm*/
0x7ec, /* PMULLDrr*/
/* Table7275 */
0x798, /* PHMINPOSUWrm128*/
0x799, /* PHMINPOSUWrr128*/
/* Table7276 */
0x39f, /* INVEPT64*/
0, /* PHI*/
/* Table7277 */
0x3a6, /* INVVPID64*/
0, /* PHI*/
/* Table7278 */
0x3a4, /* INVPCID64*/
0, /* PHI*/
/* Table7279 */
0xa7, /* AESIMCrm*/
0xa8, /* AESIMCrr*/
/* Table7280 */
0xa5, /* AESENCrm*/
0xa6, /* AESENCrr*/
/* Table7281 */
0xa3, /* AESENCLASTrm*/
0xa4, /* AESENCLASTrr*/
/* Table7282 */
0xa1, /* AESDECrm*/
0xa2, /* AESDECrr*/
/* Table7283 */
0x9f, /* AESDECLASTrm*/
0xa0, /* AESDECLASTrr*/
/* Table7284 */
0x602, /* MOVBE64rm*/
0, /* PHI*/
/* Table7285 */
0x601, /* MOVBE64mr*/
0, /* PHI*/
/* Table7286 */
0x45, /* ADCX64rm*/
0x46, /* ADCX64rr*/
/* Table7287 */
0xcd, /* ANDN32rm*/
0xce, /* ANDN32rr*/
/* Table7288 */
0, /* PHI*/
0x11c, /* BLSR32rm*/
0x118, /* BLSMSK32rm*/
0x114, /* BLSI32rm*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x11d, /* BLSR32rr*/
0x119, /* BLSMSK32rr*/
0x115, /* BLSI32rr*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
/* Table7289 */
0x160, /* BZHI32rm*/
0x161, /* BZHI32rr*/
/* Table7290 */
0x108, /* BEXTR32rm*/
0x109, /* BEXTR32rr*/
/* Table7291 */
0x760, /* PEXT32rm*/
0x761, /* PEXT32rr*/
/* Table7292 */
0x948, /* SARX32rm*/
0x949, /* SARX32rr*/
/* Table7293 */
0x75c, /* PDEP32rm*/
0x75d, /* PDEP32rr*/
/* Table7294 */
0x685, /* MULX32rm*/
0x686, /* MULX32rr*/
/* Table7295 */
0x9e7, /* SHRX32rm*/
0x9e8, /* SHRX32rr*/
/* Table7296 */
0x104d, /* VPSHUFBrm*/
0x104e, /* VPSHUFBrr*/
/* Table7297 */
0xf4d, /* VPHADDWrm*/
0xf4e, /* VPHADDWrr*/
/* Table7298 */
0xf35, /* VPHADDDrm*/
0xf36, /* VPHADDDrr*/
/* Table7299 */
0xf37, /* VPHADDSWrm128*/
0xf39, /* VPHADDSWrr128*/
/* Table7300 */
0xf84, /* VPMADDUBSWrm128*/
0xf86, /* VPMADDUBSWrr128*/
/* Table7301 */
0xf61, /* VPHSUBWrm*/
0xf62, /* VPHSUBWrr*/
/* Table7302 */
0xf57, /* VPHSUBDrm*/
0xf58, /* VPHSUBDrr*/
/* Table7303 */
0xf59, /* VPHSUBSWrm128*/
0xf5b, /* VPHSUBSWrr128*/
/* Table7304 */
0x105d, /* VPSIGNBrm*/
0x105e, /* VPSIGNBrr*/
/* Table7305 */
0x1065, /* VPSIGNWrm*/
0x1066, /* VPSIGNWrr*/
/* Table7306 */
0x1061, /* VPSIGNDrm*/
0x1062, /* VPSIGNDrr*/
/* Table7307 */
0xffc, /* VPMULHRSWrm128*/
0xffe, /* VPMULHRSWrr128*/
/* Table7308 */
0xf12, /* VPERMILPSrm*/
0xf13, /* VPERMILPSrr*/
/* Table7309 */
0xf0a, /* VPERMILPDrm*/
0xf0b, /* VPERMILPDrr*/
/* Table7310 */
0x1148, /* VTESTPSrm*/
0x1149, /* VTESTPSrr*/
/* Table7311 */
0x1144, /* VTESTPDrm*/
0x1145, /* VTESTPDrr*/
/* Table7312 */
0xb53, /* VCVTPH2PSrm*/
0xb54, /* VCVTPH2PSrr*/
/* Table7313 */
0x10d1, /* VPTESTrm*/
0x10d2, /* VPTESTrr*/
/* Table7314 */
0xb23, /* VBROADCASTSSrm*/
0xb24, /* VBROADCASTSSrr*/
/* Table7315 */
0xe3e, /* VPABSBrm128*/
0xe40, /* VPABSBrr128*/
/* Table7316 */
0xe46, /* VPABSWrm128*/
0xe48, /* VPABSWrr128*/
/* Table7317 */
0xe42, /* VPABSDrm128*/
0xe44, /* VPABSDrr128*/
/* Table7318 */
0xfd2, /* VPMOVSXBWrm*/
0xfd3, /* VPMOVSXBWrr*/
/* Table7319 */
0xfca, /* VPMOVSXBDrm*/
0xfcb, /* VPMOVSXBDrr*/
/* Table7320 */
0xfce, /* VPMOVSXBQrm*/
0xfcf, /* VPMOVSXBQrr*/
/* Table7321 */
0xfda, /* VPMOVSXWDrm*/
0xfdb, /* VPMOVSXWDrr*/
/* Table7322 */
0xfde, /* VPMOVSXWQrm*/
0xfdf, /* VPMOVSXWQrr*/
/* Table7323 */
0xfd6, /* VPMOVSXDQrm*/
0xfd7, /* VPMOVSXDQrr*/
/* Table7324 */
0xffa, /* VPMULDQrm*/
0xffb, /* VPMULDQrr*/
/* Table7325 */
0xebc, /* VPCMPEQQrm*/
0xebd, /* VPCMPEQQrr*/
/* Table7326 */
0xdd7, /* VMOVNTDQArm*/
0, /* PHI*/
/* Table7327 */
0xe54, /* VPACKUSDWrm*/
0xe55, /* VPACKUSDWrr*/
/* Table7328 */
0xd54, /* VMASKMOVPSrm*/
0, /* PHI*/
/* Table7329 */
0xd50, /* VMASKMOVPDrm*/
0, /* PHI*/
/* Table7330 */
0xd53, /* VMASKMOVPSmr*/
0, /* PHI*/
/* Table7331 */
0xd4f, /* VMASKMOVPDmr*/
0, /* PHI*/
/* Table7332 */
0xfea, /* VPMOVZXBWrm*/
0xfeb, /* VPMOVZXBWrr*/
/* Table7333 */
0xfe2, /* VPMOVZXBDrm*/
0xfe3, /* VPMOVZXBDrr*/
/* Table7334 */
0xfe6, /* VPMOVZXBQrm*/
0xfe7, /* VPMOVZXBQrr*/
/* Table7335 */
0xff2, /* VPMOVZXWDrm*/
0xff3, /* VPMOVZXWDrr*/
/* Table7336 */
0xff6, /* VPMOVZXWQrm*/
0xff7, /* VPMOVZXWQrr*/
/* Table7337 */
0xfee, /* VPMOVZXDQrm*/
0xfef, /* VPMOVZXDQrr*/
/* Table7338 */
0xed4, /* VPCMPGTQrm*/
0xed5, /* VPCMPGTQrr*/
/* Table7339 */
0xfae, /* VPMINSBrm*/
0xfaf, /* VPMINSBrr*/
/* Table7340 */
0xfb2, /* VPMINSDrm*/
0xfb3, /* VPMINSDrr*/
/* Table7341 */
0xfc2, /* VPMINUWrm*/
0xfc3, /* VPMINUWrr*/
/* Table7342 */
0xfbe, /* VPMINUDrm*/
0xfbf, /* VPMINUDrr*/
/* Table7343 */
0xf96, /* VPMAXSBrm*/
0xf97, /* VPMAXSBrr*/
/* Table7344 */
0xf9a, /* VPMAXSDrm*/
0xf9b, /* VPMAXSDrr*/
/* Table7345 */
0xfaa, /* VPMAXUWrm*/
0xfab, /* VPMAXUWrr*/
/* Table7346 */
0xfa6, /* VPMAXUDrm*/
0xfa7, /* VPMAXUDrr*/
/* Table7347 */
0x100a, /* VPMULLDrm*/
0x100b, /* VPMULLDrr*/
/* Table7348 */
0xf4f, /* VPHMINPOSUWrm128*/
0xf50, /* VPHMINPOSUWrr128*/
/* Table7349 */
0x10a3, /* VPSRLVDrm*/
0x10a4, /* VPSRLVDrr*/
/* Table7350 */
0x108b, /* VPSRAVDrm*/
0x108c, /* VPSRAVDrr*/
/* Table7351 */
0x1077, /* VPSLLVDrm*/
0x1078, /* VPSLLVDrr*/
/* Table7352 */
0xea0, /* VPBROADCASTDrm*/
0xea1, /* VPBROADCASTDrr*/
/* Table7353 */
0xea4, /* VPBROADCASTQrm*/
0xea5, /* VPBROADCASTQrr*/
/* Table7354 */
0xe9c, /* VPBROADCASTBrm*/
0xe9d, /* VPBROADCASTBrr*/
/* Table7355 */
0xea8, /* VPBROADCASTWrm*/
0xea9, /* VPBROADCASTWrr*/
/* Table7356 */
0xf8f, /* VPMASKMOVDrm*/
0, /* PHI*/
/* Table7357 */
0xf8e, /* VPMASKMOVDmr*/
0, /* PHI*/
/* Table7358 */
0xf24, /* VPGATHERDDrm*/
0, /* PHI*/
/* Table7359 */
0xf28, /* VPGATHERQDrm*/
0, /* PHI*/
/* Table7360 */
0xd2d, /* VGATHERDPSrm*/
0, /* PHI*/
/* Table7361 */
0xd31, /* VGATHERQPSrm*/
0, /* PHI*/
/* Table7362 */
0xc08, /* VFMADDSUBPSr132m*/
0xc0a, /* VFMADDSUBPSr132r*/
/* Table7363 */
0xc30, /* VFMSUBADDPSr132m*/
0xc32, /* VFMSUBADDPSr132r*/
/* Table7364 */
0xbc2, /* VFMADDPSr132m*/
0xbc4, /* VFMADDPSr132r*/
/* Table7365 */
0xbe4, /* VFMADDSSr132m*/
0xbe5, /* VFMADDSSr132r*/
/* Table7366 */
0xc58, /* VFMSUBPSr132m*/
0xc5a, /* VFMSUBPSr132r*/
/* Table7367 */
0xc7a, /* VFMSUBSSr132m*/
0xc7b, /* VFMSUBSSr132r*/
/* Table7368 */
0xc9e, /* VFNMADDPSr132m*/
0xca0, /* VFNMADDPSr132r*/
/* Table7369 */
0xcc0, /* VFNMADDSSr132m*/
0xcc1, /* VFNMADDSSr132r*/
/* Table7370 */
0xce4, /* VFNMSUBPSr132m*/
0xce6, /* VFNMSUBPSr132r*/
/* Table7371 */
0xd06, /* VFNMSUBSSr132m*/
0xd07, /* VFNMSUBSSr132r*/
/* Table7372 */
0xc0c, /* VFMADDSUBPSr213m*/
0xc0e, /* VFMADDSUBPSr213r*/
/* Table7373 */
0xc34, /* VFMSUBADDPSr213m*/
0xc36, /* VFMSUBADDPSr213r*/
/* Table7374 */
0xbc6, /* VFMADDPSr213m*/
0xbc8, /* VFMADDPSr213r*/
/* Table7375 */
0xbe6, /* VFMADDSSr213m*/
0xbe8, /* VFMADDSSr213r*/
/* Table7376 */
0xc5c, /* VFMSUBPSr213m*/
0xc5e, /* VFMSUBPSr213r*/
/* Table7377 */
0xc7c, /* VFMSUBSSr213m*/
0xc7e, /* VFMSUBSSr213r*/
/* Table7378 */
0xca2, /* VFNMADDPSr213m*/
0xca4, /* VFNMADDPSr213r*/
/* Table7379 */
0xcc2, /* VFNMADDSSr213m*/
0xcc4, /* VFNMADDSSr213r*/
/* Table7380 */
0xce8, /* VFNMSUBPSr213m*/
0xcea, /* VFNMSUBPSr213r*/
/* Table7381 */
0xd08, /* VFNMSUBSSr213m*/
0xd0a, /* VFNMSUBSSr213r*/
/* Table7382 */
0xc10, /* VFMADDSUBPSr231m*/
0xc12, /* VFMADDSUBPSr231r*/
/* Table7383 */
0xc38, /* VFMSUBADDPSr231m*/
0xc3a, /* VFMSUBADDPSr231r*/
/* Table7384 */
0xbca, /* VFMADDPSr231m*/
0xbcc, /* VFMADDPSr231r*/
/* Table7385 */
0xbea, /* VFMADDSSr231m*/
0xbeb, /* VFMADDSSr231r*/
/* Table7386 */
0xc60, /* VFMSUBPSr231m*/
0xc62, /* VFMSUBPSr231r*/
/* Table7387 */
0xc80, /* VFMSUBSSr231m*/
0xc81, /* VFMSUBSSr231r*/
/* Table7388 */
0xca6, /* VFNMADDPSr231m*/
0xca8, /* VFNMADDPSr231r*/
/* Table7389 */
0xcc6, /* VFNMADDSSr231m*/
0xcc7, /* VFNMADDSSr231r*/
/* Table7390 */
0xcec, /* VFNMSUBPSr231m*/
0xcee, /* VFNMSUBPSr231r*/
/* Table7391 */
0xd0c, /* VFNMSUBSSr231m*/
0xd0d, /* VFNMSUBSSr231r*/
/* Table7392 */
0xaf8, /* VAESIMCrm*/
0xaf9, /* VAESIMCrr*/
/* Table7393 */
0xaf6, /* VAESENCrm*/
0xaf7, /* VAESENCrr*/
/* Table7394 */
0xaf4, /* VAESENCLASTrm*/
0xaf5, /* VAESENCLASTrr*/
/* Table7395 */
0xaf2, /* VAESDECrm*/
0xaf3, /* VAESDECrr*/
/* Table7396 */
0xaf0, /* VAESDECLASTrm*/
0xaf1, /* VAESDECLASTrr*/
/* Table7397 */
0x9bf, /* SHLX32rm*/
0x9c0, /* SHLX32rr*/
/* Table7398 */
0xcf, /* ANDN64rm*/
0xd0, /* ANDN64rr*/
/* Table7399 */
0, /* PHI*/
0x11e, /* BLSR64rm*/
0x11a, /* BLSMSK64rm*/
0x116, /* BLSI64rm*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0x11f, /* BLSR64rr*/
0x11b, /* BLSMSK64rr*/
0x117, /* BLSI64rr*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
0, /* PHI*/
/* Table7400 */
0x162, /* BZHI64rm*/
0x163, /* BZHI64rr*/
/* Table7401 */
0x10a, /* BEXTR64rm*/
0x10b, /* BEXTR64rr*/
/* Table7402 */
0x762, /* PEXT64rm*/
0x763, /* PEXT64rr*/
/* Table7403 */
0x94a, /* SARX64rm*/
0x94b, /* SARX64rr*/
/* Table7404 */
0x75e, /* PDEP64rm*/
0x75f, /* PDEP64rr*/
/* Table7405 */
0x687, /* MULX64rm*/
0x688, /* MULX64rr*/
/* Table7406 */
0x9e9, /* SHRX64rm*/
0x9ea, /* SHRX64rr*/
/* Table7407 */
0x104d, /* VPSHUFBrm*/
0x104e, /* VPSHUFBrr*/
/* Table7408 */
0xf4d, /* VPHADDWrm*/
0xf4e, /* VPHADDWrr*/
/* Table7409 */
0xf35, /* VPHADDDrm*/
0xf36, /* VPHADDDrr*/
/* Table7410 */
0xf37, /* VPHADDSWrm128*/
0xf39, /* VPHADDSWrr128*/
/* Table7411 */
0xf84, /* VPMADDUBSWrm128*/
0xf86, /* VPMADDUBSWrr128*/
/* Table7412 */
0xf61, /* VPHSUBWrm*/
0xf62, /* VPHSUBWrr*/
/* Table7413 */
0xf57, /* VPHSUBDrm*/
0xf58, /* VPHSUBDrr*/
/* Table7414 */
0xf59, /* VPHSUBSWrm128*/
0xf5b, /* VPHSUBSWrr128*/
/* Table7415 */
0x105d, /* VPSIGNBrm*/
0x105e, /* VPSIGNBrr*/
/* Table7416 */
0x1065, /* VPSIGNWrm*/
0x1066, /* VPSIGNWrr*/
/* Table7417 */
0x1061, /* VPSIGNDrm*/
0x1062, /* VPSIGNDrr*/
/* Table7418 */
0xffc, /* VPMULHRSWrm128*/
0xffe, /* VPMULHRSWrr128*/
/* Table7419 */
0xf12, /* VPERMILPSrm*/
0xf13, /* VPERMILPSrr*/
/* Table7420 */
0xf0a, /* VPERMILPDrm*/
0xf0b, /* VPERMILPDrr*/
/* Table7421 */
0x1148, /* VTESTPSrm*/
0x1149, /* VTESTPSrr*/
/* Table7422 */
0x1144, /* VTESTPDrm*/
0x1145, /* VTESTPDrr*/
/* Table7423 */
0xb53, /* VCVTPH2PSrm*/
0xb54, /* VCVTPH2PSrr*/
/* Table7424 */
0x10d1, /* VPTESTrm*/
0x10d2, /* VPTESTrr*/
/* Table7425 */
0xb23, /* VBROADCASTSSrm*/
0xb24, /* VBROADCASTSSrr*/
/* Table7426 */
0xe3e, /* VPABSBrm128*/
0xe40, /* VPABSBrr128*/
/* Table7427 */
0xe46, /* VPABSWrm128*/
0xe48, /* VPABSWrr128*/
/* Table7428 */
0xe42, /* VPABSDrm128*/
0xe44, /* VPABSDrr128*/
/* Table7429 */
0xfd2, /* VPMOVSXBWrm*/
0xfd3, /* VPMOVSXBWrr*/
/* Table7430 */
0xfca, /* VPMOVSXBDrm*/
0xfcb, /* VPMOVSXBDrr*/
/* Table7431 */
0xfce, /* VPMOVSXBQrm*/
0xfcf, /* VPMOVSXBQrr*/
/* Table7432 */
0xfda, /* VPMOVSXWDrm*/
0xfdb, /* VPMOVSXWDrr*/
/* Table7433 */
0xfde, /* VPMOVSXWQrm*/
0xfdf, /* VPMOVSXWQrr*/
/* Table7434 */
0xfd6, /* VPMOVSXDQrm*/
0xfd7, /* VPMOVSXDQrr*/
/* Table7435 */
0xffa, /* VPMULDQrm*/
0xffb, /* VPMULDQrr*/
/* Table7436 */
0xebc, /* VPCMPEQQrm*/
0xebd, /* VPCMPEQQrr*/
/* Table7437 */
0xdd7, /* VMOVNTDQArm*/
0, /* PHI*/
/* Table7438 */
0xe54, /* VPACKUSDWrm*/
0xe55, /* VPACKUSDWrr*/
/* Table7439 */
0xd54, /* VMASKMOVPSrm*/
0, /* PHI*/
/* Table7440 */
0xd50, /* VMASKMOVPDrm*/
0, /* PHI*/
/* Table7441 */
0xd53, /* VMASKMOVPSmr*/
0, /* PHI*/
/* Table7442 */
0xd4f, /* VMASKMOVPDmr*/
0, /* PHI*/
/* Table7443 */
0xfea, /* VPMOVZXBWrm*/
0xfeb, /* VPMOVZXBWrr*/
/* Table7444 */
0xfe2, /* VPMOVZXBDrm*/
0xfe3, /* VPMOVZXBDrr*/
/* Table7445 */
0xfe6, /* VPMOVZXBQrm*/
0xfe7, /* VPMOVZXBQrr*/
/* Table7446 */
0xff2, /* VPMOVZXWDrm*/
0xff3, /* VPMOVZXWDrr*/
/* Table7447 */
0xff6, /* VPMOVZXWQrm*/
0xff7, /* VPMOVZXWQrr*/
/* Table7448 */
0xfee, /* VPMOVZXDQrm*/
0xfef, /* VPMOVZXDQrr*/
/* Table7449 */
0xed4, /* VPCMPGTQrm*/
0xed5, /* VPCMPGTQrr*/
/* Table7450 */
0xfae, /* VPMINSBrm*/
0xfaf, /* VPMINSBrr*/
/* Table7451 */
0xfb2, /* VPMINSDrm*/
0xfb3, /* VPMINSDrr*/
/* Table7452 */
0xfc2, /* VPMINUWrm*/
0xfc3, /* VPMINUWrr*/
/* Table7453 */
0xfbe, /* VPMINUDrm*/
0xfbf, /* VPMINUDrr*/
/* Table7454 */
0xf96, /* VPMAXSBrm*/
0xf97, /* VPMAXSBrr*/
/* Table7455 */
0xf9a, /* VPMAXSDrm*/
0xf9b, /* VPMAXSDrr*/
/* Table7456 */
0xfaa, /* VPMAXUWrm*/
0xfab, /* VPMAXUWrr*/
/* Table7457 */
0xfa6, /* VPMAXUDrm*/
0xfa7, /* VPMAXUDrr*/
/* Table7458 */
0x100a, /* VPMULLDrm*/
0x100b, /* VPMULLDrr*/
/* Table7459 */
0xf4f, /* VPHMINPOSUWrm128*/
0xf50, /* VPHMINPOSUWrr128*/
/* Table7460 */
0x10a7, /* VPSRLVQrm*/
0x10a8, /* VPSRLVQrr*/
/* Table7461 */
0x108b, /* VPSRAVDrm*/
0x108c, /* VPSRAVDrr*/
/* Table7462 */
0x107b, /* VPSLLVQrm*/
0x107c, /* VPSLLVQrr*/
/* Table7463 */
0xea0, /* VPBROADCASTDrm*/
0xea1, /* VPBROADCASTDrr*/
/* Table7464 */
0xea4, /* VPBROADCASTQrm*/
0xea5, /* VPBROADCASTQrr*/
/* Table7465 */
0xe9c, /* VPBROADCASTBrm*/
0xe9d, /* VPBROADCASTBrr*/
/* Table7466 */
0xea8, /* VPBROADCASTWrm*/
0xea9, /* VPBROADCASTWrr*/
/* Table7467 */
0xf93, /* VPMASKMOVQrm*/
0, /* PHI*/
/* Table7468 */
0xf92, /* VPMASKMOVQmr*/
0, /* PHI*/
/* Table7469 */
0xf26, /* VPGATHERDQrm*/
0, /* PHI*/
/* Table7470 */
0xf2a, /* VPGATHERQQrm*/
0, /* PHI*/
/* Table7471 */
0xd2b, /* VGATHERDPDrm*/
0, /* PHI*/
/* Table7472 */
0xd2f, /* VGATHERQPDrm*/
0, /* PHI*/
/* Table7473 */
0xbf4, /* VFMADDSUBPDr132m*/
0xbf6, /* VFMADDSUBPDr132r*/
/* Table7474 */
0xc1c, /* VFMSUBADDPDr132m*/
0xc1e, /* VFMSUBADDPDr132r*/
/* Table7475 */
0xbae, /* VFMADDPDr132m*/
0xbb0, /* VFMADDPDr132r*/
/* Table7476 */
0xbd5, /* VFMADDSDr132m*/
0xbd6, /* VFMADDSDr132r*/
/* Table7477 */
0xc44, /* VFMSUBPDr132m*/
0xc46, /* VFMSUBPDr132r*/
/* Table7478 */
0xc6b, /* VFMSUBSDr132m*/
0xc6c, /* VFMSUBSDr132r*/
/* Table7479 */
0xc8a, /* VFNMADDPDr132m*/
0xc8c, /* VFNMADDPDr132r*/
/* Table7480 */
0xcb1, /* VFNMADDSDr132m*/
0xcb2, /* VFNMADDSDr132r*/
/* Table7481 */
0xcd0, /* VFNMSUBPDr132m*/
0xcd2, /* VFNMSUBPDr132r*/
/* Table7482 */
0xcf7, /* VFNMSUBSDr132m*/
0xcf8, /* VFNMSUBSDr132r*/
/* Table7483 */
0xbf8, /* VFMADDSUBPDr213m*/
0xbfa, /* VFMADDSUBPDr213r*/
/* Table7484 */
0xc20, /* VFMSUBADDPDr213m*/
0xc22, /* VFMSUBADDPDr213r*/
/* Table7485 */
0xbb2, /* VFMADDPDr213m*/
0xbb4, /* VFMADDPDr213r*/
/* Table7486 */
0xbd7, /* VFMADDSDr213m*/
0xbd9, /* VFMADDSDr213r*/
/* Table7487 */
0xc48, /* VFMSUBPDr213m*/
0xc4a, /* VFMSUBPDr213r*/
/* Table7488 */
0xc6d, /* VFMSUBSDr213m*/
0xc6f, /* VFMSUBSDr213r*/
/* Table7489 */
0xc8e, /* VFNMADDPDr213m*/
0xc90, /* VFNMADDPDr213r*/
/* Table7490 */
0xcb3, /* VFNMADDSDr213m*/
0xcb5, /* VFNMADDSDr213r*/
/* Table7491 */
0xcd4, /* VFNMSUBPDr213m*/
0xcd6, /* VFNMSUBPDr213r*/
/* Table7492 */
0xcf9, /* VFNMSUBSDr213m*/
0xcfb, /* VFNMSUBSDr213r*/
/* Table7493 */
0xbfc, /* VFMADDSUBPDr231m*/
0xbfe, /* VFMADDSUBPDr231r*/
/* Table7494 */
0xc24, /* VFMSUBADDPDr231m*/
0xc26, /* VFMSUBADDPDr231r*/
/* Table7495 */
0xbb6, /* VFMADDPDr231m*/
0xbb8, /* VFMADDPDr231r*/
/* Table7496 */
0xbdb, /* VFMADDSDr231m*/
0xbdc, /* VFMADDSDr231r*/
/* Table7497 */
0xc4c, /* VFMSUBPDr231m*/
0xc4e, /* VFMSUBPDr231r*/
/* Table7498 */
0xc71, /* VFMSUBSDr231m*/
0xc72, /* VFMSUBSDr231r*/
/* Table7499 */
0xc92, /* VFNMADDPDr231m*/
0xc94, /* VFNMADDPDr231r*/
/* Table7500 */
0xcb7, /* VFNMADDSDr231m*/
0xcb8, /* VFNMADDSDr231r*/
/* Table7501 */
0xcd8, /* VFNMSUBPDr231m*/
0xcda, /* VFNMSUBPDr231r*/
/* Table7502 */
0xcfd, /* VFNMSUBSDr231m*/
0xcfe, /* VFNMSUBSDr231r*/
/* Table7503 */
0xaf8, /* VAESIMCrm*/
0xaf9, /* VAESIMCrr*/
/* Table7504 */
0xaf6, /* VAESENCrm*/
0xaf7, /* VAESENCrr*/
/* Table7505 */
0xaf4, /* VAESENCLASTrm*/
0xaf5, /* VAESENCLASTrr*/
/* Table7506 */
0xaf2, /* VAESDECrm*/
0xaf3, /* VAESDECrr*/
/* Table7507 */
0xaf0, /* VAESDECLASTrm*/
0xaf1, /* VAESDECLASTrr*/
/* Table7508 */
0x9c1, /* SHLX64rm*/
0x9c2, /* SHLX64rr*/
/* Table7509 */
0x104b, /* VPSHUFBYrm*/
0x104c, /* VPSHUFBYrr*/
/* Table7510 */
0xf4b, /* VPHADDWYrm*/
0xf4c, /* VPHADDWYrr*/
/* Table7511 */
0xf33, /* VPHADDDYrm*/
0xf34, /* VPHADDDYrr*/
/* Table7512 */
0xf38, /* VPHADDSWrm256*/
0xf3a, /* VPHADDSWrr256*/
/* Table7513 */
0xf85, /* VPMADDUBSWrm256*/
0xf87, /* VPMADDUBSWrr256*/
/* Table7514 */
0xf5f, /* VPHSUBWYrm*/
0xf60, /* VPHSUBWYrr*/
/* Table7515 */
0xf55, /* VPHSUBDYrm*/
0xf56, /* VPHSUBDYrr*/
/* Table7516 */
0xf5a, /* VPHSUBSWrm256*/
0xf5c, /* VPHSUBSWrr256*/
/* Table7517 */
0x105b, /* VPSIGNBYrm*/
0x105c, /* VPSIGNBYrr*/
/* Table7518 */
0x1063, /* VPSIGNWYrm*/
0x1064, /* VPSIGNWYrr*/
/* Table7519 */
0x105f, /* VPSIGNDYrm*/
0x1060, /* VPSIGNDYrr*/
/* Table7520 */
0xffd, /* VPMULHRSWrm256*/
0xfff, /* VPMULHRSWrr256*/
/* Table7521 */
0xf0e, /* VPERMILPSYrm*/
0xf0f, /* VPERMILPSYrr*/
/* Table7522 */
0xf06, /* VPERMILPDYrm*/
0xf07, /* VPERMILPDYrr*/
/* Table7523 */
0x1146, /* VTESTPSYrm*/
0x1147, /* VTESTPSYrr*/
/* Table7524 */
0x1142, /* VTESTPDYrm*/
0x1143, /* VTESTPDYrr*/
/* Table7525 */
0xb51, /* VCVTPH2PSYrm*/
0xb52, /* VCVTPH2PSYrr*/
/* Table7526 */
0xf16, /* VPERMPSYrm*/
0xf17, /* VPERMPSYrr*/
/* Table7527 */
0x10cf, /* VPTESTYrm*/
0x10d0, /* VPTESTYrr*/
/* Table7528 */
0xb21, /* VBROADCASTSSYrm*/
0xb22, /* VBROADCASTSSYrr*/
/* Table7529 */
0xb1f, /* VBROADCASTSDYrm*/
0xb20, /* VBROADCASTSDYrr*/
/* Table7530 */
0xb1d, /* VBROADCASTF128*/
0, /* PHI*/
/* Table7531 */
0xe3f, /* VPABSBrm256*/
0xe41, /* VPABSBrr256*/
/* Table7532 */
0xe47, /* VPABSWrm256*/
0xe49, /* VPABSWrr256*/
/* Table7533 */
0xe43, /* VPABSDrm256*/
0xe45, /* VPABSDrr256*/
/* Table7534 */
0xfd0, /* VPMOVSXBWYrm*/
0xfd1, /* VPMOVSXBWYrr*/
/* Table7535 */
0xfc8, /* VPMOVSXBDYrm*/
0xfc9, /* VPMOVSXBDYrr*/
/* Table7536 */
0xfcc, /* VPMOVSXBQYrm*/
0xfcd, /* VPMOVSXBQYrr*/
/* Table7537 */
0xfd8, /* VPMOVSXWDYrm*/
0xfd9, /* VPMOVSXWDYrr*/
/* Table7538 */
0xfdc, /* VPMOVSXWQYrm*/
0xfdd, /* VPMOVSXWQYrr*/
/* Table7539 */
0xfd4, /* VPMOVSXDQYrm*/
0xfd5, /* VPMOVSXDQYrr*/
/* Table7540 */
0xff8, /* VPMULDQYrm*/
0xff9, /* VPMULDQYrr*/
/* Table7541 */
0xeba, /* VPCMPEQQYrm*/
0xebb, /* VPCMPEQQYrr*/
/* Table7542 */
0xdd6, /* VMOVNTDQAYrm*/
0, /* PHI*/
/* Table7543 */
0xe52, /* VPACKUSDWYrm*/
0xe53, /* VPACKUSDWYrr*/
/* Table7544 */
0xd52, /* VMASKMOVPSYrm*/
0, /* PHI*/
/* Table7545 */
0xd4e, /* VMASKMOVPDYrm*/
0, /* PHI*/
/* Table7546 */
0xd51, /* VMASKMOVPSYmr*/
0, /* PHI*/
/* Table7547 */
0xd4d, /* VMASKMOVPDYmr*/
0, /* PHI*/
/* Table7548 */
0xfe8, /* VPMOVZXBWYrm*/
0xfe9, /* VPMOVZXBWYrr*/
/* Table7549 */
0xfe0, /* VPMOVZXBDYrm*/
0xfe1, /* VPMOVZXBDYrr*/
/* Table7550 */
0xfe4, /* VPMOVZXBQYrm*/
0xfe5, /* VPMOVZXBQYrr*/
/* Table7551 */
0xff0, /* VPMOVZXWDYrm*/
0xff1, /* VPMOVZXWDYrr*/
/* Table7552 */
0xff4, /* VPMOVZXWQYrm*/
0xff5, /* VPMOVZXWQYrr*/
/* Table7553 */
0xfec, /* VPMOVZXDQYrm*/
0xfed, /* VPMOVZXDQYrr*/
/* Table7554 */
0xef6, /* VPERMDYrm*/
0xef7, /* VPERMDYrr*/
/* Table7555 */
0xed2, /* VPCMPGTQYrm*/
0xed3, /* VPCMPGTQYrr*/
/* Table7556 */
0xfac, /* VPMINSBYrm*/
0xfad, /* VPMINSBYrr*/
/* Table7557 */
0xfb0, /* VPMINSDYrm*/
0xfb1, /* VPMINSDYrr*/
/* Table7558 */
0xfc0, /* VPMINUWYrm*/
0xfc1, /* VPMINUWYrr*/
/* Table7559 */
0xfbc, /* VPMINUDYrm*/
0xfbd, /* VPMINUDYrr*/
/* Table7560 */
0xf94, /* VPMAXSBYrm*/
0xf95, /* VPMAXSBYrr*/
/* Table7561 */
0xf98, /* VPMAXSDYrm*/
0xf99, /* VPMAXSDYrr*/
/* Table7562 */
0xfa8, /* VPMAXUWYrm*/
0xfa9, /* VPMAXUWYrr*/
/* Table7563 */
0xfa4, /* VPMAXUDYrm*/
0xfa5, /* VPMAXUDYrr*/
/* Table7564 */
0x1008, /* VPMULLDYrm*/
0x1009, /* VPMULLDYrr*/
/* Table7565 */
0x10a1, /* VPSRLVDYrm*/
0x10a2, /* VPSRLVDYrr*/
/* Table7566 */
0x1089, /* VPSRAVDYrm*/
0x108a, /* VPSRAVDYrr*/
/* Table7567 */
0x1075, /* VPSLLVDYrm*/
0x1076, /* VPSLLVDYrr*/
/* Table7568 */
0xe9e, /* VPBROADCASTDYrm*/
0xe9f, /* VPBROADCASTDYrr*/
/* Table7569 */
0xea2, /* VPBROADCASTQYrm*/
0xea3, /* VPBROADCASTQYrr*/
/* Table7570 */
0xb1e, /* VBROADCASTI128*/
0, /* PHI*/
/* Table7571 */
0xe9a, /* VPBROADCASTBYrm*/
0xe9b, /* VPBROADCASTBYrr*/
/* Table7572 */
0xea6, /* VPBROADCASTWYrm*/
0xea7, /* VPBROADCASTWYrr*/
/* Table7573 */
0xf8d, /* VPMASKMOVDYrm*/
0, /* PHI*/
/* Table7574 */
0xf8c, /* VPMASKMOVDYmr*/
0, /* PHI*/
/* Table7575 */
0xf23, /* VPGATHERDDYrm*/
0, /* PHI*/
/* Table7576 */
0xf27, /* VPGATHERQDYrm*/
0, /* PHI*/
/* Table7577 */
0xd2c, /* VGATHERDPSYrm*/
0, /* PHI*/
/* Table7578 */
0xd30, /* VGATHERQPSYrm*/
0, /* PHI*/
/* Table7579 */
0xc09, /* VFMADDSUBPSr132mY*/
0xc0b, /* VFMADDSUBPSr132rY*/
/* Table7580 */
0xc31, /* VFMSUBADDPSr132mY*/
0xc33, /* VFMSUBADDPSr132rY*/
/* Table7581 */
0xbc3, /* VFMADDPSr132mY*/
0xbc5, /* VFMADDPSr132rY*/
/* Table7582 */
0xbe4, /* VFMADDSSr132m*/
0xbe5, /* VFMADDSSr132r*/
/* Table7583 */
0xc59, /* VFMSUBPSr132mY*/
0xc5b, /* VFMSUBPSr132rY*/
/* Table7584 */
0xc7a, /* VFMSUBSSr132m*/
0xc7b, /* VFMSUBSSr132r*/
/* Table7585 */
0xc9f, /* VFNMADDPSr132mY*/
0xca1, /* VFNMADDPSr132rY*/
/* Table7586 */
0xcc0, /* VFNMADDSSr132m*/
0xcc1, /* VFNMADDSSr132r*/
/* Table7587 */
0xce5, /* VFNMSUBPSr132mY*/
0xce7, /* VFNMSUBPSr132rY*/
/* Table7588 */
0xd06, /* VFNMSUBSSr132m*/
0xd07, /* VFNMSUBSSr132r*/
/* Table7589 */
0xc0d, /* VFMADDSUBPSr213mY*/
0xc0f, /* VFMADDSUBPSr213rY*/
/* Table7590 */
0xc35, /* VFMSUBADDPSr213mY*/
0xc37, /* VFMSUBADDPSr213rY*/
/* Table7591 */
0xbc7, /* VFMADDPSr213mY*/
0xbc9, /* VFMADDPSr213rY*/
/* Table7592 */
0xbe6, /* VFMADDSSr213m*/
0xbe8, /* VFMADDSSr213r*/
/* Table7593 */
0xc5d, /* VFMSUBPSr213mY*/
0xc5f, /* VFMSUBPSr213rY*/
/* Table7594 */
0xc7c, /* VFMSUBSSr213m*/
0xc7e, /* VFMSUBSSr213r*/
/* Table7595 */
0xca3, /* VFNMADDPSr213mY*/
0xca5, /* VFNMADDPSr213rY*/
/* Table7596 */
0xcc2, /* VFNMADDSSr213m*/
0xcc4, /* VFNMADDSSr213r*/
/* Table7597 */
0xce9, /* VFNMSUBPSr213mY*/
0xceb, /* VFNMSUBPSr213rY*/
/* Table7598 */
0xd08, /* VFNMSUBSSr213m*/
0xd0a, /* VFNMSUBSSr213r*/
/* Table7599 */
0xc11, /* VFMADDSUBPSr231mY*/
0xc13, /* VFMADDSUBPSr231rY*/
/* Table7600 */
0xc39, /* VFMSUBADDPSr231mY*/
0xc3b, /* VFMSUBADDPSr231rY*/
/* Table7601 */
0xbcb, /* VFMADDPSr231mY*/
0xbcd, /* VFMADDPSr231rY*/
/* Table7602 */
0xbea, /* VFMADDSSr231m*/
0xbeb, /* VFMADDSSr231r*/
/* Table7603 */
0xc61, /* VFMSUBPSr231mY*/
0xc63, /* VFMSUBPSr231rY*/
/* Table7604 */
0xc80, /* VFMSUBSSr231m*/
0xc81, /* VFMSUBSSr231r*/
/* Table7605 */
0xca7, /* VFNMADDPSr231mY*/
0xca9, /* VFNMADDPSr231rY*/
/* Table7606 */
0xcc6, /* VFNMADDSSr231m*/
0xcc7, /* VFNMADDSSr231r*/
/* Table7607 */
0xced, /* VFNMSUBPSr231mY*/
0xcef, /* VFNMSUBPSr231rY*/
/* Table7608 */
0xd0c, /* VFNMSUBSSr231m*/
0xd0d, /* VFNMSUBSSr231r*/
/* Table7609 */
0x104b, /* VPSHUFBYrm*/
0x104c, /* VPSHUFBYrr*/
/* Table7610 */
0xf4b, /* VPHADDWYrm*/
0xf4c, /* VPHADDWYrr*/
/* Table7611 */
0xf33, /* VPHADDDYrm*/
0xf34, /* VPHADDDYrr*/
/* Table7612 */
0xf38, /* VPHADDSWrm256*/
0xf3a, /* VPHADDSWrr256*/
/* Table7613 */
0xf85, /* VPMADDUBSWrm256*/
0xf87, /* VPMADDUBSWrr256*/
/* Table7614 */
0xf5f, /* VPHSUBWYrm*/
0xf60, /* VPHSUBWYrr*/
/* Table7615 */
0xf55, /* VPHSUBDYrm*/
0xf56, /* VPHSUBDYrr*/
/* Table7616 */
0xf5a, /* VPHSUBSWrm256*/
0xf5c, /* VPHSUBSWrr256*/
/* Table7617 */
0x105b, /* VPSIGNBYrm*/
0x105c, /* VPSIGNBYrr*/
/* Table7618 */
0x1063, /* VPSIGNWYrm*/
0x1064, /* VPSIGNWYrr*/
/* Table7619 */
0x105f, /* VPSIGNDYrm*/
0x1060, /* VPSIGNDYrr*/
/* Table7620 */
0xffd, /* VPMULHRSWrm256*/
0xfff, /* VPMULHRSWrr256*/
/* Table7621 */
0xf0e, /* VPERMILPSYrm*/
0xf0f, /* VPERMILPSYrr*/
/* Table7622 */
0xf06, /* VPERMILPDYrm*/
0xf07, /* VPERMILPDYrr*/
/* Table7623 */
0x1146, /* VTESTPSYrm*/
0x1147, /* VTESTPSYrr*/
/* Table7624 */
0x1142, /* VTESTPDYrm*/
0x1143, /* VTESTPDYrr*/
/* Table7625 */
0xb51, /* VCVTPH2PSYrm*/
0xb52, /* VCVTPH2PSYrr*/
/* Table7626 */
0xf16, /* VPERMPSYrm*/
0xf17, /* VPERMPSYrr*/
/* Table7627 */
0x10cf, /* VPTESTYrm*/
0x10d0, /* VPTESTYrr*/
/* Table7628 */
0xb21, /* VBROADCASTSSYrm*/
0xb22, /* VBROADCASTSSYrr*/
/* Table7629 */
0xb1f, /* VBROADCASTSDYrm*/
0xb20, /* VBROADCASTSDYrr*/
/* Table7630 */
0xb1d, /* VBROADCASTF128*/
0, /* PHI*/
/* Table7631 */
0xe3f, /* VPABSBrm256*/
0xe41, /* VPABSBrr256*/
/* Table7632 */
0xe47, /* VPABSWrm256*/
0xe49, /* VPABSWrr256*/
/* Table7633 */
0xe43, /* VPABSDrm256*/
0xe45, /* VPABSDrr256*/
/* Table7634 */
0xfd0, /* VPMOVSXBWYrm*/
0xfd1, /* VPMOVSXBWYrr*/
/* Table7635 */
0xfc8, /* VPMOVSXBDYrm*/
0xfc9, /* VPMOVSXBDYrr*/
/* Table7636 */
0xfcc, /* VPMOVSXBQYrm*/
0xfcd, /* VPMOVSXBQYrr*/
/* Table7637 */
0xfd8, /* VPMOVSXWDYrm*/
0xfd9, /* VPMOVSXWDYrr*/
/* Table7638 */
0xfdc, /* VPMOVSXWQYrm*/
0xfdd, /* VPMOVSXWQYrr*/
/* Table7639 */
0xfd4, /* VPMOVSXDQYrm*/
0xfd5, /* VPMOVSXDQYrr*/
/* Table7640 */
0xff8, /* VPMULDQYrm*/
0xff9, /* VPMULDQYrr*/
/* Table7641 */
0xeba, /* VPCMPEQQYrm*/
0xebb, /* VPCMPEQQYrr*/
/* Table7642 */
0xdd6, /* VMOVNTDQAYrm*/
0, /* PHI*/
/* Table7643 */
0xe52, /* VPACKUSDWYrm*/
0xe53, /* VPACKUSDWYrr*/
/* Table7644 */
0xd52, /* VMASKMOVPSYrm*/
0, /* PHI*/
/* Table7645 */
0xd4e, /* VMASKMOVPDYrm*/
0, /* PHI*/
/* Table7646 */
0xd51, /* VMASKMOVPSYmr*/
0, /* PHI*/
/* Table7647 */
0xd4d, /* VMASKMOVPDYmr*/
0, /* PHI*/
/* Table7648 */
0xfe8, /* VPMOVZXBWYrm*/
0xfe9, /* VPMOVZXBWYrr*/
/* Table7649 */
0xfe0, /* VPMOVZXBDYrm*/
0xfe1, /* VPMOVZXBDYrr*/
/* Table7650 */
0xfe4, /* VPMOVZXBQYrm*/
0xfe5, /* VPMOVZXBQYrr*/
/* Table7651 */
0xff0, /* VPMOVZXWDYrm*/
0xff1, /* VPMOVZXWDYrr*/
/* Table7652 */
0xff4, /* VPMOVZXWQYrm*/
0xff5, /* VPMOVZXWQYrr*/
/* Table7653 */
0xfec, /* VPMOVZXDQYrm*/
0xfed, /* VPMOVZXDQYrr*/
/* Table7654 */
0xef6, /* VPERMDYrm*/
0xef7, /* VPERMDYrr*/
/* Table7655 */
0xed2, /* VPCMPGTQYrm*/
0xed3, /* VPCMPGTQYrr*/
/* Table7656 */
0xfac, /* VPMINSBYrm*/
0xfad, /* VPMINSBYrr*/
/* Table7657 */
0xfb0, /* VPMINSDYrm*/
0xfb1, /* VPMINSDYrr*/
/* Table7658 */
0xfc0, /* VPMINUWYrm*/
0xfc1, /* VPMINUWYrr*/
/* Table7659 */
0xfbc, /* VPMINUDYrm*/
0xfbd, /* VPMINUDYrr*/
/* Table7660 */
0xf94, /* VPMAXSBYrm*/
0xf95, /* VPMAXSBYrr*/
/* Table7661 */
0xf98, /* VPMAXSDYrm*/
0xf99, /* VPMAXSDYrr*/
/* Table7662 */
0xfa8, /* VPMAXUWYrm*/
0xfa9, /* VPMAXUWYrr*/
/* Table7663 */
0xfa4, /* VPMAXUDYrm*/
0xfa5, /* VPMAXUDYrr*/
/* Table7664 */
0x1008, /* VPMULLDYrm*/
0x1009, /* VPMULLDYrr*/
/* Table7665 */
0x10a5, /* VPSRLVQYrm*/
0x10a6, /* VPSRLVQYrr*/
/* Table7666 */
0x1089, /* VPSRAVDYrm*/
0x108a, /* VPSRAVDYrr*/
/* Table7667 */
0x1079, /* VPSLLVQYrm*/
0x107a, /* VPSLLVQYrr*/
/* Table7668 */
0xe9e, /* VPBROADCASTDYrm*/
0xe9f, /* VPBROADCASTDYrr*/
/* Table7669 */
0xea2, /* VPBROADCASTQYrm*/
0xea3, /* VPBROADCASTQYrr*/
/* Table7670 */
0xb1e, /* VBROADCASTI128*/
0, /* PHI*/
/* Table7671 */
0xe9a, /* VPBROADCASTBYrm*/
0xe9b, /* VPBROADCASTBYrr*/
/* Table7672 */
0xea6, /* VPBROADCASTWYrm*/
0xea7, /* VPBROADCASTWYrr*/
/* Table7673 */
0xf91, /* VPMASKMOVQYrm*/
0, /* PHI*/
/* Table7674 */
0xf90, /* VPMASKMOVQYmr*/
0, /* PHI*/
/* Table7675 */
0xf25, /* VPGATHERDQYrm*/
0, /* PHI*/
/* Table7676 */
0xf29, /* VPGATHERQQYrm*/
0, /* PHI*/
/* Table7677 */
0xd2a, /* VGATHERDPDYrm*/
0, /* PHI*/
/* Table7678 */
0xd2e, /* VGATHERQPDYrm*/
0, /* PHI*/
/* Table7679 */
0xbf5, /* VFMADDSUBPDr132mY*/
0xbf7, /* VFMADDSUBPDr132rY*/
/* Table7680 */
0xc1d, /* VFMSUBADDPDr132mY*/
0xc1f, /* VFMSUBADDPDr132rY*/
/* Table7681 */
0xbaf, /* VFMADDPDr132mY*/
0xbb1, /* VFMADDPDr132rY*/
/* Table7682 */
0xbe4, /* VFMADDSSr132m*/
0xbe5, /* VFMADDSSr132r*/
/* Table7683 */
0xc45, /* VFMSUBPDr132mY*/
0xc47, /* VFMSUBPDr132rY*/
/* Table7684 */
0xc7a, /* VFMSUBSSr132m*/
0xc7b, /* VFMSUBSSr132r*/
/* Table7685 */
0xc8b, /* VFNMADDPDr132mY*/
0xc8d, /* VFNMADDPDr132rY*/
/* Table7686 */
0xcc0, /* VFNMADDSSr132m*/
0xcc1, /* VFNMADDSSr132r*/
/* Table7687 */
0xcd1, /* VFNMSUBPDr132mY*/
0xcd3, /* VFNMSUBPDr132rY*/
/* Table7688 */
0xd06, /* VFNMSUBSSr132m*/
0xd07, /* VFNMSUBSSr132r*/
/* Table7689 */
0xbf9, /* VFMADDSUBPDr213mY*/
0xbfb, /* VFMADDSUBPDr213rY*/
/* Table7690 */
0xc21, /* VFMSUBADDPDr213mY*/
0xc23, /* VFMSUBADDPDr213rY*/
/* Table7691 */
0xbb3, /* VFMADDPDr213mY*/
0xbb5, /* VFMADDPDr213rY*/
/* Table7692 */
0xbe6, /* VFMADDSSr213m*/
0xbe8, /* VFMADDSSr213r*/
/* Table7693 */
0xc49, /* VFMSUBPDr213mY*/
0xc4b, /* VFMSUBPDr213rY*/
/* Table7694 */
0xc7c, /* VFMSUBSSr213m*/
0xc7e, /* VFMSUBSSr213r*/
/* Table7695 */
0xc8f, /* VFNMADDPDr213mY*/
0xc91, /* VFNMADDPDr213rY*/
/* Table7696 */
0xcc2, /* VFNMADDSSr213m*/
0xcc4, /* VFNMADDSSr213r*/
/* Table7697 */
0xcd5, /* VFNMSUBPDr213mY*/
0xcd7, /* VFNMSUBPDr213rY*/
/* Table7698 */
0xd08, /* VFNMSUBSSr213m*/
0xd0a, /* VFNMSUBSSr213r*/
/* Table7699 */
0xbfd, /* VFMADDSUBPDr231mY*/
0xbff, /* VFMADDSUBPDr231rY*/
/* Table7700 */
0xc25, /* VFMSUBADDPDr231mY*/
0xc27, /* VFMSUBADDPDr231rY*/
/* Table7701 */
0xbb7, /* VFMADDPDr231mY*/
0xbb9, /* VFMADDPDr231rY*/
/* Table7702 */
0xbea, /* VFMADDSSr231m*/
0xbeb, /* VFMADDSSr231r*/
/* Table7703 */
0xc4d, /* VFMSUBPDr231mY*/
0xc4f, /* VFMSUBPDr231rY*/
/* Table7704 */
0xc80, /* VFMSUBSSr231m*/
0xc81, /* VFMSUBSSr231r*/
/* Table7705 */
0xc93, /* VFNMADDPDr231mY*/
0xc95, /* VFNMADDPDr231rY*/
/* Table7706 */
0xcc6, /* VFNMADDSSr231m*/
0xcc7, /* VFNMADDSSr231r*/
/* Table7707 */
0xcd9, /* VFNMSUBPDr231mY*/
0xcdb, /* VFNMSUBPDr231rY*/
/* Table7708 */
0xd0c, /* VFNMSUBSSr231m*/
0xd0d, /* VFNMSUBSSr231r*/
/* Table7709 */
0x532, /* MMX_PALIGNR64irm*/
0x533, /* MMX_PALIGNR64irr*/
/* Table7710 */
0x532, /* MMX_PALIGNR64irm*/
0x533, /* MMX_PALIGNR64irr*/
/* Table7711 */
0x91e, /* ROUNDPSm*/
0x91f, /* ROUNDPSr*/
/* Table7712 */
0x91c, /* ROUNDPDm*/
0x91d, /* ROUNDPDr*/
/* Table7713 */
0x923, /* ROUNDSSm*/
0x924, /* ROUNDSSr*/
/* Table7714 */
0x920, /* ROUNDSDm*/
0x921, /* ROUNDSDr*/
/* Table7715 */
0x10e, /* BLENDPSrmi*/
0x10f, /* BLENDPSrri*/
/* Table7716 */
0x10c, /* BLENDPDrmi*/
0x10d, /* BLENDPDrri*/
/* Table7717 */
0x738, /* PBLENDWrmi*/
0x739, /* PBLENDWrri*/
/* Table7718 */
0x729, /* PALIGNR128rm*/
0x72a, /* PALIGNR128rr*/
/* Table7719 */
0x764, /* PEXTRBmr*/
0x765, /* PEXTRBrr*/
/* Table7720 */
0x76a, /* PEXTRWmr*/
0, /* PHI*/
/* Table7721 */
0x766, /* PEXTRDmr*/
0x767, /* PEXTRDrr*/
/* Table7722 */
0x2e7, /* EXTRACTPSmr*/
0x2e8, /* EXTRACTPSrr*/
/* Table7723 */
0x7a4, /* PINSRBrm*/
0x7a5, /* PINSRBrr*/
/* Table7724 */
0x396, /* INSERTPSrm*/
0x397, /* INSERTPSrr*/
/* Table7725 */
0x7a6, /* PINSRDrm*/
0x7a7, /* PINSRDrr*/
/* Table7726 */
0x2db, /* DPPSrmi*/
0x2dc, /* DPPSrri*/
/* Table7727 */
0x2d9, /* DPPDrmi*/
0x2da, /* DPPDrri*/
/* Table7728 */
0x66f, /* MPSADBWrmi*/
0x670, /* MPSADBWrri*/
/* Table7729 */
0x73a, /* PCLMULQDQrm*/
0x73b, /* PCLMULQDQrr*/
/* Table7730 */
0x74a, /* PCMPESTRM128rm*/
0x74b, /* PCMPESTRM128rr*/
/* Table7731 */
0x746, /* PCMPESTRIrm*/
0x747, /* PCMPESTRIrr*/
/* Table7732 */
0x75a, /* PCMPISTRM128rm*/
0x75b, /* PCMPISTRM128rr*/
/* Table7733 */
0x756, /* PCMPISTRIrm*/
0x757, /* PCMPISTRIrr*/
/* Table7734 */
0xa9, /* AESKEYGENASSIST128rm*/
0xaa, /* AESKEYGENASSIST128rr*/
/* Table7735 */
0x532, /* MMX_PALIGNR64irm*/
0x533, /* MMX_PALIGNR64irr*/
/* Table7736 */
0x532, /* MMX_PALIGNR64irm*/
0x533, /* MMX_PALIGNR64irr*/
/* Table7737 */
0x532, /* MMX_PALIGNR64irm*/
0x533, /* MMX_PALIGNR64irr*/
/* Table7738 */
0x532, /* MMX_PALIGNR64irm*/
0x533, /* MMX_PALIGNR64irr*/
/* Table7739 */
0x91e, /* ROUNDPSm*/
0x91f, /* ROUNDPSr*/
/* Table7740 */
0x91c, /* ROUNDPDm*/
0x91d, /* ROUNDPDr*/
/* Table7741 */
0x923, /* ROUNDSSm*/
0x924, /* ROUNDSSr*/
/* Table7742 */
0x920, /* ROUNDSDm*/
0x921, /* ROUNDSDr*/
/* Table7743 */
0x10e, /* BLENDPSrmi*/
0x10f, /* BLENDPSrri*/
/* Table7744 */
0x10c, /* BLENDPDrmi*/
0x10d, /* BLENDPDrri*/
/* Table7745 */
0x738, /* PBLENDWrmi*/
0x739, /* PBLENDWrri*/
/* Table7746 */
0x729, /* PALIGNR128rm*/
0x72a, /* PALIGNR128rr*/
/* Table7747 */
0x764, /* PEXTRBmr*/
0x765, /* PEXTRBrr*/
/* Table7748 */
0x76a, /* PEXTRWmr*/
0, /* PHI*/
/* Table7749 */
0x766, /* PEXTRDmr*/
0x767, /* PEXTRDrr*/
/* Table7750 */
0x2e7, /* EXTRACTPSmr*/
0x2e8, /* EXTRACTPSrr*/
/* Table7751 */
0x7a4, /* PINSRBrm*/
0x7a5, /* PINSRBrr*/
/* Table7752 */
0x396, /* INSERTPSrm*/
0x397, /* INSERTPSrr*/
/* Table7753 */
0x7a6, /* PINSRDrm*/
0x7a7, /* PINSRDrr*/
/* Table7754 */
0x2db, /* DPPSrmi*/
0x2dc, /* DPPSrri*/
/* Table7755 */
0x2d9, /* DPPDrmi*/
0x2da, /* DPPDrri*/
/* Table7756 */
0x66f, /* MPSADBWrmi*/
0x670, /* MPSADBWrri*/
/* Table7757 */
0x73a, /* PCLMULQDQrm*/
0x73b, /* PCLMULQDQrr*/
/* Table7758 */
0x74a, /* PCMPESTRM128rm*/
0x74b, /* PCMPESTRM128rr*/
/* Table7759 */
0x746, /* PCMPESTRIrm*/
0x747, /* PCMPESTRIrr*/
/* Table7760 */
0x75a, /* PCMPISTRM128rm*/
0x75b, /* PCMPISTRM128rr*/
/* Table7761 */
0x756, /* PCMPISTRIrm*/
0x757, /* PCMPISTRIrr*/
/* Table7762 */
0xa9, /* AESKEYGENASSIST128rm*/
0xaa, /* AESKEYGENASSIST128rr*/
/* Table7763 */
0x532, /* MMX_PALIGNR64irm*/
0x533, /* MMX_PALIGNR64irr*/
/* Table7764 */
0x532, /* MMX_PALIGNR64irm*/
0x533, /* MMX_PALIGNR64irr*/
/* Table7765 */
0x532, /* MMX_PALIGNR64irm*/
0x533, /* MMX_PALIGNR64irr*/
/* Table7766 */
0x532, /* MMX_PALIGNR64irm*/
0x533, /* MMX_PALIGNR64irr*/
/* Table7767 */
0x532, /* MMX_PALIGNR64irm*/
0x533, /* MMX_PALIGNR64irr*/
/* Table7768 */
0x91e, /* ROUNDPSm*/
0x91f, /* ROUNDPSr*/
/* Table7769 */
0x91c, /* ROUNDPDm*/
0x91d, /* ROUNDPDr*/
/* Table7770 */
0x923, /* ROUNDSSm*/
0x924, /* ROUNDSSr*/
/* Table7771 */
0x920, /* ROUNDSDm*/
0x921, /* ROUNDSDr*/
/* Table7772 */
0x10e, /* BLENDPSrmi*/
0x10f, /* BLENDPSrri*/
/* Table7773 */
0x10c, /* BLENDPDrmi*/
0x10d, /* BLENDPDrri*/
/* Table7774 */
0x738, /* PBLENDWrmi*/
0x739, /* PBLENDWrri*/
/* Table7775 */
0x729, /* PALIGNR128rm*/
0x72a, /* PALIGNR128rr*/
/* Table7776 */
0x764, /* PEXTRBmr*/
0x765, /* PEXTRBrr*/
/* Table7777 */
0x76a, /* PEXTRWmr*/
0, /* PHI*/
/* Table7778 */
0x768, /* PEXTRQmr*/
0x769, /* PEXTRQrr*/
/* Table7779 */
0x2e7, /* EXTRACTPSmr*/
0x2e8, /* EXTRACTPSrr*/
/* Table7780 */
0x7a4, /* PINSRBrm*/
0x7a5, /* PINSRBrr*/
/* Table7781 */
0x396, /* INSERTPSrm*/
0x397, /* INSERTPSrr*/
/* Table7782 */
0x7a8, /* PINSRQrm*/
0x7a9, /* PINSRQrr*/
/* Table7783 */
0x2db, /* DPPSrmi*/
0x2dc, /* DPPSrri*/
/* Table7784 */
0x2d9, /* DPPDrmi*/
0x2da, /* DPPDrri*/
/* Table7785 */
0x66f, /* MPSADBWrmi*/
0x670, /* MPSADBWrri*/
/* Table7786 */
0x73a, /* PCLMULQDQrm*/
0x73b, /* PCLMULQDQrr*/
/* Table7787 */
0x74a, /* PCMPESTRM128rm*/
0x74b, /* PCMPESTRM128rr*/
/* Table7788 */
0x746, /* PCMPESTRIrm*/
0x747, /* PCMPESTRIrr*/
/* Table7789 */
0x75a, /* PCMPISTRM128rm*/
0x75b, /* PCMPISTRM128rr*/
/* Table7790 */
0x756, /* PCMPISTRIrm*/
0x757, /* PCMPISTRIrr*/
/* Table7791 */
0xa9, /* AESKEYGENASSIST128rm*/
0xaa, /* AESKEYGENASSIST128rr*/
/* Table7792 */
0x918, /* RORX32mi*/
0x919, /* RORX32ri*/
/* Table7793 */
0xe90, /* VPBLENDDrmi*/
0xe91, /* VPBLENDDrri*/
/* Table7794 */
0xf10, /* VPERMILPSmi*/
0xf11, /* VPERMILPSri*/
/* Table7795 */
0xf08, /* VPERMILPDmi*/
0xf09, /* VPERMILPDri*/
/* Table7796 */
0x1104, /* VROUNDPSm*/
0x1105, /* VROUNDPSr*/
/* Table7797 */
0x1102, /* VROUNDPDm*/
0x1103, /* VROUNDPDr*/
/* Table7798 */
0x1109, /* VROUNDSSm*/
0x110a, /* VROUNDSSr*/
/* Table7799 */
0x1106, /* VROUNDSDm*/
0x1107, /* VROUNDSDr*/
/* Table7800 */
0xb13, /* VBLENDPSrmi*/
0xb14, /* VBLENDPSrri*/
/* Table7801 */
0xb0f, /* VBLENDPDrmi*/
0xb10, /* VBLENDPDrri*/
/* Table7802 */
0xe98, /* VPBLENDWrmi*/
0xe99, /* VPBLENDWrri*/
/* Table7803 */
0xe7a, /* VPALIGNR128rm*/
0xe7b, /* VPALIGNR128rr*/
/* Table7804 */
0xf1a, /* VPEXTRBmr*/
0xf1b, /* VPEXTRBrr*/
/* Table7805 */
0xf21, /* VPEXTRWmr*/
0, /* PHI*/
/* Table7806 */
0xf1d, /* VPEXTRDmr*/
0xf1e, /* VPEXTRDrr*/
/* Table7807 */
0xba3, /* VEXTRACTPSmr*/
0xba4, /* VEXTRACTPSrr*/
/* Table7808 */
0xb5f, /* VCVTPS2PHmr*/
0xb60, /* VCVTPS2PHrr*/
/* Table7809 */
0xf63, /* VPINSRBrm*/
0xf64, /* VPINSRBrr*/
/* Table7810 */
0xd46, /* VINSERTPSrm*/
0xd47, /* VINSERTPSrr*/
/* Table7811 */
0xf65, /* VPINSRDrm*/
0xf66, /* VPINSRDrr*/
/* Table7812 */
0xb99, /* VDPPSrmi*/
0xb9a, /* VDPPSrri*/
/* Table7813 */
0xb95, /* VDPPDrmi*/
0xb96, /* VDPPDrri*/
/* Table7814 */
0xe13, /* VMPSADBWrmi*/
0xe14, /* VMPSADBWrri*/
/* Table7815 */
0xeaa, /* VPCLMULQDQrm*/
0xeab, /* VPCLMULQDQrr*/
/* Table7816 */
0xefe, /* VPERMIL2PSmr*/
0xf02, /* VPERMIL2PSrr*/
/* Table7817 */
0xef8, /* VPERMIL2PDmr*/
0xefc, /* VPERMIL2PDrr*/
/* Table7818 */
0xb1b, /* VBLENDVPSrm*/
0xb1c, /* VBLENDVPSrr*/
/* Table7819 */
0xb17, /* VBLENDVPDrm*/
0xb18, /* VBLENDVPDrr*/
/* Table7820 */
0xe94, /* VPBLENDVBrm*/
0xe95, /* VPBLENDVBrr*/
/* Table7821 */
0xc00, /* VFMADDSUBPS4mr*/
0xc07, /* VFMADDSUBPS4rr_REV*/
/* Table7822 */
0xbec, /* VFMADDSUBPD4mr*/
0xbf3, /* VFMADDSUBPD4rr_REV*/
/* Table7823 */
0xc28, /* VFMSUBADDPS4mr*/
0xc2f, /* VFMSUBADDPS4rr_REV*/
/* Table7824 */
0xc14, /* VFMSUBADDPD4mr*/
0xc1b, /* VFMSUBADDPD4rr_REV*/
/* Table7825 */
0xec8, /* VPCMPESTRM128rm*/
0xec9, /* VPCMPESTRM128rr*/
/* Table7826 */
0xec4, /* VPCMPESTRIrm*/
0xec5, /* VPCMPESTRIrr*/
/* Table7827 */
0xee0, /* VPCMPISTRM128rm*/
0xee1, /* VPCMPISTRM128rr*/
/* Table7828 */
0xedc, /* VPCMPISTRIrm*/
0xedd, /* VPCMPISTRIrr*/
/* Table7829 */
0xbba, /* VFMADDPS4mr*/
0xbc1, /* VFMADDPS4rr_REV*/
/* Table7830 */
0xba6, /* VFMADDPD4mr*/
0xbad, /* VFMADDPD4rr_REV*/
/* Table7831 */
0xbdd, /* VFMADDSS4mr*/
0xbe3, /* VFMADDSS4rr_REV*/
/* Table7832 */
0xbce, /* VFMADDSD4mr*/
0xbd4, /* VFMADDSD4rr_REV*/
/* Table7833 */
0xc50, /* VFMSUBPS4mr*/
0xc57, /* VFMSUBPS4rr_REV*/
/* Table7834 */
0xc3c, /* VFMSUBPD4mr*/
0xc43, /* VFMSUBPD4rr_REV*/
/* Table7835 */
0xc73, /* VFMSUBSS4mr*/
0xc79, /* VFMSUBSS4rr_REV*/
/* Table7836 */
0xc64, /* VFMSUBSD4mr*/
0xc6a, /* VFMSUBSD4rr_REV*/
/* Table7837 */
0xc96, /* VFNMADDPS4mr*/
0xc9d, /* VFNMADDPS4rr_REV*/
/* Table7838 */
0xc82, /* VFNMADDPD4mr*/
0xc89, /* VFNMADDPD4rr_REV*/
/* Table7839 */
0xcb9, /* VFNMADDSS4mr*/
0xcbf, /* VFNMADDSS4rr_REV*/
/* Table7840 */
0xcaa, /* VFNMADDSD4mr*/
0xcb0, /* VFNMADDSD4rr_REV*/
/* Table7841 */
0xcdc, /* VFNMSUBPS4mr*/
0xce3, /* VFNMSUBPS4rr_REV*/
/* Table7842 */
0xcc8, /* VFNMSUBPD4mr*/
0xccf, /* VFNMSUBPD4rr_REV*/
/* Table7843 */
0xcff, /* VFNMSUBSS4mr*/
0xd05, /* VFNMSUBSS4rr_REV*/
/* Table7844 */
0xcf0, /* VFNMSUBSD4mr*/
0xcf6, /* VFNMSUBSD4rr_REV*/
/* Table7845 */
0xafa, /* VAESKEYGENASSIST128rm*/
0xafb, /* VAESKEYGENASSIST128rr*/
/* Table7846 */
0x91a, /* RORX64mi*/
0x91b, /* RORX64ri*/
/* Table7847 */
0xe90, /* VPBLENDDrmi*/
0xe91, /* VPBLENDDrri*/
/* Table7848 */
0xf10, /* VPERMILPSmi*/
0xf11, /* VPERMILPSri*/
/* Table7849 */
0xf08, /* VPERMILPDmi*/
0xf09, /* VPERMILPDri*/
/* Table7850 */
0x1104, /* VROUNDPSm*/
0x1105, /* VROUNDPSr*/
/* Table7851 */
0x1102, /* VROUNDPDm*/
0x1103, /* VROUNDPDr*/
/* Table7852 */
0x1109, /* VROUNDSSm*/
0x110a, /* VROUNDSSr*/
/* Table7853 */
0x1106, /* VROUNDSDm*/
0x1107, /* VROUNDSDr*/
/* Table7854 */
0xb13, /* VBLENDPSrmi*/
0xb14, /* VBLENDPSrri*/
/* Table7855 */
0xb0f, /* VBLENDPDrmi*/
0xb10, /* VBLENDPDrri*/
/* Table7856 */
0xe98, /* VPBLENDWrmi*/
0xe99, /* VPBLENDWrri*/
/* Table7857 */
0xe7a, /* VPALIGNR128rm*/
0xe7b, /* VPALIGNR128rr*/
/* Table7858 */
0xf1a, /* VPEXTRBmr*/
0xf1b, /* VPEXTRBrr*/
/* Table7859 */
0xf21, /* VPEXTRWmr*/
0, /* PHI*/
/* Table7860 */
0xf1f, /* VPEXTRQmr*/
0xf20, /* VPEXTRQrr*/
/* Table7861 */
0xba3, /* VEXTRACTPSmr*/
0xba4, /* VEXTRACTPSrr*/
/* Table7862 */
0xb5f, /* VCVTPS2PHmr*/
0xb60, /* VCVTPS2PHrr*/
/* Table7863 */
0xf63, /* VPINSRBrm*/
0xf64, /* VPINSRBrr*/
/* Table7864 */
0xd46, /* VINSERTPSrm*/
0xd47, /* VINSERTPSrr*/
/* Table7865 */
0xf67, /* VPINSRQrm*/
0xf68, /* VPINSRQrr*/
/* Table7866 */
0xb99, /* VDPPSrmi*/
0xb9a, /* VDPPSrri*/
/* Table7867 */
0xb95, /* VDPPDrmi*/
0xb96, /* VDPPDrri*/
/* Table7868 */
0xe13, /* VMPSADBWrmi*/
0xe14, /* VMPSADBWrri*/
/* Table7869 */
0xeaa, /* VPCLMULQDQrm*/
0xeab, /* VPCLMULQDQrr*/
/* Table7870 */
0xf00, /* VPERMIL2PSrm*/
0xf02, /* VPERMIL2PSrr*/
/* Table7871 */
0xefa, /* VPERMIL2PDrm*/
0xefc, /* VPERMIL2PDrr*/
/* Table7872 */
0xb1b, /* VBLENDVPSrm*/
0xb1c, /* VBLENDVPSrr*/
/* Table7873 */
0xb17, /* VBLENDVPDrm*/
0xb18, /* VBLENDVPDrr*/
/* Table7874 */
0xe94, /* VPBLENDVBrm*/
0xe95, /* VPBLENDVBrr*/
/* Table7875 */
0xc02, /* VFMADDSUBPS4rm*/
0xc04, /* VFMADDSUBPS4rr*/
/* Table7876 */
0xbee, /* VFMADDSUBPD4rm*/
0xbf0, /* VFMADDSUBPD4rr*/
/* Table7877 */
0xc2a, /* VFMSUBADDPS4rm*/
0xc2c, /* VFMSUBADDPS4rr*/
/* Table7878 */
0xc16, /* VFMSUBADDPD4rm*/
0xc18, /* VFMSUBADDPD4rr*/
/* Table7879 */
0xec8, /* VPCMPESTRM128rm*/
0xec9, /* VPCMPESTRM128rr*/
/* Table7880 */
0xec4, /* VPCMPESTRIrm*/
0xec5, /* VPCMPESTRIrr*/
/* Table7881 */
0xee0, /* VPCMPISTRM128rm*/
0xee1, /* VPCMPISTRM128rr*/
/* Table7882 */
0xedc, /* VPCMPISTRIrm*/
0xedd, /* VPCMPISTRIrr*/
/* Table7883 */
0xbbc, /* VFMADDPS4rm*/
0xbbe, /* VFMADDPS4rr*/
/* Table7884 */
0xba8, /* VFMADDPD4rm*/
0xbaa, /* VFMADDPD4rr*/
/* Table7885 */
0xbdf, /* VFMADDSS4rm*/
0xbe1, /* VFMADDSS4rr*/
/* Table7886 */
0xbd0, /* VFMADDSD4rm*/
0xbd2, /* VFMADDSD4rr*/
/* Table7887 */
0xc52, /* VFMSUBPS4rm*/
0xc54, /* VFMSUBPS4rr*/
/* Table7888 */
0xc3e, /* VFMSUBPD4rm*/
0xc40, /* VFMSUBPD4rr*/
/* Table7889 */
0xc75, /* VFMSUBSS4rm*/
0xc77, /* VFMSUBSS4rr*/
/* Table7890 */
0xc66, /* VFMSUBSD4rm*/
0xc68, /* VFMSUBSD4rr*/
/* Table7891 */
0xc98, /* VFNMADDPS4rm*/
0xc9a, /* VFNMADDPS4rr*/
/* Table7892 */
0xc84, /* VFNMADDPD4rm*/
0xc86, /* VFNMADDPD4rr*/
/* Table7893 */
0xcbb, /* VFNMADDSS4rm*/
0xcbd, /* VFNMADDSS4rr*/
/* Table7894 */
0xcac, /* VFNMADDSD4rm*/
0xcae, /* VFNMADDSD4rr*/
/* Table7895 */
0xcde, /* VFNMSUBPS4rm*/
0xce0, /* VFNMSUBPS4rr*/
/* Table7896 */
0xcca, /* VFNMSUBPD4rm*/
0xccc, /* VFNMSUBPD4rr*/
/* Table7897 */
0xd01, /* VFNMSUBSS4rm*/
0xd03, /* VFNMSUBSS4rr*/
/* Table7898 */
0xcf2, /* VFNMSUBSD4rm*/
0xcf4, /* VFNMSUBSD4rr*/
/* Table7899 */
0xafa, /* VAESKEYGENASSIST128rm*/
0xafb, /* VAESKEYGENASSIST128rr*/
/* Table7900 */
0xe8e, /* VPBLENDDYrmi*/
0xe8f, /* VPBLENDDYrri*/
/* Table7901 */
0xf0c, /* VPERMILPSYmi*/
0xf0d, /* VPERMILPSYri*/
/* Table7902 */
0xf04, /* VPERMILPDYmi*/
0xf05, /* VPERMILPDYri*/
/* Table7903 */
0xef2, /* VPERM2F128rm*/
0xef3, /* VPERM2F128rr*/
/* Table7904 */
0x110e, /* VROUNDYPSm*/
0x110f, /* VROUNDYPSr*/
/* Table7905 */
0x110c, /* VROUNDYPDm*/
0x110d, /* VROUNDYPDr*/
/* Table7906 */
0x1109, /* VROUNDSSm*/
0x110a, /* VROUNDSSr*/
/* Table7907 */
0x1106, /* VROUNDSDm*/
0x1107, /* VROUNDSDr*/
/* Table7908 */
0xb11, /* VBLENDPSYrmi*/
0xb12, /* VBLENDPSYrri*/
/* Table7909 */
0xb0d, /* VBLENDPDYrmi*/
0xb0e, /* VBLENDPDYrri*/
/* Table7910 */
0xe96, /* VPBLENDWYrmi*/
0xe97, /* VPBLENDWYrri*/
/* Table7911 */
0xe7c, /* VPALIGNR256rm*/
0xe7d, /* VPALIGNR256rr*/
/* Table7912 */
0xd42, /* VINSERTF128rm*/
0xd43, /* VINSERTF128rr*/
/* Table7913 */
0xb9f, /* VEXTRACTF128mr*/
0xba0, /* VEXTRACTF128rr*/
/* Table7914 */
0xb5d, /* VCVTPS2PHYmr*/
0xb5e, /* VCVTPS2PHYrr*/
/* Table7915 */
0xd44, /* VINSERTI128rm*/
0xd45, /* VINSERTI128rr*/
/* Table7916 */
0xba1, /* VEXTRACTI128mr*/
0xba2, /* VEXTRACTI128rr*/
/* Table7917 */
0xb97, /* VDPPSYrmi*/
0xb98, /* VDPPSYrri*/
/* Table7918 */
0xe11, /* VMPSADBWYrmi*/
0xe12, /* VMPSADBWYrri*/
/* Table7919 */
0xef4, /* VPERM2I128rm*/
0xef5, /* VPERM2I128rr*/
/* Table7920 */
0xeff, /* VPERMIL2PSmrY*/
0xf03, /* VPERMIL2PSrrY*/
/* Table7921 */
0xef9, /* VPERMIL2PDmrY*/
0xefd, /* VPERMIL2PDrrY*/
/* Table7922 */
0xb19, /* VBLENDVPSYrm*/
0xb1a, /* VBLENDVPSYrr*/
/* Table7923 */
0xb15, /* VBLENDVPDYrm*/
0xb16, /* VBLENDVPDYrr*/
/* Table7924 */
0xe92, /* VPBLENDVBYrm*/
0xe93, /* VPBLENDVBYrr*/
/* Table7925 */
0xc01, /* VFMADDSUBPS4mrY*/
0xc06, /* VFMADDSUBPS4rrY_REV*/
/* Table7926 */
0xbed, /* VFMADDSUBPD4mrY*/
0xbf2, /* VFMADDSUBPD4rrY_REV*/
/* Table7927 */
0xc29, /* VFMSUBADDPS4mrY*/
0xc2e, /* VFMSUBADDPS4rrY_REV*/
/* Table7928 */
0xc15, /* VFMSUBADDPD4mrY*/
0xc1a, /* VFMSUBADDPD4rrY_REV*/
/* Table7929 */
0xbbb, /* VFMADDPS4mrY*/
0xbc0, /* VFMADDPS4rrY_REV*/
/* Table7930 */
0xba7, /* VFMADDPD4mrY*/
0xbac, /* VFMADDPD4rrY_REV*/
/* Table7931 */
0xc51, /* VFMSUBPS4mrY*/
0xc56, /* VFMSUBPS4rrY_REV*/
/* Table7932 */
0xc3d, /* VFMSUBPD4mrY*/
0xc42, /* VFMSUBPD4rrY_REV*/
/* Table7933 */
0xc97, /* VFNMADDPS4mrY*/
0xc9c, /* VFNMADDPS4rrY_REV*/
/* Table7934 */
0xc83, /* VFNMADDPD4mrY*/
0xc88, /* VFNMADDPD4rrY_REV*/
/* Table7935 */
0xcdd, /* VFNMSUBPS4mrY*/
0xce2, /* VFNMSUBPS4rrY_REV*/
/* Table7936 */
0xcc9, /* VFNMSUBPD4mrY*/
0xcce, /* VFNMSUBPD4rrY_REV*/
/* Table7937 */
0xf18, /* VPERMQYmi*/
0xf19, /* VPERMQYri*/
/* Table7938 */
0xf14, /* VPERMPDYmi*/
0xf15, /* VPERMPDYri*/
/* Table7939 */
0xe8e, /* VPBLENDDYrmi*/
0xe8f, /* VPBLENDDYrri*/
/* Table7940 */
0xf0c, /* VPERMILPSYmi*/
0xf0d, /* VPERMILPSYri*/
/* Table7941 */
0xf04, /* VPERMILPDYmi*/
0xf05, /* VPERMILPDYri*/
/* Table7942 */
0xef2, /* VPERM2F128rm*/
0xef3, /* VPERM2F128rr*/
/* Table7943 */
0x110e, /* VROUNDYPSm*/
0x110f, /* VROUNDYPSr*/
/* Table7944 */
0x110c, /* VROUNDYPDm*/
0x110d, /* VROUNDYPDr*/
/* Table7945 */
0x1109, /* VROUNDSSm*/
0x110a, /* VROUNDSSr*/
/* Table7946 */
0x1106, /* VROUNDSDm*/
0x1107, /* VROUNDSDr*/
/* Table7947 */
0xb11, /* VBLENDPSYrmi*/
0xb12, /* VBLENDPSYrri*/
/* Table7948 */
0xb0d, /* VBLENDPDYrmi*/
0xb0e, /* VBLENDPDYrri*/
/* Table7949 */
0xe96, /* VPBLENDWYrmi*/
0xe97, /* VPBLENDWYrri*/
/* Table7950 */
0xe7c, /* VPALIGNR256rm*/
0xe7d, /* VPALIGNR256rr*/
/* Table7951 */
0xd42, /* VINSERTF128rm*/
0xd43, /* VINSERTF128rr*/
/* Table7952 */
0xb9f, /* VEXTRACTF128mr*/
0xba0, /* VEXTRACTF128rr*/
/* Table7953 */
0xb5d, /* VCVTPS2PHYmr*/
0xb5e, /* VCVTPS2PHYrr*/
/* Table7954 */
0xd44, /* VINSERTI128rm*/
0xd45, /* VINSERTI128rr*/
/* Table7955 */
0xba1, /* VEXTRACTI128mr*/
0xba2, /* VEXTRACTI128rr*/
/* Table7956 */
0xb97, /* VDPPSYrmi*/
0xb98, /* VDPPSYrri*/
/* Table7957 */
0xe11, /* VMPSADBWYrmi*/
0xe12, /* VMPSADBWYrri*/
/* Table7958 */
0xef4, /* VPERM2I128rm*/
0xef5, /* VPERM2I128rr*/
/* Table7959 */
0xf01, /* VPERMIL2PSrmY*/
0xf03, /* VPERMIL2PSrrY*/
/* Table7960 */
0xefb, /* VPERMIL2PDrmY*/
0xefd, /* VPERMIL2PDrrY*/
/* Table7961 */
0xb19, /* VBLENDVPSYrm*/
0xb1a, /* VBLENDVPSYrr*/
/* Table7962 */
0xb15, /* VBLENDVPDYrm*/
0xb16, /* VBLENDVPDYrr*/
/* Table7963 */
0xe92, /* VPBLENDVBYrm*/
0xe93, /* VPBLENDVBYrr*/
/* Table7964 */
0xc03, /* VFMADDSUBPS4rmY*/
0xc05, /* VFMADDSUBPS4rrY*/
/* Table7965 */
0xbef, /* VFMADDSUBPD4rmY*/
0xbf1, /* VFMADDSUBPD4rrY*/
/* Table7966 */
0xc2b, /* VFMSUBADDPS4rmY*/
0xc2d, /* VFMSUBADDPS4rrY*/
/* Table7967 */
0xc17, /* VFMSUBADDPD4rmY*/
0xc19, /* VFMSUBADDPD4rrY*/
/* Table7968 */
0xbbd, /* VFMADDPS4rmY*/
0xbbf, /* VFMADDPS4rrY*/
/* Table7969 */
0xba9, /* VFMADDPD4rmY*/
0xbab, /* VFMADDPD4rrY*/
/* Table7970 */
0xc53, /* VFMSUBPS4rmY*/
0xc55, /* VFMSUBPS4rrY*/
/* Table7971 */
0xc3f, /* VFMSUBPD4rmY*/
0xc41, /* VFMSUBPD4rrY*/
/* Table7972 */
0xc99, /* VFNMADDPS4rmY*/
0xc9b, /* VFNMADDPS4rrY*/
/* Table7973 */
0xc85, /* VFNMADDPD4rmY*/
0xc87, /* VFNMADDPD4rrY*/
/* Table7974 */
0xcdf, /* VFNMSUBPS4rmY*/
0xce1, /* VFNMSUBPS4rrY*/
/* Table7975 */
0xccb, /* VFNMSUBPD4rmY*/
0xccd, /* VFNMSUBPD4rrY*/
/* Table7976 */
0x5b4, /* MONTMUL*/
/* Table7977 */
0x11c2, /* XSHA1*/
/* Table7978 */
0x11c3, /* XSHA256*/
/* Table7979 */
0x5b4, /* MONTMUL*/
/* Table7980 */
0x11c2, /* XSHA1*/
/* Table7981 */
0x11c3, /* XSHA256*/
/* Table7982 */
0x5b4, /* MONTMUL*/
/* Table7983 */
0x11c2, /* XSHA1*/
/* Table7984 */
0x11c3, /* XSHA256*/
/* Table7985 */
0x5b4, /* MONTMUL*/
/* Table7986 */
0x11c2, /* XSHA1*/
/* Table7987 */
0x11c3, /* XSHA256*/
/* Table7988 */
0x5b4, /* MONTMUL*/
/* Table7989 */
0x11c2, /* XSHA1*/
/* Table7990 */
0x11c3, /* XSHA256*/
/* Table7991 */
0x5b4, /* MONTMUL*/
/* Table7992 */
0x11c2, /* XSHA1*/
/* Table7993 */
0x11c3, /* XSHA256*/
/* Table7994 */
0x5b4, /* MONTMUL*/
/* Table7995 */
0x11c2, /* XSHA1*/
/* Table7996 */
0x11c3, /* XSHA256*/
/* Table7997 */
0x5b4, /* MONTMUL*/
/* Table7998 */
0x11c2, /* XSHA1*/
/* Table7999 */
0x11c3, /* XSHA256*/
/* Table8000 */
0x5b4, /* MONTMUL*/
/* Table8001 */
0x11c2, /* XSHA1*/
/* Table8002 */
0x11c3, /* XSHA256*/
/* Table8003 */
0x5b4, /* MONTMUL*/
/* Table8004 */
0x11c2, /* XSHA1*/
/* Table8005 */
0x11c3, /* XSHA256*/
/* Table8006 */
0x5b4, /* MONTMUL*/
/* Table8007 */
0x11c2, /* XSHA1*/
/* Table8008 */
0x11c3, /* XSHA256*/
/* Table8009 */
0x5b4, /* MONTMUL*/
/* Table8010 */
0x11c2, /* XSHA1*/
/* Table8011 */
0x11c3, /* XSHA256*/
/* Table8012 */
0x5b4, /* MONTMUL*/
/* Table8013 */
0x11c2, /* XSHA1*/
/* Table8014 */
0x11c3, /* XSHA256*/
/* Table8015 */
0x5b4, /* MONTMUL*/
/* Table8016 */
0x11c2, /* XSHA1*/
/* Table8017 */
0x11c3, /* XSHA256*/
/* Table8018 */
0x11c4, /* XSTORE*/
/* Table8019 */
0x1190, /* XCRYPTECB*/
/* Table8020 */
0x118d, /* XCRYPTCBC*/
/* Table8021 */
0x118f, /* XCRYPTCTR*/
/* Table8022 */
0x118e, /* XCRYPTCFB*/
/* Table8023 */
0x1191, /* XCRYPTOFB*/
/* Table8024 */
0x11c4, /* XSTORE*/
/* Table8025 */
0x1190, /* XCRYPTECB*/
/* Table8026 */
0x118d, /* XCRYPTCBC*/
/* Table8027 */
0x118f, /* XCRYPTCTR*/
/* Table8028 */
0x118e, /* XCRYPTCFB*/
/* Table8029 */
0x1191, /* XCRYPTOFB*/
/* Table8030 */
0x11c4, /* XSTORE*/
/* Table8031 */
0x1190, /* XCRYPTECB*/
/* Table8032 */
0x118d, /* XCRYPTCBC*/
/* Table8033 */
0x118f, /* XCRYPTCTR*/
/* Table8034 */
0x118e, /* XCRYPTCFB*/
/* Table8035 */
0x1191, /* XCRYPTOFB*/
/* Table8036 */
0x11c4, /* XSTORE*/
/* Table8037 */
0x1190, /* XCRYPTECB*/
/* Table8038 */
0x118d, /* XCRYPTCBC*/
/* Table8039 */
0x118f, /* XCRYPTCTR*/
/* Table8040 */
0x118e, /* XCRYPTCFB*/
/* Table8041 */
0x1191, /* XCRYPTOFB*/
/* Table8042 */
0x11c4, /* XSTORE*/
/* Table8043 */
0x1190, /* XCRYPTECB*/
/* Table8044 */
0x118d, /* XCRYPTCBC*/
/* Table8045 */
0x118f, /* XCRYPTCTR*/
/* Table8046 */
0x118e, /* XCRYPTCFB*/
/* Table8047 */
0x1191, /* XCRYPTOFB*/
/* Table8048 */
0x11c4, /* XSTORE*/
/* Table8049 */
0x1190, /* XCRYPTECB*/
/* Table8050 */
0x118d, /* XCRYPTCBC*/
/* Table8051 */
0x118f, /* XCRYPTCTR*/
/* Table8052 */
0x118e, /* XCRYPTCFB*/
/* Table8053 */
0x1191, /* XCRYPTOFB*/
/* Table8054 */
0x11c4, /* XSTORE*/
/* Table8055 */
0x1190, /* XCRYPTECB*/
/* Table8056 */
0x118d, /* XCRYPTCBC*/
/* Table8057 */
0x118f, /* XCRYPTCTR*/
/* Table8058 */
0x118e, /* XCRYPTCFB*/
/* Table8059 */
0x1191, /* XCRYPTOFB*/
/* Table8060 */
0x11c4, /* XSTORE*/
/* Table8061 */
0x1190, /* XCRYPTECB*/
/* Table8062 */
0x118d, /* XCRYPTCBC*/
/* Table8063 */
0x118f, /* XCRYPTCTR*/
/* Table8064 */
0x118e, /* XCRYPTCFB*/
/* Table8065 */
0x1191, /* XCRYPTOFB*/
/* Table8066 */
0x11c4, /* XSTORE*/
/* Table8067 */
0x1190, /* XCRYPTECB*/
/* Table8068 */
0x118d, /* XCRYPTCBC*/
/* Table8069 */
0x118f, /* XCRYPTCTR*/
/* Table8070 */
0x118e, /* XCRYPTCFB*/
/* Table8071 */
0x1191, /* XCRYPTOFB*/
/* Table8072 */
0x11c4, /* XSTORE*/
/* Table8073 */
0x1190, /* XCRYPTECB*/
/* Table8074 */
0x118d, /* XCRYPTCBC*/
/* Table8075 */
0x118f, /* XCRYPTCTR*/
/* Table8076 */
0x118e, /* XCRYPTCFB*/
/* Table8077 */
0x1191, /* XCRYPTOFB*/
/* Table8078 */
0x11c4, /* XSTORE*/
/* Table8079 */
0x1190, /* XCRYPTECB*/
/* Table8080 */
0x118d, /* XCRYPTCBC*/
/* Table8081 */
0x118f, /* XCRYPTCTR*/
/* Table8082 */
0x118e, /* XCRYPTCFB*/
/* Table8083 */
0x1191, /* XCRYPTOFB*/
/* Table8084 */
0x11c4, /* XSTORE*/
/* Table8085 */
0x1190, /* XCRYPTECB*/
/* Table8086 */
0x118d, /* XCRYPTCBC*/
/* Table8087 */
0x118f, /* XCRYPTCTR*/
/* Table8088 */
0x118e, /* XCRYPTCFB*/
/* Table8089 */
0x1191, /* XCRYPTOFB*/
/* Table8090 */
0x11c4, /* XSTORE*/
/* Table8091 */
0x1190, /* XCRYPTECB*/
/* Table8092 */
0x118d, /* XCRYPTCBC*/
/* Table8093 */
0x118f, /* XCRYPTCTR*/
/* Table8094 */
0x118e, /* XCRYPTCFB*/
/* Table8095 */
0x1191, /* XCRYPTOFB*/
/* Table8096 */
0x11c4, /* XSTORE*/
/* Table8097 */
0x1190, /* XCRYPTECB*/
/* Table8098 */
0x118d, /* XCRYPTCBC*/
/* Table8099 */
0x118f, /* XCRYPTCTR*/
/* Table8100 */
0x118e, /* XCRYPTCFB*/
/* Table8101 */
0x1191, /* XCRYPTOFB*/
0x0
};
static const struct ContextDecision x86DisassemblerOneByteOpcodes = {
{ /* opcodeDecisions */
/* IC */
{ /* struct OpcodeDecision */
{
/* 0x00 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
1 /* Table0 */
},
/* 0x01 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
3 /* Table1 */
},
/* 0x02 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
5 /* Table2 */
},
/* 0x03 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
7 /* Table3 */
},
/* 0x04 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
9 /* Table4 */
},
/* 0x05 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
10 /* Table5 */
},
/* 0x06 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
11 /* Table6 */
},
/* 0x07 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
12 /* Table7 */
},
/* 0x08 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
13 /* Table8 */
},
/* 0x09 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15 /* Table9 */
},
/* 0x0a */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17 /* Table10 */
},
/* 0x0b */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19 /* Table11 */
},
/* 0x0c */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
21 /* Table12 */
},
/* 0x0d */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
22 /* Table13 */
},
/* 0x0e */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
23 /* Table14 */
},
/* 0x0f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x10 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24 /* Table15 */
},
/* 0x11 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26 /* Table16 */
},
/* 0x12 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
28 /* Table17 */
},
/* 0x13 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
30 /* Table18 */
},
/* 0x14 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
32 /* Table19 */
},
/* 0x15 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
33 /* Table20 */
},
/* 0x16 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
34 /* Table21 */
},
/* 0x17 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
35 /* Table22 */
},
/* 0x18 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
36 /* Table23 */
},
/* 0x19 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
38 /* Table24 */
},
/* 0x1a */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
40 /* Table25 */
},
/* 0x1b */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
42 /* Table26 */
},
/* 0x1c */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
44 /* Table27 */
},
/* 0x1d */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
45 /* Table28 */
},
/* 0x1e */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
46 /* Table29 */
},
/* 0x1f */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
47 /* Table30 */
},
/* 0x20 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
48 /* Table31 */
},
/* 0x21 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
50 /* Table32 */
},
/* 0x22 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
52 /* Table33 */
},
/* 0x23 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
54 /* Table34 */
},
/* 0x24 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
56 /* Table35 */
},
/* 0x25 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
57 /* Table36 */
},
/* 0x26 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
58 /* Table37 */
},
/* 0x27 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
59 /* Table38 */
},
/* 0x28 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
60 /* Table39 */
},
/* 0x29 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
62 /* Table40 */
},
/* 0x2a */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
64 /* Table41 */
},
/* 0x2b */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
66 /* Table42 */
},
/* 0x2c */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
68 /* Table43 */
},
/* 0x2d */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
69 /* Table44 */
},
/* 0x2e */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
70 /* Table45 */
},
/* 0x2f */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
71 /* Table46 */
},
/* 0x30 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
72 /* Table47 */
},
/* 0x31 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
74 /* Table48 */
},
/* 0x32 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
76 /* Table49 */
},
/* 0x33 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
78 /* Table50 */
},
/* 0x34 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
80 /* Table51 */
},
/* 0x35 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
81 /* Table52 */
},
/* 0x36 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
82 /* Table53 */
},
/* 0x37 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
83 /* Table54 */
},
/* 0x38 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
84 /* Table55 */
},
/* 0x39 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
86 /* Table56 */
},
/* 0x3a */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
88 /* Table57 */
},
/* 0x3b */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
90 /* Table58 */
},
/* 0x3c */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
92 /* Table59 */
},
/* 0x3d */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
93 /* Table60 */
},
/* 0x3e */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
94 /* Table61 */
},
/* 0x3f */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
95 /* Table62 */
},
/* 0x40 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
96 /* Table63 */
},
/* 0x41 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
97 /* Table64 */
},
/* 0x42 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
98 /* Table65 */
},
/* 0x43 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
99 /* Table66 */
},
/* 0x44 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
100 /* Table67 */
},
/* 0x45 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
101 /* Table68 */
},
/* 0x46 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
102 /* Table69 */
},
/* 0x47 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
103 /* Table70 */
},
/* 0x48 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
104 /* Table71 */
},
/* 0x49 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
105 /* Table72 */
},
/* 0x4a */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
106 /* Table73 */
},
/* 0x4b */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
107 /* Table74 */
},
/* 0x4c */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
108 /* Table75 */
},
/* 0x4d */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
109 /* Table76 */
},
/* 0x4e */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
110 /* Table77 */
},
/* 0x4f */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
111 /* Table78 */
},
/* 0x50 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
112 /* Table79 */
},
/* 0x51 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
113 /* Table80 */
},
/* 0x52 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
114 /* Table81 */
},
/* 0x53 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
115 /* Table82 */
},
/* 0x54 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
116 /* Table83 */
},
/* 0x55 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
117 /* Table84 */
},
/* 0x56 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
118 /* Table85 */
},
/* 0x57 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
119 /* Table86 */
},
/* 0x58 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
120 /* Table87 */
},
/* 0x59 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
121 /* Table88 */
},
/* 0x5a */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
122 /* Table89 */
},
/* 0x5b */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
123 /* Table90 */
},
/* 0x5c */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
124 /* Table91 */
},
/* 0x5d */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
125 /* Table92 */
},
/* 0x5e */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
126 /* Table93 */
},
/* 0x5f */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
127 /* Table94 */
},
/* 0x60 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
128 /* Table95 */
},
/* 0x61 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
129 /* Table96 */
},
/* 0x62 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
130 /* Table97 */
},
/* 0x63 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
132 /* Table98 */
},
/* 0x64 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
134 /* Table99 */
},
/* 0x65 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
135 /* Table100 */
},
/* 0x66 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
136 /* Table101 */
},
/* 0x67 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x68 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
137 /* Table102 */
},
/* 0x69 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
138 /* Table103 */
},
/* 0x6a */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
140 /* Table104 */
},
/* 0x6b */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
141 /* Table105 */
},
/* 0x6c */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
143 /* Table106 */
},
/* 0x6d */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
144 /* Table107 */
},
/* 0x6e */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
145 /* Table108 */
},
/* 0x6f */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
146 /* Table109 */
},
/* 0x70 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
147 /* Table110 */
},
/* 0x71 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
148 /* Table111 */
},
/* 0x72 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
149 /* Table112 */
},
/* 0x73 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
150 /* Table113 */
},
/* 0x74 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
151 /* Table114 */
},
/* 0x75 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
152 /* Table115 */
},
/* 0x76 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
153 /* Table116 */
},
/* 0x77 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
154 /* Table117 */
},
/* 0x78 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
155 /* Table118 */
},
/* 0x79 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
156 /* Table119 */
},
/* 0x7a */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
157 /* Table120 */
},
/* 0x7b */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
158 /* Table121 */
},
/* 0x7c */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
159 /* Table122 */
},
/* 0x7d */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
160 /* Table123 */
},
/* 0x7e */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
161 /* Table124 */
},
/* 0x7f */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
162 /* Table125 */
},
/* 0x80 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
163 /* Table126 */
},
/* 0x81 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
179 /* Table127 */
},
/* 0x82 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x83 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
195 /* Table128 */
},
/* 0x84 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
211 /* Table129 */
},
/* 0x85 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
213 /* Table130 */
},
/* 0x86 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
215 /* Table131 */
},
/* 0x87 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
217 /* Table132 */
},
/* 0x88 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
219 /* Table133 */
},
/* 0x89 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
221 /* Table134 */
},
/* 0x8a */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
223 /* Table135 */
},
/* 0x8b */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
225 /* Table136 */
},
/* 0x8c */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
227 /* Table137 */
},
/* 0x8d */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
229 /* Table138 */
},
/* 0x8e */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
231 /* Table139 */
},
/* 0x8f */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
233 /* Table140 */
},
/* 0x90 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
249 /* Table141 */
},
/* 0x91 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
250 /* Table142 */
},
/* 0x92 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
251 /* Table143 */
},
/* 0x93 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
252 /* Table144 */
},
/* 0x94 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
253 /* Table145 */
},
/* 0x95 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
254 /* Table146 */
},
/* 0x96 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
255 /* Table147 */
},
/* 0x97 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
256 /* Table148 */
},
/* 0x98 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
257 /* Table149 */
},
/* 0x99 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
258 /* Table150 */
},
/* 0x9a */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
259 /* Table151 */
},
/* 0x9b */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
260 /* Table152 */
},
/* 0x9c */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
261 /* Table153 */
},
/* 0x9d */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
262 /* Table154 */
},
/* 0x9e */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
263 /* Table155 */
},
/* 0x9f */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
264 /* Table156 */
},
/* 0xa0 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
265 /* Table157 */
},
/* 0xa1 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
266 /* Table158 */
},
/* 0xa2 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
267 /* Table159 */
},
/* 0xa3 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
268 /* Table160 */
},
/* 0xa4 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
269 /* Table161 */
},
/* 0xa5 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
270 /* Table162 */
},
/* 0xa6 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
271 /* Table163 */
},
/* 0xa7 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
272 /* Table164 */
},
/* 0xa8 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
273 /* Table165 */
},
/* 0xa9 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
274 /* Table166 */
},
/* 0xaa */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
275 /* Table167 */
},
/* 0xab */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
276 /* Table168 */
},
/* 0xac */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
277 /* Table169 */
},
/* 0xad */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
278 /* Table170 */
},
/* 0xae */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
279 /* Table171 */
},
/* 0xaf */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
280 /* Table172 */
},
/* 0xb0 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
281 /* Table173 */
},
/* 0xb1 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
282 /* Table174 */
},
/* 0xb2 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
283 /* Table175 */
},
/* 0xb3 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
284 /* Table176 */
},
/* 0xb4 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
285 /* Table177 */
},
/* 0xb5 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
286 /* Table178 */
},
/* 0xb6 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
287 /* Table179 */
},
/* 0xb7 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
288 /* Table180 */
},
/* 0xb8 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
289 /* Table181 */
},
/* 0xb9 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
290 /* Table182 */
},
/* 0xba */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
291 /* Table183 */
},
/* 0xbb */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
292 /* Table184 */
},
/* 0xbc */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
293 /* Table185 */
},
/* 0xbd */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
294 /* Table186 */
},
/* 0xbe */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
295 /* Table187 */
},
/* 0xbf */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
296 /* Table188 */
},
/* 0xc0 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
297 /* Table189 */
},
/* 0xc1 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
313 /* Table190 */
},
/* 0xc2 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
329 /* Table191 */
},
/* 0xc3 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
330 /* Table192 */
},
/* 0xc4 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
331 /* Table193 */
},
/* 0xc5 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
333 /* Table194 */
},
/* 0xc6 */
{ /* struct ModRMDecision */
MODRM_SPLITMISC,
335 /* Table195 */
},
/* 0xc7 */
{ /* struct ModRMDecision */
MODRM_SPLITMISC,
407 /* Table196 */
},
/* 0xc8 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
479 /* Table197 */
},
/* 0xc9 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
480 /* Table198 */
},
/* 0xca */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
481 /* Table199 */
},
/* 0xcb */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
482 /* Table200 */
},
/* 0xcc */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
483 /* Table201 */
},
/* 0xcd */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
484 /* Table202 */
},
/* 0xce */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
485 /* Table203 */
},
/* 0xcf */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
486 /* Table204 */
},
/* 0xd0 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
487 /* Table205 */
},
/* 0xd1 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
503 /* Table206 */
},
/* 0xd2 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
519 /* Table207 */
},
/* 0xd3 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
535 /* Table208 */
},
/* 0xd4 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
551 /* Table209 */
},
/* 0xd5 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
552 /* Table210 */
},
/* 0xd6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd7 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
553 /* Table211 */
},
/* 0xd8 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
554 /* Table212 */
},
/* 0xd9 */
{ /* struct ModRMDecision */
MODRM_SPLITMISC,
570 /* Table213 */
},
/* 0xda */
{ /* struct ModRMDecision */
MODRM_SPLITMISC,
642 /* Table214 */
},
/* 0xdb */
{ /* struct ModRMDecision */
MODRM_SPLITMISC,
714 /* Table215 */
},
/* 0xdc */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
786 /* Table216 */
},
/* 0xdd */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
802 /* Table217 */
},
/* 0xde */
{ /* struct ModRMDecision */
MODRM_SPLITMISC,
818 /* Table218 */
},
/* 0xdf */
{ /* struct ModRMDecision */
MODRM_SPLITMISC,
890 /* Table219 */
},
/* 0xe0 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
962 /* Table220 */
},
/* 0xe1 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
963 /* Table221 */
},
/* 0xe2 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
964 /* Table222 */
},
/* 0xe3 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
965 /* Table223 */
},
/* 0xe4 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
966 /* Table224 */
},
/* 0xe5 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
967 /* Table225 */
},
/* 0xe6 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
968 /* Table226 */
},
/* 0xe7 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
969 /* Table227 */
},
/* 0xe8 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
970 /* Table228 */
},
/* 0xe9 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
971 /* Table229 */
},
/* 0xea */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
972 /* Table230 */
},
/* 0xeb */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
973 /* Table231 */
},
/* 0xec */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
974 /* Table232 */
},
/* 0xed */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
975 /* Table233 */
},
/* 0xee */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
976 /* Table234 */
},
/* 0xef */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
977 /* Table235 */
},
/* 0xf0 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
978 /* Table236 */
},
/* 0xf1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf2 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
979 /* Table237 */
},
/* 0xf3 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
980 /* Table238 */
},
/* 0xf4 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
981 /* Table239 */
},
/* 0xf5 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
982 /* Table240 */
},
/* 0xf6 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
983 /* Table241 */
},
/* 0xf7 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
999 /* Table242 */
},
/* 0xf8 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
1015 /* Table243 */
},
/* 0xf9 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
1016 /* Table244 */
},
/* 0xfa */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
1017 /* Table245 */
},
/* 0xfb */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
1018 /* Table246 */
},
/* 0xfc */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
1019 /* Table247 */
},
/* 0xfd */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
1020 /* Table248 */
},
/* 0xfe */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
1021 /* Table249 */
},
/* 0xff */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
1037 /* Table250 */
}
}
}
, /* IC_64BIT */
{ /* struct OpcodeDecision */
{
/* 0x00 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
1053 /* Table251 */
},
/* 0x01 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
1055 /* Table252 */
},
/* 0x02 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
1057 /* Table253 */
},
/* 0x03 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
1059 /* Table254 */
},
/* 0x04 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
1061 /* Table255 */
},
/* 0x05 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
1062 /* Table256 */
},
/* 0x06 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x07 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x08 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
1063 /* Table257 */
},
/* 0x09 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
1065 /* Table258 */
},
/* 0x0a */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
1067 /* Table259 */
},
/* 0x0b */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
1069 /* Table260 */
},
/* 0x0c */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
1071 /* Table261 */
},
/* 0x0d */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
1072 /* Table262 */
},
/* 0x0e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x10 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
1073 /* Table263 */
},
/* 0x11 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
1075 /* Table264 */
},
/* 0x12 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
1077 /* Table265 */
},
/* 0x13 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
1079 /* Table266 */
},
/* 0x14 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
1081 /* Table267 */
},
/* 0x15 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
1082 /* Table268 */
},
/* 0x16 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x17 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x18 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
1083 /* Table269 */
},
/* 0x19 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
1085 /* Table270 */
},
/* 0x1a */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
1087 /* Table271 */
},
/* 0x1b */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
1089 /* Table272 */
},
/* 0x1c */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
1091 /* Table273 */
},
/* 0x1d */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
1092 /* Table274 */
},
/* 0x1e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x20 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
1093 /* Table275 */
},
/* 0x21 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
1095 /* Table276 */
},
/* 0x22 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
1097 /* Table277 */
},
/* 0x23 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
1099 /* Table278 */
},
/* 0x24 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
1101 /* Table279 */
},
/* 0x25 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
1102 /* Table280 */
},
/* 0x26 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
1103 /* Table281 */
},
/* 0x27 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x28 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
1104 /* Table282 */
},
/* 0x29 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
1106 /* Table283 */
},
/* 0x2a */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
1108 /* Table284 */
},
/* 0x2b */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
1110 /* Table285 */
},
/* 0x2c */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
1112 /* Table286 */
},
/* 0x2d */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
1113 /* Table287 */
},
/* 0x2e */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
1114 /* Table288 */
},
/* 0x2f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x30 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
1115 /* Table289 */
},
/* 0x31 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
1117 /* Table290 */
},
/* 0x32 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
1119 /* Table291 */
},
/* 0x33 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
1121 /* Table292 */
},
/* 0x34 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
1123 /* Table293 */
},
/* 0x35 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
1124 /* Table294 */
},
/* 0x36 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
1125 /* Table295 */
},
/* 0x37 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x38 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
1126 /* Table296 */
},
/* 0x39 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
1128 /* Table297 */
},
/* 0x3a */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
1130 /* Table298 */
},
/* 0x3b */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
1132 /* Table299 */
},
/* 0x3c */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
1134 /* Table300 */
},
/* 0x3d */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
1135 /* Table301 */
},
/* 0x3e */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
1136 /* Table302 */
},
/* 0x3f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x40 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x41 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x42 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x43 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x44 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x45 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x46 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x47 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x48 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
1137 /* Table303 */
},
/* 0x49 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x50 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
1138 /* Table304 */
},
/* 0x51 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
1139 /* Table305 */
},
/* 0x52 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
1140 /* Table306 */
},
/* 0x53 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
1141 /* Table307 */
},
/* 0x54 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
1142 /* Table308 */
},
/* 0x55 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
1143 /* Table309 */
},
/* 0x56 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
1144 /* Table310 */
},
/* 0x57 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
1145 /* Table311 */
},
/* 0x58 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
1146 /* Table312 */
},
/* 0x59 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
1147 /* Table313 */
},
/* 0x5a */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
1148 /* Table314 */
},
/* 0x5b */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
1149 /* Table315 */
},
/* 0x5c */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
1150 /* Table316 */
},
/* 0x5d */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
1151 /* Table317 */
},
/* 0x5e */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
1152 /* Table318 */
},
/* 0x5f */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
1153 /* Table319 */
},
/* 0x60 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x61 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x62 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x63 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x64 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
1154 /* Table320 */
},
/* 0x65 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
1155 /* Table321 */
},
/* 0x66 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
1156 /* Table322 */
},
/* 0x67 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x68 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
1157 /* Table323 */
},
/* 0x69 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
1158 /* Table324 */
},
/* 0x6a */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
1160 /* Table325 */
},
/* 0x6b */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
1161 /* Table326 */
},
/* 0x6c */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
1163 /* Table327 */
},
/* 0x6d */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
1164 /* Table328 */
},
/* 0x6e */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
1165 /* Table329 */
},
/* 0x6f */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
1166 /* Table330 */
},
/* 0x70 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
1167 /* Table331 */
},
/* 0x71 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
1168 /* Table332 */
},
/* 0x72 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
1169 /* Table333 */
},
/* 0x73 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
1170 /* Table334 */
},
/* 0x74 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
1171 /* Table335 */
},
/* 0x75 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
1172 /* Table336 */
},
/* 0x76 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
1173 /* Table337 */
},
/* 0x77 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
1174 /* Table338 */
},
/* 0x78 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
1175 /* Table339 */
},
/* 0x79 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
1176 /* Table340 */
},
/* 0x7a */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
1177 /* Table341 */
},
/* 0x7b */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
1178 /* Table342 */
},
/* 0x7c */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
1179 /* Table343 */
},
/* 0x7d */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
1180 /* Table344 */
},
/* 0x7e */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
1181 /* Table345 */
},
/* 0x7f */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
1182 /* Table346 */
},
/* 0x80 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
1183 /* Table347 */
},
/* 0x81 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
1199 /* Table348 */
},
/* 0x82 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x83 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
1215 /* Table349 */
},
/* 0x84 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
1231 /* Table350 */
},
/* 0x85 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
1233 /* Table351 */
},
/* 0x86 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
1235 /* Table352 */
},
/* 0x87 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
1237 /* Table353 */
},
/* 0x88 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
1239 /* Table354 */
},
/* 0x89 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
1241 /* Table355 */
},
/* 0x8a */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
1243 /* Table356 */
},
/* 0x8b */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
1245 /* Table357 */
},
/* 0x8c */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
1247 /* Table358 */
},
/* 0x8d */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
1249 /* Table359 */
},
/* 0x8e */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
1251 /* Table360 */
},
/* 0x8f */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
1253 /* Table361 */
},
/* 0x90 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
1269 /* Table362 */
},
/* 0x91 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
1270 /* Table363 */
},
/* 0x92 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
1271 /* Table364 */
},
/* 0x93 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
1272 /* Table365 */
},
/* 0x94 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
1273 /* Table366 */
},
/* 0x95 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
1274 /* Table367 */
},
/* 0x96 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
1275 /* Table368 */
},
/* 0x97 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
1276 /* Table369 */
},
/* 0x98 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
1277 /* Table370 */
},
/* 0x99 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
1278 /* Table371 */
},
/* 0x9a */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
1279 /* Table372 */
},
/* 0x9b */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
1280 /* Table373 */
},
/* 0x9c */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
1281 /* Table374 */
},
/* 0x9d */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
1282 /* Table375 */
},
/* 0x9e */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
1283 /* Table376 */
},
/* 0x9f */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
1284 /* Table377 */
},
/* 0xa0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa4 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
1285 /* Table378 */
},
/* 0xa5 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
1286 /* Table379 */
},
/* 0xa6 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
1287 /* Table380 */
},
/* 0xa7 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
1288 /* Table381 */
},
/* 0xa8 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
1289 /* Table382 */
},
/* 0xa9 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
1290 /* Table383 */
},
/* 0xaa */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
1291 /* Table384 */
},
/* 0xab */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
1292 /* Table385 */
},
/* 0xac */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
1293 /* Table386 */
},
/* 0xad */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
1294 /* Table387 */
},
/* 0xae */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
1295 /* Table388 */
},
/* 0xaf */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
1296 /* Table389 */
},
/* 0xb0 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
1297 /* Table390 */
},
/* 0xb1 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
1298 /* Table391 */
},
/* 0xb2 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
1299 /* Table392 */
},
/* 0xb3 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
1300 /* Table393 */
},
/* 0xb4 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
1301 /* Table394 */
},
/* 0xb5 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
1302 /* Table395 */
},
/* 0xb6 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
1303 /* Table396 */
},
/* 0xb7 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
1304 /* Table397 */
},
/* 0xb8 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
1305 /* Table398 */
},
/* 0xb9 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
1306 /* Table399 */
},
/* 0xba */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
1307 /* Table400 */
},
/* 0xbb */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
1308 /* Table401 */
},
/* 0xbc */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
1309 /* Table402 */
},
/* 0xbd */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
1310 /* Table403 */
},
/* 0xbe */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
1311 /* Table404 */
},
/* 0xbf */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
1312 /* Table405 */
},
/* 0xc0 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
1313 /* Table406 */
},
/* 0xc1 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
1329 /* Table407 */
},
/* 0xc2 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
1345 /* Table408 */
},
/* 0xc3 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
1346 /* Table409 */
},
/* 0xc4 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
1347 /* Table410 */
},
/* 0xc5 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
1349 /* Table411 */
},
/* 0xc6 */
{ /* struct ModRMDecision */
MODRM_SPLITMISC,
1351 /* Table412 */
},
/* 0xc7 */
{ /* struct ModRMDecision */
MODRM_SPLITMISC,
1423 /* Table413 */
},
/* 0xc8 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
1495 /* Table414 */
},
/* 0xc9 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
1496 /* Table415 */
},
/* 0xca */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
1497 /* Table416 */
},
/* 0xcb */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
1498 /* Table417 */
},
/* 0xcc */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
1499 /* Table418 */
},
/* 0xcd */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
1500 /* Table419 */
},
/* 0xce */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
1501 /* Table420 */
},
/* 0xcf */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
1502 /* Table421 */
},
/* 0xd0 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
1503 /* Table422 */
},
/* 0xd1 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
1519 /* Table423 */
},
/* 0xd2 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
1535 /* Table424 */
},
/* 0xd3 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
1551 /* Table425 */
},
/* 0xd4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd7 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
1567 /* Table426 */
},
/* 0xd8 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
1568 /* Table427 */
},
/* 0xd9 */
{ /* struct ModRMDecision */
MODRM_SPLITMISC,
1584 /* Table428 */
},
/* 0xda */
{ /* struct ModRMDecision */
MODRM_SPLITMISC,
1656 /* Table429 */
},
/* 0xdb */
{ /* struct ModRMDecision */
MODRM_SPLITMISC,
1728 /* Table430 */
},
/* 0xdc */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
1800 /* Table431 */
},
/* 0xdd */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
1816 /* Table432 */
},
/* 0xde */
{ /* struct ModRMDecision */
MODRM_SPLITMISC,
1832 /* Table433 */
},
/* 0xdf */
{ /* struct ModRMDecision */
MODRM_SPLITMISC,
1904 /* Table434 */
},
/* 0xe0 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
1976 /* Table435 */
},
/* 0xe1 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
1977 /* Table436 */
},
/* 0xe2 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
1978 /* Table437 */
},
/* 0xe3 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
1979 /* Table438 */
},
/* 0xe4 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
1980 /* Table439 */
},
/* 0xe5 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
1981 /* Table440 */
},
/* 0xe6 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
1982 /* Table441 */
},
/* 0xe7 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
1983 /* Table442 */
},
/* 0xe8 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
1984 /* Table443 */
},
/* 0xe9 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
1985 /* Table444 */
},
/* 0xea */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
1986 /* Table445 */
},
/* 0xeb */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
1987 /* Table446 */
},
/* 0xec */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
1988 /* Table447 */
},
/* 0xed */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
1989 /* Table448 */
},
/* 0xee */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
1990 /* Table449 */
},
/* 0xef */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
1991 /* Table450 */
},
/* 0xf0 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
1992 /* Table451 */
},
/* 0xf1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf2 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
1993 /* Table452 */
},
/* 0xf3 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
1994 /* Table453 */
},
/* 0xf4 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
1995 /* Table454 */
},
/* 0xf5 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
1996 /* Table455 */
},
/* 0xf6 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
1997 /* Table456 */
},
/* 0xf7 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
2013 /* Table457 */
},
/* 0xf8 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
2029 /* Table458 */
},
/* 0xf9 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
2030 /* Table459 */
},
/* 0xfa */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
2031 /* Table460 */
},
/* 0xfb */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
2032 /* Table461 */
},
/* 0xfc */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
2033 /* Table462 */
},
/* 0xfd */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
2034 /* Table463 */
},
/* 0xfe */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
2035 /* Table464 */
},
/* 0xff */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
2051 /* Table465 */
}
}
}
, /* IC_OPSIZE */
{ /* struct OpcodeDecision */
{
/* 0x00 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
2067 /* Table466 */
},
/* 0x01 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
2069 /* Table467 */
},
/* 0x02 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
2071 /* Table468 */
},
/* 0x03 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
2073 /* Table469 */
},
/* 0x04 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
2075 /* Table470 */
},
/* 0x05 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
2076 /* Table471 */
},
/* 0x06 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
2077 /* Table472 */
},
/* 0x07 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
2078 /* Table473 */
},
/* 0x08 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
2079 /* Table474 */
},
/* 0x09 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
2081 /* Table475 */
},
/* 0x0a */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
2083 /* Table476 */
},
/* 0x0b */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
2085 /* Table477 */
},
/* 0x0c */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
2087 /* Table478 */
},
/* 0x0d */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
2088 /* Table479 */
},
/* 0x0e */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
2089 /* Table480 */
},
/* 0x0f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x10 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
2090 /* Table481 */
},
/* 0x11 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
2092 /* Table482 */
},
/* 0x12 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
2094 /* Table483 */
},
/* 0x13 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
2096 /* Table484 */
},
/* 0x14 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
2098 /* Table485 */
},
/* 0x15 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
2099 /* Table486 */
},
/* 0x16 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
2100 /* Table487 */
},
/* 0x17 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
2101 /* Table488 */
},
/* 0x18 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
2102 /* Table489 */
},
/* 0x19 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
2104 /* Table490 */
},
/* 0x1a */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
2106 /* Table491 */
},
/* 0x1b */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
2108 /* Table492 */
},
/* 0x1c */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
2110 /* Table493 */
},
/* 0x1d */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
2111 /* Table494 */
},
/* 0x1e */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
2112 /* Table495 */
},
/* 0x1f */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
2113 /* Table496 */
},
/* 0x20 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
2114 /* Table497 */
},
/* 0x21 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
2116 /* Table498 */
},
/* 0x22 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
2118 /* Table499 */
},
/* 0x23 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
2120 /* Table500 */
},
/* 0x24 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
2122 /* Table501 */
},
/* 0x25 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
2123 /* Table502 */
},
/* 0x26 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
2124 /* Table503 */
},
/* 0x27 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
2125 /* Table504 */
},
/* 0x28 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
2126 /* Table505 */
},
/* 0x29 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
2128 /* Table506 */
},
/* 0x2a */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
2130 /* Table507 */
},
/* 0x2b */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
2132 /* Table508 */
},
/* 0x2c */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
2134 /* Table509 */
},
/* 0x2d */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
2135 /* Table510 */
},
/* 0x2e */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
2136 /* Table511 */
},
/* 0x2f */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
2137 /* Table512 */
},
/* 0x30 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
2138 /* Table513 */
},
/* 0x31 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
2140 /* Table514 */
},
/* 0x32 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
2142 /* Table515 */
},
/* 0x33 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
2144 /* Table516 */
},
/* 0x34 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
2146 /* Table517 */
},
/* 0x35 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
2147 /* Table518 */
},
/* 0x36 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
2148 /* Table519 */
},
/* 0x37 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
2149 /* Table520 */
},
/* 0x38 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
2150 /* Table521 */
},
/* 0x39 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
2152 /* Table522 */
},
/* 0x3a */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
2154 /* Table523 */
},
/* 0x3b */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
2156 /* Table524 */
},
/* 0x3c */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
2158 /* Table525 */
},
/* 0x3d */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
2159 /* Table526 */
},
/* 0x3e */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
2160 /* Table527 */
},
/* 0x3f */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
2161 /* Table528 */
},
/* 0x40 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
2162 /* Table529 */
},
/* 0x41 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
2163 /* Table530 */
},
/* 0x42 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
2164 /* Table531 */
},
/* 0x43 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
2165 /* Table532 */
},
/* 0x44 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
2166 /* Table533 */
},
/* 0x45 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
2167 /* Table534 */
},
/* 0x46 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
2168 /* Table535 */
},
/* 0x47 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
2169 /* Table536 */
},
/* 0x48 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
2170 /* Table537 */
},
/* 0x49 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
2171 /* Table538 */
},
/* 0x4a */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
2172 /* Table539 */
},
/* 0x4b */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
2173 /* Table540 */
},
/* 0x4c */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
2174 /* Table541 */
},
/* 0x4d */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
2175 /* Table542 */
},
/* 0x4e */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
2176 /* Table543 */
},
/* 0x4f */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
2177 /* Table544 */
},
/* 0x50 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
2178 /* Table545 */
},
/* 0x51 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
2179 /* Table546 */
},
/* 0x52 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
2180 /* Table547 */
},
/* 0x53 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
2181 /* Table548 */
},
/* 0x54 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
2182 /* Table549 */
},
/* 0x55 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
2183 /* Table550 */
},
/* 0x56 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
2184 /* Table551 */
},
/* 0x57 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
2185 /* Table552 */
},
/* 0x58 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
2186 /* Table553 */
},
/* 0x59 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
2187 /* Table554 */
},
/* 0x5a */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
2188 /* Table555 */
},
/* 0x5b */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
2189 /* Table556 */
},
/* 0x5c */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
2190 /* Table557 */
},
/* 0x5d */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
2191 /* Table558 */
},
/* 0x5e */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
2192 /* Table559 */
},
/* 0x5f */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
2193 /* Table560 */
},
/* 0x60 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
2194 /* Table561 */
},
/* 0x61 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
2195 /* Table562 */
},
/* 0x62 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
2196 /* Table563 */
},
/* 0x63 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
2198 /* Table564 */
},
/* 0x64 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
2200 /* Table565 */
},
/* 0x65 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
2201 /* Table566 */
},
/* 0x66 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
2202 /* Table567 */
},
/* 0x67 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x68 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
2203 /* Table568 */
},
/* 0x69 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
2204 /* Table569 */
},
/* 0x6a */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
2206 /* Table570 */
},
/* 0x6b */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
2207 /* Table571 */
},
/* 0x6c */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
2209 /* Table572 */
},
/* 0x6d */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
2210 /* Table573 */
},
/* 0x6e */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
2211 /* Table574 */
},
/* 0x6f */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
2212 /* Table575 */
},
/* 0x70 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
2213 /* Table576 */
},
/* 0x71 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
2214 /* Table577 */
},
/* 0x72 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
2215 /* Table578 */
},
/* 0x73 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
2216 /* Table579 */
},
/* 0x74 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
2217 /* Table580 */
},
/* 0x75 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
2218 /* Table581 */
},
/* 0x76 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
2219 /* Table582 */
},
/* 0x77 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
2220 /* Table583 */
},
/* 0x78 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
2221 /* Table584 */
},
/* 0x79 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
2222 /* Table585 */
},
/* 0x7a */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
2223 /* Table586 */
},
/* 0x7b */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
2224 /* Table587 */
},
/* 0x7c */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
2225 /* Table588 */
},
/* 0x7d */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
2226 /* Table589 */
},
/* 0x7e */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
2227 /* Table590 */
},
/* 0x7f */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
2228 /* Table591 */
},
/* 0x80 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
2229 /* Table592 */
},
/* 0x81 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
2245 /* Table593 */
},
/* 0x82 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x83 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
2261 /* Table594 */
},
/* 0x84 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
2277 /* Table595 */
},
/* 0x85 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
2279 /* Table596 */
},
/* 0x86 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
2281 /* Table597 */
},
/* 0x87 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
2283 /* Table598 */
},
/* 0x88 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
2285 /* Table599 */
},
/* 0x89 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
2287 /* Table600 */
},
/* 0x8a */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
2289 /* Table601 */
},
/* 0x8b */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
2291 /* Table602 */
},
/* 0x8c */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
2293 /* Table603 */
},
/* 0x8d */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
2295 /* Table604 */
},
/* 0x8e */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
2297 /* Table605 */
},
/* 0x8f */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
2299 /* Table606 */
},
/* 0x90 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
2315 /* Table607 */
},
/* 0x91 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
2316 /* Table608 */
},
/* 0x92 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
2317 /* Table609 */
},
/* 0x93 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
2318 /* Table610 */
},
/* 0x94 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
2319 /* Table611 */
},
/* 0x95 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
2320 /* Table612 */
},
/* 0x96 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
2321 /* Table613 */
},
/* 0x97 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
2322 /* Table614 */
},
/* 0x98 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
2323 /* Table615 */
},
/* 0x99 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
2324 /* Table616 */
},
/* 0x9a */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
2325 /* Table617 */
},
/* 0x9b */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
2326 /* Table618 */
},
/* 0x9c */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
2327 /* Table619 */
},
/* 0x9d */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
2328 /* Table620 */
},
/* 0x9e */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
2329 /* Table621 */
},
/* 0x9f */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
2330 /* Table622 */
},
/* 0xa0 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
2331 /* Table623 */
},
/* 0xa1 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
2332 /* Table624 */
},
/* 0xa2 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
2333 /* Table625 */
},
/* 0xa3 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
2334 /* Table626 */
},
/* 0xa4 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
2335 /* Table627 */
},
/* 0xa5 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
2336 /* Table628 */
},
/* 0xa6 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
2337 /* Table629 */
},
/* 0xa7 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
2338 /* Table630 */
},
/* 0xa8 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
2339 /* Table631 */
},
/* 0xa9 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
2340 /* Table632 */
},
/* 0xaa */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
2341 /* Table633 */
},
/* 0xab */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
2342 /* Table634 */
},
/* 0xac */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
2343 /* Table635 */
},
/* 0xad */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
2344 /* Table636 */
},
/* 0xae */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
2345 /* Table637 */
},
/* 0xaf */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
2346 /* Table638 */
},
/* 0xb0 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
2347 /* Table639 */
},
/* 0xb1 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
2348 /* Table640 */
},
/* 0xb2 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
2349 /* Table641 */
},
/* 0xb3 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
2350 /* Table642 */
},
/* 0xb4 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
2351 /* Table643 */
},
/* 0xb5 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
2352 /* Table644 */
},
/* 0xb6 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
2353 /* Table645 */
},
/* 0xb7 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
2354 /* Table646 */
},
/* 0xb8 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
2355 /* Table647 */
},
/* 0xb9 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
2356 /* Table648 */
},
/* 0xba */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
2357 /* Table649 */
},
/* 0xbb */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
2358 /* Table650 */
},
/* 0xbc */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
2359 /* Table651 */
},
/* 0xbd */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
2360 /* Table652 */
},
/* 0xbe */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
2361 /* Table653 */
},
/* 0xbf */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
2362 /* Table654 */
},
/* 0xc0 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
2363 /* Table655 */
},
/* 0xc1 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
2379 /* Table656 */
},
/* 0xc2 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
2395 /* Table657 */
},
/* 0xc3 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
2396 /* Table658 */
},
/* 0xc4 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
2397 /* Table659 */
},
/* 0xc5 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
2399 /* Table660 */
},
/* 0xc6 */
{ /* struct ModRMDecision */
MODRM_SPLITMISC,
2401 /* Table661 */
},
/* 0xc7 */
{ /* struct ModRMDecision */
MODRM_SPLITMISC,
2473 /* Table662 */
},
/* 0xc8 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
2545 /* Table663 */
},
/* 0xc9 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
2546 /* Table664 */
},
/* 0xca */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
2547 /* Table665 */
},
/* 0xcb */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
2548 /* Table666 */
},
/* 0xcc */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
2549 /* Table667 */
},
/* 0xcd */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
2550 /* Table668 */
},
/* 0xce */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
2551 /* Table669 */
},
/* 0xcf */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
2552 /* Table670 */
},
/* 0xd0 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
2553 /* Table671 */
},
/* 0xd1 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
2569 /* Table672 */
},
/* 0xd2 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
2585 /* Table673 */
},
/* 0xd3 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
2601 /* Table674 */
},
/* 0xd4 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
2617 /* Table675 */
},
/* 0xd5 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
2618 /* Table676 */
},
/* 0xd6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd7 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
2619 /* Table677 */
},
/* 0xd8 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
2620 /* Table678 */
},
/* 0xd9 */
{ /* struct ModRMDecision */
MODRM_SPLITMISC,
2636 /* Table679 */
},
/* 0xda */
{ /* struct ModRMDecision */
MODRM_SPLITMISC,
2708 /* Table680 */
},
/* 0xdb */
{ /* struct ModRMDecision */
MODRM_SPLITMISC,
2780 /* Table681 */
},
/* 0xdc */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
2852 /* Table682 */
},
/* 0xdd */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
2868 /* Table683 */
},
/* 0xde */
{ /* struct ModRMDecision */
MODRM_SPLITMISC,
2884 /* Table684 */
},
/* 0xdf */
{ /* struct ModRMDecision */
MODRM_SPLITMISC,
2956 /* Table685 */
},
/* 0xe0 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
3028 /* Table686 */
},
/* 0xe1 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
3029 /* Table687 */
},
/* 0xe2 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
3030 /* Table688 */
},
/* 0xe3 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
3031 /* Table689 */
},
/* 0xe4 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
3032 /* Table690 */
},
/* 0xe5 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
3033 /* Table691 */
},
/* 0xe6 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
3034 /* Table692 */
},
/* 0xe7 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
3035 /* Table693 */
},
/* 0xe8 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
3036 /* Table694 */
},
/* 0xe9 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
3037 /* Table695 */
},
/* 0xea */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
3038 /* Table696 */
},
/* 0xeb */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
3039 /* Table697 */
},
/* 0xec */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
3040 /* Table698 */
},
/* 0xed */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
3041 /* Table699 */
},
/* 0xee */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
3042 /* Table700 */
},
/* 0xef */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
3043 /* Table701 */
},
/* 0xf0 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
3044 /* Table702 */
},
/* 0xf1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf2 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
3045 /* Table703 */
},
/* 0xf3 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
3046 /* Table704 */
},
/* 0xf4 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
3047 /* Table705 */
},
/* 0xf5 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
3048 /* Table706 */
},
/* 0xf6 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
3049 /* Table707 */
},
/* 0xf7 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
3065 /* Table708 */
},
/* 0xf8 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
3081 /* Table709 */
},
/* 0xf9 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
3082 /* Table710 */
},
/* 0xfa */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
3083 /* Table711 */
},
/* 0xfb */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
3084 /* Table712 */
},
/* 0xfc */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
3085 /* Table713 */
},
/* 0xfd */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
3086 /* Table714 */
},
/* 0xfe */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
3087 /* Table715 */
},
/* 0xff */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
3103 /* Table716 */
}
}
}
, /* IC_ADSIZE */
{ /* struct OpcodeDecision */
{
/* 0x00 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
3119 /* Table717 */
},
/* 0x01 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
3121 /* Table718 */
},
/* 0x02 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
3123 /* Table719 */
},
/* 0x03 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
3125 /* Table720 */
},
/* 0x04 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
3127 /* Table721 */
},
/* 0x05 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
3128 /* Table722 */
},
/* 0x06 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
3129 /* Table723 */
},
/* 0x07 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
3130 /* Table724 */
},
/* 0x08 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
3131 /* Table725 */
},
/* 0x09 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
3133 /* Table726 */
},
/* 0x0a */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
3135 /* Table727 */
},
/* 0x0b */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
3137 /* Table728 */
},
/* 0x0c */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
3139 /* Table729 */
},
/* 0x0d */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
3140 /* Table730 */
},
/* 0x0e */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
3141 /* Table731 */
},
/* 0x0f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x10 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
3142 /* Table732 */
},
/* 0x11 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
3144 /* Table733 */
},
/* 0x12 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
3146 /* Table734 */
},
/* 0x13 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
3148 /* Table735 */
},
/* 0x14 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
3150 /* Table736 */
},
/* 0x15 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
3151 /* Table737 */
},
/* 0x16 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
3152 /* Table738 */
},
/* 0x17 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
3153 /* Table739 */
},
/* 0x18 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
3154 /* Table740 */
},
/* 0x19 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
3156 /* Table741 */
},
/* 0x1a */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
3158 /* Table742 */
},
/* 0x1b */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
3160 /* Table743 */
},
/* 0x1c */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
3162 /* Table744 */
},
/* 0x1d */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
3163 /* Table745 */
},
/* 0x1e */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
3164 /* Table746 */
},
/* 0x1f */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
3165 /* Table747 */
},
/* 0x20 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
3166 /* Table748 */
},
/* 0x21 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
3168 /* Table749 */
},
/* 0x22 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
3170 /* Table750 */
},
/* 0x23 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
3172 /* Table751 */
},
/* 0x24 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
3174 /* Table752 */
},
/* 0x25 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
3175 /* Table753 */
},
/* 0x26 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
3176 /* Table754 */
},
/* 0x27 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
3177 /* Table755 */
},
/* 0x28 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
3178 /* Table756 */
},
/* 0x29 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
3180 /* Table757 */
},
/* 0x2a */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
3182 /* Table758 */
},
/* 0x2b */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
3184 /* Table759 */
},
/* 0x2c */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
3186 /* Table760 */
},
/* 0x2d */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
3187 /* Table761 */
},
/* 0x2e */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
3188 /* Table762 */
},
/* 0x2f */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
3189 /* Table763 */
},
/* 0x30 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
3190 /* Table764 */
},
/* 0x31 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
3192 /* Table765 */
},
/* 0x32 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
3194 /* Table766 */
},
/* 0x33 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
3196 /* Table767 */
},
/* 0x34 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
3198 /* Table768 */
},
/* 0x35 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
3199 /* Table769 */
},
/* 0x36 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
3200 /* Table770 */
},
/* 0x37 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
3201 /* Table771 */
},
/* 0x38 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
3202 /* Table772 */
},
/* 0x39 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
3204 /* Table773 */
},
/* 0x3a */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
3206 /* Table774 */
},
/* 0x3b */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
3208 /* Table775 */
},
/* 0x3c */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
3210 /* Table776 */
},
/* 0x3d */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
3211 /* Table777 */
},
/* 0x3e */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
3212 /* Table778 */
},
/* 0x3f */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
3213 /* Table779 */
},
/* 0x40 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
3214 /* Table780 */
},
/* 0x41 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
3215 /* Table781 */
},
/* 0x42 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
3216 /* Table782 */
},
/* 0x43 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
3217 /* Table783 */
},
/* 0x44 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
3218 /* Table784 */
},
/* 0x45 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
3219 /* Table785 */
},
/* 0x46 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
3220 /* Table786 */
},
/* 0x47 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
3221 /* Table787 */
},
/* 0x48 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
3222 /* Table788 */
},
/* 0x49 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
3223 /* Table789 */
},
/* 0x4a */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
3224 /* Table790 */
},
/* 0x4b */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
3225 /* Table791 */
},
/* 0x4c */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
3226 /* Table792 */
},
/* 0x4d */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
3227 /* Table793 */
},
/* 0x4e */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
3228 /* Table794 */
},
/* 0x4f */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
3229 /* Table795 */
},
/* 0x50 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
3230 /* Table796 */
},
/* 0x51 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
3231 /* Table797 */
},
/* 0x52 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
3232 /* Table798 */
},
/* 0x53 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
3233 /* Table799 */
},
/* 0x54 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
3234 /* Table800 */
},
/* 0x55 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
3235 /* Table801 */
},
/* 0x56 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
3236 /* Table802 */
},
/* 0x57 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
3237 /* Table803 */
},
/* 0x58 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
3238 /* Table804 */
},
/* 0x59 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
3239 /* Table805 */
},
/* 0x5a */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
3240 /* Table806 */
},
/* 0x5b */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
3241 /* Table807 */
},
/* 0x5c */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
3242 /* Table808 */
},
/* 0x5d */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
3243 /* Table809 */
},
/* 0x5e */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
3244 /* Table810 */
},
/* 0x5f */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
3245 /* Table811 */
},
/* 0x60 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
3246 /* Table812 */
},
/* 0x61 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
3247 /* Table813 */
},
/* 0x62 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
3248 /* Table814 */
},
/* 0x63 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
3250 /* Table815 */
},
/* 0x64 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
3252 /* Table816 */
},
/* 0x65 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
3253 /* Table817 */
},
/* 0x66 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
3254 /* Table818 */
},
/* 0x67 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x68 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
3255 /* Table819 */
},
/* 0x69 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
3256 /* Table820 */
},
/* 0x6a */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
3258 /* Table821 */
},
/* 0x6b */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
3259 /* Table822 */
},
/* 0x6c */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
3261 /* Table823 */
},
/* 0x6d */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
3262 /* Table824 */
},
/* 0x6e */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
3263 /* Table825 */
},
/* 0x6f */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
3264 /* Table826 */
},
/* 0x70 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
3265 /* Table827 */
},
/* 0x71 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
3266 /* Table828 */
},
/* 0x72 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
3267 /* Table829 */
},
/* 0x73 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
3268 /* Table830 */
},
/* 0x74 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
3269 /* Table831 */
},
/* 0x75 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
3270 /* Table832 */
},
/* 0x76 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
3271 /* Table833 */
},
/* 0x77 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
3272 /* Table834 */
},
/* 0x78 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
3273 /* Table835 */
},
/* 0x79 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
3274 /* Table836 */
},
/* 0x7a */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
3275 /* Table837 */
},
/* 0x7b */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
3276 /* Table838 */
},
/* 0x7c */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
3277 /* Table839 */
},
/* 0x7d */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
3278 /* Table840 */
},
/* 0x7e */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
3279 /* Table841 */
},
/* 0x7f */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
3280 /* Table842 */
},
/* 0x80 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
3281 /* Table843 */
},
/* 0x81 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
3297 /* Table844 */
},
/* 0x82 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x83 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
3313 /* Table845 */
},
/* 0x84 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
3329 /* Table846 */
},
/* 0x85 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
3331 /* Table847 */
},
/* 0x86 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
3333 /* Table848 */
},
/* 0x87 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
3335 /* Table849 */
},
/* 0x88 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
3337 /* Table850 */
},
/* 0x89 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
3339 /* Table851 */
},
/* 0x8a */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
3341 /* Table852 */
},
/* 0x8b */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
3343 /* Table853 */
},
/* 0x8c */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
3345 /* Table854 */
},
/* 0x8d */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
3347 /* Table855 */
},
/* 0x8e */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
3349 /* Table856 */
},
/* 0x8f */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
3351 /* Table857 */
},
/* 0x90 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
3367 /* Table858 */
},
/* 0x91 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
3368 /* Table859 */
},
/* 0x92 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
3369 /* Table860 */
},
/* 0x93 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
3370 /* Table861 */
},
/* 0x94 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
3371 /* Table862 */
},
/* 0x95 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
3372 /* Table863 */
},
/* 0x96 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
3373 /* Table864 */
},
/* 0x97 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
3374 /* Table865 */
},
/* 0x98 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
3375 /* Table866 */
},
/* 0x99 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
3376 /* Table867 */
},
/* 0x9a */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
3377 /* Table868 */
},
/* 0x9b */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
3378 /* Table869 */
},
/* 0x9c */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
3379 /* Table870 */
},
/* 0x9d */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
3380 /* Table871 */
},
/* 0x9e */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
3381 /* Table872 */
},
/* 0x9f */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
3382 /* Table873 */
},
/* 0xa0 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
3383 /* Table874 */
},
/* 0xa1 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
3384 /* Table875 */
},
/* 0xa2 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
3385 /* Table876 */
},
/* 0xa3 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
3386 /* Table877 */
},
/* 0xa4 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
3387 /* Table878 */
},
/* 0xa5 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
3388 /* Table879 */
},
/* 0xa6 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
3389 /* Table880 */
},
/* 0xa7 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
3390 /* Table881 */
},
/* 0xa8 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
3391 /* Table882 */
},
/* 0xa9 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
3392 /* Table883 */
},
/* 0xaa */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
3393 /* Table884 */
},
/* 0xab */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
3394 /* Table885 */
},
/* 0xac */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
3395 /* Table886 */
},
/* 0xad */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
3396 /* Table887 */
},
/* 0xae */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
3397 /* Table888 */
},
/* 0xaf */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
3398 /* Table889 */
},
/* 0xb0 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
3399 /* Table890 */
},
/* 0xb1 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
3400 /* Table891 */
},
/* 0xb2 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
3401 /* Table892 */
},
/* 0xb3 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
3402 /* Table893 */
},
/* 0xb4 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
3403 /* Table894 */
},
/* 0xb5 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
3404 /* Table895 */
},
/* 0xb6 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
3405 /* Table896 */
},
/* 0xb7 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
3406 /* Table897 */
},
/* 0xb8 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
3407 /* Table898 */
},
/* 0xb9 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
3408 /* Table899 */
},
/* 0xba */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
3409 /* Table900 */
},
/* 0xbb */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
3410 /* Table901 */
},
/* 0xbc */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
3411 /* Table902 */
},
/* 0xbd */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
3412 /* Table903 */
},
/* 0xbe */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
3413 /* Table904 */
},
/* 0xbf */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
3414 /* Table905 */
},
/* 0xc0 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
3415 /* Table906 */
},
/* 0xc1 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
3431 /* Table907 */
},
/* 0xc2 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
3447 /* Table908 */
},
/* 0xc3 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
3448 /* Table909 */
},
/* 0xc4 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
3449 /* Table910 */
},
/* 0xc5 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
3451 /* Table911 */
},
/* 0xc6 */
{ /* struct ModRMDecision */
MODRM_SPLITMISC,
3453 /* Table912 */
},
/* 0xc7 */
{ /* struct ModRMDecision */
MODRM_SPLITMISC,
3525 /* Table913 */
},
/* 0xc8 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
3597 /* Table914 */
},
/* 0xc9 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
3598 /* Table915 */
},
/* 0xca */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
3599 /* Table916 */
},
/* 0xcb */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
3600 /* Table917 */
},
/* 0xcc */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
3601 /* Table918 */
},
/* 0xcd */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
3602 /* Table919 */
},
/* 0xce */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
3603 /* Table920 */
},
/* 0xcf */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
3604 /* Table921 */
},
/* 0xd0 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
3605 /* Table922 */
},
/* 0xd1 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
3621 /* Table923 */
},
/* 0xd2 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
3637 /* Table924 */
},
/* 0xd3 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
3653 /* Table925 */
},
/* 0xd4 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
3669 /* Table926 */
},
/* 0xd5 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
3670 /* Table927 */
},
/* 0xd6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd7 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
3671 /* Table928 */
},
/* 0xd8 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
3672 /* Table929 */
},
/* 0xd9 */
{ /* struct ModRMDecision */
MODRM_SPLITMISC,
3688 /* Table930 */
},
/* 0xda */
{ /* struct ModRMDecision */
MODRM_SPLITMISC,
3760 /* Table931 */
},
/* 0xdb */
{ /* struct ModRMDecision */
MODRM_SPLITMISC,
3832 /* Table932 */
},
/* 0xdc */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
3904 /* Table933 */
},
/* 0xdd */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
3920 /* Table934 */
},
/* 0xde */
{ /* struct ModRMDecision */
MODRM_SPLITMISC,
3936 /* Table935 */
},
/* 0xdf */
{ /* struct ModRMDecision */
MODRM_SPLITMISC,
4008 /* Table936 */
},
/* 0xe0 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
4080 /* Table937 */
},
/* 0xe1 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
4081 /* Table938 */
},
/* 0xe2 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
4082 /* Table939 */
},
/* 0xe3 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
4083 /* Table940 */
},
/* 0xe4 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
4084 /* Table941 */
},
/* 0xe5 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
4085 /* Table942 */
},
/* 0xe6 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
4086 /* Table943 */
},
/* 0xe7 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
4087 /* Table944 */
},
/* 0xe8 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
4088 /* Table945 */
},
/* 0xe9 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
4089 /* Table946 */
},
/* 0xea */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
4090 /* Table947 */
},
/* 0xeb */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
4091 /* Table948 */
},
/* 0xec */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
4092 /* Table949 */
},
/* 0xed */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
4093 /* Table950 */
},
/* 0xee */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
4094 /* Table951 */
},
/* 0xef */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
4095 /* Table952 */
},
/* 0xf0 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
4096 /* Table953 */
},
/* 0xf1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf2 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
4097 /* Table954 */
},
/* 0xf3 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
4098 /* Table955 */
},
/* 0xf4 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
4099 /* Table956 */
},
/* 0xf5 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
4100 /* Table957 */
},
/* 0xf6 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
4101 /* Table958 */
},
/* 0xf7 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
4117 /* Table959 */
},
/* 0xf8 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
4133 /* Table960 */
},
/* 0xf9 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
4134 /* Table961 */
},
/* 0xfa */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
4135 /* Table962 */
},
/* 0xfb */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
4136 /* Table963 */
},
/* 0xfc */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
4137 /* Table964 */
},
/* 0xfd */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
4138 /* Table965 */
},
/* 0xfe */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
4139 /* Table966 */
},
/* 0xff */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
4155 /* Table967 */
}
}
}
, /* IC_XD */
{ /* struct OpcodeDecision */
{
/* 0x00 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
4171 /* Table968 */
},
/* 0x01 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
4173 /* Table969 */
},
/* 0x02 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
4175 /* Table970 */
},
/* 0x03 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
4177 /* Table971 */
},
/* 0x04 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
4179 /* Table972 */
},
/* 0x05 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
4180 /* Table973 */
},
/* 0x06 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
4181 /* Table974 */
},
/* 0x07 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
4182 /* Table975 */
},
/* 0x08 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
4183 /* Table976 */
},
/* 0x09 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
4185 /* Table977 */
},
/* 0x0a */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
4187 /* Table978 */
},
/* 0x0b */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
4189 /* Table979 */
},
/* 0x0c */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
4191 /* Table980 */
},
/* 0x0d */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
4192 /* Table981 */
},
/* 0x0e */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
4193 /* Table982 */
},
/* 0x0f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x10 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
4194 /* Table983 */
},
/* 0x11 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
4196 /* Table984 */
},
/* 0x12 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
4198 /* Table985 */
},
/* 0x13 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
4200 /* Table986 */
},
/* 0x14 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
4202 /* Table987 */
},
/* 0x15 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
4203 /* Table988 */
},
/* 0x16 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
4204 /* Table989 */
},
/* 0x17 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
4205 /* Table990 */
},
/* 0x18 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
4206 /* Table991 */
},
/* 0x19 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
4208 /* Table992 */
},
/* 0x1a */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
4210 /* Table993 */
},
/* 0x1b */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
4212 /* Table994 */
},
/* 0x1c */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
4214 /* Table995 */
},
/* 0x1d */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
4215 /* Table996 */
},
/* 0x1e */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
4216 /* Table997 */
},
/* 0x1f */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
4217 /* Table998 */
},
/* 0x20 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
4218 /* Table999 */
},
/* 0x21 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
4220 /* Table1000 */
},
/* 0x22 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
4222 /* Table1001 */
},
/* 0x23 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
4224 /* Table1002 */
},
/* 0x24 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
4226 /* Table1003 */
},
/* 0x25 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
4227 /* Table1004 */
},
/* 0x26 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
4228 /* Table1005 */
},
/* 0x27 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
4229 /* Table1006 */
},
/* 0x28 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
4230 /* Table1007 */
},
/* 0x29 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
4232 /* Table1008 */
},
/* 0x2a */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
4234 /* Table1009 */
},
/* 0x2b */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
4236 /* Table1010 */
},
/* 0x2c */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
4238 /* Table1011 */
},
/* 0x2d */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
4239 /* Table1012 */
},
/* 0x2e */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
4240 /* Table1013 */
},
/* 0x2f */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
4241 /* Table1014 */
},
/* 0x30 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
4242 /* Table1015 */
},
/* 0x31 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
4244 /* Table1016 */
},
/* 0x32 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
4246 /* Table1017 */
},
/* 0x33 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
4248 /* Table1018 */
},
/* 0x34 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
4250 /* Table1019 */
},
/* 0x35 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
4251 /* Table1020 */
},
/* 0x36 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
4252 /* Table1021 */
},
/* 0x37 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
4253 /* Table1022 */
},
/* 0x38 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
4254 /* Table1023 */
},
/* 0x39 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
4256 /* Table1024 */
},
/* 0x3a */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
4258 /* Table1025 */
},
/* 0x3b */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
4260 /* Table1026 */
},
/* 0x3c */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
4262 /* Table1027 */
},
/* 0x3d */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
4263 /* Table1028 */
},
/* 0x3e */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
4264 /* Table1029 */
},
/* 0x3f */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
4265 /* Table1030 */
},
/* 0x40 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
4266 /* Table1031 */
},
/* 0x41 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
4267 /* Table1032 */
},
/* 0x42 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
4268 /* Table1033 */
},
/* 0x43 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
4269 /* Table1034 */
},
/* 0x44 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
4270 /* Table1035 */
},
/* 0x45 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
4271 /* Table1036 */
},
/* 0x46 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
4272 /* Table1037 */
},
/* 0x47 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
4273 /* Table1038 */
},
/* 0x48 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
4274 /* Table1039 */
},
/* 0x49 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
4275 /* Table1040 */
},
/* 0x4a */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
4276 /* Table1041 */
},
/* 0x4b */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
4277 /* Table1042 */
},
/* 0x4c */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
4278 /* Table1043 */
},
/* 0x4d */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
4279 /* Table1044 */
},
/* 0x4e */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
4280 /* Table1045 */
},
/* 0x4f */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
4281 /* Table1046 */
},
/* 0x50 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
4282 /* Table1047 */
},
/* 0x51 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
4283 /* Table1048 */
},
/* 0x52 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
4284 /* Table1049 */
},
/* 0x53 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
4285 /* Table1050 */
},
/* 0x54 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
4286 /* Table1051 */
},
/* 0x55 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
4287 /* Table1052 */
},
/* 0x56 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
4288 /* Table1053 */
},
/* 0x57 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
4289 /* Table1054 */
},
/* 0x58 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
4290 /* Table1055 */
},
/* 0x59 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
4291 /* Table1056 */
},
/* 0x5a */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
4292 /* Table1057 */
},
/* 0x5b */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
4293 /* Table1058 */
},
/* 0x5c */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
4294 /* Table1059 */
},
/* 0x5d */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
4295 /* Table1060 */
},
/* 0x5e */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
4296 /* Table1061 */
},
/* 0x5f */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
4297 /* Table1062 */
},
/* 0x60 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
4298 /* Table1063 */
},
/* 0x61 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
4299 /* Table1064 */
},
/* 0x62 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
4300 /* Table1065 */
},
/* 0x63 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
4302 /* Table1066 */
},
/* 0x64 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
4304 /* Table1067 */
},
/* 0x65 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
4305 /* Table1068 */
},
/* 0x66 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
4306 /* Table1069 */
},
/* 0x67 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x68 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
4307 /* Table1070 */
},
/* 0x69 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
4308 /* Table1071 */
},
/* 0x6a */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
4310 /* Table1072 */
},
/* 0x6b */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
4311 /* Table1073 */
},
/* 0x6c */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
4313 /* Table1074 */
},
/* 0x6d */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
4314 /* Table1075 */
},
/* 0x6e */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
4315 /* Table1076 */
},
/* 0x6f */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
4316 /* Table1077 */
},
/* 0x70 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
4317 /* Table1078 */
},
/* 0x71 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
4318 /* Table1079 */
},
/* 0x72 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
4319 /* Table1080 */
},
/* 0x73 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
4320 /* Table1081 */
},
/* 0x74 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
4321 /* Table1082 */
},
/* 0x75 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
4322 /* Table1083 */
},
/* 0x76 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
4323 /* Table1084 */
},
/* 0x77 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
4324 /* Table1085 */
},
/* 0x78 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
4325 /* Table1086 */
},
/* 0x79 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
4326 /* Table1087 */
},
/* 0x7a */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
4327 /* Table1088 */
},
/* 0x7b */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
4328 /* Table1089 */
},
/* 0x7c */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
4329 /* Table1090 */
},
/* 0x7d */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
4330 /* Table1091 */
},
/* 0x7e */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
4331 /* Table1092 */
},
/* 0x7f */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
4332 /* Table1093 */
},
/* 0x80 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
4333 /* Table1094 */
},
/* 0x81 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
4349 /* Table1095 */
},
/* 0x82 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x83 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
4365 /* Table1096 */
},
/* 0x84 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
4381 /* Table1097 */
},
/* 0x85 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
4383 /* Table1098 */
},
/* 0x86 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
4385 /* Table1099 */
},
/* 0x87 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
4387 /* Table1100 */
},
/* 0x88 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
4389 /* Table1101 */
},
/* 0x89 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
4391 /* Table1102 */
},
/* 0x8a */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
4393 /* Table1103 */
},
/* 0x8b */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
4395 /* Table1104 */
},
/* 0x8c */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
4397 /* Table1105 */
},
/* 0x8d */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
4399 /* Table1106 */
},
/* 0x8e */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
4401 /* Table1107 */
},
/* 0x8f */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
4403 /* Table1108 */
},
/* 0x90 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
4419 /* Table1109 */
},
/* 0x91 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
4420 /* Table1110 */
},
/* 0x92 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
4421 /* Table1111 */
},
/* 0x93 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
4422 /* Table1112 */
},
/* 0x94 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
4423 /* Table1113 */
},
/* 0x95 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
4424 /* Table1114 */
},
/* 0x96 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
4425 /* Table1115 */
},
/* 0x97 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
4426 /* Table1116 */
},
/* 0x98 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
4427 /* Table1117 */
},
/* 0x99 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
4428 /* Table1118 */
},
/* 0x9a */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
4429 /* Table1119 */
},
/* 0x9b */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
4430 /* Table1120 */
},
/* 0x9c */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
4431 /* Table1121 */
},
/* 0x9d */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
4432 /* Table1122 */
},
/* 0x9e */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
4433 /* Table1123 */
},
/* 0x9f */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
4434 /* Table1124 */
},
/* 0xa0 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
4435 /* Table1125 */
},
/* 0xa1 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
4436 /* Table1126 */
},
/* 0xa2 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
4437 /* Table1127 */
},
/* 0xa3 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
4438 /* Table1128 */
},
/* 0xa4 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
4439 /* Table1129 */
},
/* 0xa5 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
4440 /* Table1130 */
},
/* 0xa6 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
4441 /* Table1131 */
},
/* 0xa7 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
4442 /* Table1132 */
},
/* 0xa8 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
4443 /* Table1133 */
},
/* 0xa9 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
4444 /* Table1134 */
},
/* 0xaa */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
4445 /* Table1135 */
},
/* 0xab */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
4446 /* Table1136 */
},
/* 0xac */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
4447 /* Table1137 */
},
/* 0xad */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
4448 /* Table1138 */
},
/* 0xae */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
4449 /* Table1139 */
},
/* 0xaf */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
4450 /* Table1140 */
},
/* 0xb0 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
4451 /* Table1141 */
},
/* 0xb1 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
4452 /* Table1142 */
},
/* 0xb2 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
4453 /* Table1143 */
},
/* 0xb3 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
4454 /* Table1144 */
},
/* 0xb4 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
4455 /* Table1145 */
},
/* 0xb5 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
4456 /* Table1146 */
},
/* 0xb6 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
4457 /* Table1147 */
},
/* 0xb7 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
4458 /* Table1148 */
},
/* 0xb8 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
4459 /* Table1149 */
},
/* 0xb9 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
4460 /* Table1150 */
},
/* 0xba */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
4461 /* Table1151 */
},
/* 0xbb */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
4462 /* Table1152 */
},
/* 0xbc */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
4463 /* Table1153 */
},
/* 0xbd */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
4464 /* Table1154 */
},
/* 0xbe */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
4465 /* Table1155 */
},
/* 0xbf */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
4466 /* Table1156 */
},
/* 0xc0 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
4467 /* Table1157 */
},
/* 0xc1 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
4483 /* Table1158 */
},
/* 0xc2 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
4499 /* Table1159 */
},
/* 0xc3 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
4500 /* Table1160 */
},
/* 0xc4 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
4501 /* Table1161 */
},
/* 0xc5 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
4503 /* Table1162 */
},
/* 0xc6 */
{ /* struct ModRMDecision */
MODRM_SPLITMISC,
4505 /* Table1163 */
},
/* 0xc7 */
{ /* struct ModRMDecision */
MODRM_SPLITMISC,
4577 /* Table1164 */
},
/* 0xc8 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
4649 /* Table1165 */
},
/* 0xc9 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
4650 /* Table1166 */
},
/* 0xca */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
4651 /* Table1167 */
},
/* 0xcb */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
4652 /* Table1168 */
},
/* 0xcc */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
4653 /* Table1169 */
},
/* 0xcd */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
4654 /* Table1170 */
},
/* 0xce */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
4655 /* Table1171 */
},
/* 0xcf */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
4656 /* Table1172 */
},
/* 0xd0 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
4657 /* Table1173 */
},
/* 0xd1 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
4673 /* Table1174 */
},
/* 0xd2 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
4689 /* Table1175 */
},
/* 0xd3 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
4705 /* Table1176 */
},
/* 0xd4 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
4721 /* Table1177 */
},
/* 0xd5 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
4722 /* Table1178 */
},
/* 0xd6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd7 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
4723 /* Table1179 */
},
/* 0xd8 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
4724 /* Table1180 */
},
/* 0xd9 */
{ /* struct ModRMDecision */
MODRM_SPLITMISC,
4740 /* Table1181 */
},
/* 0xda */
{ /* struct ModRMDecision */
MODRM_SPLITMISC,
4812 /* Table1182 */
},
/* 0xdb */
{ /* struct ModRMDecision */
MODRM_SPLITMISC,
4884 /* Table1183 */
},
/* 0xdc */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
4956 /* Table1184 */
},
/* 0xdd */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
4972 /* Table1185 */
},
/* 0xde */
{ /* struct ModRMDecision */
MODRM_SPLITMISC,
4988 /* Table1186 */
},
/* 0xdf */
{ /* struct ModRMDecision */
MODRM_SPLITMISC,
5060 /* Table1187 */
},
/* 0xe0 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
5132 /* Table1188 */
},
/* 0xe1 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
5133 /* Table1189 */
},
/* 0xe2 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
5134 /* Table1190 */
},
/* 0xe3 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
5135 /* Table1191 */
},
/* 0xe4 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
5136 /* Table1192 */
},
/* 0xe5 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
5137 /* Table1193 */
},
/* 0xe6 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
5138 /* Table1194 */
},
/* 0xe7 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
5139 /* Table1195 */
},
/* 0xe8 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
5140 /* Table1196 */
},
/* 0xe9 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
5141 /* Table1197 */
},
/* 0xea */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
5142 /* Table1198 */
},
/* 0xeb */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
5143 /* Table1199 */
},
/* 0xec */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
5144 /* Table1200 */
},
/* 0xed */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
5145 /* Table1201 */
},
/* 0xee */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
5146 /* Table1202 */
},
/* 0xef */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
5147 /* Table1203 */
},
/* 0xf0 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
5148 /* Table1204 */
},
/* 0xf1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf2 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
5149 /* Table1205 */
},
/* 0xf3 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
5150 /* Table1206 */
},
/* 0xf4 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
5151 /* Table1207 */
},
/* 0xf5 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
5152 /* Table1208 */
},
/* 0xf6 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
5153 /* Table1209 */
},
/* 0xf7 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
5169 /* Table1210 */
},
/* 0xf8 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
5185 /* Table1211 */
},
/* 0xf9 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
5186 /* Table1212 */
},
/* 0xfa */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
5187 /* Table1213 */
},
/* 0xfb */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
5188 /* Table1214 */
},
/* 0xfc */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
5189 /* Table1215 */
},
/* 0xfd */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
5190 /* Table1216 */
},
/* 0xfe */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
5191 /* Table1217 */
},
/* 0xff */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
5207 /* Table1218 */
}
}
}
, /* IC_XS */
{ /* struct OpcodeDecision */
{
/* 0x00 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
5223 /* Table1219 */
},
/* 0x01 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
5225 /* Table1220 */
},
/* 0x02 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
5227 /* Table1221 */
},
/* 0x03 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
5229 /* Table1222 */
},
/* 0x04 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
5231 /* Table1223 */
},
/* 0x05 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
5232 /* Table1224 */
},
/* 0x06 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
5233 /* Table1225 */
},
/* 0x07 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
5234 /* Table1226 */
},
/* 0x08 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
5235 /* Table1227 */
},
/* 0x09 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
5237 /* Table1228 */
},
/* 0x0a */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
5239 /* Table1229 */
},
/* 0x0b */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
5241 /* Table1230 */
},
/* 0x0c */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
5243 /* Table1231 */
},
/* 0x0d */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
5244 /* Table1232 */
},
/* 0x0e */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
5245 /* Table1233 */
},
/* 0x0f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x10 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
5246 /* Table1234 */
},
/* 0x11 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
5248 /* Table1235 */
},
/* 0x12 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
5250 /* Table1236 */
},
/* 0x13 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
5252 /* Table1237 */
},
/* 0x14 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
5254 /* Table1238 */
},
/* 0x15 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
5255 /* Table1239 */
},
/* 0x16 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
5256 /* Table1240 */
},
/* 0x17 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
5257 /* Table1241 */
},
/* 0x18 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
5258 /* Table1242 */
},
/* 0x19 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
5260 /* Table1243 */
},
/* 0x1a */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
5262 /* Table1244 */
},
/* 0x1b */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
5264 /* Table1245 */
},
/* 0x1c */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
5266 /* Table1246 */
},
/* 0x1d */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
5267 /* Table1247 */
},
/* 0x1e */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
5268 /* Table1248 */
},
/* 0x1f */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
5269 /* Table1249 */
},
/* 0x20 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
5270 /* Table1250 */
},
/* 0x21 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
5272 /* Table1251 */
},
/* 0x22 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
5274 /* Table1252 */
},
/* 0x23 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
5276 /* Table1253 */
},
/* 0x24 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
5278 /* Table1254 */
},
/* 0x25 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
5279 /* Table1255 */
},
/* 0x26 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
5280 /* Table1256 */
},
/* 0x27 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
5281 /* Table1257 */
},
/* 0x28 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
5282 /* Table1258 */
},
/* 0x29 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
5284 /* Table1259 */
},
/* 0x2a */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
5286 /* Table1260 */
},
/* 0x2b */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
5288 /* Table1261 */
},
/* 0x2c */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
5290 /* Table1262 */
},
/* 0x2d */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
5291 /* Table1263 */
},
/* 0x2e */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
5292 /* Table1264 */
},
/* 0x2f */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
5293 /* Table1265 */
},
/* 0x30 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
5294 /* Table1266 */
},
/* 0x31 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
5296 /* Table1267 */
},
/* 0x32 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
5298 /* Table1268 */
},
/* 0x33 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
5300 /* Table1269 */
},
/* 0x34 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
5302 /* Table1270 */
},
/* 0x35 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
5303 /* Table1271 */
},
/* 0x36 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
5304 /* Table1272 */
},
/* 0x37 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
5305 /* Table1273 */
},
/* 0x38 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
5306 /* Table1274 */
},
/* 0x39 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
5308 /* Table1275 */
},
/* 0x3a */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
5310 /* Table1276 */
},
/* 0x3b */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
5312 /* Table1277 */
},
/* 0x3c */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
5314 /* Table1278 */
},
/* 0x3d */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
5315 /* Table1279 */
},
/* 0x3e */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
5316 /* Table1280 */
},
/* 0x3f */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
5317 /* Table1281 */
},
/* 0x40 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
5318 /* Table1282 */
},
/* 0x41 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
5319 /* Table1283 */
},
/* 0x42 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
5320 /* Table1284 */
},
/* 0x43 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
5321 /* Table1285 */
},
/* 0x44 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
5322 /* Table1286 */
},
/* 0x45 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
5323 /* Table1287 */
},
/* 0x46 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
5324 /* Table1288 */
},
/* 0x47 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
5325 /* Table1289 */
},
/* 0x48 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
5326 /* Table1290 */
},
/* 0x49 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
5327 /* Table1291 */
},
/* 0x4a */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
5328 /* Table1292 */
},
/* 0x4b */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
5329 /* Table1293 */
},
/* 0x4c */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
5330 /* Table1294 */
},
/* 0x4d */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
5331 /* Table1295 */
},
/* 0x4e */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
5332 /* Table1296 */
},
/* 0x4f */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
5333 /* Table1297 */
},
/* 0x50 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
5334 /* Table1298 */
},
/* 0x51 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
5335 /* Table1299 */
},
/* 0x52 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
5336 /* Table1300 */
},
/* 0x53 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
5337 /* Table1301 */
},
/* 0x54 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
5338 /* Table1302 */
},
/* 0x55 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
5339 /* Table1303 */
},
/* 0x56 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
5340 /* Table1304 */
},
/* 0x57 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
5341 /* Table1305 */
},
/* 0x58 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
5342 /* Table1306 */
},
/* 0x59 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
5343 /* Table1307 */
},
/* 0x5a */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
5344 /* Table1308 */
},
/* 0x5b */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
5345 /* Table1309 */
},
/* 0x5c */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
5346 /* Table1310 */
},
/* 0x5d */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
5347 /* Table1311 */
},
/* 0x5e */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
5348 /* Table1312 */
},
/* 0x5f */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
5349 /* Table1313 */
},
/* 0x60 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
5350 /* Table1314 */
},
/* 0x61 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
5351 /* Table1315 */
},
/* 0x62 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
5352 /* Table1316 */
},
/* 0x63 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
5354 /* Table1317 */
},
/* 0x64 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
5356 /* Table1318 */
},
/* 0x65 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
5357 /* Table1319 */
},
/* 0x66 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
5358 /* Table1320 */
},
/* 0x67 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x68 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
5359 /* Table1321 */
},
/* 0x69 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
5360 /* Table1322 */
},
/* 0x6a */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
5362 /* Table1323 */
},
/* 0x6b */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
5363 /* Table1324 */
},
/* 0x6c */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
5365 /* Table1325 */
},
/* 0x6d */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
5366 /* Table1326 */
},
/* 0x6e */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
5367 /* Table1327 */
},
/* 0x6f */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
5368 /* Table1328 */
},
/* 0x70 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
5369 /* Table1329 */
},
/* 0x71 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
5370 /* Table1330 */
},
/* 0x72 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
5371 /* Table1331 */
},
/* 0x73 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
5372 /* Table1332 */
},
/* 0x74 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
5373 /* Table1333 */
},
/* 0x75 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
5374 /* Table1334 */
},
/* 0x76 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
5375 /* Table1335 */
},
/* 0x77 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
5376 /* Table1336 */
},
/* 0x78 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
5377 /* Table1337 */
},
/* 0x79 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
5378 /* Table1338 */
},
/* 0x7a */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
5379 /* Table1339 */
},
/* 0x7b */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
5380 /* Table1340 */
},
/* 0x7c */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
5381 /* Table1341 */
},
/* 0x7d */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
5382 /* Table1342 */
},
/* 0x7e */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
5383 /* Table1343 */
},
/* 0x7f */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
5384 /* Table1344 */
},
/* 0x80 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
5385 /* Table1345 */
},
/* 0x81 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
5401 /* Table1346 */
},
/* 0x82 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x83 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
5417 /* Table1347 */
},
/* 0x84 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
5433 /* Table1348 */
},
/* 0x85 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
5435 /* Table1349 */
},
/* 0x86 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
5437 /* Table1350 */
},
/* 0x87 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
5439 /* Table1351 */
},
/* 0x88 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
5441 /* Table1352 */
},
/* 0x89 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
5443 /* Table1353 */
},
/* 0x8a */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
5445 /* Table1354 */
},
/* 0x8b */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
5447 /* Table1355 */
},
/* 0x8c */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
5449 /* Table1356 */
},
/* 0x8d */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
5451 /* Table1357 */
},
/* 0x8e */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
5453 /* Table1358 */
},
/* 0x8f */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
5455 /* Table1359 */
},
/* 0x90 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
5471 /* Table1360 */
},
/* 0x91 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
5472 /* Table1361 */
},
/* 0x92 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
5473 /* Table1362 */
},
/* 0x93 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
5474 /* Table1363 */
},
/* 0x94 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
5475 /* Table1364 */
},
/* 0x95 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
5476 /* Table1365 */
},
/* 0x96 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
5477 /* Table1366 */
},
/* 0x97 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
5478 /* Table1367 */
},
/* 0x98 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
5479 /* Table1368 */
},
/* 0x99 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
5480 /* Table1369 */
},
/* 0x9a */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
5481 /* Table1370 */
},
/* 0x9b */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
5482 /* Table1371 */
},
/* 0x9c */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
5483 /* Table1372 */
},
/* 0x9d */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
5484 /* Table1373 */
},
/* 0x9e */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
5485 /* Table1374 */
},
/* 0x9f */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
5486 /* Table1375 */
},
/* 0xa0 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
5487 /* Table1376 */
},
/* 0xa1 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
5488 /* Table1377 */
},
/* 0xa2 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
5489 /* Table1378 */
},
/* 0xa3 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
5490 /* Table1379 */
},
/* 0xa4 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
5491 /* Table1380 */
},
/* 0xa5 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
5492 /* Table1381 */
},
/* 0xa6 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
5493 /* Table1382 */
},
/* 0xa7 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
5494 /* Table1383 */
},
/* 0xa8 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
5495 /* Table1384 */
},
/* 0xa9 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
5496 /* Table1385 */
},
/* 0xaa */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
5497 /* Table1386 */
},
/* 0xab */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
5498 /* Table1387 */
},
/* 0xac */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
5499 /* Table1388 */
},
/* 0xad */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
5500 /* Table1389 */
},
/* 0xae */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
5501 /* Table1390 */
},
/* 0xaf */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
5502 /* Table1391 */
},
/* 0xb0 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
5503 /* Table1392 */
},
/* 0xb1 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
5504 /* Table1393 */
},
/* 0xb2 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
5505 /* Table1394 */
},
/* 0xb3 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
5506 /* Table1395 */
},
/* 0xb4 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
5507 /* Table1396 */
},
/* 0xb5 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
5508 /* Table1397 */
},
/* 0xb6 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
5509 /* Table1398 */
},
/* 0xb7 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
5510 /* Table1399 */
},
/* 0xb8 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
5511 /* Table1400 */
},
/* 0xb9 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
5512 /* Table1401 */
},
/* 0xba */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
5513 /* Table1402 */
},
/* 0xbb */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
5514 /* Table1403 */
},
/* 0xbc */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
5515 /* Table1404 */
},
/* 0xbd */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
5516 /* Table1405 */
},
/* 0xbe */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
5517 /* Table1406 */
},
/* 0xbf */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
5518 /* Table1407 */
},
/* 0xc0 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
5519 /* Table1408 */
},
/* 0xc1 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
5535 /* Table1409 */
},
/* 0xc2 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
5551 /* Table1410 */
},
/* 0xc3 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
5552 /* Table1411 */
},
/* 0xc4 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
5553 /* Table1412 */
},
/* 0xc5 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
5555 /* Table1413 */
},
/* 0xc6 */
{ /* struct ModRMDecision */
MODRM_SPLITMISC,
5557 /* Table1414 */
},
/* 0xc7 */
{ /* struct ModRMDecision */
MODRM_SPLITMISC,
5629 /* Table1415 */
},
/* 0xc8 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
5701 /* Table1416 */
},
/* 0xc9 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
5702 /* Table1417 */
},
/* 0xca */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
5703 /* Table1418 */
},
/* 0xcb */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
5704 /* Table1419 */
},
/* 0xcc */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
5705 /* Table1420 */
},
/* 0xcd */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
5706 /* Table1421 */
},
/* 0xce */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
5707 /* Table1422 */
},
/* 0xcf */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
5708 /* Table1423 */
},
/* 0xd0 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
5709 /* Table1424 */
},
/* 0xd1 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
5725 /* Table1425 */
},
/* 0xd2 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
5741 /* Table1426 */
},
/* 0xd3 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
5757 /* Table1427 */
},
/* 0xd4 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
5773 /* Table1428 */
},
/* 0xd5 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
5774 /* Table1429 */
},
/* 0xd6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd7 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
5775 /* Table1430 */
},
/* 0xd8 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
5776 /* Table1431 */
},
/* 0xd9 */
{ /* struct ModRMDecision */
MODRM_SPLITMISC,
5792 /* Table1432 */
},
/* 0xda */
{ /* struct ModRMDecision */
MODRM_SPLITMISC,
5864 /* Table1433 */
},
/* 0xdb */
{ /* struct ModRMDecision */
MODRM_SPLITMISC,
5936 /* Table1434 */
},
/* 0xdc */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
6008 /* Table1435 */
},
/* 0xdd */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
6024 /* Table1436 */
},
/* 0xde */
{ /* struct ModRMDecision */
MODRM_SPLITMISC,
6040 /* Table1437 */
},
/* 0xdf */
{ /* struct ModRMDecision */
MODRM_SPLITMISC,
6112 /* Table1438 */
},
/* 0xe0 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
6184 /* Table1439 */
},
/* 0xe1 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
6185 /* Table1440 */
},
/* 0xe2 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
6186 /* Table1441 */
},
/* 0xe3 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
6187 /* Table1442 */
},
/* 0xe4 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
6188 /* Table1443 */
},
/* 0xe5 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
6189 /* Table1444 */
},
/* 0xe6 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
6190 /* Table1445 */
},
/* 0xe7 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
6191 /* Table1446 */
},
/* 0xe8 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
6192 /* Table1447 */
},
/* 0xe9 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
6193 /* Table1448 */
},
/* 0xea */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
6194 /* Table1449 */
},
/* 0xeb */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
6195 /* Table1450 */
},
/* 0xec */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
6196 /* Table1451 */
},
/* 0xed */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
6197 /* Table1452 */
},
/* 0xee */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
6198 /* Table1453 */
},
/* 0xef */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
6199 /* Table1454 */
},
/* 0xf0 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
6200 /* Table1455 */
},
/* 0xf1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf2 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
6201 /* Table1456 */
},
/* 0xf3 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
6202 /* Table1457 */
},
/* 0xf4 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
6203 /* Table1458 */
},
/* 0xf5 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
6204 /* Table1459 */
},
/* 0xf6 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
6205 /* Table1460 */
},
/* 0xf7 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
6221 /* Table1461 */
},
/* 0xf8 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
6237 /* Table1462 */
},
/* 0xf9 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
6238 /* Table1463 */
},
/* 0xfa */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
6239 /* Table1464 */
},
/* 0xfb */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
6240 /* Table1465 */
},
/* 0xfc */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
6241 /* Table1466 */
},
/* 0xfd */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
6242 /* Table1467 */
},
/* 0xfe */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
6243 /* Table1468 */
},
/* 0xff */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
6259 /* Table1469 */
}
}
}
, /* IC_XD_OPSIZE */
{ /* struct OpcodeDecision */
{
/* 0x00 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x01 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x02 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x03 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x04 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x05 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x06 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x07 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x08 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x09 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x10 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x11 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x12 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x13 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x14 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x15 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x16 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x17 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x18 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x19 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x20 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x21 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x22 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x23 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x24 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x25 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x26 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x27 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x28 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x29 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x30 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x31 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x32 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x33 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x34 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x35 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x36 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x37 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x38 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x39 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x40 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x41 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x42 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x43 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x44 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x45 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x46 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x47 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x48 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x49 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x50 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x51 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x52 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x53 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x54 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x55 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x56 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x57 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x58 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x59 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x60 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x61 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x62 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x63 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x64 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x65 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x66 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x67 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x68 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x69 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x70 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x71 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x72 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x73 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x74 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x75 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x76 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x77 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x78 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x79 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x80 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x81 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x82 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x83 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x84 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x85 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x86 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x87 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x88 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x89 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x90 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x91 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x92 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x93 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x94 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x95 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x96 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x97 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x98 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x99 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xab */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xac */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xad */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xae */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xba */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xca */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xce */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xda */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xde */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xea */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xeb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xec */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xed */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xee */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xef */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xff */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
}
}
}
, /* IC_XS_OPSIZE */
{ /* struct OpcodeDecision */
{
/* 0x00 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x01 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x02 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x03 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x04 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x05 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x06 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x07 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x08 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x09 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x10 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x11 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x12 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x13 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x14 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x15 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x16 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x17 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x18 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x19 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x20 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x21 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x22 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x23 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x24 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x25 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x26 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x27 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x28 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x29 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x30 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x31 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x32 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x33 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x34 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x35 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x36 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x37 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x38 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x39 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x40 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x41 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x42 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x43 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x44 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x45 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x46 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x47 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x48 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x49 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x50 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x51 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x52 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x53 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x54 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x55 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x56 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x57 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x58 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x59 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x60 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x61 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x62 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x63 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x64 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x65 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x66 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x67 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x68 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x69 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x70 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x71 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x72 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x73 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x74 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x75 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x76 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x77 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x78 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x79 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x80 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x81 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x82 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x83 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x84 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x85 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x86 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x87 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x88 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x89 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x90 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x91 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x92 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x93 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x94 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x95 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x96 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x97 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x98 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x99 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xab */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xac */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xad */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xae */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xba */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xca */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xce */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xda */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xde */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xea */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xeb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xec */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xed */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xee */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xef */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xff */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
}
}
}
, /* IC_64BIT_REXW */
{ /* struct OpcodeDecision */
{
/* 0x00 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
6275 /* Table1470 */
},
/* 0x01 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
6277 /* Table1471 */
},
/* 0x02 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
6279 /* Table1472 */
},
/* 0x03 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
6281 /* Table1473 */
},
/* 0x04 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
6283 /* Table1474 */
},
/* 0x05 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
6284 /* Table1475 */
},
/* 0x06 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x07 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x08 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
6285 /* Table1476 */
},
/* 0x09 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
6287 /* Table1477 */
},
/* 0x0a */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
6289 /* Table1478 */
},
/* 0x0b */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
6291 /* Table1479 */
},
/* 0x0c */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
6293 /* Table1480 */
},
/* 0x0d */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
6294 /* Table1481 */
},
/* 0x0e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x10 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
6295 /* Table1482 */
},
/* 0x11 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
6297 /* Table1483 */
},
/* 0x12 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
6299 /* Table1484 */
},
/* 0x13 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
6301 /* Table1485 */
},
/* 0x14 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
6303 /* Table1486 */
},
/* 0x15 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
6304 /* Table1487 */
},
/* 0x16 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x17 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x18 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
6305 /* Table1488 */
},
/* 0x19 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
6307 /* Table1489 */
},
/* 0x1a */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
6309 /* Table1490 */
},
/* 0x1b */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
6311 /* Table1491 */
},
/* 0x1c */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
6313 /* Table1492 */
},
/* 0x1d */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
6314 /* Table1493 */
},
/* 0x1e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x20 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
6315 /* Table1494 */
},
/* 0x21 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
6317 /* Table1495 */
},
/* 0x22 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
6319 /* Table1496 */
},
/* 0x23 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
6321 /* Table1497 */
},
/* 0x24 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
6323 /* Table1498 */
},
/* 0x25 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
6324 /* Table1499 */
},
/* 0x26 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
6325 /* Table1500 */
},
/* 0x27 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x28 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
6326 /* Table1501 */
},
/* 0x29 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
6328 /* Table1502 */
},
/* 0x2a */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
6330 /* Table1503 */
},
/* 0x2b */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
6332 /* Table1504 */
},
/* 0x2c */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
6334 /* Table1505 */
},
/* 0x2d */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
6335 /* Table1506 */
},
/* 0x2e */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
6336 /* Table1507 */
},
/* 0x2f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x30 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
6337 /* Table1508 */
},
/* 0x31 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
6339 /* Table1509 */
},
/* 0x32 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
6341 /* Table1510 */
},
/* 0x33 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
6343 /* Table1511 */
},
/* 0x34 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
6345 /* Table1512 */
},
/* 0x35 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
6346 /* Table1513 */
},
/* 0x36 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
6347 /* Table1514 */
},
/* 0x37 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x38 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
6348 /* Table1515 */
},
/* 0x39 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
6350 /* Table1516 */
},
/* 0x3a */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
6352 /* Table1517 */
},
/* 0x3b */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
6354 /* Table1518 */
},
/* 0x3c */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
6356 /* Table1519 */
},
/* 0x3d */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
6357 /* Table1520 */
},
/* 0x3e */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
6358 /* Table1521 */
},
/* 0x3f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x40 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x41 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x42 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x43 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x44 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x45 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x46 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x47 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x48 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
6359 /* Table1522 */
},
/* 0x49 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x50 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
6360 /* Table1523 */
},
/* 0x51 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
6361 /* Table1524 */
},
/* 0x52 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
6362 /* Table1525 */
},
/* 0x53 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
6363 /* Table1526 */
},
/* 0x54 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
6364 /* Table1527 */
},
/* 0x55 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
6365 /* Table1528 */
},
/* 0x56 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
6366 /* Table1529 */
},
/* 0x57 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
6367 /* Table1530 */
},
/* 0x58 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
6368 /* Table1531 */
},
/* 0x59 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
6369 /* Table1532 */
},
/* 0x5a */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
6370 /* Table1533 */
},
/* 0x5b */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
6371 /* Table1534 */
},
/* 0x5c */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
6372 /* Table1535 */
},
/* 0x5d */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
6373 /* Table1536 */
},
/* 0x5e */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
6374 /* Table1537 */
},
/* 0x5f */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
6375 /* Table1538 */
},
/* 0x60 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x61 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x62 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x63 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
6376 /* Table1539 */
},
/* 0x64 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
6378 /* Table1540 */
},
/* 0x65 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
6379 /* Table1541 */
},
/* 0x66 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
6380 /* Table1542 */
},
/* 0x67 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x68 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
6381 /* Table1543 */
},
/* 0x69 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
6382 /* Table1544 */
},
/* 0x6a */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
6384 /* Table1545 */
},
/* 0x6b */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
6385 /* Table1546 */
},
/* 0x6c */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
6387 /* Table1547 */
},
/* 0x6d */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
6388 /* Table1548 */
},
/* 0x6e */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
6389 /* Table1549 */
},
/* 0x6f */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
6390 /* Table1550 */
},
/* 0x70 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
6391 /* Table1551 */
},
/* 0x71 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
6392 /* Table1552 */
},
/* 0x72 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
6393 /* Table1553 */
},
/* 0x73 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
6394 /* Table1554 */
},
/* 0x74 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
6395 /* Table1555 */
},
/* 0x75 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
6396 /* Table1556 */
},
/* 0x76 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
6397 /* Table1557 */
},
/* 0x77 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
6398 /* Table1558 */
},
/* 0x78 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
6399 /* Table1559 */
},
/* 0x79 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
6400 /* Table1560 */
},
/* 0x7a */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
6401 /* Table1561 */
},
/* 0x7b */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
6402 /* Table1562 */
},
/* 0x7c */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
6403 /* Table1563 */
},
/* 0x7d */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
6404 /* Table1564 */
},
/* 0x7e */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
6405 /* Table1565 */
},
/* 0x7f */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
6406 /* Table1566 */
},
/* 0x80 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
6407 /* Table1567 */
},
/* 0x81 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
6423 /* Table1568 */
},
/* 0x82 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x83 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
6439 /* Table1569 */
},
/* 0x84 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
6455 /* Table1570 */
},
/* 0x85 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
6457 /* Table1571 */
},
/* 0x86 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
6459 /* Table1572 */
},
/* 0x87 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
6461 /* Table1573 */
},
/* 0x88 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
6463 /* Table1574 */
},
/* 0x89 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
6465 /* Table1575 */
},
/* 0x8a */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
6467 /* Table1576 */
},
/* 0x8b */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
6469 /* Table1577 */
},
/* 0x8c */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
6471 /* Table1578 */
},
/* 0x8d */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
6473 /* Table1579 */
},
/* 0x8e */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
6475 /* Table1580 */
},
/* 0x8f */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
6477 /* Table1581 */
},
/* 0x90 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
6493 /* Table1582 */
},
/* 0x91 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
6494 /* Table1583 */
},
/* 0x92 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
6495 /* Table1584 */
},
/* 0x93 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
6496 /* Table1585 */
},
/* 0x94 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
6497 /* Table1586 */
},
/* 0x95 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
6498 /* Table1587 */
},
/* 0x96 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
6499 /* Table1588 */
},
/* 0x97 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
6500 /* Table1589 */
},
/* 0x98 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
6501 /* Table1590 */
},
/* 0x99 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
6502 /* Table1591 */
},
/* 0x9a */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
6503 /* Table1592 */
},
/* 0x9b */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
6504 /* Table1593 */
},
/* 0x9c */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
6505 /* Table1594 */
},
/* 0x9d */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
6506 /* Table1595 */
},
/* 0x9e */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
6507 /* Table1596 */
},
/* 0x9f */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
6508 /* Table1597 */
},
/* 0xa0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa4 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
6509 /* Table1598 */
},
/* 0xa5 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
6510 /* Table1599 */
},
/* 0xa6 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
6511 /* Table1600 */
},
/* 0xa7 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
6512 /* Table1601 */
},
/* 0xa8 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
6513 /* Table1602 */
},
/* 0xa9 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
6514 /* Table1603 */
},
/* 0xaa */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
6515 /* Table1604 */
},
/* 0xab */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
6516 /* Table1605 */
},
/* 0xac */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
6517 /* Table1606 */
},
/* 0xad */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
6518 /* Table1607 */
},
/* 0xae */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
6519 /* Table1608 */
},
/* 0xaf */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
6520 /* Table1609 */
},
/* 0xb0 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
6521 /* Table1610 */
},
/* 0xb1 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
6522 /* Table1611 */
},
/* 0xb2 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
6523 /* Table1612 */
},
/* 0xb3 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
6524 /* Table1613 */
},
/* 0xb4 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
6525 /* Table1614 */
},
/* 0xb5 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
6526 /* Table1615 */
},
/* 0xb6 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
6527 /* Table1616 */
},
/* 0xb7 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
6528 /* Table1617 */
},
/* 0xb8 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
6529 /* Table1618 */
},
/* 0xb9 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
6530 /* Table1619 */
},
/* 0xba */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
6531 /* Table1620 */
},
/* 0xbb */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
6532 /* Table1621 */
},
/* 0xbc */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
6533 /* Table1622 */
},
/* 0xbd */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
6534 /* Table1623 */
},
/* 0xbe */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
6535 /* Table1624 */
},
/* 0xbf */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
6536 /* Table1625 */
},
/* 0xc0 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
6537 /* Table1626 */
},
/* 0xc1 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
6553 /* Table1627 */
},
/* 0xc2 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
6569 /* Table1628 */
},
/* 0xc3 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
6570 /* Table1629 */
},
/* 0xc4 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
6571 /* Table1630 */
},
/* 0xc5 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
6573 /* Table1631 */
},
/* 0xc6 */
{ /* struct ModRMDecision */
MODRM_SPLITMISC,
6575 /* Table1632 */
},
/* 0xc7 */
{ /* struct ModRMDecision */
MODRM_SPLITMISC,
6647 /* Table1633 */
},
/* 0xc8 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
6719 /* Table1634 */
},
/* 0xc9 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
6720 /* Table1635 */
},
/* 0xca */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
6721 /* Table1636 */
},
/* 0xcb */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
6722 /* Table1637 */
},
/* 0xcc */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
6723 /* Table1638 */
},
/* 0xcd */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
6724 /* Table1639 */
},
/* 0xce */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
6725 /* Table1640 */
},
/* 0xcf */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
6726 /* Table1641 */
},
/* 0xd0 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
6727 /* Table1642 */
},
/* 0xd1 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
6743 /* Table1643 */
},
/* 0xd2 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
6759 /* Table1644 */
},
/* 0xd3 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
6775 /* Table1645 */
},
/* 0xd4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd7 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
6791 /* Table1646 */
},
/* 0xd8 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
6792 /* Table1647 */
},
/* 0xd9 */
{ /* struct ModRMDecision */
MODRM_SPLITMISC,
6808 /* Table1648 */
},
/* 0xda */
{ /* struct ModRMDecision */
MODRM_SPLITMISC,
6880 /* Table1649 */
},
/* 0xdb */
{ /* struct ModRMDecision */
MODRM_SPLITMISC,
6952 /* Table1650 */
},
/* 0xdc */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
7024 /* Table1651 */
},
/* 0xdd */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
7040 /* Table1652 */
},
/* 0xde */
{ /* struct ModRMDecision */
MODRM_SPLITMISC,
7056 /* Table1653 */
},
/* 0xdf */
{ /* struct ModRMDecision */
MODRM_SPLITMISC,
7128 /* Table1654 */
},
/* 0xe0 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
7200 /* Table1655 */
},
/* 0xe1 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
7201 /* Table1656 */
},
/* 0xe2 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
7202 /* Table1657 */
},
/* 0xe3 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
7203 /* Table1658 */
},
/* 0xe4 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
7204 /* Table1659 */
},
/* 0xe5 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
7205 /* Table1660 */
},
/* 0xe6 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
7206 /* Table1661 */
},
/* 0xe7 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
7207 /* Table1662 */
},
/* 0xe8 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
7208 /* Table1663 */
},
/* 0xe9 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
7209 /* Table1664 */
},
/* 0xea */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
7210 /* Table1665 */
},
/* 0xeb */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
7211 /* Table1666 */
},
/* 0xec */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
7212 /* Table1667 */
},
/* 0xed */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
7213 /* Table1668 */
},
/* 0xee */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
7214 /* Table1669 */
},
/* 0xef */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
7215 /* Table1670 */
},
/* 0xf0 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
7216 /* Table1671 */
},
/* 0xf1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf2 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
7217 /* Table1672 */
},
/* 0xf3 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
7218 /* Table1673 */
},
/* 0xf4 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
7219 /* Table1674 */
},
/* 0xf5 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
7220 /* Table1675 */
},
/* 0xf6 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
7221 /* Table1676 */
},
/* 0xf7 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
7237 /* Table1677 */
},
/* 0xf8 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
7253 /* Table1678 */
},
/* 0xf9 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
7254 /* Table1679 */
},
/* 0xfa */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
7255 /* Table1680 */
},
/* 0xfb */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
7256 /* Table1681 */
},
/* 0xfc */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
7257 /* Table1682 */
},
/* 0xfd */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
7258 /* Table1683 */
},
/* 0xfe */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
7259 /* Table1684 */
},
/* 0xff */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
7275 /* Table1685 */
}
}
}
, /* IC_64BIT_OPSIZE */
{ /* struct OpcodeDecision */
{
/* 0x00 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
7291 /* Table1686 */
},
/* 0x01 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
7293 /* Table1687 */
},
/* 0x02 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
7295 /* Table1688 */
},
/* 0x03 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
7297 /* Table1689 */
},
/* 0x04 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
7299 /* Table1690 */
},
/* 0x05 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
7300 /* Table1691 */
},
/* 0x06 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x07 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x08 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
7301 /* Table1692 */
},
/* 0x09 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
7303 /* Table1693 */
},
/* 0x0a */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
7305 /* Table1694 */
},
/* 0x0b */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
7307 /* Table1695 */
},
/* 0x0c */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
7309 /* Table1696 */
},
/* 0x0d */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
7310 /* Table1697 */
},
/* 0x0e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x10 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
7311 /* Table1698 */
},
/* 0x11 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
7313 /* Table1699 */
},
/* 0x12 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
7315 /* Table1700 */
},
/* 0x13 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
7317 /* Table1701 */
},
/* 0x14 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
7319 /* Table1702 */
},
/* 0x15 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
7320 /* Table1703 */
},
/* 0x16 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x17 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x18 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
7321 /* Table1704 */
},
/* 0x19 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
7323 /* Table1705 */
},
/* 0x1a */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
7325 /* Table1706 */
},
/* 0x1b */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
7327 /* Table1707 */
},
/* 0x1c */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
7329 /* Table1708 */
},
/* 0x1d */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
7330 /* Table1709 */
},
/* 0x1e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x20 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
7331 /* Table1710 */
},
/* 0x21 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
7333 /* Table1711 */
},
/* 0x22 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
7335 /* Table1712 */
},
/* 0x23 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
7337 /* Table1713 */
},
/* 0x24 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
7339 /* Table1714 */
},
/* 0x25 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
7340 /* Table1715 */
},
/* 0x26 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
7341 /* Table1716 */
},
/* 0x27 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x28 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
7342 /* Table1717 */
},
/* 0x29 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
7344 /* Table1718 */
},
/* 0x2a */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
7346 /* Table1719 */
},
/* 0x2b */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
7348 /* Table1720 */
},
/* 0x2c */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
7350 /* Table1721 */
},
/* 0x2d */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
7351 /* Table1722 */
},
/* 0x2e */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
7352 /* Table1723 */
},
/* 0x2f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x30 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
7353 /* Table1724 */
},
/* 0x31 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
7355 /* Table1725 */
},
/* 0x32 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
7357 /* Table1726 */
},
/* 0x33 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
7359 /* Table1727 */
},
/* 0x34 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
7361 /* Table1728 */
},
/* 0x35 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
7362 /* Table1729 */
},
/* 0x36 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
7363 /* Table1730 */
},
/* 0x37 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x38 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
7364 /* Table1731 */
},
/* 0x39 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
7366 /* Table1732 */
},
/* 0x3a */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
7368 /* Table1733 */
},
/* 0x3b */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
7370 /* Table1734 */
},
/* 0x3c */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
7372 /* Table1735 */
},
/* 0x3d */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
7373 /* Table1736 */
},
/* 0x3e */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
7374 /* Table1737 */
},
/* 0x3f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x40 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x41 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x42 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x43 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x44 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x45 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x46 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x47 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x48 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
7375 /* Table1738 */
},
/* 0x49 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x50 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
7376 /* Table1739 */
},
/* 0x51 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
7377 /* Table1740 */
},
/* 0x52 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
7378 /* Table1741 */
},
/* 0x53 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
7379 /* Table1742 */
},
/* 0x54 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
7380 /* Table1743 */
},
/* 0x55 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
7381 /* Table1744 */
},
/* 0x56 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
7382 /* Table1745 */
},
/* 0x57 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
7383 /* Table1746 */
},
/* 0x58 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
7384 /* Table1747 */
},
/* 0x59 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
7385 /* Table1748 */
},
/* 0x5a */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
7386 /* Table1749 */
},
/* 0x5b */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
7387 /* Table1750 */
},
/* 0x5c */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
7388 /* Table1751 */
},
/* 0x5d */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
7389 /* Table1752 */
},
/* 0x5e */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
7390 /* Table1753 */
},
/* 0x5f */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
7391 /* Table1754 */
},
/* 0x60 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x61 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x62 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x63 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x64 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
7392 /* Table1755 */
},
/* 0x65 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
7393 /* Table1756 */
},
/* 0x66 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
7394 /* Table1757 */
},
/* 0x67 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x68 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
7395 /* Table1758 */
},
/* 0x69 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
7396 /* Table1759 */
},
/* 0x6a */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
7398 /* Table1760 */
},
/* 0x6b */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
7399 /* Table1761 */
},
/* 0x6c */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
7401 /* Table1762 */
},
/* 0x6d */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
7402 /* Table1763 */
},
/* 0x6e */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
7403 /* Table1764 */
},
/* 0x6f */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
7404 /* Table1765 */
},
/* 0x70 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
7405 /* Table1766 */
},
/* 0x71 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
7406 /* Table1767 */
},
/* 0x72 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
7407 /* Table1768 */
},
/* 0x73 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
7408 /* Table1769 */
},
/* 0x74 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
7409 /* Table1770 */
},
/* 0x75 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
7410 /* Table1771 */
},
/* 0x76 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
7411 /* Table1772 */
},
/* 0x77 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
7412 /* Table1773 */
},
/* 0x78 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
7413 /* Table1774 */
},
/* 0x79 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
7414 /* Table1775 */
},
/* 0x7a */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
7415 /* Table1776 */
},
/* 0x7b */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
7416 /* Table1777 */
},
/* 0x7c */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
7417 /* Table1778 */
},
/* 0x7d */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
7418 /* Table1779 */
},
/* 0x7e */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
7419 /* Table1780 */
},
/* 0x7f */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
7420 /* Table1781 */
},
/* 0x80 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
7421 /* Table1782 */
},
/* 0x81 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
7437 /* Table1783 */
},
/* 0x82 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x83 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
7453 /* Table1784 */
},
/* 0x84 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
7469 /* Table1785 */
},
/* 0x85 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
7471 /* Table1786 */
},
/* 0x86 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
7473 /* Table1787 */
},
/* 0x87 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
7475 /* Table1788 */
},
/* 0x88 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
7477 /* Table1789 */
},
/* 0x89 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
7479 /* Table1790 */
},
/* 0x8a */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
7481 /* Table1791 */
},
/* 0x8b */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
7483 /* Table1792 */
},
/* 0x8c */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
7485 /* Table1793 */
},
/* 0x8d */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
7487 /* Table1794 */
},
/* 0x8e */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
7489 /* Table1795 */
},
/* 0x8f */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
7491 /* Table1796 */
},
/* 0x90 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
7507 /* Table1797 */
},
/* 0x91 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
7508 /* Table1798 */
},
/* 0x92 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
7509 /* Table1799 */
},
/* 0x93 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
7510 /* Table1800 */
},
/* 0x94 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
7511 /* Table1801 */
},
/* 0x95 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
7512 /* Table1802 */
},
/* 0x96 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
7513 /* Table1803 */
},
/* 0x97 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
7514 /* Table1804 */
},
/* 0x98 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
7515 /* Table1805 */
},
/* 0x99 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
7516 /* Table1806 */
},
/* 0x9a */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
7517 /* Table1807 */
},
/* 0x9b */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
7518 /* Table1808 */
},
/* 0x9c */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
7519 /* Table1809 */
},
/* 0x9d */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
7520 /* Table1810 */
},
/* 0x9e */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
7521 /* Table1811 */
},
/* 0x9f */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
7522 /* Table1812 */
},
/* 0xa0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa4 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
7523 /* Table1813 */
},
/* 0xa5 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
7524 /* Table1814 */
},
/* 0xa6 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
7525 /* Table1815 */
},
/* 0xa7 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
7526 /* Table1816 */
},
/* 0xa8 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
7527 /* Table1817 */
},
/* 0xa9 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
7528 /* Table1818 */
},
/* 0xaa */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
7529 /* Table1819 */
},
/* 0xab */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
7530 /* Table1820 */
},
/* 0xac */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
7531 /* Table1821 */
},
/* 0xad */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
7532 /* Table1822 */
},
/* 0xae */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
7533 /* Table1823 */
},
/* 0xaf */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
7534 /* Table1824 */
},
/* 0xb0 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
7535 /* Table1825 */
},
/* 0xb1 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
7536 /* Table1826 */
},
/* 0xb2 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
7537 /* Table1827 */
},
/* 0xb3 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
7538 /* Table1828 */
},
/* 0xb4 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
7539 /* Table1829 */
},
/* 0xb5 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
7540 /* Table1830 */
},
/* 0xb6 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
7541 /* Table1831 */
},
/* 0xb7 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
7542 /* Table1832 */
},
/* 0xb8 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
7543 /* Table1833 */
},
/* 0xb9 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
7544 /* Table1834 */
},
/* 0xba */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
7545 /* Table1835 */
},
/* 0xbb */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
7546 /* Table1836 */
},
/* 0xbc */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
7547 /* Table1837 */
},
/* 0xbd */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
7548 /* Table1838 */
},
/* 0xbe */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
7549 /* Table1839 */
},
/* 0xbf */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
7550 /* Table1840 */
},
/* 0xc0 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
7551 /* Table1841 */
},
/* 0xc1 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
7567 /* Table1842 */
},
/* 0xc2 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
7583 /* Table1843 */
},
/* 0xc3 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
7584 /* Table1844 */
},
/* 0xc4 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
7585 /* Table1845 */
},
/* 0xc5 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
7587 /* Table1846 */
},
/* 0xc6 */
{ /* struct ModRMDecision */
MODRM_SPLITMISC,
7589 /* Table1847 */
},
/* 0xc7 */
{ /* struct ModRMDecision */
MODRM_SPLITMISC,
7661 /* Table1848 */
},
/* 0xc8 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
7733 /* Table1849 */
},
/* 0xc9 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
7734 /* Table1850 */
},
/* 0xca */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
7735 /* Table1851 */
},
/* 0xcb */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
7736 /* Table1852 */
},
/* 0xcc */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
7737 /* Table1853 */
},
/* 0xcd */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
7738 /* Table1854 */
},
/* 0xce */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
7739 /* Table1855 */
},
/* 0xcf */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
7740 /* Table1856 */
},
/* 0xd0 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
7741 /* Table1857 */
},
/* 0xd1 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
7757 /* Table1858 */
},
/* 0xd2 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
7773 /* Table1859 */
},
/* 0xd3 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
7789 /* Table1860 */
},
/* 0xd4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd7 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
7805 /* Table1861 */
},
/* 0xd8 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
7806 /* Table1862 */
},
/* 0xd9 */
{ /* struct ModRMDecision */
MODRM_SPLITMISC,
7822 /* Table1863 */
},
/* 0xda */
{ /* struct ModRMDecision */
MODRM_SPLITMISC,
7894 /* Table1864 */
},
/* 0xdb */
{ /* struct ModRMDecision */
MODRM_SPLITMISC,
7966 /* Table1865 */
},
/* 0xdc */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
8038 /* Table1866 */
},
/* 0xdd */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
8054 /* Table1867 */
},
/* 0xde */
{ /* struct ModRMDecision */
MODRM_SPLITMISC,
8070 /* Table1868 */
},
/* 0xdf */
{ /* struct ModRMDecision */
MODRM_SPLITMISC,
8142 /* Table1869 */
},
/* 0xe0 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
8214 /* Table1870 */
},
/* 0xe1 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
8215 /* Table1871 */
},
/* 0xe2 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
8216 /* Table1872 */
},
/* 0xe3 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
8217 /* Table1873 */
},
/* 0xe4 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
8218 /* Table1874 */
},
/* 0xe5 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
8219 /* Table1875 */
},
/* 0xe6 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
8220 /* Table1876 */
},
/* 0xe7 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
8221 /* Table1877 */
},
/* 0xe8 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
8222 /* Table1878 */
},
/* 0xe9 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
8223 /* Table1879 */
},
/* 0xea */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
8224 /* Table1880 */
},
/* 0xeb */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
8225 /* Table1881 */
},
/* 0xec */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
8226 /* Table1882 */
},
/* 0xed */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
8227 /* Table1883 */
},
/* 0xee */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
8228 /* Table1884 */
},
/* 0xef */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
8229 /* Table1885 */
},
/* 0xf0 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
8230 /* Table1886 */
},
/* 0xf1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf2 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
8231 /* Table1887 */
},
/* 0xf3 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
8232 /* Table1888 */
},
/* 0xf4 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
8233 /* Table1889 */
},
/* 0xf5 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
8234 /* Table1890 */
},
/* 0xf6 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
8235 /* Table1891 */
},
/* 0xf7 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
8251 /* Table1892 */
},
/* 0xf8 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
8267 /* Table1893 */
},
/* 0xf9 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
8268 /* Table1894 */
},
/* 0xfa */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
8269 /* Table1895 */
},
/* 0xfb */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
8270 /* Table1896 */
},
/* 0xfc */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
8271 /* Table1897 */
},
/* 0xfd */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
8272 /* Table1898 */
},
/* 0xfe */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
8273 /* Table1899 */
},
/* 0xff */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
8289 /* Table1900 */
}
}
}
, /* IC_64BIT_ADSIZE */
{ /* struct OpcodeDecision */
{
/* 0x00 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
8305 /* Table1901 */
},
/* 0x01 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
8307 /* Table1902 */
},
/* 0x02 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
8309 /* Table1903 */
},
/* 0x03 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
8311 /* Table1904 */
},
/* 0x04 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
8313 /* Table1905 */
},
/* 0x05 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
8314 /* Table1906 */
},
/* 0x06 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x07 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x08 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
8315 /* Table1907 */
},
/* 0x09 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
8317 /* Table1908 */
},
/* 0x0a */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
8319 /* Table1909 */
},
/* 0x0b */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
8321 /* Table1910 */
},
/* 0x0c */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
8323 /* Table1911 */
},
/* 0x0d */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
8324 /* Table1912 */
},
/* 0x0e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x10 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
8325 /* Table1913 */
},
/* 0x11 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
8327 /* Table1914 */
},
/* 0x12 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
8329 /* Table1915 */
},
/* 0x13 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
8331 /* Table1916 */
},
/* 0x14 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
8333 /* Table1917 */
},
/* 0x15 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
8334 /* Table1918 */
},
/* 0x16 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x17 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x18 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
8335 /* Table1919 */
},
/* 0x19 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
8337 /* Table1920 */
},
/* 0x1a */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
8339 /* Table1921 */
},
/* 0x1b */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
8341 /* Table1922 */
},
/* 0x1c */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
8343 /* Table1923 */
},
/* 0x1d */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
8344 /* Table1924 */
},
/* 0x1e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x20 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
8345 /* Table1925 */
},
/* 0x21 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
8347 /* Table1926 */
},
/* 0x22 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
8349 /* Table1927 */
},
/* 0x23 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
8351 /* Table1928 */
},
/* 0x24 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
8353 /* Table1929 */
},
/* 0x25 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
8354 /* Table1930 */
},
/* 0x26 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
8355 /* Table1931 */
},
/* 0x27 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x28 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
8356 /* Table1932 */
},
/* 0x29 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
8358 /* Table1933 */
},
/* 0x2a */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
8360 /* Table1934 */
},
/* 0x2b */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
8362 /* Table1935 */
},
/* 0x2c */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
8364 /* Table1936 */
},
/* 0x2d */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
8365 /* Table1937 */
},
/* 0x2e */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
8366 /* Table1938 */
},
/* 0x2f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x30 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
8367 /* Table1939 */
},
/* 0x31 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
8369 /* Table1940 */
},
/* 0x32 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
8371 /* Table1941 */
},
/* 0x33 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
8373 /* Table1942 */
},
/* 0x34 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
8375 /* Table1943 */
},
/* 0x35 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
8376 /* Table1944 */
},
/* 0x36 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
8377 /* Table1945 */
},
/* 0x37 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x38 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
8378 /* Table1946 */
},
/* 0x39 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
8380 /* Table1947 */
},
/* 0x3a */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
8382 /* Table1948 */
},
/* 0x3b */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
8384 /* Table1949 */
},
/* 0x3c */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
8386 /* Table1950 */
},
/* 0x3d */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
8387 /* Table1951 */
},
/* 0x3e */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
8388 /* Table1952 */
},
/* 0x3f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x40 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x41 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x42 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x43 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x44 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x45 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x46 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x47 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x48 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
8389 /* Table1953 */
},
/* 0x49 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x50 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
8390 /* Table1954 */
},
/* 0x51 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
8391 /* Table1955 */
},
/* 0x52 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
8392 /* Table1956 */
},
/* 0x53 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
8393 /* Table1957 */
},
/* 0x54 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
8394 /* Table1958 */
},
/* 0x55 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
8395 /* Table1959 */
},
/* 0x56 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
8396 /* Table1960 */
},
/* 0x57 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
8397 /* Table1961 */
},
/* 0x58 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
8398 /* Table1962 */
},
/* 0x59 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
8399 /* Table1963 */
},
/* 0x5a */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
8400 /* Table1964 */
},
/* 0x5b */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
8401 /* Table1965 */
},
/* 0x5c */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
8402 /* Table1966 */
},
/* 0x5d */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
8403 /* Table1967 */
},
/* 0x5e */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
8404 /* Table1968 */
},
/* 0x5f */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
8405 /* Table1969 */
},
/* 0x60 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x61 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x62 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x63 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x64 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
8406 /* Table1970 */
},
/* 0x65 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
8407 /* Table1971 */
},
/* 0x66 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
8408 /* Table1972 */
},
/* 0x67 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x68 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
8409 /* Table1973 */
},
/* 0x69 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
8410 /* Table1974 */
},
/* 0x6a */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
8412 /* Table1975 */
},
/* 0x6b */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
8413 /* Table1976 */
},
/* 0x6c */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
8415 /* Table1977 */
},
/* 0x6d */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
8416 /* Table1978 */
},
/* 0x6e */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
8417 /* Table1979 */
},
/* 0x6f */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
8418 /* Table1980 */
},
/* 0x70 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
8419 /* Table1981 */
},
/* 0x71 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
8420 /* Table1982 */
},
/* 0x72 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
8421 /* Table1983 */
},
/* 0x73 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
8422 /* Table1984 */
},
/* 0x74 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
8423 /* Table1985 */
},
/* 0x75 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
8424 /* Table1986 */
},
/* 0x76 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
8425 /* Table1987 */
},
/* 0x77 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
8426 /* Table1988 */
},
/* 0x78 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
8427 /* Table1989 */
},
/* 0x79 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
8428 /* Table1990 */
},
/* 0x7a */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
8429 /* Table1991 */
},
/* 0x7b */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
8430 /* Table1992 */
},
/* 0x7c */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
8431 /* Table1993 */
},
/* 0x7d */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
8432 /* Table1994 */
},
/* 0x7e */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
8433 /* Table1995 */
},
/* 0x7f */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
8434 /* Table1996 */
},
/* 0x80 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
8435 /* Table1997 */
},
/* 0x81 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
8451 /* Table1998 */
},
/* 0x82 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x83 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
8467 /* Table1999 */
},
/* 0x84 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
8483 /* Table2000 */
},
/* 0x85 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
8485 /* Table2001 */
},
/* 0x86 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
8487 /* Table2002 */
},
/* 0x87 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
8489 /* Table2003 */
},
/* 0x88 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
8491 /* Table2004 */
},
/* 0x89 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
8493 /* Table2005 */
},
/* 0x8a */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
8495 /* Table2006 */
},
/* 0x8b */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
8497 /* Table2007 */
},
/* 0x8c */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
8499 /* Table2008 */
},
/* 0x8d */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
8501 /* Table2009 */
},
/* 0x8e */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
8503 /* Table2010 */
},
/* 0x8f */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
8505 /* Table2011 */
},
/* 0x90 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
8521 /* Table2012 */
},
/* 0x91 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
8522 /* Table2013 */
},
/* 0x92 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
8523 /* Table2014 */
},
/* 0x93 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
8524 /* Table2015 */
},
/* 0x94 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
8525 /* Table2016 */
},
/* 0x95 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
8526 /* Table2017 */
},
/* 0x96 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
8527 /* Table2018 */
},
/* 0x97 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
8528 /* Table2019 */
},
/* 0x98 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
8529 /* Table2020 */
},
/* 0x99 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
8530 /* Table2021 */
},
/* 0x9a */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
8531 /* Table2022 */
},
/* 0x9b */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
8532 /* Table2023 */
},
/* 0x9c */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
8533 /* Table2024 */
},
/* 0x9d */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
8534 /* Table2025 */
},
/* 0x9e */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
8535 /* Table2026 */
},
/* 0x9f */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
8536 /* Table2027 */
},
/* 0xa0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa4 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
8537 /* Table2028 */
},
/* 0xa5 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
8538 /* Table2029 */
},
/* 0xa6 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
8539 /* Table2030 */
},
/* 0xa7 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
8540 /* Table2031 */
},
/* 0xa8 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
8541 /* Table2032 */
},
/* 0xa9 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
8542 /* Table2033 */
},
/* 0xaa */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
8543 /* Table2034 */
},
/* 0xab */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
8544 /* Table2035 */
},
/* 0xac */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
8545 /* Table2036 */
},
/* 0xad */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
8546 /* Table2037 */
},
/* 0xae */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
8547 /* Table2038 */
},
/* 0xaf */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
8548 /* Table2039 */
},
/* 0xb0 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
8549 /* Table2040 */
},
/* 0xb1 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
8550 /* Table2041 */
},
/* 0xb2 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
8551 /* Table2042 */
},
/* 0xb3 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
8552 /* Table2043 */
},
/* 0xb4 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
8553 /* Table2044 */
},
/* 0xb5 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
8554 /* Table2045 */
},
/* 0xb6 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
8555 /* Table2046 */
},
/* 0xb7 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
8556 /* Table2047 */
},
/* 0xb8 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
8557 /* Table2048 */
},
/* 0xb9 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
8558 /* Table2049 */
},
/* 0xba */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
8559 /* Table2050 */
},
/* 0xbb */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
8560 /* Table2051 */
},
/* 0xbc */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
8561 /* Table2052 */
},
/* 0xbd */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
8562 /* Table2053 */
},
/* 0xbe */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
8563 /* Table2054 */
},
/* 0xbf */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
8564 /* Table2055 */
},
/* 0xc0 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
8565 /* Table2056 */
},
/* 0xc1 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
8581 /* Table2057 */
},
/* 0xc2 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
8597 /* Table2058 */
},
/* 0xc3 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
8598 /* Table2059 */
},
/* 0xc4 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
8599 /* Table2060 */
},
/* 0xc5 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
8601 /* Table2061 */
},
/* 0xc6 */
{ /* struct ModRMDecision */
MODRM_SPLITMISC,
8603 /* Table2062 */
},
/* 0xc7 */
{ /* struct ModRMDecision */
MODRM_SPLITMISC,
8675 /* Table2063 */
},
/* 0xc8 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
8747 /* Table2064 */
},
/* 0xc9 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
8748 /* Table2065 */
},
/* 0xca */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
8749 /* Table2066 */
},
/* 0xcb */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
8750 /* Table2067 */
},
/* 0xcc */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
8751 /* Table2068 */
},
/* 0xcd */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
8752 /* Table2069 */
},
/* 0xce */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
8753 /* Table2070 */
},
/* 0xcf */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
8754 /* Table2071 */
},
/* 0xd0 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
8755 /* Table2072 */
},
/* 0xd1 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
8771 /* Table2073 */
},
/* 0xd2 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
8787 /* Table2074 */
},
/* 0xd3 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
8803 /* Table2075 */
},
/* 0xd4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd7 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
8819 /* Table2076 */
},
/* 0xd8 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
8820 /* Table2077 */
},
/* 0xd9 */
{ /* struct ModRMDecision */
MODRM_SPLITMISC,
8836 /* Table2078 */
},
/* 0xda */
{ /* struct ModRMDecision */
MODRM_SPLITMISC,
8908 /* Table2079 */
},
/* 0xdb */
{ /* struct ModRMDecision */
MODRM_SPLITMISC,
8980 /* Table2080 */
},
/* 0xdc */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
9052 /* Table2081 */
},
/* 0xdd */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
9068 /* Table2082 */
},
/* 0xde */
{ /* struct ModRMDecision */
MODRM_SPLITMISC,
9084 /* Table2083 */
},
/* 0xdf */
{ /* struct ModRMDecision */
MODRM_SPLITMISC,
9156 /* Table2084 */
},
/* 0xe0 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
9228 /* Table2085 */
},
/* 0xe1 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
9229 /* Table2086 */
},
/* 0xe2 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
9230 /* Table2087 */
},
/* 0xe3 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
9231 /* Table2088 */
},
/* 0xe4 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
9232 /* Table2089 */
},
/* 0xe5 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
9233 /* Table2090 */
},
/* 0xe6 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
9234 /* Table2091 */
},
/* 0xe7 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
9235 /* Table2092 */
},
/* 0xe8 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
9236 /* Table2093 */
},
/* 0xe9 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
9237 /* Table2094 */
},
/* 0xea */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
9238 /* Table2095 */
},
/* 0xeb */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
9239 /* Table2096 */
},
/* 0xec */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
9240 /* Table2097 */
},
/* 0xed */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
9241 /* Table2098 */
},
/* 0xee */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
9242 /* Table2099 */
},
/* 0xef */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
9243 /* Table2100 */
},
/* 0xf0 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
9244 /* Table2101 */
},
/* 0xf1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf2 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
9245 /* Table2102 */
},
/* 0xf3 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
9246 /* Table2103 */
},
/* 0xf4 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
9247 /* Table2104 */
},
/* 0xf5 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
9248 /* Table2105 */
},
/* 0xf6 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
9249 /* Table2106 */
},
/* 0xf7 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
9265 /* Table2107 */
},
/* 0xf8 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
9281 /* Table2108 */
},
/* 0xf9 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
9282 /* Table2109 */
},
/* 0xfa */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
9283 /* Table2110 */
},
/* 0xfb */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
9284 /* Table2111 */
},
/* 0xfc */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
9285 /* Table2112 */
},
/* 0xfd */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
9286 /* Table2113 */
},
/* 0xfe */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
9287 /* Table2114 */
},
/* 0xff */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
9303 /* Table2115 */
}
}
}
, /* IC_64BIT_XD */
{ /* struct OpcodeDecision */
{
/* 0x00 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
9319 /* Table2116 */
},
/* 0x01 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
9321 /* Table2117 */
},
/* 0x02 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
9323 /* Table2118 */
},
/* 0x03 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
9325 /* Table2119 */
},
/* 0x04 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
9327 /* Table2120 */
},
/* 0x05 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
9328 /* Table2121 */
},
/* 0x06 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x07 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x08 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
9329 /* Table2122 */
},
/* 0x09 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
9331 /* Table2123 */
},
/* 0x0a */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
9333 /* Table2124 */
},
/* 0x0b */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
9335 /* Table2125 */
},
/* 0x0c */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
9337 /* Table2126 */
},
/* 0x0d */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
9338 /* Table2127 */
},
/* 0x0e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x10 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
9339 /* Table2128 */
},
/* 0x11 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
9341 /* Table2129 */
},
/* 0x12 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
9343 /* Table2130 */
},
/* 0x13 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
9345 /* Table2131 */
},
/* 0x14 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
9347 /* Table2132 */
},
/* 0x15 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
9348 /* Table2133 */
},
/* 0x16 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x17 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x18 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
9349 /* Table2134 */
},
/* 0x19 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
9351 /* Table2135 */
},
/* 0x1a */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
9353 /* Table2136 */
},
/* 0x1b */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
9355 /* Table2137 */
},
/* 0x1c */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
9357 /* Table2138 */
},
/* 0x1d */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
9358 /* Table2139 */
},
/* 0x1e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x20 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
9359 /* Table2140 */
},
/* 0x21 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
9361 /* Table2141 */
},
/* 0x22 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
9363 /* Table2142 */
},
/* 0x23 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
9365 /* Table2143 */
},
/* 0x24 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
9367 /* Table2144 */
},
/* 0x25 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
9368 /* Table2145 */
},
/* 0x26 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
9369 /* Table2146 */
},
/* 0x27 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x28 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
9370 /* Table2147 */
},
/* 0x29 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
9372 /* Table2148 */
},
/* 0x2a */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
9374 /* Table2149 */
},
/* 0x2b */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
9376 /* Table2150 */
},
/* 0x2c */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
9378 /* Table2151 */
},
/* 0x2d */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
9379 /* Table2152 */
},
/* 0x2e */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
9380 /* Table2153 */
},
/* 0x2f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x30 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
9381 /* Table2154 */
},
/* 0x31 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
9383 /* Table2155 */
},
/* 0x32 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
9385 /* Table2156 */
},
/* 0x33 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
9387 /* Table2157 */
},
/* 0x34 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
9389 /* Table2158 */
},
/* 0x35 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
9390 /* Table2159 */
},
/* 0x36 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
9391 /* Table2160 */
},
/* 0x37 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x38 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
9392 /* Table2161 */
},
/* 0x39 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
9394 /* Table2162 */
},
/* 0x3a */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
9396 /* Table2163 */
},
/* 0x3b */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
9398 /* Table2164 */
},
/* 0x3c */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
9400 /* Table2165 */
},
/* 0x3d */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
9401 /* Table2166 */
},
/* 0x3e */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
9402 /* Table2167 */
},
/* 0x3f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x40 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x41 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x42 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x43 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x44 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x45 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x46 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x47 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x48 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
9403 /* Table2168 */
},
/* 0x49 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x50 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
9404 /* Table2169 */
},
/* 0x51 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
9405 /* Table2170 */
},
/* 0x52 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
9406 /* Table2171 */
},
/* 0x53 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
9407 /* Table2172 */
},
/* 0x54 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
9408 /* Table2173 */
},
/* 0x55 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
9409 /* Table2174 */
},
/* 0x56 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
9410 /* Table2175 */
},
/* 0x57 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
9411 /* Table2176 */
},
/* 0x58 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
9412 /* Table2177 */
},
/* 0x59 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
9413 /* Table2178 */
},
/* 0x5a */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
9414 /* Table2179 */
},
/* 0x5b */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
9415 /* Table2180 */
},
/* 0x5c */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
9416 /* Table2181 */
},
/* 0x5d */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
9417 /* Table2182 */
},
/* 0x5e */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
9418 /* Table2183 */
},
/* 0x5f */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
9419 /* Table2184 */
},
/* 0x60 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x61 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x62 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x63 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x64 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
9420 /* Table2185 */
},
/* 0x65 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
9421 /* Table2186 */
},
/* 0x66 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
9422 /* Table2187 */
},
/* 0x67 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x68 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
9423 /* Table2188 */
},
/* 0x69 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
9424 /* Table2189 */
},
/* 0x6a */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
9426 /* Table2190 */
},
/* 0x6b */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
9427 /* Table2191 */
},
/* 0x6c */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
9429 /* Table2192 */
},
/* 0x6d */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
9430 /* Table2193 */
},
/* 0x6e */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
9431 /* Table2194 */
},
/* 0x6f */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
9432 /* Table2195 */
},
/* 0x70 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
9433 /* Table2196 */
},
/* 0x71 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
9434 /* Table2197 */
},
/* 0x72 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
9435 /* Table2198 */
},
/* 0x73 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
9436 /* Table2199 */
},
/* 0x74 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
9437 /* Table2200 */
},
/* 0x75 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
9438 /* Table2201 */
},
/* 0x76 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
9439 /* Table2202 */
},
/* 0x77 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
9440 /* Table2203 */
},
/* 0x78 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
9441 /* Table2204 */
},
/* 0x79 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
9442 /* Table2205 */
},
/* 0x7a */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
9443 /* Table2206 */
},
/* 0x7b */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
9444 /* Table2207 */
},
/* 0x7c */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
9445 /* Table2208 */
},
/* 0x7d */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
9446 /* Table2209 */
},
/* 0x7e */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
9447 /* Table2210 */
},
/* 0x7f */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
9448 /* Table2211 */
},
/* 0x80 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
9449 /* Table2212 */
},
/* 0x81 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
9465 /* Table2213 */
},
/* 0x82 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x83 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
9481 /* Table2214 */
},
/* 0x84 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
9497 /* Table2215 */
},
/* 0x85 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
9499 /* Table2216 */
},
/* 0x86 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
9501 /* Table2217 */
},
/* 0x87 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
9503 /* Table2218 */
},
/* 0x88 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
9505 /* Table2219 */
},
/* 0x89 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
9507 /* Table2220 */
},
/* 0x8a */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
9509 /* Table2221 */
},
/* 0x8b */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
9511 /* Table2222 */
},
/* 0x8c */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
9513 /* Table2223 */
},
/* 0x8d */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
9515 /* Table2224 */
},
/* 0x8e */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
9517 /* Table2225 */
},
/* 0x8f */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
9519 /* Table2226 */
},
/* 0x90 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
9535 /* Table2227 */
},
/* 0x91 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
9536 /* Table2228 */
},
/* 0x92 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
9537 /* Table2229 */
},
/* 0x93 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
9538 /* Table2230 */
},
/* 0x94 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
9539 /* Table2231 */
},
/* 0x95 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
9540 /* Table2232 */
},
/* 0x96 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
9541 /* Table2233 */
},
/* 0x97 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
9542 /* Table2234 */
},
/* 0x98 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
9543 /* Table2235 */
},
/* 0x99 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
9544 /* Table2236 */
},
/* 0x9a */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
9545 /* Table2237 */
},
/* 0x9b */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
9546 /* Table2238 */
},
/* 0x9c */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
9547 /* Table2239 */
},
/* 0x9d */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
9548 /* Table2240 */
},
/* 0x9e */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
9549 /* Table2241 */
},
/* 0x9f */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
9550 /* Table2242 */
},
/* 0xa0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa4 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
9551 /* Table2243 */
},
/* 0xa5 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
9552 /* Table2244 */
},
/* 0xa6 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
9553 /* Table2245 */
},
/* 0xa7 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
9554 /* Table2246 */
},
/* 0xa8 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
9555 /* Table2247 */
},
/* 0xa9 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
9556 /* Table2248 */
},
/* 0xaa */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
9557 /* Table2249 */
},
/* 0xab */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
9558 /* Table2250 */
},
/* 0xac */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
9559 /* Table2251 */
},
/* 0xad */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
9560 /* Table2252 */
},
/* 0xae */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
9561 /* Table2253 */
},
/* 0xaf */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
9562 /* Table2254 */
},
/* 0xb0 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
9563 /* Table2255 */
},
/* 0xb1 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
9564 /* Table2256 */
},
/* 0xb2 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
9565 /* Table2257 */
},
/* 0xb3 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
9566 /* Table2258 */
},
/* 0xb4 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
9567 /* Table2259 */
},
/* 0xb5 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
9568 /* Table2260 */
},
/* 0xb6 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
9569 /* Table2261 */
},
/* 0xb7 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
9570 /* Table2262 */
},
/* 0xb8 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
9571 /* Table2263 */
},
/* 0xb9 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
9572 /* Table2264 */
},
/* 0xba */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
9573 /* Table2265 */
},
/* 0xbb */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
9574 /* Table2266 */
},
/* 0xbc */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
9575 /* Table2267 */
},
/* 0xbd */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
9576 /* Table2268 */
},
/* 0xbe */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
9577 /* Table2269 */
},
/* 0xbf */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
9578 /* Table2270 */
},
/* 0xc0 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
9579 /* Table2271 */
},
/* 0xc1 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
9595 /* Table2272 */
},
/* 0xc2 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
9611 /* Table2273 */
},
/* 0xc3 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
9612 /* Table2274 */
},
/* 0xc4 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
9613 /* Table2275 */
},
/* 0xc5 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
9615 /* Table2276 */
},
/* 0xc6 */
{ /* struct ModRMDecision */
MODRM_SPLITMISC,
9617 /* Table2277 */
},
/* 0xc7 */
{ /* struct ModRMDecision */
MODRM_SPLITMISC,
9689 /* Table2278 */
},
/* 0xc8 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
9761 /* Table2279 */
},
/* 0xc9 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
9762 /* Table2280 */
},
/* 0xca */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
9763 /* Table2281 */
},
/* 0xcb */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
9764 /* Table2282 */
},
/* 0xcc */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
9765 /* Table2283 */
},
/* 0xcd */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
9766 /* Table2284 */
},
/* 0xce */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
9767 /* Table2285 */
},
/* 0xcf */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
9768 /* Table2286 */
},
/* 0xd0 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
9769 /* Table2287 */
},
/* 0xd1 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
9785 /* Table2288 */
},
/* 0xd2 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
9801 /* Table2289 */
},
/* 0xd3 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
9817 /* Table2290 */
},
/* 0xd4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd7 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
9833 /* Table2291 */
},
/* 0xd8 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
9834 /* Table2292 */
},
/* 0xd9 */
{ /* struct ModRMDecision */
MODRM_SPLITMISC,
9850 /* Table2293 */
},
/* 0xda */
{ /* struct ModRMDecision */
MODRM_SPLITMISC,
9922 /* Table2294 */
},
/* 0xdb */
{ /* struct ModRMDecision */
MODRM_SPLITMISC,
9994 /* Table2295 */
},
/* 0xdc */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
10066 /* Table2296 */
},
/* 0xdd */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
10082 /* Table2297 */
},
/* 0xde */
{ /* struct ModRMDecision */
MODRM_SPLITMISC,
10098 /* Table2298 */
},
/* 0xdf */
{ /* struct ModRMDecision */
MODRM_SPLITMISC,
10170 /* Table2299 */
},
/* 0xe0 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
10242 /* Table2300 */
},
/* 0xe1 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
10243 /* Table2301 */
},
/* 0xe2 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
10244 /* Table2302 */
},
/* 0xe3 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
10245 /* Table2303 */
},
/* 0xe4 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
10246 /* Table2304 */
},
/* 0xe5 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
10247 /* Table2305 */
},
/* 0xe6 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
10248 /* Table2306 */
},
/* 0xe7 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
10249 /* Table2307 */
},
/* 0xe8 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
10250 /* Table2308 */
},
/* 0xe9 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
10251 /* Table2309 */
},
/* 0xea */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
10252 /* Table2310 */
},
/* 0xeb */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
10253 /* Table2311 */
},
/* 0xec */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
10254 /* Table2312 */
},
/* 0xed */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
10255 /* Table2313 */
},
/* 0xee */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
10256 /* Table2314 */
},
/* 0xef */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
10257 /* Table2315 */
},
/* 0xf0 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
10258 /* Table2316 */
},
/* 0xf1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf2 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
10259 /* Table2317 */
},
/* 0xf3 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
10260 /* Table2318 */
},
/* 0xf4 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
10261 /* Table2319 */
},
/* 0xf5 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
10262 /* Table2320 */
},
/* 0xf6 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
10263 /* Table2321 */
},
/* 0xf7 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
10279 /* Table2322 */
},
/* 0xf8 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
10295 /* Table2323 */
},
/* 0xf9 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
10296 /* Table2324 */
},
/* 0xfa */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
10297 /* Table2325 */
},
/* 0xfb */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
10298 /* Table2326 */
},
/* 0xfc */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
10299 /* Table2327 */
},
/* 0xfd */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
10300 /* Table2328 */
},
/* 0xfe */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
10301 /* Table2329 */
},
/* 0xff */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
10317 /* Table2330 */
}
}
}
, /* IC_64BIT_XS */
{ /* struct OpcodeDecision */
{
/* 0x00 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
10333 /* Table2331 */
},
/* 0x01 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
10335 /* Table2332 */
},
/* 0x02 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
10337 /* Table2333 */
},
/* 0x03 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
10339 /* Table2334 */
},
/* 0x04 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
10341 /* Table2335 */
},
/* 0x05 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
10342 /* Table2336 */
},
/* 0x06 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x07 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x08 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
10343 /* Table2337 */
},
/* 0x09 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
10345 /* Table2338 */
},
/* 0x0a */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
10347 /* Table2339 */
},
/* 0x0b */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
10349 /* Table2340 */
},
/* 0x0c */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
10351 /* Table2341 */
},
/* 0x0d */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
10352 /* Table2342 */
},
/* 0x0e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x10 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
10353 /* Table2343 */
},
/* 0x11 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
10355 /* Table2344 */
},
/* 0x12 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
10357 /* Table2345 */
},
/* 0x13 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
10359 /* Table2346 */
},
/* 0x14 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
10361 /* Table2347 */
},
/* 0x15 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
10362 /* Table2348 */
},
/* 0x16 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x17 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x18 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
10363 /* Table2349 */
},
/* 0x19 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
10365 /* Table2350 */
},
/* 0x1a */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
10367 /* Table2351 */
},
/* 0x1b */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
10369 /* Table2352 */
},
/* 0x1c */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
10371 /* Table2353 */
},
/* 0x1d */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
10372 /* Table2354 */
},
/* 0x1e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x20 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
10373 /* Table2355 */
},
/* 0x21 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
10375 /* Table2356 */
},
/* 0x22 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
10377 /* Table2357 */
},
/* 0x23 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
10379 /* Table2358 */
},
/* 0x24 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
10381 /* Table2359 */
},
/* 0x25 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
10382 /* Table2360 */
},
/* 0x26 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
10383 /* Table2361 */
},
/* 0x27 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x28 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
10384 /* Table2362 */
},
/* 0x29 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
10386 /* Table2363 */
},
/* 0x2a */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
10388 /* Table2364 */
},
/* 0x2b */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
10390 /* Table2365 */
},
/* 0x2c */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
10392 /* Table2366 */
},
/* 0x2d */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
10393 /* Table2367 */
},
/* 0x2e */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
10394 /* Table2368 */
},
/* 0x2f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x30 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
10395 /* Table2369 */
},
/* 0x31 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
10397 /* Table2370 */
},
/* 0x32 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
10399 /* Table2371 */
},
/* 0x33 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
10401 /* Table2372 */
},
/* 0x34 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
10403 /* Table2373 */
},
/* 0x35 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
10404 /* Table2374 */
},
/* 0x36 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
10405 /* Table2375 */
},
/* 0x37 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x38 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
10406 /* Table2376 */
},
/* 0x39 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
10408 /* Table2377 */
},
/* 0x3a */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
10410 /* Table2378 */
},
/* 0x3b */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
10412 /* Table2379 */
},
/* 0x3c */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
10414 /* Table2380 */
},
/* 0x3d */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
10415 /* Table2381 */
},
/* 0x3e */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
10416 /* Table2382 */
},
/* 0x3f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x40 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x41 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x42 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x43 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x44 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x45 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x46 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x47 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x48 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
10417 /* Table2383 */
},
/* 0x49 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x50 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
10418 /* Table2384 */
},
/* 0x51 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
10419 /* Table2385 */
},
/* 0x52 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
10420 /* Table2386 */
},
/* 0x53 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
10421 /* Table2387 */
},
/* 0x54 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
10422 /* Table2388 */
},
/* 0x55 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
10423 /* Table2389 */
},
/* 0x56 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
10424 /* Table2390 */
},
/* 0x57 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
10425 /* Table2391 */
},
/* 0x58 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
10426 /* Table2392 */
},
/* 0x59 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
10427 /* Table2393 */
},
/* 0x5a */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
10428 /* Table2394 */
},
/* 0x5b */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
10429 /* Table2395 */
},
/* 0x5c */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
10430 /* Table2396 */
},
/* 0x5d */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
10431 /* Table2397 */
},
/* 0x5e */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
10432 /* Table2398 */
},
/* 0x5f */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
10433 /* Table2399 */
},
/* 0x60 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x61 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x62 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x63 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x64 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
10434 /* Table2400 */
},
/* 0x65 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
10435 /* Table2401 */
},
/* 0x66 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
10436 /* Table2402 */
},
/* 0x67 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x68 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
10437 /* Table2403 */
},
/* 0x69 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
10438 /* Table2404 */
},
/* 0x6a */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
10440 /* Table2405 */
},
/* 0x6b */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
10441 /* Table2406 */
},
/* 0x6c */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
10443 /* Table2407 */
},
/* 0x6d */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
10444 /* Table2408 */
},
/* 0x6e */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
10445 /* Table2409 */
},
/* 0x6f */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
10446 /* Table2410 */
},
/* 0x70 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
10447 /* Table2411 */
},
/* 0x71 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
10448 /* Table2412 */
},
/* 0x72 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
10449 /* Table2413 */
},
/* 0x73 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
10450 /* Table2414 */
},
/* 0x74 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
10451 /* Table2415 */
},
/* 0x75 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
10452 /* Table2416 */
},
/* 0x76 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
10453 /* Table2417 */
},
/* 0x77 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
10454 /* Table2418 */
},
/* 0x78 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
10455 /* Table2419 */
},
/* 0x79 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
10456 /* Table2420 */
},
/* 0x7a */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
10457 /* Table2421 */
},
/* 0x7b */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
10458 /* Table2422 */
},
/* 0x7c */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
10459 /* Table2423 */
},
/* 0x7d */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
10460 /* Table2424 */
},
/* 0x7e */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
10461 /* Table2425 */
},
/* 0x7f */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
10462 /* Table2426 */
},
/* 0x80 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
10463 /* Table2427 */
},
/* 0x81 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
10479 /* Table2428 */
},
/* 0x82 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x83 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
10495 /* Table2429 */
},
/* 0x84 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
10511 /* Table2430 */
},
/* 0x85 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
10513 /* Table2431 */
},
/* 0x86 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
10515 /* Table2432 */
},
/* 0x87 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
10517 /* Table2433 */
},
/* 0x88 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
10519 /* Table2434 */
},
/* 0x89 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
10521 /* Table2435 */
},
/* 0x8a */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
10523 /* Table2436 */
},
/* 0x8b */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
10525 /* Table2437 */
},
/* 0x8c */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
10527 /* Table2438 */
},
/* 0x8d */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
10529 /* Table2439 */
},
/* 0x8e */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
10531 /* Table2440 */
},
/* 0x8f */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
10533 /* Table2441 */
},
/* 0x90 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
10549 /* Table2442 */
},
/* 0x91 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
10550 /* Table2443 */
},
/* 0x92 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
10551 /* Table2444 */
},
/* 0x93 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
10552 /* Table2445 */
},
/* 0x94 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
10553 /* Table2446 */
},
/* 0x95 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
10554 /* Table2447 */
},
/* 0x96 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
10555 /* Table2448 */
},
/* 0x97 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
10556 /* Table2449 */
},
/* 0x98 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
10557 /* Table2450 */
},
/* 0x99 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
10558 /* Table2451 */
},
/* 0x9a */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
10559 /* Table2452 */
},
/* 0x9b */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
10560 /* Table2453 */
},
/* 0x9c */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
10561 /* Table2454 */
},
/* 0x9d */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
10562 /* Table2455 */
},
/* 0x9e */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
10563 /* Table2456 */
},
/* 0x9f */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
10564 /* Table2457 */
},
/* 0xa0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa4 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
10565 /* Table2458 */
},
/* 0xa5 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
10566 /* Table2459 */
},
/* 0xa6 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
10567 /* Table2460 */
},
/* 0xa7 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
10568 /* Table2461 */
},
/* 0xa8 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
10569 /* Table2462 */
},
/* 0xa9 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
10570 /* Table2463 */
},
/* 0xaa */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
10571 /* Table2464 */
},
/* 0xab */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
10572 /* Table2465 */
},
/* 0xac */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
10573 /* Table2466 */
},
/* 0xad */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
10574 /* Table2467 */
},
/* 0xae */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
10575 /* Table2468 */
},
/* 0xaf */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
10576 /* Table2469 */
},
/* 0xb0 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
10577 /* Table2470 */
},
/* 0xb1 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
10578 /* Table2471 */
},
/* 0xb2 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
10579 /* Table2472 */
},
/* 0xb3 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
10580 /* Table2473 */
},
/* 0xb4 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
10581 /* Table2474 */
},
/* 0xb5 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
10582 /* Table2475 */
},
/* 0xb6 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
10583 /* Table2476 */
},
/* 0xb7 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
10584 /* Table2477 */
},
/* 0xb8 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
10585 /* Table2478 */
},
/* 0xb9 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
10586 /* Table2479 */
},
/* 0xba */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
10587 /* Table2480 */
},
/* 0xbb */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
10588 /* Table2481 */
},
/* 0xbc */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
10589 /* Table2482 */
},
/* 0xbd */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
10590 /* Table2483 */
},
/* 0xbe */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
10591 /* Table2484 */
},
/* 0xbf */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
10592 /* Table2485 */
},
/* 0xc0 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
10593 /* Table2486 */
},
/* 0xc1 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
10609 /* Table2487 */
},
/* 0xc2 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
10625 /* Table2488 */
},
/* 0xc3 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
10626 /* Table2489 */
},
/* 0xc4 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
10627 /* Table2490 */
},
/* 0xc5 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
10629 /* Table2491 */
},
/* 0xc6 */
{ /* struct ModRMDecision */
MODRM_SPLITMISC,
10631 /* Table2492 */
},
/* 0xc7 */
{ /* struct ModRMDecision */
MODRM_SPLITMISC,
10703 /* Table2493 */
},
/* 0xc8 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
10775 /* Table2494 */
},
/* 0xc9 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
10776 /* Table2495 */
},
/* 0xca */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
10777 /* Table2496 */
},
/* 0xcb */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
10778 /* Table2497 */
},
/* 0xcc */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
10779 /* Table2498 */
},
/* 0xcd */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
10780 /* Table2499 */
},
/* 0xce */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
10781 /* Table2500 */
},
/* 0xcf */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
10782 /* Table2501 */
},
/* 0xd0 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
10783 /* Table2502 */
},
/* 0xd1 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
10799 /* Table2503 */
},
/* 0xd2 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
10815 /* Table2504 */
},
/* 0xd3 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
10831 /* Table2505 */
},
/* 0xd4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd7 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
10847 /* Table2506 */
},
/* 0xd8 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
10848 /* Table2507 */
},
/* 0xd9 */
{ /* struct ModRMDecision */
MODRM_SPLITMISC,
10864 /* Table2508 */
},
/* 0xda */
{ /* struct ModRMDecision */
MODRM_SPLITMISC,
10936 /* Table2509 */
},
/* 0xdb */
{ /* struct ModRMDecision */
MODRM_SPLITMISC,
11008 /* Table2510 */
},
/* 0xdc */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
11080 /* Table2511 */
},
/* 0xdd */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
11096 /* Table2512 */
},
/* 0xde */
{ /* struct ModRMDecision */
MODRM_SPLITMISC,
11112 /* Table2513 */
},
/* 0xdf */
{ /* struct ModRMDecision */
MODRM_SPLITMISC,
11184 /* Table2514 */
},
/* 0xe0 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
11256 /* Table2515 */
},
/* 0xe1 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
11257 /* Table2516 */
},
/* 0xe2 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
11258 /* Table2517 */
},
/* 0xe3 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
11259 /* Table2518 */
},
/* 0xe4 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
11260 /* Table2519 */
},
/* 0xe5 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
11261 /* Table2520 */
},
/* 0xe6 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
11262 /* Table2521 */
},
/* 0xe7 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
11263 /* Table2522 */
},
/* 0xe8 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
11264 /* Table2523 */
},
/* 0xe9 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
11265 /* Table2524 */
},
/* 0xea */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
11266 /* Table2525 */
},
/* 0xeb */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
11267 /* Table2526 */
},
/* 0xec */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
11268 /* Table2527 */
},
/* 0xed */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
11269 /* Table2528 */
},
/* 0xee */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
11270 /* Table2529 */
},
/* 0xef */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
11271 /* Table2530 */
},
/* 0xf0 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
11272 /* Table2531 */
},
/* 0xf1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf2 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
11273 /* Table2532 */
},
/* 0xf3 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
11274 /* Table2533 */
},
/* 0xf4 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
11275 /* Table2534 */
},
/* 0xf5 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
11276 /* Table2535 */
},
/* 0xf6 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
11277 /* Table2536 */
},
/* 0xf7 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
11293 /* Table2537 */
},
/* 0xf8 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
11309 /* Table2538 */
},
/* 0xf9 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
11310 /* Table2539 */
},
/* 0xfa */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
11311 /* Table2540 */
},
/* 0xfb */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
11312 /* Table2541 */
},
/* 0xfc */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
11313 /* Table2542 */
},
/* 0xfd */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
11314 /* Table2543 */
},
/* 0xfe */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
11315 /* Table2544 */
},
/* 0xff */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
11331 /* Table2545 */
}
}
}
, /* IC_64BIT_XD_OPSIZE */
{ /* struct OpcodeDecision */
{
/* 0x00 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x01 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x02 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x03 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x04 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x05 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x06 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x07 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x08 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x09 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x10 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x11 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x12 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x13 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x14 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x15 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x16 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x17 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x18 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x19 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x20 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x21 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x22 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x23 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x24 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x25 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x26 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x27 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x28 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x29 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x30 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x31 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x32 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x33 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x34 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x35 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x36 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x37 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x38 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x39 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x40 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x41 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x42 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x43 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x44 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x45 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x46 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x47 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x48 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x49 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x50 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x51 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x52 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x53 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x54 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x55 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x56 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x57 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x58 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x59 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x60 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x61 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x62 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x63 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x64 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x65 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x66 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x67 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x68 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x69 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x70 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x71 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x72 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x73 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x74 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x75 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x76 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x77 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x78 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x79 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x80 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x81 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x82 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x83 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x84 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x85 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x86 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x87 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x88 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x89 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x90 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x91 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x92 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x93 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x94 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x95 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x96 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x97 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x98 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x99 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xab */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xac */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xad */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xae */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xba */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xca */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xce */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xda */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xde */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xea */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xeb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xec */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xed */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xee */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xef */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xff */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
}
}
}
, /* IC_64BIT_XS_OPSIZE */
{ /* struct OpcodeDecision */
{
/* 0x00 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x01 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x02 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x03 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x04 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x05 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x06 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x07 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x08 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x09 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x10 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x11 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x12 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x13 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x14 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x15 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x16 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x17 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x18 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x19 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x20 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x21 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x22 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x23 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x24 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x25 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x26 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x27 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x28 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x29 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x30 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x31 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x32 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x33 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x34 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x35 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x36 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x37 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x38 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x39 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x40 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x41 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x42 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x43 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x44 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x45 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x46 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x47 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x48 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x49 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x50 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x51 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x52 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x53 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x54 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x55 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x56 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x57 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x58 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x59 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x60 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x61 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x62 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x63 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x64 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x65 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x66 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x67 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x68 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x69 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x70 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x71 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x72 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x73 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x74 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x75 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x76 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x77 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x78 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x79 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x80 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x81 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x82 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x83 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x84 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x85 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x86 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x87 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x88 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x89 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x90 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x91 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x92 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x93 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x94 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x95 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x96 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x97 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x98 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x99 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xab */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xac */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xad */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xae */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xba */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xca */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xce */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xda */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xde */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xea */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xeb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xec */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xed */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xee */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xef */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xff */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
}
}
}
, /* IC_64BIT_REXW_XS */
{ /* struct OpcodeDecision */
{
/* 0x00 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
11347 /* Table2546 */
},
/* 0x01 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
11349 /* Table2547 */
},
/* 0x02 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
11351 /* Table2548 */
},
/* 0x03 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
11353 /* Table2549 */
},
/* 0x04 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
11355 /* Table2550 */
},
/* 0x05 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
11356 /* Table2551 */
},
/* 0x06 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x07 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x08 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
11357 /* Table2552 */
},
/* 0x09 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
11359 /* Table2553 */
},
/* 0x0a */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
11361 /* Table2554 */
},
/* 0x0b */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
11363 /* Table2555 */
},
/* 0x0c */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
11365 /* Table2556 */
},
/* 0x0d */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
11366 /* Table2557 */
},
/* 0x0e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x10 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
11367 /* Table2558 */
},
/* 0x11 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
11369 /* Table2559 */
},
/* 0x12 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
11371 /* Table2560 */
},
/* 0x13 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
11373 /* Table2561 */
},
/* 0x14 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
11375 /* Table2562 */
},
/* 0x15 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
11376 /* Table2563 */
},
/* 0x16 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x17 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x18 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
11377 /* Table2564 */
},
/* 0x19 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
11379 /* Table2565 */
},
/* 0x1a */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
11381 /* Table2566 */
},
/* 0x1b */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
11383 /* Table2567 */
},
/* 0x1c */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
11385 /* Table2568 */
},
/* 0x1d */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
11386 /* Table2569 */
},
/* 0x1e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x20 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
11387 /* Table2570 */
},
/* 0x21 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
11389 /* Table2571 */
},
/* 0x22 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
11391 /* Table2572 */
},
/* 0x23 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
11393 /* Table2573 */
},
/* 0x24 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
11395 /* Table2574 */
},
/* 0x25 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
11396 /* Table2575 */
},
/* 0x26 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
11397 /* Table2576 */
},
/* 0x27 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x28 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
11398 /* Table2577 */
},
/* 0x29 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
11400 /* Table2578 */
},
/* 0x2a */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
11402 /* Table2579 */
},
/* 0x2b */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
11404 /* Table2580 */
},
/* 0x2c */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
11406 /* Table2581 */
},
/* 0x2d */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
11407 /* Table2582 */
},
/* 0x2e */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
11408 /* Table2583 */
},
/* 0x2f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x30 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
11409 /* Table2584 */
},
/* 0x31 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
11411 /* Table2585 */
},
/* 0x32 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
11413 /* Table2586 */
},
/* 0x33 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
11415 /* Table2587 */
},
/* 0x34 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
11417 /* Table2588 */
},
/* 0x35 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
11418 /* Table2589 */
},
/* 0x36 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
11419 /* Table2590 */
},
/* 0x37 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x38 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
11420 /* Table2591 */
},
/* 0x39 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
11422 /* Table2592 */
},
/* 0x3a */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
11424 /* Table2593 */
},
/* 0x3b */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
11426 /* Table2594 */
},
/* 0x3c */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
11428 /* Table2595 */
},
/* 0x3d */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
11429 /* Table2596 */
},
/* 0x3e */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
11430 /* Table2597 */
},
/* 0x3f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x40 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x41 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x42 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x43 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x44 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x45 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x46 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x47 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x48 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
11431 /* Table2598 */
},
/* 0x49 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x50 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
11432 /* Table2599 */
},
/* 0x51 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
11433 /* Table2600 */
},
/* 0x52 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
11434 /* Table2601 */
},
/* 0x53 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
11435 /* Table2602 */
},
/* 0x54 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
11436 /* Table2603 */
},
/* 0x55 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
11437 /* Table2604 */
},
/* 0x56 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
11438 /* Table2605 */
},
/* 0x57 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
11439 /* Table2606 */
},
/* 0x58 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
11440 /* Table2607 */
},
/* 0x59 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
11441 /* Table2608 */
},
/* 0x5a */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
11442 /* Table2609 */
},
/* 0x5b */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
11443 /* Table2610 */
},
/* 0x5c */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
11444 /* Table2611 */
},
/* 0x5d */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
11445 /* Table2612 */
},
/* 0x5e */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
11446 /* Table2613 */
},
/* 0x5f */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
11447 /* Table2614 */
},
/* 0x60 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x61 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x62 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x63 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
11448 /* Table2615 */
},
/* 0x64 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
11450 /* Table2616 */
},
/* 0x65 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
11451 /* Table2617 */
},
/* 0x66 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
11452 /* Table2618 */
},
/* 0x67 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x68 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
11453 /* Table2619 */
},
/* 0x69 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
11454 /* Table2620 */
},
/* 0x6a */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
11456 /* Table2621 */
},
/* 0x6b */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
11457 /* Table2622 */
},
/* 0x6c */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
11459 /* Table2623 */
},
/* 0x6d */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
11460 /* Table2624 */
},
/* 0x6e */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
11461 /* Table2625 */
},
/* 0x6f */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
11462 /* Table2626 */
},
/* 0x70 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
11463 /* Table2627 */
},
/* 0x71 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
11464 /* Table2628 */
},
/* 0x72 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
11465 /* Table2629 */
},
/* 0x73 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
11466 /* Table2630 */
},
/* 0x74 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
11467 /* Table2631 */
},
/* 0x75 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
11468 /* Table2632 */
},
/* 0x76 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
11469 /* Table2633 */
},
/* 0x77 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
11470 /* Table2634 */
},
/* 0x78 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
11471 /* Table2635 */
},
/* 0x79 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
11472 /* Table2636 */
},
/* 0x7a */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
11473 /* Table2637 */
},
/* 0x7b */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
11474 /* Table2638 */
},
/* 0x7c */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
11475 /* Table2639 */
},
/* 0x7d */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
11476 /* Table2640 */
},
/* 0x7e */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
11477 /* Table2641 */
},
/* 0x7f */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
11478 /* Table2642 */
},
/* 0x80 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
11479 /* Table2643 */
},
/* 0x81 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
11495 /* Table2644 */
},
/* 0x82 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x83 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
11511 /* Table2645 */
},
/* 0x84 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
11527 /* Table2646 */
},
/* 0x85 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
11529 /* Table2647 */
},
/* 0x86 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
11531 /* Table2648 */
},
/* 0x87 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
11533 /* Table2649 */
},
/* 0x88 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
11535 /* Table2650 */
},
/* 0x89 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
11537 /* Table2651 */
},
/* 0x8a */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
11539 /* Table2652 */
},
/* 0x8b */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
11541 /* Table2653 */
},
/* 0x8c */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
11543 /* Table2654 */
},
/* 0x8d */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
11545 /* Table2655 */
},
/* 0x8e */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
11547 /* Table2656 */
},
/* 0x8f */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
11549 /* Table2657 */
},
/* 0x90 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
11565 /* Table2658 */
},
/* 0x91 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
11566 /* Table2659 */
},
/* 0x92 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
11567 /* Table2660 */
},
/* 0x93 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
11568 /* Table2661 */
},
/* 0x94 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
11569 /* Table2662 */
},
/* 0x95 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
11570 /* Table2663 */
},
/* 0x96 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
11571 /* Table2664 */
},
/* 0x97 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
11572 /* Table2665 */
},
/* 0x98 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
11573 /* Table2666 */
},
/* 0x99 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
11574 /* Table2667 */
},
/* 0x9a */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
11575 /* Table2668 */
},
/* 0x9b */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
11576 /* Table2669 */
},
/* 0x9c */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
11577 /* Table2670 */
},
/* 0x9d */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
11578 /* Table2671 */
},
/* 0x9e */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
11579 /* Table2672 */
},
/* 0x9f */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
11580 /* Table2673 */
},
/* 0xa0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa4 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
11581 /* Table2674 */
},
/* 0xa5 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
11582 /* Table2675 */
},
/* 0xa6 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
11583 /* Table2676 */
},
/* 0xa7 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
11584 /* Table2677 */
},
/* 0xa8 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
11585 /* Table2678 */
},
/* 0xa9 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
11586 /* Table2679 */
},
/* 0xaa */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
11587 /* Table2680 */
},
/* 0xab */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
11588 /* Table2681 */
},
/* 0xac */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
11589 /* Table2682 */
},
/* 0xad */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
11590 /* Table2683 */
},
/* 0xae */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
11591 /* Table2684 */
},
/* 0xaf */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
11592 /* Table2685 */
},
/* 0xb0 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
11593 /* Table2686 */
},
/* 0xb1 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
11594 /* Table2687 */
},
/* 0xb2 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
11595 /* Table2688 */
},
/* 0xb3 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
11596 /* Table2689 */
},
/* 0xb4 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
11597 /* Table2690 */
},
/* 0xb5 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
11598 /* Table2691 */
},
/* 0xb6 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
11599 /* Table2692 */
},
/* 0xb7 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
11600 /* Table2693 */
},
/* 0xb8 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
11601 /* Table2694 */
},
/* 0xb9 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
11602 /* Table2695 */
},
/* 0xba */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
11603 /* Table2696 */
},
/* 0xbb */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
11604 /* Table2697 */
},
/* 0xbc */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
11605 /* Table2698 */
},
/* 0xbd */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
11606 /* Table2699 */
},
/* 0xbe */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
11607 /* Table2700 */
},
/* 0xbf */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
11608 /* Table2701 */
},
/* 0xc0 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
11609 /* Table2702 */
},
/* 0xc1 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
11625 /* Table2703 */
},
/* 0xc2 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
11641 /* Table2704 */
},
/* 0xc3 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
11642 /* Table2705 */
},
/* 0xc4 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
11643 /* Table2706 */
},
/* 0xc5 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
11645 /* Table2707 */
},
/* 0xc6 */
{ /* struct ModRMDecision */
MODRM_SPLITMISC,
11647 /* Table2708 */
},
/* 0xc7 */
{ /* struct ModRMDecision */
MODRM_SPLITMISC,
11719 /* Table2709 */
},
/* 0xc8 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
11791 /* Table2710 */
},
/* 0xc9 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
11792 /* Table2711 */
},
/* 0xca */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
11793 /* Table2712 */
},
/* 0xcb */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
11794 /* Table2713 */
},
/* 0xcc */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
11795 /* Table2714 */
},
/* 0xcd */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
11796 /* Table2715 */
},
/* 0xce */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
11797 /* Table2716 */
},
/* 0xcf */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
11798 /* Table2717 */
},
/* 0xd0 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
11799 /* Table2718 */
},
/* 0xd1 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
11815 /* Table2719 */
},
/* 0xd2 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
11831 /* Table2720 */
},
/* 0xd3 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
11847 /* Table2721 */
},
/* 0xd4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd7 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
11863 /* Table2722 */
},
/* 0xd8 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
11864 /* Table2723 */
},
/* 0xd9 */
{ /* struct ModRMDecision */
MODRM_SPLITMISC,
11880 /* Table2724 */
},
/* 0xda */
{ /* struct ModRMDecision */
MODRM_SPLITMISC,
11952 /* Table2725 */
},
/* 0xdb */
{ /* struct ModRMDecision */
MODRM_SPLITMISC,
12024 /* Table2726 */
},
/* 0xdc */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
12096 /* Table2727 */
},
/* 0xdd */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
12112 /* Table2728 */
},
/* 0xde */
{ /* struct ModRMDecision */
MODRM_SPLITMISC,
12128 /* Table2729 */
},
/* 0xdf */
{ /* struct ModRMDecision */
MODRM_SPLITMISC,
12200 /* Table2730 */
},
/* 0xe0 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
12272 /* Table2731 */
},
/* 0xe1 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
12273 /* Table2732 */
},
/* 0xe2 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
12274 /* Table2733 */
},
/* 0xe3 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
12275 /* Table2734 */
},
/* 0xe4 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
12276 /* Table2735 */
},
/* 0xe5 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
12277 /* Table2736 */
},
/* 0xe6 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
12278 /* Table2737 */
},
/* 0xe7 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
12279 /* Table2738 */
},
/* 0xe8 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
12280 /* Table2739 */
},
/* 0xe9 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
12281 /* Table2740 */
},
/* 0xea */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
12282 /* Table2741 */
},
/* 0xeb */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
12283 /* Table2742 */
},
/* 0xec */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
12284 /* Table2743 */
},
/* 0xed */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
12285 /* Table2744 */
},
/* 0xee */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
12286 /* Table2745 */
},
/* 0xef */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
12287 /* Table2746 */
},
/* 0xf0 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
12288 /* Table2747 */
},
/* 0xf1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf2 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
12289 /* Table2748 */
},
/* 0xf3 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
12290 /* Table2749 */
},
/* 0xf4 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
12291 /* Table2750 */
},
/* 0xf5 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
12292 /* Table2751 */
},
/* 0xf6 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
12293 /* Table2752 */
},
/* 0xf7 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
12309 /* Table2753 */
},
/* 0xf8 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
12325 /* Table2754 */
},
/* 0xf9 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
12326 /* Table2755 */
},
/* 0xfa */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
12327 /* Table2756 */
},
/* 0xfb */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
12328 /* Table2757 */
},
/* 0xfc */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
12329 /* Table2758 */
},
/* 0xfd */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
12330 /* Table2759 */
},
/* 0xfe */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
12331 /* Table2760 */
},
/* 0xff */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
12347 /* Table2761 */
}
}
}
, /* IC_64BIT_REXW_XD */
{ /* struct OpcodeDecision */
{
/* 0x00 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
12363 /* Table2762 */
},
/* 0x01 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
12365 /* Table2763 */
},
/* 0x02 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
12367 /* Table2764 */
},
/* 0x03 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
12369 /* Table2765 */
},
/* 0x04 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
12371 /* Table2766 */
},
/* 0x05 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
12372 /* Table2767 */
},
/* 0x06 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x07 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x08 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
12373 /* Table2768 */
},
/* 0x09 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
12375 /* Table2769 */
},
/* 0x0a */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
12377 /* Table2770 */
},
/* 0x0b */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
12379 /* Table2771 */
},
/* 0x0c */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
12381 /* Table2772 */
},
/* 0x0d */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
12382 /* Table2773 */
},
/* 0x0e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x10 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
12383 /* Table2774 */
},
/* 0x11 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
12385 /* Table2775 */
},
/* 0x12 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
12387 /* Table2776 */
},
/* 0x13 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
12389 /* Table2777 */
},
/* 0x14 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
12391 /* Table2778 */
},
/* 0x15 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
12392 /* Table2779 */
},
/* 0x16 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x17 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x18 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
12393 /* Table2780 */
},
/* 0x19 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
12395 /* Table2781 */
},
/* 0x1a */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
12397 /* Table2782 */
},
/* 0x1b */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
12399 /* Table2783 */
},
/* 0x1c */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
12401 /* Table2784 */
},
/* 0x1d */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
12402 /* Table2785 */
},
/* 0x1e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x20 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
12403 /* Table2786 */
},
/* 0x21 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
12405 /* Table2787 */
},
/* 0x22 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
12407 /* Table2788 */
},
/* 0x23 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
12409 /* Table2789 */
},
/* 0x24 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
12411 /* Table2790 */
},
/* 0x25 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
12412 /* Table2791 */
},
/* 0x26 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
12413 /* Table2792 */
},
/* 0x27 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x28 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
12414 /* Table2793 */
},
/* 0x29 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
12416 /* Table2794 */
},
/* 0x2a */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
12418 /* Table2795 */
},
/* 0x2b */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
12420 /* Table2796 */
},
/* 0x2c */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
12422 /* Table2797 */
},
/* 0x2d */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
12423 /* Table2798 */
},
/* 0x2e */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
12424 /* Table2799 */
},
/* 0x2f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x30 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
12425 /* Table2800 */
},
/* 0x31 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
12427 /* Table2801 */
},
/* 0x32 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
12429 /* Table2802 */
},
/* 0x33 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
12431 /* Table2803 */
},
/* 0x34 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
12433 /* Table2804 */
},
/* 0x35 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
12434 /* Table2805 */
},
/* 0x36 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
12435 /* Table2806 */
},
/* 0x37 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x38 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
12436 /* Table2807 */
},
/* 0x39 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
12438 /* Table2808 */
},
/* 0x3a */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
12440 /* Table2809 */
},
/* 0x3b */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
12442 /* Table2810 */
},
/* 0x3c */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
12444 /* Table2811 */
},
/* 0x3d */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
12445 /* Table2812 */
},
/* 0x3e */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
12446 /* Table2813 */
},
/* 0x3f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x40 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x41 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x42 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x43 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x44 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x45 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x46 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x47 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x48 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
12447 /* Table2814 */
},
/* 0x49 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x50 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
12448 /* Table2815 */
},
/* 0x51 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
12449 /* Table2816 */
},
/* 0x52 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
12450 /* Table2817 */
},
/* 0x53 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
12451 /* Table2818 */
},
/* 0x54 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
12452 /* Table2819 */
},
/* 0x55 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
12453 /* Table2820 */
},
/* 0x56 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
12454 /* Table2821 */
},
/* 0x57 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
12455 /* Table2822 */
},
/* 0x58 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
12456 /* Table2823 */
},
/* 0x59 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
12457 /* Table2824 */
},
/* 0x5a */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
12458 /* Table2825 */
},
/* 0x5b */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
12459 /* Table2826 */
},
/* 0x5c */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
12460 /* Table2827 */
},
/* 0x5d */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
12461 /* Table2828 */
},
/* 0x5e */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
12462 /* Table2829 */
},
/* 0x5f */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
12463 /* Table2830 */
},
/* 0x60 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x61 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x62 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x63 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
12464 /* Table2831 */
},
/* 0x64 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
12466 /* Table2832 */
},
/* 0x65 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
12467 /* Table2833 */
},
/* 0x66 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
12468 /* Table2834 */
},
/* 0x67 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x68 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
12469 /* Table2835 */
},
/* 0x69 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
12470 /* Table2836 */
},
/* 0x6a */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
12472 /* Table2837 */
},
/* 0x6b */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
12473 /* Table2838 */
},
/* 0x6c */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
12475 /* Table2839 */
},
/* 0x6d */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
12476 /* Table2840 */
},
/* 0x6e */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
12477 /* Table2841 */
},
/* 0x6f */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
12478 /* Table2842 */
},
/* 0x70 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
12479 /* Table2843 */
},
/* 0x71 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
12480 /* Table2844 */
},
/* 0x72 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
12481 /* Table2845 */
},
/* 0x73 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
12482 /* Table2846 */
},
/* 0x74 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
12483 /* Table2847 */
},
/* 0x75 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
12484 /* Table2848 */
},
/* 0x76 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
12485 /* Table2849 */
},
/* 0x77 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
12486 /* Table2850 */
},
/* 0x78 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
12487 /* Table2851 */
},
/* 0x79 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
12488 /* Table2852 */
},
/* 0x7a */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
12489 /* Table2853 */
},
/* 0x7b */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
12490 /* Table2854 */
},
/* 0x7c */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
12491 /* Table2855 */
},
/* 0x7d */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
12492 /* Table2856 */
},
/* 0x7e */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
12493 /* Table2857 */
},
/* 0x7f */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
12494 /* Table2858 */
},
/* 0x80 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
12495 /* Table2859 */
},
/* 0x81 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
12511 /* Table2860 */
},
/* 0x82 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x83 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
12527 /* Table2861 */
},
/* 0x84 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
12543 /* Table2862 */
},
/* 0x85 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
12545 /* Table2863 */
},
/* 0x86 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
12547 /* Table2864 */
},
/* 0x87 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
12549 /* Table2865 */
},
/* 0x88 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
12551 /* Table2866 */
},
/* 0x89 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
12553 /* Table2867 */
},
/* 0x8a */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
12555 /* Table2868 */
},
/* 0x8b */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
12557 /* Table2869 */
},
/* 0x8c */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
12559 /* Table2870 */
},
/* 0x8d */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
12561 /* Table2871 */
},
/* 0x8e */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
12563 /* Table2872 */
},
/* 0x8f */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
12565 /* Table2873 */
},
/* 0x90 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
12581 /* Table2874 */
},
/* 0x91 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
12582 /* Table2875 */
},
/* 0x92 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
12583 /* Table2876 */
},
/* 0x93 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
12584 /* Table2877 */
},
/* 0x94 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
12585 /* Table2878 */
},
/* 0x95 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
12586 /* Table2879 */
},
/* 0x96 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
12587 /* Table2880 */
},
/* 0x97 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
12588 /* Table2881 */
},
/* 0x98 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
12589 /* Table2882 */
},
/* 0x99 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
12590 /* Table2883 */
},
/* 0x9a */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
12591 /* Table2884 */
},
/* 0x9b */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
12592 /* Table2885 */
},
/* 0x9c */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
12593 /* Table2886 */
},
/* 0x9d */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
12594 /* Table2887 */
},
/* 0x9e */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
12595 /* Table2888 */
},
/* 0x9f */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
12596 /* Table2889 */
},
/* 0xa0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa4 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
12597 /* Table2890 */
},
/* 0xa5 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
12598 /* Table2891 */
},
/* 0xa6 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
12599 /* Table2892 */
},
/* 0xa7 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
12600 /* Table2893 */
},
/* 0xa8 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
12601 /* Table2894 */
},
/* 0xa9 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
12602 /* Table2895 */
},
/* 0xaa */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
12603 /* Table2896 */
},
/* 0xab */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
12604 /* Table2897 */
},
/* 0xac */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
12605 /* Table2898 */
},
/* 0xad */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
12606 /* Table2899 */
},
/* 0xae */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
12607 /* Table2900 */
},
/* 0xaf */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
12608 /* Table2901 */
},
/* 0xb0 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
12609 /* Table2902 */
},
/* 0xb1 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
12610 /* Table2903 */
},
/* 0xb2 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
12611 /* Table2904 */
},
/* 0xb3 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
12612 /* Table2905 */
},
/* 0xb4 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
12613 /* Table2906 */
},
/* 0xb5 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
12614 /* Table2907 */
},
/* 0xb6 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
12615 /* Table2908 */
},
/* 0xb7 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
12616 /* Table2909 */
},
/* 0xb8 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
12617 /* Table2910 */
},
/* 0xb9 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
12618 /* Table2911 */
},
/* 0xba */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
12619 /* Table2912 */
},
/* 0xbb */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
12620 /* Table2913 */
},
/* 0xbc */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
12621 /* Table2914 */
},
/* 0xbd */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
12622 /* Table2915 */
},
/* 0xbe */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
12623 /* Table2916 */
},
/* 0xbf */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
12624 /* Table2917 */
},
/* 0xc0 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
12625 /* Table2918 */
},
/* 0xc1 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
12641 /* Table2919 */
},
/* 0xc2 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
12657 /* Table2920 */
},
/* 0xc3 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
12658 /* Table2921 */
},
/* 0xc4 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
12659 /* Table2922 */
},
/* 0xc5 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
12661 /* Table2923 */
},
/* 0xc6 */
{ /* struct ModRMDecision */
MODRM_SPLITMISC,
12663 /* Table2924 */
},
/* 0xc7 */
{ /* struct ModRMDecision */
MODRM_SPLITMISC,
12735 /* Table2925 */
},
/* 0xc8 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
12807 /* Table2926 */
},
/* 0xc9 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
12808 /* Table2927 */
},
/* 0xca */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
12809 /* Table2928 */
},
/* 0xcb */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
12810 /* Table2929 */
},
/* 0xcc */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
12811 /* Table2930 */
},
/* 0xcd */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
12812 /* Table2931 */
},
/* 0xce */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
12813 /* Table2932 */
},
/* 0xcf */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
12814 /* Table2933 */
},
/* 0xd0 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
12815 /* Table2934 */
},
/* 0xd1 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
12831 /* Table2935 */
},
/* 0xd2 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
12847 /* Table2936 */
},
/* 0xd3 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
12863 /* Table2937 */
},
/* 0xd4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd7 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
12879 /* Table2938 */
},
/* 0xd8 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
12880 /* Table2939 */
},
/* 0xd9 */
{ /* struct ModRMDecision */
MODRM_SPLITMISC,
12896 /* Table2940 */
},
/* 0xda */
{ /* struct ModRMDecision */
MODRM_SPLITMISC,
12968 /* Table2941 */
},
/* 0xdb */
{ /* struct ModRMDecision */
MODRM_SPLITMISC,
13040 /* Table2942 */
},
/* 0xdc */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
13112 /* Table2943 */
},
/* 0xdd */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
13128 /* Table2944 */
},
/* 0xde */
{ /* struct ModRMDecision */
MODRM_SPLITMISC,
13144 /* Table2945 */
},
/* 0xdf */
{ /* struct ModRMDecision */
MODRM_SPLITMISC,
13216 /* Table2946 */
},
/* 0xe0 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
13288 /* Table2947 */
},
/* 0xe1 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
13289 /* Table2948 */
},
/* 0xe2 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
13290 /* Table2949 */
},
/* 0xe3 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
13291 /* Table2950 */
},
/* 0xe4 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
13292 /* Table2951 */
},
/* 0xe5 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
13293 /* Table2952 */
},
/* 0xe6 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
13294 /* Table2953 */
},
/* 0xe7 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
13295 /* Table2954 */
},
/* 0xe8 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
13296 /* Table2955 */
},
/* 0xe9 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
13297 /* Table2956 */
},
/* 0xea */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
13298 /* Table2957 */
},
/* 0xeb */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
13299 /* Table2958 */
},
/* 0xec */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
13300 /* Table2959 */
},
/* 0xed */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
13301 /* Table2960 */
},
/* 0xee */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
13302 /* Table2961 */
},
/* 0xef */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
13303 /* Table2962 */
},
/* 0xf0 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
13304 /* Table2963 */
},
/* 0xf1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf2 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
13305 /* Table2964 */
},
/* 0xf3 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
13306 /* Table2965 */
},
/* 0xf4 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
13307 /* Table2966 */
},
/* 0xf5 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
13308 /* Table2967 */
},
/* 0xf6 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
13309 /* Table2968 */
},
/* 0xf7 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
13325 /* Table2969 */
},
/* 0xf8 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
13341 /* Table2970 */
},
/* 0xf9 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
13342 /* Table2971 */
},
/* 0xfa */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
13343 /* Table2972 */
},
/* 0xfb */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
13344 /* Table2973 */
},
/* 0xfc */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
13345 /* Table2974 */
},
/* 0xfd */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
13346 /* Table2975 */
},
/* 0xfe */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
13347 /* Table2976 */
},
/* 0xff */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
13363 /* Table2977 */
}
}
}
, /* IC_64BIT_REXW_OPSIZE */
{ /* struct OpcodeDecision */
{
/* 0x00 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
13379 /* Table2978 */
},
/* 0x01 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
13381 /* Table2979 */
},
/* 0x02 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
13383 /* Table2980 */
},
/* 0x03 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
13385 /* Table2981 */
},
/* 0x04 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
13387 /* Table2982 */
},
/* 0x05 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
13388 /* Table2983 */
},
/* 0x06 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x07 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x08 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
13389 /* Table2984 */
},
/* 0x09 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
13391 /* Table2985 */
},
/* 0x0a */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
13393 /* Table2986 */
},
/* 0x0b */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
13395 /* Table2987 */
},
/* 0x0c */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
13397 /* Table2988 */
},
/* 0x0d */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
13398 /* Table2989 */
},
/* 0x0e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x10 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
13399 /* Table2990 */
},
/* 0x11 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
13401 /* Table2991 */
},
/* 0x12 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
13403 /* Table2992 */
},
/* 0x13 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
13405 /* Table2993 */
},
/* 0x14 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
13407 /* Table2994 */
},
/* 0x15 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
13408 /* Table2995 */
},
/* 0x16 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x17 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x18 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
13409 /* Table2996 */
},
/* 0x19 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
13411 /* Table2997 */
},
/* 0x1a */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
13413 /* Table2998 */
},
/* 0x1b */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
13415 /* Table2999 */
},
/* 0x1c */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
13417 /* Table3000 */
},
/* 0x1d */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
13418 /* Table3001 */
},
/* 0x1e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x20 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
13419 /* Table3002 */
},
/* 0x21 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
13421 /* Table3003 */
},
/* 0x22 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
13423 /* Table3004 */
},
/* 0x23 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
13425 /* Table3005 */
},
/* 0x24 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
13427 /* Table3006 */
},
/* 0x25 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
13428 /* Table3007 */
},
/* 0x26 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
13429 /* Table3008 */
},
/* 0x27 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x28 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
13430 /* Table3009 */
},
/* 0x29 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
13432 /* Table3010 */
},
/* 0x2a */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
13434 /* Table3011 */
},
/* 0x2b */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
13436 /* Table3012 */
},
/* 0x2c */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
13438 /* Table3013 */
},
/* 0x2d */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
13439 /* Table3014 */
},
/* 0x2e */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
13440 /* Table3015 */
},
/* 0x2f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x30 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
13441 /* Table3016 */
},
/* 0x31 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
13443 /* Table3017 */
},
/* 0x32 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
13445 /* Table3018 */
},
/* 0x33 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
13447 /* Table3019 */
},
/* 0x34 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
13449 /* Table3020 */
},
/* 0x35 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
13450 /* Table3021 */
},
/* 0x36 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
13451 /* Table3022 */
},
/* 0x37 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x38 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
13452 /* Table3023 */
},
/* 0x39 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
13454 /* Table3024 */
},
/* 0x3a */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
13456 /* Table3025 */
},
/* 0x3b */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
13458 /* Table3026 */
},
/* 0x3c */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
13460 /* Table3027 */
},
/* 0x3d */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
13461 /* Table3028 */
},
/* 0x3e */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
13462 /* Table3029 */
},
/* 0x3f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x40 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x41 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x42 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x43 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x44 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x45 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x46 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x47 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x48 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
13463 /* Table3030 */
},
/* 0x49 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x50 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
13464 /* Table3031 */
},
/* 0x51 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
13465 /* Table3032 */
},
/* 0x52 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
13466 /* Table3033 */
},
/* 0x53 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
13467 /* Table3034 */
},
/* 0x54 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
13468 /* Table3035 */
},
/* 0x55 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
13469 /* Table3036 */
},
/* 0x56 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
13470 /* Table3037 */
},
/* 0x57 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
13471 /* Table3038 */
},
/* 0x58 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
13472 /* Table3039 */
},
/* 0x59 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
13473 /* Table3040 */
},
/* 0x5a */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
13474 /* Table3041 */
},
/* 0x5b */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
13475 /* Table3042 */
},
/* 0x5c */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
13476 /* Table3043 */
},
/* 0x5d */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
13477 /* Table3044 */
},
/* 0x5e */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
13478 /* Table3045 */
},
/* 0x5f */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
13479 /* Table3046 */
},
/* 0x60 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x61 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x62 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x63 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
13480 /* Table3047 */
},
/* 0x64 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
13482 /* Table3048 */
},
/* 0x65 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
13483 /* Table3049 */
},
/* 0x66 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
13484 /* Table3050 */
},
/* 0x67 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x68 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
13485 /* Table3051 */
},
/* 0x69 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
13486 /* Table3052 */
},
/* 0x6a */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
13488 /* Table3053 */
},
/* 0x6b */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
13489 /* Table3054 */
},
/* 0x6c */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
13491 /* Table3055 */
},
/* 0x6d */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
13492 /* Table3056 */
},
/* 0x6e */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
13493 /* Table3057 */
},
/* 0x6f */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
13494 /* Table3058 */
},
/* 0x70 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
13495 /* Table3059 */
},
/* 0x71 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
13496 /* Table3060 */
},
/* 0x72 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
13497 /* Table3061 */
},
/* 0x73 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
13498 /* Table3062 */
},
/* 0x74 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
13499 /* Table3063 */
},
/* 0x75 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
13500 /* Table3064 */
},
/* 0x76 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
13501 /* Table3065 */
},
/* 0x77 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
13502 /* Table3066 */
},
/* 0x78 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
13503 /* Table3067 */
},
/* 0x79 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
13504 /* Table3068 */
},
/* 0x7a */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
13505 /* Table3069 */
},
/* 0x7b */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
13506 /* Table3070 */
},
/* 0x7c */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
13507 /* Table3071 */
},
/* 0x7d */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
13508 /* Table3072 */
},
/* 0x7e */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
13509 /* Table3073 */
},
/* 0x7f */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
13510 /* Table3074 */
},
/* 0x80 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
13511 /* Table3075 */
},
/* 0x81 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
13527 /* Table3076 */
},
/* 0x82 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x83 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
13543 /* Table3077 */
},
/* 0x84 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
13559 /* Table3078 */
},
/* 0x85 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
13561 /* Table3079 */
},
/* 0x86 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
13563 /* Table3080 */
},
/* 0x87 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
13565 /* Table3081 */
},
/* 0x88 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
13567 /* Table3082 */
},
/* 0x89 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
13569 /* Table3083 */
},
/* 0x8a */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
13571 /* Table3084 */
},
/* 0x8b */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
13573 /* Table3085 */
},
/* 0x8c */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
13575 /* Table3086 */
},
/* 0x8d */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
13577 /* Table3087 */
},
/* 0x8e */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
13579 /* Table3088 */
},
/* 0x8f */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
13581 /* Table3089 */
},
/* 0x90 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
13597 /* Table3090 */
},
/* 0x91 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
13598 /* Table3091 */
},
/* 0x92 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
13599 /* Table3092 */
},
/* 0x93 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
13600 /* Table3093 */
},
/* 0x94 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
13601 /* Table3094 */
},
/* 0x95 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
13602 /* Table3095 */
},
/* 0x96 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
13603 /* Table3096 */
},
/* 0x97 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
13604 /* Table3097 */
},
/* 0x98 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
13605 /* Table3098 */
},
/* 0x99 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
13606 /* Table3099 */
},
/* 0x9a */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
13607 /* Table3100 */
},
/* 0x9b */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
13608 /* Table3101 */
},
/* 0x9c */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
13609 /* Table3102 */
},
/* 0x9d */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
13610 /* Table3103 */
},
/* 0x9e */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
13611 /* Table3104 */
},
/* 0x9f */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
13612 /* Table3105 */
},
/* 0xa0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa4 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
13613 /* Table3106 */
},
/* 0xa5 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
13614 /* Table3107 */
},
/* 0xa6 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
13615 /* Table3108 */
},
/* 0xa7 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
13616 /* Table3109 */
},
/* 0xa8 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
13617 /* Table3110 */
},
/* 0xa9 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
13618 /* Table3111 */
},
/* 0xaa */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
13619 /* Table3112 */
},
/* 0xab */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
13620 /* Table3113 */
},
/* 0xac */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
13621 /* Table3114 */
},
/* 0xad */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
13622 /* Table3115 */
},
/* 0xae */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
13623 /* Table3116 */
},
/* 0xaf */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
13624 /* Table3117 */
},
/* 0xb0 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
13625 /* Table3118 */
},
/* 0xb1 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
13626 /* Table3119 */
},
/* 0xb2 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
13627 /* Table3120 */
},
/* 0xb3 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
13628 /* Table3121 */
},
/* 0xb4 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
13629 /* Table3122 */
},
/* 0xb5 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
13630 /* Table3123 */
},
/* 0xb6 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
13631 /* Table3124 */
},
/* 0xb7 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
13632 /* Table3125 */
},
/* 0xb8 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
13633 /* Table3126 */
},
/* 0xb9 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
13634 /* Table3127 */
},
/* 0xba */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
13635 /* Table3128 */
},
/* 0xbb */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
13636 /* Table3129 */
},
/* 0xbc */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
13637 /* Table3130 */
},
/* 0xbd */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
13638 /* Table3131 */
},
/* 0xbe */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
13639 /* Table3132 */
},
/* 0xbf */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
13640 /* Table3133 */
},
/* 0xc0 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
13641 /* Table3134 */
},
/* 0xc1 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
13657 /* Table3135 */
},
/* 0xc2 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
13673 /* Table3136 */
},
/* 0xc3 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
13674 /* Table3137 */
},
/* 0xc4 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
13675 /* Table3138 */
},
/* 0xc5 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
13677 /* Table3139 */
},
/* 0xc6 */
{ /* struct ModRMDecision */
MODRM_SPLITMISC,
13679 /* Table3140 */
},
/* 0xc7 */
{ /* struct ModRMDecision */
MODRM_SPLITMISC,
13751 /* Table3141 */
},
/* 0xc8 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
13823 /* Table3142 */
},
/* 0xc9 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
13824 /* Table3143 */
},
/* 0xca */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
13825 /* Table3144 */
},
/* 0xcb */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
13826 /* Table3145 */
},
/* 0xcc */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
13827 /* Table3146 */
},
/* 0xcd */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
13828 /* Table3147 */
},
/* 0xce */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
13829 /* Table3148 */
},
/* 0xcf */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
13830 /* Table3149 */
},
/* 0xd0 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
13831 /* Table3150 */
},
/* 0xd1 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
13847 /* Table3151 */
},
/* 0xd2 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
13863 /* Table3152 */
},
/* 0xd3 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
13879 /* Table3153 */
},
/* 0xd4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd7 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
13895 /* Table3154 */
},
/* 0xd8 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
13896 /* Table3155 */
},
/* 0xd9 */
{ /* struct ModRMDecision */
MODRM_SPLITMISC,
13912 /* Table3156 */
},
/* 0xda */
{ /* struct ModRMDecision */
MODRM_SPLITMISC,
13984 /* Table3157 */
},
/* 0xdb */
{ /* struct ModRMDecision */
MODRM_SPLITMISC,
14056 /* Table3158 */
},
/* 0xdc */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
14128 /* Table3159 */
},
/* 0xdd */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
14144 /* Table3160 */
},
/* 0xde */
{ /* struct ModRMDecision */
MODRM_SPLITMISC,
14160 /* Table3161 */
},
/* 0xdf */
{ /* struct ModRMDecision */
MODRM_SPLITMISC,
14232 /* Table3162 */
},
/* 0xe0 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
14304 /* Table3163 */
},
/* 0xe1 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
14305 /* Table3164 */
},
/* 0xe2 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
14306 /* Table3165 */
},
/* 0xe3 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
14307 /* Table3166 */
},
/* 0xe4 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
14308 /* Table3167 */
},
/* 0xe5 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
14309 /* Table3168 */
},
/* 0xe6 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
14310 /* Table3169 */
},
/* 0xe7 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
14311 /* Table3170 */
},
/* 0xe8 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
14312 /* Table3171 */
},
/* 0xe9 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
14313 /* Table3172 */
},
/* 0xea */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
14314 /* Table3173 */
},
/* 0xeb */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
14315 /* Table3174 */
},
/* 0xec */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
14316 /* Table3175 */
},
/* 0xed */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
14317 /* Table3176 */
},
/* 0xee */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
14318 /* Table3177 */
},
/* 0xef */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
14319 /* Table3178 */
},
/* 0xf0 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
14320 /* Table3179 */
},
/* 0xf1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf2 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
14321 /* Table3180 */
},
/* 0xf3 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
14322 /* Table3181 */
},
/* 0xf4 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
14323 /* Table3182 */
},
/* 0xf5 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
14324 /* Table3183 */
},
/* 0xf6 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
14325 /* Table3184 */
},
/* 0xf7 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
14341 /* Table3185 */
},
/* 0xf8 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
14357 /* Table3186 */
},
/* 0xf9 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
14358 /* Table3187 */
},
/* 0xfa */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
14359 /* Table3188 */
},
/* 0xfb */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
14360 /* Table3189 */
},
/* 0xfc */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
14361 /* Table3190 */
},
/* 0xfd */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
14362 /* Table3191 */
},
/* 0xfe */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
14363 /* Table3192 */
},
/* 0xff */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
14379 /* Table3193 */
}
}
}
, /* IC_VEX */
{ /* struct OpcodeDecision */
{
/* 0x00 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x01 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x02 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x03 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x04 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x05 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x06 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x07 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x08 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x09 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x10 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x11 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x12 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x13 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x14 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x15 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x16 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x17 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x18 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x19 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x20 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x21 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x22 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x23 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x24 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x25 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x26 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x27 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x28 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x29 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x30 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x31 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x32 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x33 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x34 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x35 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x36 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x37 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x38 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x39 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x40 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x41 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x42 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x43 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x44 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x45 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x46 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x47 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x48 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x49 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x50 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x51 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x52 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x53 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x54 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x55 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x56 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x57 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x58 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x59 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x60 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x61 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x62 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x63 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x64 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x65 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x66 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x67 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x68 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x69 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x70 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x71 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x72 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x73 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x74 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x75 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x76 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x77 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x78 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x79 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x80 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x81 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x82 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x83 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x84 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x85 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x86 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x87 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x88 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x89 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x90 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x91 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x92 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x93 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x94 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x95 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x96 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x97 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x98 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x99 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xab */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xac */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xad */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xae */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xba */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xca */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xce */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xda */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xde */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xea */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xeb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xec */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xed */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xee */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xef */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xff */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
}
}
}
, /* IC_VEX_XS */
{ /* struct OpcodeDecision */
{
/* 0x00 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x01 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x02 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x03 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x04 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x05 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x06 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x07 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x08 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x09 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x10 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x11 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x12 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x13 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x14 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x15 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x16 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x17 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x18 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x19 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x20 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x21 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x22 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x23 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x24 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x25 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x26 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x27 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x28 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x29 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x30 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x31 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x32 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x33 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x34 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x35 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x36 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x37 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x38 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x39 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x40 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x41 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x42 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x43 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x44 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x45 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x46 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x47 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x48 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x49 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x50 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x51 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x52 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x53 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x54 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x55 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x56 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x57 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x58 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x59 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x60 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x61 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x62 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x63 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x64 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x65 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x66 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x67 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x68 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x69 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x70 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x71 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x72 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x73 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x74 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x75 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x76 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x77 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x78 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x79 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x80 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x81 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x82 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x83 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x84 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x85 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x86 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x87 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x88 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x89 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x90 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x91 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x92 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x93 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x94 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x95 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x96 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x97 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x98 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x99 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xab */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xac */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xad */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xae */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xba */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xca */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xce */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xda */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xde */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xea */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xeb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xec */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xed */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xee */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xef */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xff */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
}
}
}
, /* IC_VEX_XD */
{ /* struct OpcodeDecision */
{
/* 0x00 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x01 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x02 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x03 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x04 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x05 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x06 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x07 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x08 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x09 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x10 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x11 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x12 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x13 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x14 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x15 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x16 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x17 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x18 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x19 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x20 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x21 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x22 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x23 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x24 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x25 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x26 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x27 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x28 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x29 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x30 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x31 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x32 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x33 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x34 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x35 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x36 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x37 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x38 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x39 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x40 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x41 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x42 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x43 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x44 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x45 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x46 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x47 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x48 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x49 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x50 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x51 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x52 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x53 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x54 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x55 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x56 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x57 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x58 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x59 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x60 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x61 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x62 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x63 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x64 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x65 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x66 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x67 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x68 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x69 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x70 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x71 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x72 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x73 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x74 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x75 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x76 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x77 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x78 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x79 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x80 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x81 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x82 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x83 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x84 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x85 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x86 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x87 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x88 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x89 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x90 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x91 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x92 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x93 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x94 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x95 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x96 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x97 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x98 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x99 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xab */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xac */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xad */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xae */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xba */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xca */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xce */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xda */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xde */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xea */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xeb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xec */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xed */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xee */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xef */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xff */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
}
}
}
, /* IC_VEX_OPSIZE */
{ /* struct OpcodeDecision */
{
/* 0x00 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x01 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x02 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x03 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x04 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x05 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x06 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x07 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x08 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x09 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x10 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x11 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x12 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x13 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x14 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x15 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x16 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x17 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x18 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x19 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x20 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x21 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x22 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x23 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x24 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x25 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x26 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x27 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x28 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x29 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x30 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x31 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x32 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x33 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x34 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x35 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x36 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x37 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x38 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x39 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x40 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x41 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x42 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x43 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x44 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x45 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x46 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x47 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x48 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x49 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x50 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x51 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x52 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x53 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x54 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x55 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x56 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x57 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x58 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x59 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x60 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x61 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x62 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x63 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x64 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x65 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x66 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x67 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x68 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x69 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x70 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x71 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x72 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x73 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x74 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x75 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x76 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x77 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x78 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x79 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x80 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x81 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x82 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x83 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x84 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x85 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x86 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x87 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x88 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x89 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x90 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x91 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x92 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x93 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x94 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x95 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x96 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x97 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x98 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x99 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xab */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xac */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xad */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xae */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xba */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xca */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xce */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xda */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xde */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xea */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xeb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xec */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xed */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xee */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xef */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xff */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
}
}
}
, /* IC_VEX_W */
{ /* struct OpcodeDecision */
{
/* 0x00 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x01 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x02 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x03 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x04 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x05 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x06 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x07 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x08 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x09 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x10 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x11 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x12 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x13 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x14 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x15 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x16 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x17 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x18 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x19 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x20 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x21 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x22 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x23 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x24 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x25 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x26 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x27 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x28 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x29 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x30 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x31 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x32 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x33 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x34 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x35 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x36 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x37 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x38 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x39 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x40 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x41 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x42 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x43 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x44 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x45 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x46 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x47 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x48 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x49 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x50 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x51 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x52 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x53 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x54 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x55 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x56 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x57 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x58 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x59 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x60 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x61 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x62 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x63 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x64 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x65 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x66 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x67 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x68 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x69 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x70 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x71 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x72 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x73 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x74 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x75 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x76 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x77 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x78 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x79 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x80 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x81 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x82 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x83 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x84 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x85 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x86 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x87 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x88 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x89 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x90 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x91 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x92 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x93 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x94 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x95 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x96 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x97 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x98 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x99 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xab */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xac */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xad */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xae */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xba */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xca */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xce */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xda */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xde */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xea */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xeb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xec */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xed */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xee */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xef */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xff */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
}
}
}
, /* IC_VEX_W_XS */
{ /* struct OpcodeDecision */
{
/* 0x00 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x01 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x02 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x03 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x04 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x05 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x06 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x07 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x08 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x09 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x10 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x11 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x12 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x13 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x14 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x15 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x16 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x17 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x18 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x19 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x20 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x21 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x22 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x23 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x24 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x25 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x26 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x27 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x28 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x29 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x30 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x31 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x32 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x33 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x34 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x35 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x36 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x37 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x38 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x39 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x40 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x41 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x42 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x43 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x44 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x45 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x46 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x47 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x48 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x49 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x50 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x51 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x52 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x53 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x54 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x55 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x56 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x57 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x58 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x59 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x60 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x61 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x62 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x63 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x64 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x65 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x66 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x67 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x68 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x69 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x70 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x71 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x72 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x73 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x74 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x75 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x76 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x77 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x78 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x79 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x80 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x81 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x82 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x83 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x84 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x85 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x86 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x87 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x88 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x89 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x90 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x91 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x92 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x93 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x94 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x95 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x96 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x97 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x98 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x99 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xab */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xac */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xad */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xae */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xba */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xca */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xce */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xda */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xde */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xea */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xeb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xec */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xed */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xee */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xef */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xff */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
}
}
}
, /* IC_VEX_W_XD */
{ /* struct OpcodeDecision */
{
/* 0x00 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x01 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x02 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x03 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x04 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x05 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x06 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x07 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x08 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x09 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x10 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x11 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x12 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x13 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x14 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x15 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x16 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x17 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x18 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x19 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x20 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x21 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x22 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x23 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x24 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x25 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x26 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x27 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x28 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x29 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x30 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x31 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x32 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x33 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x34 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x35 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x36 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x37 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x38 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x39 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x40 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x41 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x42 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x43 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x44 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x45 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x46 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x47 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x48 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x49 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x50 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x51 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x52 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x53 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x54 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x55 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x56 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x57 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x58 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x59 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x60 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x61 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x62 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x63 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x64 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x65 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x66 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x67 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x68 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x69 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x70 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x71 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x72 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x73 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x74 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x75 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x76 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x77 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x78 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x79 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x80 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x81 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x82 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x83 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x84 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x85 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x86 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x87 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x88 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x89 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x90 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x91 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x92 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x93 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x94 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x95 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x96 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x97 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x98 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x99 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xab */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xac */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xad */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xae */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xba */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xca */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xce */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xda */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xde */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xea */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xeb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xec */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xed */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xee */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xef */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xff */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
}
}
}
, /* IC_VEX_W_OPSIZE */
{ /* struct OpcodeDecision */
{
/* 0x00 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x01 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x02 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x03 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x04 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x05 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x06 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x07 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x08 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x09 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x10 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x11 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x12 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x13 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x14 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x15 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x16 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x17 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x18 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x19 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x20 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x21 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x22 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x23 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x24 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x25 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x26 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x27 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x28 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x29 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x30 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x31 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x32 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x33 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x34 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x35 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x36 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x37 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x38 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x39 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x40 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x41 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x42 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x43 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x44 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x45 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x46 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x47 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x48 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x49 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x50 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x51 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x52 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x53 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x54 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x55 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x56 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x57 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x58 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x59 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x60 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x61 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x62 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x63 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x64 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x65 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x66 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x67 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x68 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x69 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x70 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x71 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x72 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x73 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x74 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x75 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x76 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x77 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x78 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x79 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x80 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x81 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x82 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x83 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x84 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x85 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x86 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x87 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x88 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x89 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x90 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x91 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x92 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x93 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x94 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x95 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x96 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x97 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x98 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x99 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xab */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xac */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xad */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xae */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xba */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xca */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xce */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xda */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xde */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xea */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xeb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xec */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xed */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xee */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xef */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xff */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
}
}
}
, /* IC_VEX_L */
{ /* struct OpcodeDecision */
{
/* 0x00 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x01 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x02 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x03 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x04 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x05 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x06 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x07 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x08 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x09 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x10 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x11 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x12 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x13 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x14 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x15 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x16 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x17 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x18 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x19 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x20 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x21 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x22 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x23 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x24 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x25 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x26 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x27 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x28 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x29 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x30 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x31 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x32 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x33 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x34 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x35 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x36 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x37 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x38 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x39 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x40 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x41 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x42 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x43 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x44 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x45 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x46 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x47 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x48 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x49 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x50 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x51 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x52 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x53 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x54 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x55 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x56 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x57 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x58 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x59 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x60 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x61 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x62 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x63 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x64 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x65 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x66 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x67 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x68 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x69 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x70 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x71 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x72 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x73 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x74 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x75 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x76 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x77 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x78 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x79 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x80 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x81 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x82 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x83 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x84 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x85 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x86 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x87 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x88 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x89 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x90 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x91 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x92 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x93 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x94 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x95 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x96 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x97 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x98 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x99 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xab */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xac */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xad */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xae */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xba */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xca */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xce */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xda */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xde */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xea */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xeb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xec */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xed */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xee */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xef */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xff */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
}
}
}
, /* IC_VEX_L_XS */
{ /* struct OpcodeDecision */
{
/* 0x00 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x01 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x02 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x03 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x04 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x05 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x06 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x07 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x08 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x09 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x10 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x11 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x12 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x13 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x14 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x15 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x16 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x17 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x18 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x19 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x20 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x21 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x22 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x23 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x24 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x25 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x26 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x27 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x28 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x29 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x30 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x31 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x32 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x33 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x34 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x35 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x36 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x37 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x38 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x39 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x40 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x41 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x42 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x43 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x44 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x45 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x46 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x47 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x48 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x49 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x50 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x51 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x52 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x53 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x54 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x55 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x56 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x57 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x58 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x59 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x60 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x61 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x62 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x63 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x64 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x65 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x66 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x67 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x68 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x69 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x70 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x71 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x72 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x73 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x74 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x75 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x76 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x77 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x78 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x79 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x80 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x81 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x82 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x83 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x84 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x85 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x86 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x87 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x88 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x89 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x90 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x91 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x92 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x93 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x94 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x95 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x96 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x97 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x98 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x99 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xab */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xac */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xad */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xae */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xba */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xca */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xce */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xda */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xde */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xea */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xeb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xec */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xed */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xee */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xef */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xff */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
}
}
}
, /* IC_VEX_L_XD */
{ /* struct OpcodeDecision */
{
/* 0x00 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x01 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x02 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x03 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x04 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x05 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x06 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x07 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x08 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x09 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x10 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x11 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x12 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x13 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x14 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x15 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x16 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x17 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x18 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x19 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x20 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x21 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x22 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x23 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x24 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x25 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x26 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x27 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x28 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x29 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x30 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x31 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x32 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x33 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x34 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x35 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x36 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x37 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x38 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x39 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x40 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x41 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x42 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x43 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x44 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x45 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x46 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x47 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x48 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x49 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x50 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x51 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x52 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x53 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x54 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x55 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x56 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x57 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x58 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x59 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x60 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x61 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x62 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x63 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x64 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x65 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x66 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x67 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x68 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x69 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x70 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x71 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x72 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x73 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x74 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x75 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x76 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x77 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x78 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x79 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x80 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x81 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x82 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x83 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x84 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x85 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x86 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x87 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x88 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x89 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x90 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x91 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x92 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x93 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x94 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x95 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x96 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x97 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x98 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x99 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xab */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xac */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xad */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xae */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xba */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xca */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xce */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xda */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xde */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xea */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xeb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xec */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xed */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xee */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xef */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xff */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
}
}
}
, /* IC_VEX_L_OPSIZE */
{ /* struct OpcodeDecision */
{
/* 0x00 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x01 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x02 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x03 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x04 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x05 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x06 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x07 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x08 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x09 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x10 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x11 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x12 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x13 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x14 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x15 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x16 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x17 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x18 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x19 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x20 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x21 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x22 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x23 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x24 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x25 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x26 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x27 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x28 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x29 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x30 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x31 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x32 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x33 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x34 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x35 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x36 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x37 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x38 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x39 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x40 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x41 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x42 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x43 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x44 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x45 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x46 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x47 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x48 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x49 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x50 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x51 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x52 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x53 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x54 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x55 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x56 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x57 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x58 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x59 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x60 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x61 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x62 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x63 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x64 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x65 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x66 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x67 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x68 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x69 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x70 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x71 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x72 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x73 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x74 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x75 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x76 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x77 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x78 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x79 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x80 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x81 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x82 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x83 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x84 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x85 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x86 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x87 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x88 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x89 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x90 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x91 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x92 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x93 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x94 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x95 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x96 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x97 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x98 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x99 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xab */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xac */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xad */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xae */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xba */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xca */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xce */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xda */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xde */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xea */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xeb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xec */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xed */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xee */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xef */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xff */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
}
}
}
, /* IC_VEX_L_W_OPSIZE */
{ /* struct OpcodeDecision */
{
/* 0x00 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x01 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x02 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x03 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x04 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x05 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x06 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x07 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x08 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x09 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x10 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x11 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x12 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x13 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x14 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x15 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x16 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x17 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x18 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x19 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x20 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x21 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x22 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x23 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x24 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x25 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x26 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x27 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x28 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x29 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x30 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x31 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x32 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x33 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x34 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x35 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x36 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x37 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x38 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x39 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x40 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x41 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x42 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x43 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x44 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x45 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x46 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x47 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x48 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x49 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x50 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x51 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x52 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x53 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x54 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x55 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x56 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x57 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x58 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x59 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x60 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x61 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x62 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x63 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x64 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x65 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x66 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x67 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x68 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x69 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x70 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x71 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x72 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x73 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x74 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x75 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x76 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x77 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x78 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x79 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x80 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x81 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x82 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x83 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x84 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x85 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x86 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x87 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x88 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x89 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x90 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x91 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x92 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x93 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x94 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x95 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x96 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x97 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x98 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x99 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xab */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xac */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xad */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xae */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xba */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xca */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xce */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xda */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xde */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xea */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xeb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xec */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xed */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xee */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xef */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xff */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
}
}
}
}
};
static const struct ContextDecision x86DisassemblerTwoByteOpcodes = {
{ /* opcodeDecisions */
/* IC */
{ /* struct OpcodeDecision */
{
/* 0x00 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
14395 /* Table3194 */
},
/* 0x01 */
{ /* struct ModRMDecision */
MODRM_SPLITMISC,
14411 /* Table3195 */
},
/* 0x02 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
14483 /* Table3196 */
},
/* 0x03 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
14485 /* Table3197 */
},
/* 0x04 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x05 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
14487 /* Table3198 */
},
/* 0x06 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
14488 /* Table3199 */
},
/* 0x07 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
14489 /* Table3200 */
},
/* 0x08 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
14490 /* Table3201 */
},
/* 0x09 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
14491 /* Table3202 */
},
/* 0x0a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0b */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
14492 /* Table3203 */
},
/* 0x0c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0d */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
14493 /* Table3204 */
},
/* 0x0e */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
14509 /* Table3205 */
},
/* 0x0f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x10 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
14510 /* Table3206 */
},
/* 0x11 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
14512 /* Table3207 */
},
/* 0x12 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
14514 /* Table3208 */
},
/* 0x13 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
14516 /* Table3209 */
},
/* 0x14 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
14518 /* Table3210 */
},
/* 0x15 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
14520 /* Table3211 */
},
/* 0x16 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
14522 /* Table3212 */
},
/* 0x17 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
14524 /* Table3213 */
},
/* 0x18 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
14526 /* Table3214 */
},
/* 0x19 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1f */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
14542 /* Table3215 */
},
/* 0x20 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
14544 /* Table3216 */
},
/* 0x21 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
14546 /* Table3217 */
},
/* 0x22 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
14548 /* Table3218 */
},
/* 0x23 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
14550 /* Table3219 */
},
/* 0x24 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x25 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x26 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x27 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x28 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
14552 /* Table3220 */
},
/* 0x29 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
14554 /* Table3221 */
},
/* 0x2a */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
14556 /* Table3222 */
},
/* 0x2b */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
14558 /* Table3223 */
},
/* 0x2c */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
14560 /* Table3224 */
},
/* 0x2d */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
14562 /* Table3225 */
},
/* 0x2e */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
14564 /* Table3226 */
},
/* 0x2f */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
14566 /* Table3227 */
},
/* 0x30 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
14568 /* Table3228 */
},
/* 0x31 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
14569 /* Table3229 */
},
/* 0x32 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
14570 /* Table3230 */
},
/* 0x33 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
14571 /* Table3231 */
},
/* 0x34 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
14572 /* Table3232 */
},
/* 0x35 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
14573 /* Table3233 */
},
/* 0x36 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x37 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x38 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x39 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x40 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
14574 /* Table3234 */
},
/* 0x41 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
14576 /* Table3235 */
},
/* 0x42 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
14578 /* Table3236 */
},
/* 0x43 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
14580 /* Table3237 */
},
/* 0x44 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
14582 /* Table3238 */
},
/* 0x45 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
14584 /* Table3239 */
},
/* 0x46 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
14586 /* Table3240 */
},
/* 0x47 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
14588 /* Table3241 */
},
/* 0x48 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
14590 /* Table3242 */
},
/* 0x49 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
14592 /* Table3243 */
},
/* 0x4a */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
14594 /* Table3244 */
},
/* 0x4b */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
14596 /* Table3245 */
},
/* 0x4c */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
14598 /* Table3246 */
},
/* 0x4d */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
14600 /* Table3247 */
},
/* 0x4e */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
14602 /* Table3248 */
},
/* 0x4f */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
14604 /* Table3249 */
},
/* 0x50 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
14606 /* Table3250 */
},
/* 0x51 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
14608 /* Table3251 */
},
/* 0x52 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
14610 /* Table3252 */
},
/* 0x53 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
14612 /* Table3253 */
},
/* 0x54 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
14614 /* Table3254 */
},
/* 0x55 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
14616 /* Table3255 */
},
/* 0x56 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
14618 /* Table3256 */
},
/* 0x57 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
14620 /* Table3257 */
},
/* 0x58 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
14622 /* Table3258 */
},
/* 0x59 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
14624 /* Table3259 */
},
/* 0x5a */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
14626 /* Table3260 */
},
/* 0x5b */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
14628 /* Table3261 */
},
/* 0x5c */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
14630 /* Table3262 */
},
/* 0x5d */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
14632 /* Table3263 */
},
/* 0x5e */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
14634 /* Table3264 */
},
/* 0x5f */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
14636 /* Table3265 */
},
/* 0x60 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
14638 /* Table3266 */
},
/* 0x61 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
14640 /* Table3267 */
},
/* 0x62 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
14642 /* Table3268 */
},
/* 0x63 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
14644 /* Table3269 */
},
/* 0x64 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
14646 /* Table3270 */
},
/* 0x65 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
14648 /* Table3271 */
},
/* 0x66 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
14650 /* Table3272 */
},
/* 0x67 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
14652 /* Table3273 */
},
/* 0x68 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
14654 /* Table3274 */
},
/* 0x69 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
14656 /* Table3275 */
},
/* 0x6a */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
14658 /* Table3276 */
},
/* 0x6b */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
14660 /* Table3277 */
},
/* 0x6c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6e */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
14662 /* Table3278 */
},
/* 0x6f */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
14664 /* Table3279 */
},
/* 0x70 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
14666 /* Table3280 */
},
/* 0x71 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
14668 /* Table3281 */
},
/* 0x72 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
14684 /* Table3282 */
},
/* 0x73 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
14700 /* Table3283 */
},
/* 0x74 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
14716 /* Table3284 */
},
/* 0x75 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
14718 /* Table3285 */
},
/* 0x76 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
14720 /* Table3286 */
},
/* 0x77 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
14722 /* Table3287 */
},
/* 0x78 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
14723 /* Table3288 */
},
/* 0x79 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
14725 /* Table3289 */
},
/* 0x7a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7e */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
14727 /* Table3290 */
},
/* 0x7f */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
14729 /* Table3291 */
},
/* 0x80 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
14731 /* Table3292 */
},
/* 0x81 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
14732 /* Table3293 */
},
/* 0x82 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
14733 /* Table3294 */
},
/* 0x83 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
14734 /* Table3295 */
},
/* 0x84 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
14735 /* Table3296 */
},
/* 0x85 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
14736 /* Table3297 */
},
/* 0x86 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
14737 /* Table3298 */
},
/* 0x87 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
14738 /* Table3299 */
},
/* 0x88 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
14739 /* Table3300 */
},
/* 0x89 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
14740 /* Table3301 */
},
/* 0x8a */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
14741 /* Table3302 */
},
/* 0x8b */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
14742 /* Table3303 */
},
/* 0x8c */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
14743 /* Table3304 */
},
/* 0x8d */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
14744 /* Table3305 */
},
/* 0x8e */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
14745 /* Table3306 */
},
/* 0x8f */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
14746 /* Table3307 */
},
/* 0x90 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
14747 /* Table3308 */
},
/* 0x91 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
14749 /* Table3309 */
},
/* 0x92 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
14751 /* Table3310 */
},
/* 0x93 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
14753 /* Table3311 */
},
/* 0x94 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
14755 /* Table3312 */
},
/* 0x95 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
14757 /* Table3313 */
},
/* 0x96 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
14759 /* Table3314 */
},
/* 0x97 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
14761 /* Table3315 */
},
/* 0x98 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
14763 /* Table3316 */
},
/* 0x99 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
14765 /* Table3317 */
},
/* 0x9a */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
14767 /* Table3318 */
},
/* 0x9b */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
14769 /* Table3319 */
},
/* 0x9c */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
14771 /* Table3320 */
},
/* 0x9d */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
14773 /* Table3321 */
},
/* 0x9e */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
14775 /* Table3322 */
},
/* 0x9f */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
14777 /* Table3323 */
},
/* 0xa0 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
14779 /* Table3324 */
},
/* 0xa1 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
14780 /* Table3325 */
},
/* 0xa2 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
14781 /* Table3326 */
},
/* 0xa3 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
14782 /* Table3327 */
},
/* 0xa4 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
14784 /* Table3328 */
},
/* 0xa5 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
14786 /* Table3329 */
},
/* 0xa6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa8 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
14788 /* Table3330 */
},
/* 0xa9 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
14789 /* Table3331 */
},
/* 0xaa */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
14790 /* Table3332 */
},
/* 0xab */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
14791 /* Table3333 */
},
/* 0xac */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
14793 /* Table3334 */
},
/* 0xad */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
14795 /* Table3335 */
},
/* 0xae */
{ /* struct ModRMDecision */
MODRM_SPLITMISC,
14797 /* Table3336 */
},
/* 0xaf */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
14869 /* Table3337 */
},
/* 0xb0 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
14871 /* Table3338 */
},
/* 0xb1 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
14873 /* Table3339 */
},
/* 0xb2 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
14875 /* Table3340 */
},
/* 0xb3 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
14877 /* Table3341 */
},
/* 0xb4 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
14879 /* Table3342 */
},
/* 0xb5 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
14881 /* Table3343 */
},
/* 0xb6 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
14883 /* Table3344 */
},
/* 0xb7 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
14885 /* Table3345 */
},
/* 0xb8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb9 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
14887 /* Table3346 */
},
/* 0xba */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
14888 /* Table3347 */
},
/* 0xbb */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
14904 /* Table3348 */
},
/* 0xbc */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
14906 /* Table3349 */
},
/* 0xbd */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
14908 /* Table3350 */
},
/* 0xbe */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
14910 /* Table3351 */
},
/* 0xbf */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
14912 /* Table3352 */
},
/* 0xc0 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
14914 /* Table3353 */
},
/* 0xc1 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
14916 /* Table3354 */
},
/* 0xc2 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
14918 /* Table3355 */
},
/* 0xc3 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
14920 /* Table3356 */
},
/* 0xc4 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
14922 /* Table3357 */
},
/* 0xc5 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
14924 /* Table3358 */
},
/* 0xc6 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
14926 /* Table3359 */
},
/* 0xc7 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
14928 /* Table3360 */
},
/* 0xc8 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
14944 /* Table3361 */
},
/* 0xc9 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
14945 /* Table3362 */
},
/* 0xca */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
14946 /* Table3363 */
},
/* 0xcb */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
14947 /* Table3364 */
},
/* 0xcc */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
14948 /* Table3365 */
},
/* 0xcd */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
14949 /* Table3366 */
},
/* 0xce */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
14950 /* Table3367 */
},
/* 0xcf */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
14951 /* Table3368 */
},
/* 0xd0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd1 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
14952 /* Table3369 */
},
/* 0xd2 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
14954 /* Table3370 */
},
/* 0xd3 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
14956 /* Table3371 */
},
/* 0xd4 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
14958 /* Table3372 */
},
/* 0xd5 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
14960 /* Table3373 */
},
/* 0xd6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd7 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
14962 /* Table3374 */
},
/* 0xd8 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
14964 /* Table3375 */
},
/* 0xd9 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
14966 /* Table3376 */
},
/* 0xda */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
14968 /* Table3377 */
},
/* 0xdb */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
14970 /* Table3378 */
},
/* 0xdc */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
14972 /* Table3379 */
},
/* 0xdd */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
14974 /* Table3380 */
},
/* 0xde */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
14976 /* Table3381 */
},
/* 0xdf */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
14978 /* Table3382 */
},
/* 0xe0 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
14980 /* Table3383 */
},
/* 0xe1 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
14982 /* Table3384 */
},
/* 0xe2 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
14984 /* Table3385 */
},
/* 0xe3 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
14986 /* Table3386 */
},
/* 0xe4 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
14988 /* Table3387 */
},
/* 0xe5 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
14990 /* Table3388 */
},
/* 0xe6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe7 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
14992 /* Table3389 */
},
/* 0xe8 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
14994 /* Table3390 */
},
/* 0xe9 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
14996 /* Table3391 */
},
/* 0xea */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
14998 /* Table3392 */
},
/* 0xeb */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15000 /* Table3393 */
},
/* 0xec */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15002 /* Table3394 */
},
/* 0xed */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15004 /* Table3395 */
},
/* 0xee */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15006 /* Table3396 */
},
/* 0xef */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15008 /* Table3397 */
},
/* 0xf0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf1 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15010 /* Table3398 */
},
/* 0xf2 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15012 /* Table3399 */
},
/* 0xf3 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15014 /* Table3400 */
},
/* 0xf4 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15016 /* Table3401 */
},
/* 0xf5 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15018 /* Table3402 */
},
/* 0xf6 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15020 /* Table3403 */
},
/* 0xf7 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15022 /* Table3404 */
},
/* 0xf8 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15024 /* Table3405 */
},
/* 0xf9 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15026 /* Table3406 */
},
/* 0xfa */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15028 /* Table3407 */
},
/* 0xfb */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15030 /* Table3408 */
},
/* 0xfc */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15032 /* Table3409 */
},
/* 0xfd */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15034 /* Table3410 */
},
/* 0xfe */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15036 /* Table3411 */
},
/* 0xff */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
}
}
}
, /* IC_64BIT */
{ /* struct OpcodeDecision */
{
/* 0x00 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
15038 /* Table3412 */
},
/* 0x01 */
{ /* struct ModRMDecision */
MODRM_SPLITMISC,
15054 /* Table3413 */
},
/* 0x02 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15126 /* Table3414 */
},
/* 0x03 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15128 /* Table3415 */
},
/* 0x04 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x05 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
15130 /* Table3416 */
},
/* 0x06 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
15131 /* Table3417 */
},
/* 0x07 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
15132 /* Table3418 */
},
/* 0x08 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
15133 /* Table3419 */
},
/* 0x09 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
15134 /* Table3420 */
},
/* 0x0a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0b */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
15135 /* Table3421 */
},
/* 0x0c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0d */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
15136 /* Table3422 */
},
/* 0x0e */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
15152 /* Table3423 */
},
/* 0x0f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x10 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15153 /* Table3424 */
},
/* 0x11 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15155 /* Table3425 */
},
/* 0x12 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15157 /* Table3426 */
},
/* 0x13 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15159 /* Table3427 */
},
/* 0x14 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15161 /* Table3428 */
},
/* 0x15 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15163 /* Table3429 */
},
/* 0x16 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15165 /* Table3430 */
},
/* 0x17 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15167 /* Table3431 */
},
/* 0x18 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
15169 /* Table3432 */
},
/* 0x19 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1f */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15185 /* Table3433 */
},
/* 0x20 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15187 /* Table3434 */
},
/* 0x21 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15189 /* Table3435 */
},
/* 0x22 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15191 /* Table3436 */
},
/* 0x23 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15193 /* Table3437 */
},
/* 0x24 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x25 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x26 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x27 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x28 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15195 /* Table3438 */
},
/* 0x29 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15197 /* Table3439 */
},
/* 0x2a */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15199 /* Table3440 */
},
/* 0x2b */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15201 /* Table3441 */
},
/* 0x2c */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15203 /* Table3442 */
},
/* 0x2d */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15205 /* Table3443 */
},
/* 0x2e */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15207 /* Table3444 */
},
/* 0x2f */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15209 /* Table3445 */
},
/* 0x30 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
15211 /* Table3446 */
},
/* 0x31 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
15212 /* Table3447 */
},
/* 0x32 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
15213 /* Table3448 */
},
/* 0x33 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
15214 /* Table3449 */
},
/* 0x34 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
15215 /* Table3450 */
},
/* 0x35 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
15216 /* Table3451 */
},
/* 0x36 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x37 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x38 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x39 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x40 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15217 /* Table3452 */
},
/* 0x41 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15219 /* Table3453 */
},
/* 0x42 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15221 /* Table3454 */
},
/* 0x43 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15223 /* Table3455 */
},
/* 0x44 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15225 /* Table3456 */
},
/* 0x45 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15227 /* Table3457 */
},
/* 0x46 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15229 /* Table3458 */
},
/* 0x47 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15231 /* Table3459 */
},
/* 0x48 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15233 /* Table3460 */
},
/* 0x49 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15235 /* Table3461 */
},
/* 0x4a */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15237 /* Table3462 */
},
/* 0x4b */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15239 /* Table3463 */
},
/* 0x4c */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15241 /* Table3464 */
},
/* 0x4d */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15243 /* Table3465 */
},
/* 0x4e */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15245 /* Table3466 */
},
/* 0x4f */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15247 /* Table3467 */
},
/* 0x50 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15249 /* Table3468 */
},
/* 0x51 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15251 /* Table3469 */
},
/* 0x52 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15253 /* Table3470 */
},
/* 0x53 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15255 /* Table3471 */
},
/* 0x54 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15257 /* Table3472 */
},
/* 0x55 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15259 /* Table3473 */
},
/* 0x56 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15261 /* Table3474 */
},
/* 0x57 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15263 /* Table3475 */
},
/* 0x58 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15265 /* Table3476 */
},
/* 0x59 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15267 /* Table3477 */
},
/* 0x5a */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15269 /* Table3478 */
},
/* 0x5b */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15271 /* Table3479 */
},
/* 0x5c */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15273 /* Table3480 */
},
/* 0x5d */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15275 /* Table3481 */
},
/* 0x5e */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15277 /* Table3482 */
},
/* 0x5f */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15279 /* Table3483 */
},
/* 0x60 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15281 /* Table3484 */
},
/* 0x61 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15283 /* Table3485 */
},
/* 0x62 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15285 /* Table3486 */
},
/* 0x63 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15287 /* Table3487 */
},
/* 0x64 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15289 /* Table3488 */
},
/* 0x65 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15291 /* Table3489 */
},
/* 0x66 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15293 /* Table3490 */
},
/* 0x67 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15295 /* Table3491 */
},
/* 0x68 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15297 /* Table3492 */
},
/* 0x69 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15299 /* Table3493 */
},
/* 0x6a */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15301 /* Table3494 */
},
/* 0x6b */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15303 /* Table3495 */
},
/* 0x6c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6e */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15305 /* Table3496 */
},
/* 0x6f */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15307 /* Table3497 */
},
/* 0x70 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15309 /* Table3498 */
},
/* 0x71 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
15311 /* Table3499 */
},
/* 0x72 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
15327 /* Table3500 */
},
/* 0x73 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
15343 /* Table3501 */
},
/* 0x74 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15359 /* Table3502 */
},
/* 0x75 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15361 /* Table3503 */
},
/* 0x76 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15363 /* Table3504 */
},
/* 0x77 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
15365 /* Table3505 */
},
/* 0x78 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15366 /* Table3506 */
},
/* 0x79 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15368 /* Table3507 */
},
/* 0x7a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7e */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15370 /* Table3508 */
},
/* 0x7f */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15372 /* Table3509 */
},
/* 0x80 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
15374 /* Table3510 */
},
/* 0x81 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
15375 /* Table3511 */
},
/* 0x82 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
15376 /* Table3512 */
},
/* 0x83 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
15377 /* Table3513 */
},
/* 0x84 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
15378 /* Table3514 */
},
/* 0x85 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
15379 /* Table3515 */
},
/* 0x86 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
15380 /* Table3516 */
},
/* 0x87 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
15381 /* Table3517 */
},
/* 0x88 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
15382 /* Table3518 */
},
/* 0x89 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
15383 /* Table3519 */
},
/* 0x8a */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
15384 /* Table3520 */
},
/* 0x8b */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
15385 /* Table3521 */
},
/* 0x8c */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
15386 /* Table3522 */
},
/* 0x8d */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
15387 /* Table3523 */
},
/* 0x8e */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
15388 /* Table3524 */
},
/* 0x8f */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
15389 /* Table3525 */
},
/* 0x90 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15390 /* Table3526 */
},
/* 0x91 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15392 /* Table3527 */
},
/* 0x92 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15394 /* Table3528 */
},
/* 0x93 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15396 /* Table3529 */
},
/* 0x94 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15398 /* Table3530 */
},
/* 0x95 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15400 /* Table3531 */
},
/* 0x96 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15402 /* Table3532 */
},
/* 0x97 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15404 /* Table3533 */
},
/* 0x98 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15406 /* Table3534 */
},
/* 0x99 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15408 /* Table3535 */
},
/* 0x9a */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15410 /* Table3536 */
},
/* 0x9b */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15412 /* Table3537 */
},
/* 0x9c */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15414 /* Table3538 */
},
/* 0x9d */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15416 /* Table3539 */
},
/* 0x9e */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15418 /* Table3540 */
},
/* 0x9f */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15420 /* Table3541 */
},
/* 0xa0 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
15422 /* Table3542 */
},
/* 0xa1 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
15423 /* Table3543 */
},
/* 0xa2 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
15424 /* Table3544 */
},
/* 0xa3 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15425 /* Table3545 */
},
/* 0xa4 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15427 /* Table3546 */
},
/* 0xa5 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15429 /* Table3547 */
},
/* 0xa6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa8 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
15431 /* Table3548 */
},
/* 0xa9 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
15432 /* Table3549 */
},
/* 0xaa */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
15433 /* Table3550 */
},
/* 0xab */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15434 /* Table3551 */
},
/* 0xac */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15436 /* Table3552 */
},
/* 0xad */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15438 /* Table3553 */
},
/* 0xae */
{ /* struct ModRMDecision */
MODRM_SPLITMISC,
15440 /* Table3554 */
},
/* 0xaf */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15512 /* Table3555 */
},
/* 0xb0 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15514 /* Table3556 */
},
/* 0xb1 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15516 /* Table3557 */
},
/* 0xb2 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15518 /* Table3558 */
},
/* 0xb3 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15520 /* Table3559 */
},
/* 0xb4 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15522 /* Table3560 */
},
/* 0xb5 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15524 /* Table3561 */
},
/* 0xb6 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15526 /* Table3562 */
},
/* 0xb7 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15528 /* Table3563 */
},
/* 0xb8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb9 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
15530 /* Table3564 */
},
/* 0xba */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
15531 /* Table3565 */
},
/* 0xbb */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15547 /* Table3566 */
},
/* 0xbc */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15549 /* Table3567 */
},
/* 0xbd */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15551 /* Table3568 */
},
/* 0xbe */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15553 /* Table3569 */
},
/* 0xbf */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15555 /* Table3570 */
},
/* 0xc0 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15557 /* Table3571 */
},
/* 0xc1 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15559 /* Table3572 */
},
/* 0xc2 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15561 /* Table3573 */
},
/* 0xc3 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15563 /* Table3574 */
},
/* 0xc4 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15565 /* Table3575 */
},
/* 0xc5 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15567 /* Table3576 */
},
/* 0xc6 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15569 /* Table3577 */
},
/* 0xc7 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
15571 /* Table3578 */
},
/* 0xc8 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
15587 /* Table3579 */
},
/* 0xc9 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
15588 /* Table3580 */
},
/* 0xca */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
15589 /* Table3581 */
},
/* 0xcb */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
15590 /* Table3582 */
},
/* 0xcc */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
15591 /* Table3583 */
},
/* 0xcd */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
15592 /* Table3584 */
},
/* 0xce */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
15593 /* Table3585 */
},
/* 0xcf */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
15594 /* Table3586 */
},
/* 0xd0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd1 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15595 /* Table3587 */
},
/* 0xd2 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15597 /* Table3588 */
},
/* 0xd3 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15599 /* Table3589 */
},
/* 0xd4 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15601 /* Table3590 */
},
/* 0xd5 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15603 /* Table3591 */
},
/* 0xd6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd7 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15605 /* Table3592 */
},
/* 0xd8 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15607 /* Table3593 */
},
/* 0xd9 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15609 /* Table3594 */
},
/* 0xda */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15611 /* Table3595 */
},
/* 0xdb */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15613 /* Table3596 */
},
/* 0xdc */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15615 /* Table3597 */
},
/* 0xdd */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15617 /* Table3598 */
},
/* 0xde */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15619 /* Table3599 */
},
/* 0xdf */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15621 /* Table3600 */
},
/* 0xe0 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15623 /* Table3601 */
},
/* 0xe1 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15625 /* Table3602 */
},
/* 0xe2 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15627 /* Table3603 */
},
/* 0xe3 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15629 /* Table3604 */
},
/* 0xe4 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15631 /* Table3605 */
},
/* 0xe5 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15633 /* Table3606 */
},
/* 0xe6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe7 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15635 /* Table3607 */
},
/* 0xe8 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15637 /* Table3608 */
},
/* 0xe9 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15639 /* Table3609 */
},
/* 0xea */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15641 /* Table3610 */
},
/* 0xeb */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15643 /* Table3611 */
},
/* 0xec */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15645 /* Table3612 */
},
/* 0xed */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15647 /* Table3613 */
},
/* 0xee */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15649 /* Table3614 */
},
/* 0xef */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15651 /* Table3615 */
},
/* 0xf0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf1 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15653 /* Table3616 */
},
/* 0xf2 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15655 /* Table3617 */
},
/* 0xf3 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15657 /* Table3618 */
},
/* 0xf4 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15659 /* Table3619 */
},
/* 0xf5 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15661 /* Table3620 */
},
/* 0xf6 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15663 /* Table3621 */
},
/* 0xf7 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15665 /* Table3622 */
},
/* 0xf8 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15667 /* Table3623 */
},
/* 0xf9 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15669 /* Table3624 */
},
/* 0xfa */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15671 /* Table3625 */
},
/* 0xfb */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15673 /* Table3626 */
},
/* 0xfc */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15675 /* Table3627 */
},
/* 0xfd */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15677 /* Table3628 */
},
/* 0xfe */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15679 /* Table3629 */
},
/* 0xff */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
}
}
}
, /* IC_OPSIZE */
{ /* struct OpcodeDecision */
{
/* 0x00 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
15681 /* Table3630 */
},
/* 0x01 */
{ /* struct ModRMDecision */
MODRM_SPLITMISC,
15697 /* Table3631 */
},
/* 0x02 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15769 /* Table3632 */
},
/* 0x03 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15771 /* Table3633 */
},
/* 0x04 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x05 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
15773 /* Table3634 */
},
/* 0x06 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
15774 /* Table3635 */
},
/* 0x07 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
15775 /* Table3636 */
},
/* 0x08 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
15776 /* Table3637 */
},
/* 0x09 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
15777 /* Table3638 */
},
/* 0x0a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0b */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
15778 /* Table3639 */
},
/* 0x0c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0d */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
15779 /* Table3640 */
},
/* 0x0e */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
15795 /* Table3641 */
},
/* 0x0f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x10 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15796 /* Table3642 */
},
/* 0x11 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15798 /* Table3643 */
},
/* 0x12 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15800 /* Table3644 */
},
/* 0x13 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15802 /* Table3645 */
},
/* 0x14 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15804 /* Table3646 */
},
/* 0x15 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15806 /* Table3647 */
},
/* 0x16 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15808 /* Table3648 */
},
/* 0x17 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15810 /* Table3649 */
},
/* 0x18 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
15812 /* Table3650 */
},
/* 0x19 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1f */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15828 /* Table3651 */
},
/* 0x20 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15830 /* Table3652 */
},
/* 0x21 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15832 /* Table3653 */
},
/* 0x22 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15834 /* Table3654 */
},
/* 0x23 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15836 /* Table3655 */
},
/* 0x24 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x25 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x26 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x27 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x28 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15838 /* Table3656 */
},
/* 0x29 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15840 /* Table3657 */
},
/* 0x2a */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15842 /* Table3658 */
},
/* 0x2b */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15844 /* Table3659 */
},
/* 0x2c */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15846 /* Table3660 */
},
/* 0x2d */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15848 /* Table3661 */
},
/* 0x2e */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15850 /* Table3662 */
},
/* 0x2f */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15852 /* Table3663 */
},
/* 0x30 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
15854 /* Table3664 */
},
/* 0x31 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
15855 /* Table3665 */
},
/* 0x32 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
15856 /* Table3666 */
},
/* 0x33 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
15857 /* Table3667 */
},
/* 0x34 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
15858 /* Table3668 */
},
/* 0x35 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
15859 /* Table3669 */
},
/* 0x36 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x37 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x38 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x39 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x40 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15860 /* Table3670 */
},
/* 0x41 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15862 /* Table3671 */
},
/* 0x42 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15864 /* Table3672 */
},
/* 0x43 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15866 /* Table3673 */
},
/* 0x44 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15868 /* Table3674 */
},
/* 0x45 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15870 /* Table3675 */
},
/* 0x46 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15872 /* Table3676 */
},
/* 0x47 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15874 /* Table3677 */
},
/* 0x48 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15876 /* Table3678 */
},
/* 0x49 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15878 /* Table3679 */
},
/* 0x4a */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15880 /* Table3680 */
},
/* 0x4b */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15882 /* Table3681 */
},
/* 0x4c */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15884 /* Table3682 */
},
/* 0x4d */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15886 /* Table3683 */
},
/* 0x4e */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15888 /* Table3684 */
},
/* 0x4f */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15890 /* Table3685 */
},
/* 0x50 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15892 /* Table3686 */
},
/* 0x51 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15894 /* Table3687 */
},
/* 0x52 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15896 /* Table3688 */
},
/* 0x53 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15898 /* Table3689 */
},
/* 0x54 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15900 /* Table3690 */
},
/* 0x55 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15902 /* Table3691 */
},
/* 0x56 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15904 /* Table3692 */
},
/* 0x57 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15906 /* Table3693 */
},
/* 0x58 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15908 /* Table3694 */
},
/* 0x59 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15910 /* Table3695 */
},
/* 0x5a */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15912 /* Table3696 */
},
/* 0x5b */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15914 /* Table3697 */
},
/* 0x5c */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15916 /* Table3698 */
},
/* 0x5d */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15918 /* Table3699 */
},
/* 0x5e */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15920 /* Table3700 */
},
/* 0x5f */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15922 /* Table3701 */
},
/* 0x60 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15924 /* Table3702 */
},
/* 0x61 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15926 /* Table3703 */
},
/* 0x62 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15928 /* Table3704 */
},
/* 0x63 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15930 /* Table3705 */
},
/* 0x64 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15932 /* Table3706 */
},
/* 0x65 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15934 /* Table3707 */
},
/* 0x66 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15936 /* Table3708 */
},
/* 0x67 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15938 /* Table3709 */
},
/* 0x68 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15940 /* Table3710 */
},
/* 0x69 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15942 /* Table3711 */
},
/* 0x6a */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15944 /* Table3712 */
},
/* 0x6b */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15946 /* Table3713 */
},
/* 0x6c */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15948 /* Table3714 */
},
/* 0x6d */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15950 /* Table3715 */
},
/* 0x6e */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15952 /* Table3716 */
},
/* 0x6f */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15954 /* Table3717 */
},
/* 0x70 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
15956 /* Table3718 */
},
/* 0x71 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
15958 /* Table3719 */
},
/* 0x72 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
15974 /* Table3720 */
},
/* 0x73 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
15990 /* Table3721 */
},
/* 0x74 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16006 /* Table3722 */
},
/* 0x75 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16008 /* Table3723 */
},
/* 0x76 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16010 /* Table3724 */
},
/* 0x77 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
16012 /* Table3725 */
},
/* 0x78 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16013 /* Table3726 */
},
/* 0x79 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16015 /* Table3727 */
},
/* 0x7a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7c */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16017 /* Table3728 */
},
/* 0x7d */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16019 /* Table3729 */
},
/* 0x7e */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16021 /* Table3730 */
},
/* 0x7f */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16023 /* Table3731 */
},
/* 0x80 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
16025 /* Table3732 */
},
/* 0x81 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
16026 /* Table3733 */
},
/* 0x82 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
16027 /* Table3734 */
},
/* 0x83 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
16028 /* Table3735 */
},
/* 0x84 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
16029 /* Table3736 */
},
/* 0x85 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
16030 /* Table3737 */
},
/* 0x86 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
16031 /* Table3738 */
},
/* 0x87 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
16032 /* Table3739 */
},
/* 0x88 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
16033 /* Table3740 */
},
/* 0x89 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
16034 /* Table3741 */
},
/* 0x8a */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
16035 /* Table3742 */
},
/* 0x8b */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
16036 /* Table3743 */
},
/* 0x8c */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
16037 /* Table3744 */
},
/* 0x8d */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
16038 /* Table3745 */
},
/* 0x8e */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
16039 /* Table3746 */
},
/* 0x8f */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
16040 /* Table3747 */
},
/* 0x90 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16041 /* Table3748 */
},
/* 0x91 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16043 /* Table3749 */
},
/* 0x92 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16045 /* Table3750 */
},
/* 0x93 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16047 /* Table3751 */
},
/* 0x94 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16049 /* Table3752 */
},
/* 0x95 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16051 /* Table3753 */
},
/* 0x96 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16053 /* Table3754 */
},
/* 0x97 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16055 /* Table3755 */
},
/* 0x98 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16057 /* Table3756 */
},
/* 0x99 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16059 /* Table3757 */
},
/* 0x9a */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16061 /* Table3758 */
},
/* 0x9b */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16063 /* Table3759 */
},
/* 0x9c */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16065 /* Table3760 */
},
/* 0x9d */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16067 /* Table3761 */
},
/* 0x9e */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16069 /* Table3762 */
},
/* 0x9f */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16071 /* Table3763 */
},
/* 0xa0 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
16073 /* Table3764 */
},
/* 0xa1 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
16074 /* Table3765 */
},
/* 0xa2 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
16075 /* Table3766 */
},
/* 0xa3 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16076 /* Table3767 */
},
/* 0xa4 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16078 /* Table3768 */
},
/* 0xa5 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16080 /* Table3769 */
},
/* 0xa6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa8 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
16082 /* Table3770 */
},
/* 0xa9 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
16083 /* Table3771 */
},
/* 0xaa */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
16084 /* Table3772 */
},
/* 0xab */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16085 /* Table3773 */
},
/* 0xac */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16087 /* Table3774 */
},
/* 0xad */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16089 /* Table3775 */
},
/* 0xae */
{ /* struct ModRMDecision */
MODRM_SPLITMISC,
16091 /* Table3776 */
},
/* 0xaf */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16163 /* Table3777 */
},
/* 0xb0 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16165 /* Table3778 */
},
/* 0xb1 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16167 /* Table3779 */
},
/* 0xb2 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16169 /* Table3780 */
},
/* 0xb3 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16171 /* Table3781 */
},
/* 0xb4 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16173 /* Table3782 */
},
/* 0xb5 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16175 /* Table3783 */
},
/* 0xb6 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16177 /* Table3784 */
},
/* 0xb7 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16179 /* Table3785 */
},
/* 0xb8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb9 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
16181 /* Table3786 */
},
/* 0xba */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
16182 /* Table3787 */
},
/* 0xbb */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16198 /* Table3788 */
},
/* 0xbc */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16200 /* Table3789 */
},
/* 0xbd */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16202 /* Table3790 */
},
/* 0xbe */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16204 /* Table3791 */
},
/* 0xbf */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16206 /* Table3792 */
},
/* 0xc0 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16208 /* Table3793 */
},
/* 0xc1 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16210 /* Table3794 */
},
/* 0xc2 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16212 /* Table3795 */
},
/* 0xc3 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16214 /* Table3796 */
},
/* 0xc4 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16216 /* Table3797 */
},
/* 0xc5 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16218 /* Table3798 */
},
/* 0xc6 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16220 /* Table3799 */
},
/* 0xc7 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
16222 /* Table3800 */
},
/* 0xc8 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
16238 /* Table3801 */
},
/* 0xc9 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
16239 /* Table3802 */
},
/* 0xca */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
16240 /* Table3803 */
},
/* 0xcb */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
16241 /* Table3804 */
},
/* 0xcc */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
16242 /* Table3805 */
},
/* 0xcd */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
16243 /* Table3806 */
},
/* 0xce */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
16244 /* Table3807 */
},
/* 0xcf */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
16245 /* Table3808 */
},
/* 0xd0 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16246 /* Table3809 */
},
/* 0xd1 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16248 /* Table3810 */
},
/* 0xd2 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16250 /* Table3811 */
},
/* 0xd3 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16252 /* Table3812 */
},
/* 0xd4 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16254 /* Table3813 */
},
/* 0xd5 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16256 /* Table3814 */
},
/* 0xd6 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16258 /* Table3815 */
},
/* 0xd7 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16260 /* Table3816 */
},
/* 0xd8 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16262 /* Table3817 */
},
/* 0xd9 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16264 /* Table3818 */
},
/* 0xda */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16266 /* Table3819 */
},
/* 0xdb */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16268 /* Table3820 */
},
/* 0xdc */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16270 /* Table3821 */
},
/* 0xdd */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16272 /* Table3822 */
},
/* 0xde */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16274 /* Table3823 */
},
/* 0xdf */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16276 /* Table3824 */
},
/* 0xe0 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16278 /* Table3825 */
},
/* 0xe1 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16280 /* Table3826 */
},
/* 0xe2 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16282 /* Table3827 */
},
/* 0xe3 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16284 /* Table3828 */
},
/* 0xe4 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16286 /* Table3829 */
},
/* 0xe5 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16288 /* Table3830 */
},
/* 0xe6 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16290 /* Table3831 */
},
/* 0xe7 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16292 /* Table3832 */
},
/* 0xe8 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16294 /* Table3833 */
},
/* 0xe9 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16296 /* Table3834 */
},
/* 0xea */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16298 /* Table3835 */
},
/* 0xeb */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16300 /* Table3836 */
},
/* 0xec */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16302 /* Table3837 */
},
/* 0xed */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16304 /* Table3838 */
},
/* 0xee */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16306 /* Table3839 */
},
/* 0xef */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16308 /* Table3840 */
},
/* 0xf0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf1 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16310 /* Table3841 */
},
/* 0xf2 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16312 /* Table3842 */
},
/* 0xf3 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16314 /* Table3843 */
},
/* 0xf4 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16316 /* Table3844 */
},
/* 0xf5 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16318 /* Table3845 */
},
/* 0xf6 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16320 /* Table3846 */
},
/* 0xf7 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16322 /* Table3847 */
},
/* 0xf8 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16324 /* Table3848 */
},
/* 0xf9 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16326 /* Table3849 */
},
/* 0xfa */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16328 /* Table3850 */
},
/* 0xfb */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16330 /* Table3851 */
},
/* 0xfc */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16332 /* Table3852 */
},
/* 0xfd */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16334 /* Table3853 */
},
/* 0xfe */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16336 /* Table3854 */
},
/* 0xff */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
}
}
}
, /* IC_ADSIZE */
{ /* struct OpcodeDecision */
{
/* 0x00 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
16338 /* Table3855 */
},
/* 0x01 */
{ /* struct ModRMDecision */
MODRM_SPLITMISC,
16354 /* Table3856 */
},
/* 0x02 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16426 /* Table3857 */
},
/* 0x03 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16428 /* Table3858 */
},
/* 0x04 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x05 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
16430 /* Table3859 */
},
/* 0x06 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
16431 /* Table3860 */
},
/* 0x07 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
16432 /* Table3861 */
},
/* 0x08 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
16433 /* Table3862 */
},
/* 0x09 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
16434 /* Table3863 */
},
/* 0x0a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0b */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
16435 /* Table3864 */
},
/* 0x0c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0d */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
16436 /* Table3865 */
},
/* 0x0e */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
16452 /* Table3866 */
},
/* 0x0f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x10 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16453 /* Table3867 */
},
/* 0x11 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16455 /* Table3868 */
},
/* 0x12 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16457 /* Table3869 */
},
/* 0x13 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16459 /* Table3870 */
},
/* 0x14 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16461 /* Table3871 */
},
/* 0x15 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16463 /* Table3872 */
},
/* 0x16 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16465 /* Table3873 */
},
/* 0x17 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16467 /* Table3874 */
},
/* 0x18 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
16469 /* Table3875 */
},
/* 0x19 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1f */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16485 /* Table3876 */
},
/* 0x20 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16487 /* Table3877 */
},
/* 0x21 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16489 /* Table3878 */
},
/* 0x22 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16491 /* Table3879 */
},
/* 0x23 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16493 /* Table3880 */
},
/* 0x24 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x25 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x26 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x27 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x28 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16495 /* Table3881 */
},
/* 0x29 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16497 /* Table3882 */
},
/* 0x2a */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16499 /* Table3883 */
},
/* 0x2b */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16501 /* Table3884 */
},
/* 0x2c */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16503 /* Table3885 */
},
/* 0x2d */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16505 /* Table3886 */
},
/* 0x2e */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16507 /* Table3887 */
},
/* 0x2f */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16509 /* Table3888 */
},
/* 0x30 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
16511 /* Table3889 */
},
/* 0x31 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
16512 /* Table3890 */
},
/* 0x32 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
16513 /* Table3891 */
},
/* 0x33 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
16514 /* Table3892 */
},
/* 0x34 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
16515 /* Table3893 */
},
/* 0x35 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
16516 /* Table3894 */
},
/* 0x36 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x37 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x38 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x39 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x40 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16517 /* Table3895 */
},
/* 0x41 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16519 /* Table3896 */
},
/* 0x42 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16521 /* Table3897 */
},
/* 0x43 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16523 /* Table3898 */
},
/* 0x44 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16525 /* Table3899 */
},
/* 0x45 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16527 /* Table3900 */
},
/* 0x46 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16529 /* Table3901 */
},
/* 0x47 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16531 /* Table3902 */
},
/* 0x48 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16533 /* Table3903 */
},
/* 0x49 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16535 /* Table3904 */
},
/* 0x4a */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16537 /* Table3905 */
},
/* 0x4b */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16539 /* Table3906 */
},
/* 0x4c */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16541 /* Table3907 */
},
/* 0x4d */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16543 /* Table3908 */
},
/* 0x4e */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16545 /* Table3909 */
},
/* 0x4f */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16547 /* Table3910 */
},
/* 0x50 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16549 /* Table3911 */
},
/* 0x51 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16551 /* Table3912 */
},
/* 0x52 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16553 /* Table3913 */
},
/* 0x53 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16555 /* Table3914 */
},
/* 0x54 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16557 /* Table3915 */
},
/* 0x55 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16559 /* Table3916 */
},
/* 0x56 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16561 /* Table3917 */
},
/* 0x57 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16563 /* Table3918 */
},
/* 0x58 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16565 /* Table3919 */
},
/* 0x59 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16567 /* Table3920 */
},
/* 0x5a */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16569 /* Table3921 */
},
/* 0x5b */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16571 /* Table3922 */
},
/* 0x5c */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16573 /* Table3923 */
},
/* 0x5d */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16575 /* Table3924 */
},
/* 0x5e */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16577 /* Table3925 */
},
/* 0x5f */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16579 /* Table3926 */
},
/* 0x60 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16581 /* Table3927 */
},
/* 0x61 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16583 /* Table3928 */
},
/* 0x62 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16585 /* Table3929 */
},
/* 0x63 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16587 /* Table3930 */
},
/* 0x64 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16589 /* Table3931 */
},
/* 0x65 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16591 /* Table3932 */
},
/* 0x66 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16593 /* Table3933 */
},
/* 0x67 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16595 /* Table3934 */
},
/* 0x68 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16597 /* Table3935 */
},
/* 0x69 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16599 /* Table3936 */
},
/* 0x6a */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16601 /* Table3937 */
},
/* 0x6b */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16603 /* Table3938 */
},
/* 0x6c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6e */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16605 /* Table3939 */
},
/* 0x6f */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16607 /* Table3940 */
},
/* 0x70 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16609 /* Table3941 */
},
/* 0x71 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
16611 /* Table3942 */
},
/* 0x72 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
16627 /* Table3943 */
},
/* 0x73 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
16643 /* Table3944 */
},
/* 0x74 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16659 /* Table3945 */
},
/* 0x75 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16661 /* Table3946 */
},
/* 0x76 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16663 /* Table3947 */
},
/* 0x77 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
16665 /* Table3948 */
},
/* 0x78 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16666 /* Table3949 */
},
/* 0x79 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16668 /* Table3950 */
},
/* 0x7a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7e */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16670 /* Table3951 */
},
/* 0x7f */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16672 /* Table3952 */
},
/* 0x80 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
16674 /* Table3953 */
},
/* 0x81 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
16675 /* Table3954 */
},
/* 0x82 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
16676 /* Table3955 */
},
/* 0x83 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
16677 /* Table3956 */
},
/* 0x84 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
16678 /* Table3957 */
},
/* 0x85 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
16679 /* Table3958 */
},
/* 0x86 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
16680 /* Table3959 */
},
/* 0x87 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
16681 /* Table3960 */
},
/* 0x88 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
16682 /* Table3961 */
},
/* 0x89 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
16683 /* Table3962 */
},
/* 0x8a */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
16684 /* Table3963 */
},
/* 0x8b */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
16685 /* Table3964 */
},
/* 0x8c */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
16686 /* Table3965 */
},
/* 0x8d */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
16687 /* Table3966 */
},
/* 0x8e */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
16688 /* Table3967 */
},
/* 0x8f */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
16689 /* Table3968 */
},
/* 0x90 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16690 /* Table3969 */
},
/* 0x91 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16692 /* Table3970 */
},
/* 0x92 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16694 /* Table3971 */
},
/* 0x93 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16696 /* Table3972 */
},
/* 0x94 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16698 /* Table3973 */
},
/* 0x95 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16700 /* Table3974 */
},
/* 0x96 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16702 /* Table3975 */
},
/* 0x97 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16704 /* Table3976 */
},
/* 0x98 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16706 /* Table3977 */
},
/* 0x99 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16708 /* Table3978 */
},
/* 0x9a */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16710 /* Table3979 */
},
/* 0x9b */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16712 /* Table3980 */
},
/* 0x9c */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16714 /* Table3981 */
},
/* 0x9d */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16716 /* Table3982 */
},
/* 0x9e */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16718 /* Table3983 */
},
/* 0x9f */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16720 /* Table3984 */
},
/* 0xa0 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
16722 /* Table3985 */
},
/* 0xa1 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
16723 /* Table3986 */
},
/* 0xa2 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
16724 /* Table3987 */
},
/* 0xa3 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16725 /* Table3988 */
},
/* 0xa4 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16727 /* Table3989 */
},
/* 0xa5 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16729 /* Table3990 */
},
/* 0xa6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa8 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
16731 /* Table3991 */
},
/* 0xa9 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
16732 /* Table3992 */
},
/* 0xaa */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
16733 /* Table3993 */
},
/* 0xab */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16734 /* Table3994 */
},
/* 0xac */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16736 /* Table3995 */
},
/* 0xad */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16738 /* Table3996 */
},
/* 0xae */
{ /* struct ModRMDecision */
MODRM_SPLITMISC,
16740 /* Table3997 */
},
/* 0xaf */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16812 /* Table3998 */
},
/* 0xb0 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16814 /* Table3999 */
},
/* 0xb1 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16816 /* Table4000 */
},
/* 0xb2 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16818 /* Table4001 */
},
/* 0xb3 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16820 /* Table4002 */
},
/* 0xb4 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16822 /* Table4003 */
},
/* 0xb5 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16824 /* Table4004 */
},
/* 0xb6 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16826 /* Table4005 */
},
/* 0xb7 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16828 /* Table4006 */
},
/* 0xb8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb9 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
16830 /* Table4007 */
},
/* 0xba */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
16831 /* Table4008 */
},
/* 0xbb */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16847 /* Table4009 */
},
/* 0xbc */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16849 /* Table4010 */
},
/* 0xbd */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16851 /* Table4011 */
},
/* 0xbe */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16853 /* Table4012 */
},
/* 0xbf */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16855 /* Table4013 */
},
/* 0xc0 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16857 /* Table4014 */
},
/* 0xc1 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16859 /* Table4015 */
},
/* 0xc2 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16861 /* Table4016 */
},
/* 0xc3 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16863 /* Table4017 */
},
/* 0xc4 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16865 /* Table4018 */
},
/* 0xc5 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16867 /* Table4019 */
},
/* 0xc6 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16869 /* Table4020 */
},
/* 0xc7 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
16871 /* Table4021 */
},
/* 0xc8 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
16887 /* Table4022 */
},
/* 0xc9 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
16888 /* Table4023 */
},
/* 0xca */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
16889 /* Table4024 */
},
/* 0xcb */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
16890 /* Table4025 */
},
/* 0xcc */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
16891 /* Table4026 */
},
/* 0xcd */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
16892 /* Table4027 */
},
/* 0xce */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
16893 /* Table4028 */
},
/* 0xcf */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
16894 /* Table4029 */
},
/* 0xd0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd1 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16895 /* Table4030 */
},
/* 0xd2 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16897 /* Table4031 */
},
/* 0xd3 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16899 /* Table4032 */
},
/* 0xd4 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16901 /* Table4033 */
},
/* 0xd5 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16903 /* Table4034 */
},
/* 0xd6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd7 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16905 /* Table4035 */
},
/* 0xd8 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16907 /* Table4036 */
},
/* 0xd9 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16909 /* Table4037 */
},
/* 0xda */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16911 /* Table4038 */
},
/* 0xdb */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16913 /* Table4039 */
},
/* 0xdc */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16915 /* Table4040 */
},
/* 0xdd */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16917 /* Table4041 */
},
/* 0xde */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16919 /* Table4042 */
},
/* 0xdf */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16921 /* Table4043 */
},
/* 0xe0 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16923 /* Table4044 */
},
/* 0xe1 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16925 /* Table4045 */
},
/* 0xe2 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16927 /* Table4046 */
},
/* 0xe3 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16929 /* Table4047 */
},
/* 0xe4 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16931 /* Table4048 */
},
/* 0xe5 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16933 /* Table4049 */
},
/* 0xe6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe7 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16935 /* Table4050 */
},
/* 0xe8 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16937 /* Table4051 */
},
/* 0xe9 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16939 /* Table4052 */
},
/* 0xea */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16941 /* Table4053 */
},
/* 0xeb */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16943 /* Table4054 */
},
/* 0xec */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16945 /* Table4055 */
},
/* 0xed */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16947 /* Table4056 */
},
/* 0xee */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16949 /* Table4057 */
},
/* 0xef */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16951 /* Table4058 */
},
/* 0xf0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf1 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16953 /* Table4059 */
},
/* 0xf2 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16955 /* Table4060 */
},
/* 0xf3 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16957 /* Table4061 */
},
/* 0xf4 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16959 /* Table4062 */
},
/* 0xf5 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16961 /* Table4063 */
},
/* 0xf6 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16963 /* Table4064 */
},
/* 0xf7 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16965 /* Table4065 */
},
/* 0xf8 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16967 /* Table4066 */
},
/* 0xf9 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16969 /* Table4067 */
},
/* 0xfa */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16971 /* Table4068 */
},
/* 0xfb */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16973 /* Table4069 */
},
/* 0xfc */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16975 /* Table4070 */
},
/* 0xfd */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16977 /* Table4071 */
},
/* 0xfe */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
16979 /* Table4072 */
},
/* 0xff */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
}
}
}
, /* IC_XD */
{ /* struct OpcodeDecision */
{
/* 0x00 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
16981 /* Table4073 */
},
/* 0x01 */
{ /* struct ModRMDecision */
MODRM_SPLITMISC,
16997 /* Table4074 */
},
/* 0x02 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17069 /* Table4075 */
},
/* 0x03 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17071 /* Table4076 */
},
/* 0x04 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x05 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
17073 /* Table4077 */
},
/* 0x06 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
17074 /* Table4078 */
},
/* 0x07 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
17075 /* Table4079 */
},
/* 0x08 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
17076 /* Table4080 */
},
/* 0x09 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
17077 /* Table4081 */
},
/* 0x0a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0b */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
17078 /* Table4082 */
},
/* 0x0c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0d */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
17079 /* Table4083 */
},
/* 0x0e */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
17095 /* Table4084 */
},
/* 0x0f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x10 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17096 /* Table4085 */
},
/* 0x11 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17098 /* Table4086 */
},
/* 0x12 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17100 /* Table4087 */
},
/* 0x13 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17102 /* Table4088 */
},
/* 0x14 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17104 /* Table4089 */
},
/* 0x15 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17106 /* Table4090 */
},
/* 0x16 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17108 /* Table4091 */
},
/* 0x17 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17110 /* Table4092 */
},
/* 0x18 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
17112 /* Table4093 */
},
/* 0x19 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1f */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17128 /* Table4094 */
},
/* 0x20 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17130 /* Table4095 */
},
/* 0x21 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17132 /* Table4096 */
},
/* 0x22 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17134 /* Table4097 */
},
/* 0x23 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17136 /* Table4098 */
},
/* 0x24 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x25 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x26 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x27 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x28 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17138 /* Table4099 */
},
/* 0x29 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17140 /* Table4100 */
},
/* 0x2a */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17142 /* Table4101 */
},
/* 0x2b */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17144 /* Table4102 */
},
/* 0x2c */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17146 /* Table4103 */
},
/* 0x2d */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17148 /* Table4104 */
},
/* 0x2e */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17150 /* Table4105 */
},
/* 0x2f */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17152 /* Table4106 */
},
/* 0x30 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
17154 /* Table4107 */
},
/* 0x31 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
17155 /* Table4108 */
},
/* 0x32 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
17156 /* Table4109 */
},
/* 0x33 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
17157 /* Table4110 */
},
/* 0x34 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
17158 /* Table4111 */
},
/* 0x35 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
17159 /* Table4112 */
},
/* 0x36 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x37 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x38 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x39 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x40 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17160 /* Table4113 */
},
/* 0x41 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17162 /* Table4114 */
},
/* 0x42 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17164 /* Table4115 */
},
/* 0x43 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17166 /* Table4116 */
},
/* 0x44 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17168 /* Table4117 */
},
/* 0x45 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17170 /* Table4118 */
},
/* 0x46 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17172 /* Table4119 */
},
/* 0x47 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17174 /* Table4120 */
},
/* 0x48 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17176 /* Table4121 */
},
/* 0x49 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17178 /* Table4122 */
},
/* 0x4a */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17180 /* Table4123 */
},
/* 0x4b */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17182 /* Table4124 */
},
/* 0x4c */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17184 /* Table4125 */
},
/* 0x4d */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17186 /* Table4126 */
},
/* 0x4e */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17188 /* Table4127 */
},
/* 0x4f */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17190 /* Table4128 */
},
/* 0x50 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17192 /* Table4129 */
},
/* 0x51 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17194 /* Table4130 */
},
/* 0x52 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17196 /* Table4131 */
},
/* 0x53 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17198 /* Table4132 */
},
/* 0x54 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17200 /* Table4133 */
},
/* 0x55 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17202 /* Table4134 */
},
/* 0x56 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17204 /* Table4135 */
},
/* 0x57 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17206 /* Table4136 */
},
/* 0x58 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17208 /* Table4137 */
},
/* 0x59 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17210 /* Table4138 */
},
/* 0x5a */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17212 /* Table4139 */
},
/* 0x5b */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17214 /* Table4140 */
},
/* 0x5c */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17216 /* Table4141 */
},
/* 0x5d */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17218 /* Table4142 */
},
/* 0x5e */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17220 /* Table4143 */
},
/* 0x5f */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17222 /* Table4144 */
},
/* 0x60 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17224 /* Table4145 */
},
/* 0x61 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17226 /* Table4146 */
},
/* 0x62 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17228 /* Table4147 */
},
/* 0x63 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17230 /* Table4148 */
},
/* 0x64 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17232 /* Table4149 */
},
/* 0x65 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17234 /* Table4150 */
},
/* 0x66 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17236 /* Table4151 */
},
/* 0x67 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17238 /* Table4152 */
},
/* 0x68 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17240 /* Table4153 */
},
/* 0x69 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17242 /* Table4154 */
},
/* 0x6a */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17244 /* Table4155 */
},
/* 0x6b */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17246 /* Table4156 */
},
/* 0x6c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6e */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17248 /* Table4157 */
},
/* 0x6f */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17250 /* Table4158 */
},
/* 0x70 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17252 /* Table4159 */
},
/* 0x71 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
17254 /* Table4160 */
},
/* 0x72 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
17270 /* Table4161 */
},
/* 0x73 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
17286 /* Table4162 */
},
/* 0x74 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17302 /* Table4163 */
},
/* 0x75 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17304 /* Table4164 */
},
/* 0x76 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17306 /* Table4165 */
},
/* 0x77 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
17308 /* Table4166 */
},
/* 0x78 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17309 /* Table4167 */
},
/* 0x79 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17311 /* Table4168 */
},
/* 0x7a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7c */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17313 /* Table4169 */
},
/* 0x7d */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17315 /* Table4170 */
},
/* 0x7e */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17317 /* Table4171 */
},
/* 0x7f */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17319 /* Table4172 */
},
/* 0x80 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
17321 /* Table4173 */
},
/* 0x81 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
17322 /* Table4174 */
},
/* 0x82 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
17323 /* Table4175 */
},
/* 0x83 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
17324 /* Table4176 */
},
/* 0x84 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
17325 /* Table4177 */
},
/* 0x85 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
17326 /* Table4178 */
},
/* 0x86 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
17327 /* Table4179 */
},
/* 0x87 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
17328 /* Table4180 */
},
/* 0x88 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
17329 /* Table4181 */
},
/* 0x89 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
17330 /* Table4182 */
},
/* 0x8a */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
17331 /* Table4183 */
},
/* 0x8b */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
17332 /* Table4184 */
},
/* 0x8c */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
17333 /* Table4185 */
},
/* 0x8d */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
17334 /* Table4186 */
},
/* 0x8e */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
17335 /* Table4187 */
},
/* 0x8f */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
17336 /* Table4188 */
},
/* 0x90 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17337 /* Table4189 */
},
/* 0x91 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17339 /* Table4190 */
},
/* 0x92 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17341 /* Table4191 */
},
/* 0x93 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17343 /* Table4192 */
},
/* 0x94 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17345 /* Table4193 */
},
/* 0x95 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17347 /* Table4194 */
},
/* 0x96 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17349 /* Table4195 */
},
/* 0x97 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17351 /* Table4196 */
},
/* 0x98 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17353 /* Table4197 */
},
/* 0x99 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17355 /* Table4198 */
},
/* 0x9a */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17357 /* Table4199 */
},
/* 0x9b */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17359 /* Table4200 */
},
/* 0x9c */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17361 /* Table4201 */
},
/* 0x9d */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17363 /* Table4202 */
},
/* 0x9e */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17365 /* Table4203 */
},
/* 0x9f */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17367 /* Table4204 */
},
/* 0xa0 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
17369 /* Table4205 */
},
/* 0xa1 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
17370 /* Table4206 */
},
/* 0xa2 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
17371 /* Table4207 */
},
/* 0xa3 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17372 /* Table4208 */
},
/* 0xa4 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17374 /* Table4209 */
},
/* 0xa5 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17376 /* Table4210 */
},
/* 0xa6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa8 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
17378 /* Table4211 */
},
/* 0xa9 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
17379 /* Table4212 */
},
/* 0xaa */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
17380 /* Table4213 */
},
/* 0xab */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17381 /* Table4214 */
},
/* 0xac */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17383 /* Table4215 */
},
/* 0xad */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17385 /* Table4216 */
},
/* 0xae */
{ /* struct ModRMDecision */
MODRM_SPLITMISC,
17387 /* Table4217 */
},
/* 0xaf */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17459 /* Table4218 */
},
/* 0xb0 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17461 /* Table4219 */
},
/* 0xb1 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17463 /* Table4220 */
},
/* 0xb2 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17465 /* Table4221 */
},
/* 0xb3 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17467 /* Table4222 */
},
/* 0xb4 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17469 /* Table4223 */
},
/* 0xb5 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17471 /* Table4224 */
},
/* 0xb6 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17473 /* Table4225 */
},
/* 0xb7 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17475 /* Table4226 */
},
/* 0xb8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb9 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
17477 /* Table4227 */
},
/* 0xba */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
17478 /* Table4228 */
},
/* 0xbb */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17494 /* Table4229 */
},
/* 0xbc */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17496 /* Table4230 */
},
/* 0xbd */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17498 /* Table4231 */
},
/* 0xbe */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17500 /* Table4232 */
},
/* 0xbf */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17502 /* Table4233 */
},
/* 0xc0 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17504 /* Table4234 */
},
/* 0xc1 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17506 /* Table4235 */
},
/* 0xc2 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17508 /* Table4236 */
},
/* 0xc3 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17510 /* Table4237 */
},
/* 0xc4 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17512 /* Table4238 */
},
/* 0xc5 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17514 /* Table4239 */
},
/* 0xc6 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17516 /* Table4240 */
},
/* 0xc7 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
17518 /* Table4241 */
},
/* 0xc8 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
17534 /* Table4242 */
},
/* 0xc9 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
17535 /* Table4243 */
},
/* 0xca */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
17536 /* Table4244 */
},
/* 0xcb */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
17537 /* Table4245 */
},
/* 0xcc */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
17538 /* Table4246 */
},
/* 0xcd */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
17539 /* Table4247 */
},
/* 0xce */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
17540 /* Table4248 */
},
/* 0xcf */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
17541 /* Table4249 */
},
/* 0xd0 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17542 /* Table4250 */
},
/* 0xd1 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17544 /* Table4251 */
},
/* 0xd2 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17546 /* Table4252 */
},
/* 0xd3 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17548 /* Table4253 */
},
/* 0xd4 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17550 /* Table4254 */
},
/* 0xd5 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17552 /* Table4255 */
},
/* 0xd6 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17554 /* Table4256 */
},
/* 0xd7 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17556 /* Table4257 */
},
/* 0xd8 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17558 /* Table4258 */
},
/* 0xd9 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17560 /* Table4259 */
},
/* 0xda */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17562 /* Table4260 */
},
/* 0xdb */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17564 /* Table4261 */
},
/* 0xdc */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17566 /* Table4262 */
},
/* 0xdd */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17568 /* Table4263 */
},
/* 0xde */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17570 /* Table4264 */
},
/* 0xdf */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17572 /* Table4265 */
},
/* 0xe0 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17574 /* Table4266 */
},
/* 0xe1 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17576 /* Table4267 */
},
/* 0xe2 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17578 /* Table4268 */
},
/* 0xe3 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17580 /* Table4269 */
},
/* 0xe4 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17582 /* Table4270 */
},
/* 0xe5 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17584 /* Table4271 */
},
/* 0xe6 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17586 /* Table4272 */
},
/* 0xe7 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17588 /* Table4273 */
},
/* 0xe8 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17590 /* Table4274 */
},
/* 0xe9 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17592 /* Table4275 */
},
/* 0xea */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17594 /* Table4276 */
},
/* 0xeb */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17596 /* Table4277 */
},
/* 0xec */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17598 /* Table4278 */
},
/* 0xed */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17600 /* Table4279 */
},
/* 0xee */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17602 /* Table4280 */
},
/* 0xef */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17604 /* Table4281 */
},
/* 0xf0 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17606 /* Table4282 */
},
/* 0xf1 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17608 /* Table4283 */
},
/* 0xf2 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17610 /* Table4284 */
},
/* 0xf3 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17612 /* Table4285 */
},
/* 0xf4 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17614 /* Table4286 */
},
/* 0xf5 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17616 /* Table4287 */
},
/* 0xf6 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17618 /* Table4288 */
},
/* 0xf7 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17620 /* Table4289 */
},
/* 0xf8 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17622 /* Table4290 */
},
/* 0xf9 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17624 /* Table4291 */
},
/* 0xfa */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17626 /* Table4292 */
},
/* 0xfb */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17628 /* Table4293 */
},
/* 0xfc */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17630 /* Table4294 */
},
/* 0xfd */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17632 /* Table4295 */
},
/* 0xfe */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17634 /* Table4296 */
},
/* 0xff */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
}
}
}
, /* IC_XS */
{ /* struct OpcodeDecision */
{
/* 0x00 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
17636 /* Table4297 */
},
/* 0x01 */
{ /* struct ModRMDecision */
MODRM_SPLITMISC,
17652 /* Table4298 */
},
/* 0x02 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17724 /* Table4299 */
},
/* 0x03 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17726 /* Table4300 */
},
/* 0x04 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x05 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
17728 /* Table4301 */
},
/* 0x06 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
17729 /* Table4302 */
},
/* 0x07 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
17730 /* Table4303 */
},
/* 0x08 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
17731 /* Table4304 */
},
/* 0x09 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
17732 /* Table4305 */
},
/* 0x0a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0b */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
17733 /* Table4306 */
},
/* 0x0c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0d */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
17734 /* Table4307 */
},
/* 0x0e */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
17750 /* Table4308 */
},
/* 0x0f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x10 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17751 /* Table4309 */
},
/* 0x11 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17753 /* Table4310 */
},
/* 0x12 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17755 /* Table4311 */
},
/* 0x13 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17757 /* Table4312 */
},
/* 0x14 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17759 /* Table4313 */
},
/* 0x15 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17761 /* Table4314 */
},
/* 0x16 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17763 /* Table4315 */
},
/* 0x17 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17765 /* Table4316 */
},
/* 0x18 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
17767 /* Table4317 */
},
/* 0x19 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1f */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17783 /* Table4318 */
},
/* 0x20 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17785 /* Table4319 */
},
/* 0x21 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17787 /* Table4320 */
},
/* 0x22 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17789 /* Table4321 */
},
/* 0x23 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17791 /* Table4322 */
},
/* 0x24 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x25 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x26 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x27 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x28 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17793 /* Table4323 */
},
/* 0x29 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17795 /* Table4324 */
},
/* 0x2a */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17797 /* Table4325 */
},
/* 0x2b */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17799 /* Table4326 */
},
/* 0x2c */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17801 /* Table4327 */
},
/* 0x2d */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17803 /* Table4328 */
},
/* 0x2e */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17805 /* Table4329 */
},
/* 0x2f */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17807 /* Table4330 */
},
/* 0x30 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
17809 /* Table4331 */
},
/* 0x31 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
17810 /* Table4332 */
},
/* 0x32 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
17811 /* Table4333 */
},
/* 0x33 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
17812 /* Table4334 */
},
/* 0x34 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
17813 /* Table4335 */
},
/* 0x35 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
17814 /* Table4336 */
},
/* 0x36 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x37 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x38 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x39 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x40 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17815 /* Table4337 */
},
/* 0x41 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17817 /* Table4338 */
},
/* 0x42 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17819 /* Table4339 */
},
/* 0x43 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17821 /* Table4340 */
},
/* 0x44 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17823 /* Table4341 */
},
/* 0x45 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17825 /* Table4342 */
},
/* 0x46 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17827 /* Table4343 */
},
/* 0x47 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17829 /* Table4344 */
},
/* 0x48 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17831 /* Table4345 */
},
/* 0x49 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17833 /* Table4346 */
},
/* 0x4a */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17835 /* Table4347 */
},
/* 0x4b */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17837 /* Table4348 */
},
/* 0x4c */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17839 /* Table4349 */
},
/* 0x4d */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17841 /* Table4350 */
},
/* 0x4e */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17843 /* Table4351 */
},
/* 0x4f */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17845 /* Table4352 */
},
/* 0x50 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17847 /* Table4353 */
},
/* 0x51 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17849 /* Table4354 */
},
/* 0x52 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17851 /* Table4355 */
},
/* 0x53 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17853 /* Table4356 */
},
/* 0x54 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17855 /* Table4357 */
},
/* 0x55 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17857 /* Table4358 */
},
/* 0x56 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17859 /* Table4359 */
},
/* 0x57 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17861 /* Table4360 */
},
/* 0x58 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17863 /* Table4361 */
},
/* 0x59 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17865 /* Table4362 */
},
/* 0x5a */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17867 /* Table4363 */
},
/* 0x5b */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17869 /* Table4364 */
},
/* 0x5c */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17871 /* Table4365 */
},
/* 0x5d */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17873 /* Table4366 */
},
/* 0x5e */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17875 /* Table4367 */
},
/* 0x5f */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17877 /* Table4368 */
},
/* 0x60 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17879 /* Table4369 */
},
/* 0x61 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17881 /* Table4370 */
},
/* 0x62 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17883 /* Table4371 */
},
/* 0x63 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17885 /* Table4372 */
},
/* 0x64 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17887 /* Table4373 */
},
/* 0x65 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17889 /* Table4374 */
},
/* 0x66 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17891 /* Table4375 */
},
/* 0x67 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17893 /* Table4376 */
},
/* 0x68 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17895 /* Table4377 */
},
/* 0x69 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17897 /* Table4378 */
},
/* 0x6a */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17899 /* Table4379 */
},
/* 0x6b */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17901 /* Table4380 */
},
/* 0x6c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6e */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17903 /* Table4381 */
},
/* 0x6f */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17905 /* Table4382 */
},
/* 0x70 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17907 /* Table4383 */
},
/* 0x71 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
17909 /* Table4384 */
},
/* 0x72 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
17925 /* Table4385 */
},
/* 0x73 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
17941 /* Table4386 */
},
/* 0x74 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17957 /* Table4387 */
},
/* 0x75 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17959 /* Table4388 */
},
/* 0x76 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17961 /* Table4389 */
},
/* 0x77 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
17963 /* Table4390 */
},
/* 0x78 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17964 /* Table4391 */
},
/* 0x79 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17966 /* Table4392 */
},
/* 0x7a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7e */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17968 /* Table4393 */
},
/* 0x7f */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17970 /* Table4394 */
},
/* 0x80 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
17972 /* Table4395 */
},
/* 0x81 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
17973 /* Table4396 */
},
/* 0x82 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
17974 /* Table4397 */
},
/* 0x83 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
17975 /* Table4398 */
},
/* 0x84 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
17976 /* Table4399 */
},
/* 0x85 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
17977 /* Table4400 */
},
/* 0x86 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
17978 /* Table4401 */
},
/* 0x87 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
17979 /* Table4402 */
},
/* 0x88 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
17980 /* Table4403 */
},
/* 0x89 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
17981 /* Table4404 */
},
/* 0x8a */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
17982 /* Table4405 */
},
/* 0x8b */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
17983 /* Table4406 */
},
/* 0x8c */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
17984 /* Table4407 */
},
/* 0x8d */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
17985 /* Table4408 */
},
/* 0x8e */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
17986 /* Table4409 */
},
/* 0x8f */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
17987 /* Table4410 */
},
/* 0x90 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17988 /* Table4411 */
},
/* 0x91 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17990 /* Table4412 */
},
/* 0x92 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17992 /* Table4413 */
},
/* 0x93 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17994 /* Table4414 */
},
/* 0x94 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17996 /* Table4415 */
},
/* 0x95 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
17998 /* Table4416 */
},
/* 0x96 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18000 /* Table4417 */
},
/* 0x97 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18002 /* Table4418 */
},
/* 0x98 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18004 /* Table4419 */
},
/* 0x99 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18006 /* Table4420 */
},
/* 0x9a */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18008 /* Table4421 */
},
/* 0x9b */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18010 /* Table4422 */
},
/* 0x9c */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18012 /* Table4423 */
},
/* 0x9d */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18014 /* Table4424 */
},
/* 0x9e */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18016 /* Table4425 */
},
/* 0x9f */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18018 /* Table4426 */
},
/* 0xa0 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
18020 /* Table4427 */
},
/* 0xa1 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
18021 /* Table4428 */
},
/* 0xa2 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
18022 /* Table4429 */
},
/* 0xa3 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18023 /* Table4430 */
},
/* 0xa4 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18025 /* Table4431 */
},
/* 0xa5 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18027 /* Table4432 */
},
/* 0xa6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa8 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
18029 /* Table4433 */
},
/* 0xa9 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
18030 /* Table4434 */
},
/* 0xaa */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
18031 /* Table4435 */
},
/* 0xab */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18032 /* Table4436 */
},
/* 0xac */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18034 /* Table4437 */
},
/* 0xad */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18036 /* Table4438 */
},
/* 0xae */
{ /* struct ModRMDecision */
MODRM_SPLITMISC,
18038 /* Table4439 */
},
/* 0xaf */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18110 /* Table4440 */
},
/* 0xb0 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18112 /* Table4441 */
},
/* 0xb1 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18114 /* Table4442 */
},
/* 0xb2 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18116 /* Table4443 */
},
/* 0xb3 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18118 /* Table4444 */
},
/* 0xb4 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18120 /* Table4445 */
},
/* 0xb5 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18122 /* Table4446 */
},
/* 0xb6 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18124 /* Table4447 */
},
/* 0xb7 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18126 /* Table4448 */
},
/* 0xb8 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18128 /* Table4449 */
},
/* 0xb9 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
18130 /* Table4450 */
},
/* 0xba */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
18131 /* Table4451 */
},
/* 0xbb */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18147 /* Table4452 */
},
/* 0xbc */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18149 /* Table4453 */
},
/* 0xbd */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18151 /* Table4454 */
},
/* 0xbe */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18153 /* Table4455 */
},
/* 0xbf */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18155 /* Table4456 */
},
/* 0xc0 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18157 /* Table4457 */
},
/* 0xc1 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18159 /* Table4458 */
},
/* 0xc2 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18161 /* Table4459 */
},
/* 0xc3 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18163 /* Table4460 */
},
/* 0xc4 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18165 /* Table4461 */
},
/* 0xc5 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18167 /* Table4462 */
},
/* 0xc6 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18169 /* Table4463 */
},
/* 0xc7 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
18171 /* Table4464 */
},
/* 0xc8 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
18187 /* Table4465 */
},
/* 0xc9 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
18188 /* Table4466 */
},
/* 0xca */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
18189 /* Table4467 */
},
/* 0xcb */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
18190 /* Table4468 */
},
/* 0xcc */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
18191 /* Table4469 */
},
/* 0xcd */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
18192 /* Table4470 */
},
/* 0xce */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
18193 /* Table4471 */
},
/* 0xcf */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
18194 /* Table4472 */
},
/* 0xd0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd1 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18195 /* Table4473 */
},
/* 0xd2 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18197 /* Table4474 */
},
/* 0xd3 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18199 /* Table4475 */
},
/* 0xd4 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18201 /* Table4476 */
},
/* 0xd5 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18203 /* Table4477 */
},
/* 0xd6 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18205 /* Table4478 */
},
/* 0xd7 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18207 /* Table4479 */
},
/* 0xd8 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18209 /* Table4480 */
},
/* 0xd9 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18211 /* Table4481 */
},
/* 0xda */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18213 /* Table4482 */
},
/* 0xdb */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18215 /* Table4483 */
},
/* 0xdc */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18217 /* Table4484 */
},
/* 0xdd */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18219 /* Table4485 */
},
/* 0xde */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18221 /* Table4486 */
},
/* 0xdf */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18223 /* Table4487 */
},
/* 0xe0 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18225 /* Table4488 */
},
/* 0xe1 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18227 /* Table4489 */
},
/* 0xe2 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18229 /* Table4490 */
},
/* 0xe3 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18231 /* Table4491 */
},
/* 0xe4 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18233 /* Table4492 */
},
/* 0xe5 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18235 /* Table4493 */
},
/* 0xe6 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18237 /* Table4494 */
},
/* 0xe7 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18239 /* Table4495 */
},
/* 0xe8 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18241 /* Table4496 */
},
/* 0xe9 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18243 /* Table4497 */
},
/* 0xea */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18245 /* Table4498 */
},
/* 0xeb */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18247 /* Table4499 */
},
/* 0xec */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18249 /* Table4500 */
},
/* 0xed */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18251 /* Table4501 */
},
/* 0xee */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18253 /* Table4502 */
},
/* 0xef */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18255 /* Table4503 */
},
/* 0xf0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf1 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18257 /* Table4504 */
},
/* 0xf2 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18259 /* Table4505 */
},
/* 0xf3 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18261 /* Table4506 */
},
/* 0xf4 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18263 /* Table4507 */
},
/* 0xf5 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18265 /* Table4508 */
},
/* 0xf6 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18267 /* Table4509 */
},
/* 0xf7 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18269 /* Table4510 */
},
/* 0xf8 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18271 /* Table4511 */
},
/* 0xf9 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18273 /* Table4512 */
},
/* 0xfa */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18275 /* Table4513 */
},
/* 0xfb */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18277 /* Table4514 */
},
/* 0xfc */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18279 /* Table4515 */
},
/* 0xfd */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18281 /* Table4516 */
},
/* 0xfe */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18283 /* Table4517 */
},
/* 0xff */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
}
}
}
, /* IC_XD_OPSIZE */
{ /* struct OpcodeDecision */
{
/* 0x00 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x01 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x02 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x03 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x04 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x05 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x06 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x07 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x08 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x09 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x10 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x11 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x12 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x13 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x14 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x15 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x16 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x17 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x18 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x19 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x20 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x21 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x22 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x23 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x24 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x25 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x26 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x27 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x28 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x29 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x30 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x31 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x32 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x33 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x34 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x35 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x36 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x37 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x38 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x39 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x40 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x41 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x42 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x43 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x44 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x45 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x46 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x47 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x48 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x49 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x50 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x51 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x52 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x53 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x54 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x55 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x56 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x57 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x58 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x59 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x60 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x61 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x62 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x63 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x64 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x65 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x66 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x67 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x68 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x69 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x70 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x71 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x72 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x73 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x74 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x75 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x76 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x77 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x78 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x79 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x80 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x81 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x82 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x83 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x84 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x85 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x86 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x87 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x88 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x89 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x90 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x91 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x92 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x93 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x94 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x95 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x96 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x97 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x98 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x99 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xab */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xac */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xad */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xae */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xba */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xca */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xce */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xda */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xde */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xea */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xeb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xec */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xed */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xee */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xef */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xff */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
}
}
}
, /* IC_XS_OPSIZE */
{ /* struct OpcodeDecision */
{
/* 0x00 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x01 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x02 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x03 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x04 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x05 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x06 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x07 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x08 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x09 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x10 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x11 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x12 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x13 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x14 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x15 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x16 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x17 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x18 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x19 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x20 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x21 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x22 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x23 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x24 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x25 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x26 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x27 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x28 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x29 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x30 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x31 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x32 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x33 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x34 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x35 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x36 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x37 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x38 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x39 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x40 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x41 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x42 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x43 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x44 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x45 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x46 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x47 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x48 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x49 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x50 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x51 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x52 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x53 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x54 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x55 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x56 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x57 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x58 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x59 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x60 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x61 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x62 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x63 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x64 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x65 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x66 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x67 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x68 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x69 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x70 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x71 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x72 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x73 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x74 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x75 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x76 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x77 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x78 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x79 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x80 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x81 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x82 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x83 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x84 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x85 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x86 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x87 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x88 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x89 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x90 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x91 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x92 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x93 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x94 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x95 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x96 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x97 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x98 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x99 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xab */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xac */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xad */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xae */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb8 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18285 /* Table4518 */
},
/* 0xb9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xba */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbc */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18287 /* Table4519 */
},
/* 0xbd */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18289 /* Table4520 */
},
/* 0xbe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xca */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xce */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xda */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xde */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xea */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xeb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xec */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xed */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xee */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xef */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xff */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
}
}
}
, /* IC_64BIT_REXW */
{ /* struct OpcodeDecision */
{
/* 0x00 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
18291 /* Table4521 */
},
/* 0x01 */
{ /* struct ModRMDecision */
MODRM_SPLITMISC,
18307 /* Table4522 */
},
/* 0x02 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18379 /* Table4523 */
},
/* 0x03 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18381 /* Table4524 */
},
/* 0x04 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x05 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
18383 /* Table4525 */
},
/* 0x06 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
18384 /* Table4526 */
},
/* 0x07 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
18385 /* Table4527 */
},
/* 0x08 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
18386 /* Table4528 */
},
/* 0x09 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
18387 /* Table4529 */
},
/* 0x0a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0b */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
18388 /* Table4530 */
},
/* 0x0c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0d */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
18389 /* Table4531 */
},
/* 0x0e */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
18405 /* Table4532 */
},
/* 0x0f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x10 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18406 /* Table4533 */
},
/* 0x11 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18408 /* Table4534 */
},
/* 0x12 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18410 /* Table4535 */
},
/* 0x13 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18412 /* Table4536 */
},
/* 0x14 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18414 /* Table4537 */
},
/* 0x15 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18416 /* Table4538 */
},
/* 0x16 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18418 /* Table4539 */
},
/* 0x17 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18420 /* Table4540 */
},
/* 0x18 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
18422 /* Table4541 */
},
/* 0x19 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1f */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18438 /* Table4542 */
},
/* 0x20 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18440 /* Table4543 */
},
/* 0x21 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18442 /* Table4544 */
},
/* 0x22 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18444 /* Table4545 */
},
/* 0x23 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18446 /* Table4546 */
},
/* 0x24 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x25 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x26 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x27 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x28 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18448 /* Table4547 */
},
/* 0x29 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18450 /* Table4548 */
},
/* 0x2a */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18452 /* Table4549 */
},
/* 0x2b */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18454 /* Table4550 */
},
/* 0x2c */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18456 /* Table4551 */
},
/* 0x2d */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18458 /* Table4552 */
},
/* 0x2e */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18460 /* Table4553 */
},
/* 0x2f */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18462 /* Table4554 */
},
/* 0x30 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
18464 /* Table4555 */
},
/* 0x31 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
18465 /* Table4556 */
},
/* 0x32 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
18466 /* Table4557 */
},
/* 0x33 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
18467 /* Table4558 */
},
/* 0x34 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
18468 /* Table4559 */
},
/* 0x35 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
18469 /* Table4560 */
},
/* 0x36 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x37 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x38 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x39 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x40 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18470 /* Table4561 */
},
/* 0x41 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18472 /* Table4562 */
},
/* 0x42 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18474 /* Table4563 */
},
/* 0x43 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18476 /* Table4564 */
},
/* 0x44 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18478 /* Table4565 */
},
/* 0x45 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18480 /* Table4566 */
},
/* 0x46 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18482 /* Table4567 */
},
/* 0x47 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18484 /* Table4568 */
},
/* 0x48 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18486 /* Table4569 */
},
/* 0x49 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18488 /* Table4570 */
},
/* 0x4a */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18490 /* Table4571 */
},
/* 0x4b */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18492 /* Table4572 */
},
/* 0x4c */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18494 /* Table4573 */
},
/* 0x4d */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18496 /* Table4574 */
},
/* 0x4e */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18498 /* Table4575 */
},
/* 0x4f */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18500 /* Table4576 */
},
/* 0x50 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18502 /* Table4577 */
},
/* 0x51 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18504 /* Table4578 */
},
/* 0x52 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18506 /* Table4579 */
},
/* 0x53 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18508 /* Table4580 */
},
/* 0x54 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18510 /* Table4581 */
},
/* 0x55 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18512 /* Table4582 */
},
/* 0x56 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18514 /* Table4583 */
},
/* 0x57 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18516 /* Table4584 */
},
/* 0x58 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18518 /* Table4585 */
},
/* 0x59 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18520 /* Table4586 */
},
/* 0x5a */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18522 /* Table4587 */
},
/* 0x5b */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18524 /* Table4588 */
},
/* 0x5c */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18526 /* Table4589 */
},
/* 0x5d */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18528 /* Table4590 */
},
/* 0x5e */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18530 /* Table4591 */
},
/* 0x5f */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18532 /* Table4592 */
},
/* 0x60 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18534 /* Table4593 */
},
/* 0x61 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18536 /* Table4594 */
},
/* 0x62 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18538 /* Table4595 */
},
/* 0x63 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18540 /* Table4596 */
},
/* 0x64 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18542 /* Table4597 */
},
/* 0x65 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18544 /* Table4598 */
},
/* 0x66 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18546 /* Table4599 */
},
/* 0x67 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18548 /* Table4600 */
},
/* 0x68 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18550 /* Table4601 */
},
/* 0x69 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18552 /* Table4602 */
},
/* 0x6a */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18554 /* Table4603 */
},
/* 0x6b */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18556 /* Table4604 */
},
/* 0x6c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6e */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18558 /* Table4605 */
},
/* 0x6f */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18560 /* Table4606 */
},
/* 0x70 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18562 /* Table4607 */
},
/* 0x71 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
18564 /* Table4608 */
},
/* 0x72 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
18580 /* Table4609 */
},
/* 0x73 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
18596 /* Table4610 */
},
/* 0x74 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18612 /* Table4611 */
},
/* 0x75 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18614 /* Table4612 */
},
/* 0x76 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18616 /* Table4613 */
},
/* 0x77 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
18618 /* Table4614 */
},
/* 0x78 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18619 /* Table4615 */
},
/* 0x79 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18621 /* Table4616 */
},
/* 0x7a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7e */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18623 /* Table4617 */
},
/* 0x7f */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18625 /* Table4618 */
},
/* 0x80 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
18627 /* Table4619 */
},
/* 0x81 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
18628 /* Table4620 */
},
/* 0x82 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
18629 /* Table4621 */
},
/* 0x83 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
18630 /* Table4622 */
},
/* 0x84 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
18631 /* Table4623 */
},
/* 0x85 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
18632 /* Table4624 */
},
/* 0x86 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
18633 /* Table4625 */
},
/* 0x87 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
18634 /* Table4626 */
},
/* 0x88 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
18635 /* Table4627 */
},
/* 0x89 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
18636 /* Table4628 */
},
/* 0x8a */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
18637 /* Table4629 */
},
/* 0x8b */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
18638 /* Table4630 */
},
/* 0x8c */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
18639 /* Table4631 */
},
/* 0x8d */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
18640 /* Table4632 */
},
/* 0x8e */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
18641 /* Table4633 */
},
/* 0x8f */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
18642 /* Table4634 */
},
/* 0x90 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18643 /* Table4635 */
},
/* 0x91 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18645 /* Table4636 */
},
/* 0x92 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18647 /* Table4637 */
},
/* 0x93 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18649 /* Table4638 */
},
/* 0x94 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18651 /* Table4639 */
},
/* 0x95 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18653 /* Table4640 */
},
/* 0x96 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18655 /* Table4641 */
},
/* 0x97 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18657 /* Table4642 */
},
/* 0x98 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18659 /* Table4643 */
},
/* 0x99 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18661 /* Table4644 */
},
/* 0x9a */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18663 /* Table4645 */
},
/* 0x9b */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18665 /* Table4646 */
},
/* 0x9c */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18667 /* Table4647 */
},
/* 0x9d */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18669 /* Table4648 */
},
/* 0x9e */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18671 /* Table4649 */
},
/* 0x9f */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18673 /* Table4650 */
},
/* 0xa0 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
18675 /* Table4651 */
},
/* 0xa1 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
18676 /* Table4652 */
},
/* 0xa2 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
18677 /* Table4653 */
},
/* 0xa3 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18678 /* Table4654 */
},
/* 0xa4 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18680 /* Table4655 */
},
/* 0xa5 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18682 /* Table4656 */
},
/* 0xa6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa8 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
18684 /* Table4657 */
},
/* 0xa9 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
18685 /* Table4658 */
},
/* 0xaa */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
18686 /* Table4659 */
},
/* 0xab */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18687 /* Table4660 */
},
/* 0xac */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18689 /* Table4661 */
},
/* 0xad */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18691 /* Table4662 */
},
/* 0xae */
{ /* struct ModRMDecision */
MODRM_SPLITMISC,
18693 /* Table4663 */
},
/* 0xaf */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18765 /* Table4664 */
},
/* 0xb0 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18767 /* Table4665 */
},
/* 0xb1 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18769 /* Table4666 */
},
/* 0xb2 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18771 /* Table4667 */
},
/* 0xb3 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18773 /* Table4668 */
},
/* 0xb4 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18775 /* Table4669 */
},
/* 0xb5 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18777 /* Table4670 */
},
/* 0xb6 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18779 /* Table4671 */
},
/* 0xb7 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18781 /* Table4672 */
},
/* 0xb8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb9 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
18783 /* Table4673 */
},
/* 0xba */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
18784 /* Table4674 */
},
/* 0xbb */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18800 /* Table4675 */
},
/* 0xbc */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18802 /* Table4676 */
},
/* 0xbd */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18804 /* Table4677 */
},
/* 0xbe */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18806 /* Table4678 */
},
/* 0xbf */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18808 /* Table4679 */
},
/* 0xc0 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18810 /* Table4680 */
},
/* 0xc1 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18812 /* Table4681 */
},
/* 0xc2 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18814 /* Table4682 */
},
/* 0xc3 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18816 /* Table4683 */
},
/* 0xc4 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18818 /* Table4684 */
},
/* 0xc5 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18820 /* Table4685 */
},
/* 0xc6 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18822 /* Table4686 */
},
/* 0xc7 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
18824 /* Table4687 */
},
/* 0xc8 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
18840 /* Table4688 */
},
/* 0xc9 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
18841 /* Table4689 */
},
/* 0xca */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
18842 /* Table4690 */
},
/* 0xcb */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
18843 /* Table4691 */
},
/* 0xcc */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
18844 /* Table4692 */
},
/* 0xcd */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
18845 /* Table4693 */
},
/* 0xce */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
18846 /* Table4694 */
},
/* 0xcf */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
18847 /* Table4695 */
},
/* 0xd0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd1 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18848 /* Table4696 */
},
/* 0xd2 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18850 /* Table4697 */
},
/* 0xd3 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18852 /* Table4698 */
},
/* 0xd4 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18854 /* Table4699 */
},
/* 0xd5 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18856 /* Table4700 */
},
/* 0xd6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd7 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18858 /* Table4701 */
},
/* 0xd8 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18860 /* Table4702 */
},
/* 0xd9 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18862 /* Table4703 */
},
/* 0xda */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18864 /* Table4704 */
},
/* 0xdb */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18866 /* Table4705 */
},
/* 0xdc */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18868 /* Table4706 */
},
/* 0xdd */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18870 /* Table4707 */
},
/* 0xde */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18872 /* Table4708 */
},
/* 0xdf */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18874 /* Table4709 */
},
/* 0xe0 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18876 /* Table4710 */
},
/* 0xe1 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18878 /* Table4711 */
},
/* 0xe2 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18880 /* Table4712 */
},
/* 0xe3 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18882 /* Table4713 */
},
/* 0xe4 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18884 /* Table4714 */
},
/* 0xe5 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18886 /* Table4715 */
},
/* 0xe6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe7 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18888 /* Table4716 */
},
/* 0xe8 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18890 /* Table4717 */
},
/* 0xe9 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18892 /* Table4718 */
},
/* 0xea */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18894 /* Table4719 */
},
/* 0xeb */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18896 /* Table4720 */
},
/* 0xec */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18898 /* Table4721 */
},
/* 0xed */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18900 /* Table4722 */
},
/* 0xee */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18902 /* Table4723 */
},
/* 0xef */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18904 /* Table4724 */
},
/* 0xf0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf1 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18906 /* Table4725 */
},
/* 0xf2 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18908 /* Table4726 */
},
/* 0xf3 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18910 /* Table4727 */
},
/* 0xf4 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18912 /* Table4728 */
},
/* 0xf5 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18914 /* Table4729 */
},
/* 0xf6 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18916 /* Table4730 */
},
/* 0xf7 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18918 /* Table4731 */
},
/* 0xf8 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18920 /* Table4732 */
},
/* 0xf9 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18922 /* Table4733 */
},
/* 0xfa */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18924 /* Table4734 */
},
/* 0xfb */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18926 /* Table4735 */
},
/* 0xfc */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18928 /* Table4736 */
},
/* 0xfd */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18930 /* Table4737 */
},
/* 0xfe */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
18932 /* Table4738 */
},
/* 0xff */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
}
}
}
, /* IC_64BIT_OPSIZE */
{ /* struct OpcodeDecision */
{
/* 0x00 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
18934 /* Table4739 */
},
/* 0x01 */
{ /* struct ModRMDecision */
MODRM_SPLITMISC,
18950 /* Table4740 */
},
/* 0x02 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19022 /* Table4741 */
},
/* 0x03 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19024 /* Table4742 */
},
/* 0x04 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x05 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
19026 /* Table4743 */
},
/* 0x06 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
19027 /* Table4744 */
},
/* 0x07 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
19028 /* Table4745 */
},
/* 0x08 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
19029 /* Table4746 */
},
/* 0x09 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
19030 /* Table4747 */
},
/* 0x0a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0b */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
19031 /* Table4748 */
},
/* 0x0c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0d */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
19032 /* Table4749 */
},
/* 0x0e */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
19048 /* Table4750 */
},
/* 0x0f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x10 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19049 /* Table4751 */
},
/* 0x11 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19051 /* Table4752 */
},
/* 0x12 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19053 /* Table4753 */
},
/* 0x13 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19055 /* Table4754 */
},
/* 0x14 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19057 /* Table4755 */
},
/* 0x15 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19059 /* Table4756 */
},
/* 0x16 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19061 /* Table4757 */
},
/* 0x17 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19063 /* Table4758 */
},
/* 0x18 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
19065 /* Table4759 */
},
/* 0x19 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1f */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19081 /* Table4760 */
},
/* 0x20 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19083 /* Table4761 */
},
/* 0x21 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19085 /* Table4762 */
},
/* 0x22 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19087 /* Table4763 */
},
/* 0x23 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19089 /* Table4764 */
},
/* 0x24 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x25 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x26 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x27 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x28 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19091 /* Table4765 */
},
/* 0x29 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19093 /* Table4766 */
},
/* 0x2a */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19095 /* Table4767 */
},
/* 0x2b */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19097 /* Table4768 */
},
/* 0x2c */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19099 /* Table4769 */
},
/* 0x2d */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19101 /* Table4770 */
},
/* 0x2e */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19103 /* Table4771 */
},
/* 0x2f */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19105 /* Table4772 */
},
/* 0x30 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
19107 /* Table4773 */
},
/* 0x31 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
19108 /* Table4774 */
},
/* 0x32 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
19109 /* Table4775 */
},
/* 0x33 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
19110 /* Table4776 */
},
/* 0x34 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
19111 /* Table4777 */
},
/* 0x35 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
19112 /* Table4778 */
},
/* 0x36 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x37 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x38 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x39 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x40 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19113 /* Table4779 */
},
/* 0x41 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19115 /* Table4780 */
},
/* 0x42 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19117 /* Table4781 */
},
/* 0x43 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19119 /* Table4782 */
},
/* 0x44 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19121 /* Table4783 */
},
/* 0x45 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19123 /* Table4784 */
},
/* 0x46 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19125 /* Table4785 */
},
/* 0x47 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19127 /* Table4786 */
},
/* 0x48 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19129 /* Table4787 */
},
/* 0x49 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19131 /* Table4788 */
},
/* 0x4a */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19133 /* Table4789 */
},
/* 0x4b */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19135 /* Table4790 */
},
/* 0x4c */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19137 /* Table4791 */
},
/* 0x4d */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19139 /* Table4792 */
},
/* 0x4e */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19141 /* Table4793 */
},
/* 0x4f */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19143 /* Table4794 */
},
/* 0x50 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19145 /* Table4795 */
},
/* 0x51 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19147 /* Table4796 */
},
/* 0x52 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19149 /* Table4797 */
},
/* 0x53 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19151 /* Table4798 */
},
/* 0x54 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19153 /* Table4799 */
},
/* 0x55 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19155 /* Table4800 */
},
/* 0x56 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19157 /* Table4801 */
},
/* 0x57 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19159 /* Table4802 */
},
/* 0x58 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19161 /* Table4803 */
},
/* 0x59 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19163 /* Table4804 */
},
/* 0x5a */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19165 /* Table4805 */
},
/* 0x5b */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19167 /* Table4806 */
},
/* 0x5c */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19169 /* Table4807 */
},
/* 0x5d */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19171 /* Table4808 */
},
/* 0x5e */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19173 /* Table4809 */
},
/* 0x5f */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19175 /* Table4810 */
},
/* 0x60 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19177 /* Table4811 */
},
/* 0x61 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19179 /* Table4812 */
},
/* 0x62 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19181 /* Table4813 */
},
/* 0x63 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19183 /* Table4814 */
},
/* 0x64 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19185 /* Table4815 */
},
/* 0x65 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19187 /* Table4816 */
},
/* 0x66 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19189 /* Table4817 */
},
/* 0x67 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19191 /* Table4818 */
},
/* 0x68 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19193 /* Table4819 */
},
/* 0x69 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19195 /* Table4820 */
},
/* 0x6a */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19197 /* Table4821 */
},
/* 0x6b */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19199 /* Table4822 */
},
/* 0x6c */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19201 /* Table4823 */
},
/* 0x6d */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19203 /* Table4824 */
},
/* 0x6e */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19205 /* Table4825 */
},
/* 0x6f */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19207 /* Table4826 */
},
/* 0x70 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19209 /* Table4827 */
},
/* 0x71 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
19211 /* Table4828 */
},
/* 0x72 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
19227 /* Table4829 */
},
/* 0x73 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
19243 /* Table4830 */
},
/* 0x74 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19259 /* Table4831 */
},
/* 0x75 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19261 /* Table4832 */
},
/* 0x76 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19263 /* Table4833 */
},
/* 0x77 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
19265 /* Table4834 */
},
/* 0x78 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19266 /* Table4835 */
},
/* 0x79 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19268 /* Table4836 */
},
/* 0x7a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7c */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19270 /* Table4837 */
},
/* 0x7d */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19272 /* Table4838 */
},
/* 0x7e */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19274 /* Table4839 */
},
/* 0x7f */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19276 /* Table4840 */
},
/* 0x80 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
19278 /* Table4841 */
},
/* 0x81 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
19279 /* Table4842 */
},
/* 0x82 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
19280 /* Table4843 */
},
/* 0x83 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
19281 /* Table4844 */
},
/* 0x84 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
19282 /* Table4845 */
},
/* 0x85 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
19283 /* Table4846 */
},
/* 0x86 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
19284 /* Table4847 */
},
/* 0x87 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
19285 /* Table4848 */
},
/* 0x88 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
19286 /* Table4849 */
},
/* 0x89 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
19287 /* Table4850 */
},
/* 0x8a */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
19288 /* Table4851 */
},
/* 0x8b */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
19289 /* Table4852 */
},
/* 0x8c */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
19290 /* Table4853 */
},
/* 0x8d */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
19291 /* Table4854 */
},
/* 0x8e */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
19292 /* Table4855 */
},
/* 0x8f */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
19293 /* Table4856 */
},
/* 0x90 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19294 /* Table4857 */
},
/* 0x91 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19296 /* Table4858 */
},
/* 0x92 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19298 /* Table4859 */
},
/* 0x93 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19300 /* Table4860 */
},
/* 0x94 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19302 /* Table4861 */
},
/* 0x95 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19304 /* Table4862 */
},
/* 0x96 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19306 /* Table4863 */
},
/* 0x97 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19308 /* Table4864 */
},
/* 0x98 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19310 /* Table4865 */
},
/* 0x99 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19312 /* Table4866 */
},
/* 0x9a */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19314 /* Table4867 */
},
/* 0x9b */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19316 /* Table4868 */
},
/* 0x9c */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19318 /* Table4869 */
},
/* 0x9d */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19320 /* Table4870 */
},
/* 0x9e */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19322 /* Table4871 */
},
/* 0x9f */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19324 /* Table4872 */
},
/* 0xa0 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
19326 /* Table4873 */
},
/* 0xa1 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
19327 /* Table4874 */
},
/* 0xa2 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
19328 /* Table4875 */
},
/* 0xa3 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19329 /* Table4876 */
},
/* 0xa4 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19331 /* Table4877 */
},
/* 0xa5 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19333 /* Table4878 */
},
/* 0xa6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa8 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
19335 /* Table4879 */
},
/* 0xa9 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
19336 /* Table4880 */
},
/* 0xaa */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
19337 /* Table4881 */
},
/* 0xab */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19338 /* Table4882 */
},
/* 0xac */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19340 /* Table4883 */
},
/* 0xad */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19342 /* Table4884 */
},
/* 0xae */
{ /* struct ModRMDecision */
MODRM_SPLITMISC,
19344 /* Table4885 */
},
/* 0xaf */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19416 /* Table4886 */
},
/* 0xb0 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19418 /* Table4887 */
},
/* 0xb1 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19420 /* Table4888 */
},
/* 0xb2 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19422 /* Table4889 */
},
/* 0xb3 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19424 /* Table4890 */
},
/* 0xb4 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19426 /* Table4891 */
},
/* 0xb5 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19428 /* Table4892 */
},
/* 0xb6 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19430 /* Table4893 */
},
/* 0xb7 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19432 /* Table4894 */
},
/* 0xb8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb9 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
19434 /* Table4895 */
},
/* 0xba */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
19435 /* Table4896 */
},
/* 0xbb */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19451 /* Table4897 */
},
/* 0xbc */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19453 /* Table4898 */
},
/* 0xbd */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19455 /* Table4899 */
},
/* 0xbe */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19457 /* Table4900 */
},
/* 0xbf */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19459 /* Table4901 */
},
/* 0xc0 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19461 /* Table4902 */
},
/* 0xc1 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19463 /* Table4903 */
},
/* 0xc2 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19465 /* Table4904 */
},
/* 0xc3 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19467 /* Table4905 */
},
/* 0xc4 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19469 /* Table4906 */
},
/* 0xc5 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19471 /* Table4907 */
},
/* 0xc6 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19473 /* Table4908 */
},
/* 0xc7 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
19475 /* Table4909 */
},
/* 0xc8 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
19491 /* Table4910 */
},
/* 0xc9 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
19492 /* Table4911 */
},
/* 0xca */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
19493 /* Table4912 */
},
/* 0xcb */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
19494 /* Table4913 */
},
/* 0xcc */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
19495 /* Table4914 */
},
/* 0xcd */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
19496 /* Table4915 */
},
/* 0xce */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
19497 /* Table4916 */
},
/* 0xcf */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
19498 /* Table4917 */
},
/* 0xd0 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19499 /* Table4918 */
},
/* 0xd1 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19501 /* Table4919 */
},
/* 0xd2 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19503 /* Table4920 */
},
/* 0xd3 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19505 /* Table4921 */
},
/* 0xd4 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19507 /* Table4922 */
},
/* 0xd5 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19509 /* Table4923 */
},
/* 0xd6 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19511 /* Table4924 */
},
/* 0xd7 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19513 /* Table4925 */
},
/* 0xd8 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19515 /* Table4926 */
},
/* 0xd9 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19517 /* Table4927 */
},
/* 0xda */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19519 /* Table4928 */
},
/* 0xdb */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19521 /* Table4929 */
},
/* 0xdc */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19523 /* Table4930 */
},
/* 0xdd */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19525 /* Table4931 */
},
/* 0xde */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19527 /* Table4932 */
},
/* 0xdf */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19529 /* Table4933 */
},
/* 0xe0 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19531 /* Table4934 */
},
/* 0xe1 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19533 /* Table4935 */
},
/* 0xe2 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19535 /* Table4936 */
},
/* 0xe3 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19537 /* Table4937 */
},
/* 0xe4 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19539 /* Table4938 */
},
/* 0xe5 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19541 /* Table4939 */
},
/* 0xe6 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19543 /* Table4940 */
},
/* 0xe7 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19545 /* Table4941 */
},
/* 0xe8 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19547 /* Table4942 */
},
/* 0xe9 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19549 /* Table4943 */
},
/* 0xea */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19551 /* Table4944 */
},
/* 0xeb */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19553 /* Table4945 */
},
/* 0xec */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19555 /* Table4946 */
},
/* 0xed */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19557 /* Table4947 */
},
/* 0xee */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19559 /* Table4948 */
},
/* 0xef */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19561 /* Table4949 */
},
/* 0xf0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf1 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19563 /* Table4950 */
},
/* 0xf2 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19565 /* Table4951 */
},
/* 0xf3 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19567 /* Table4952 */
},
/* 0xf4 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19569 /* Table4953 */
},
/* 0xf5 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19571 /* Table4954 */
},
/* 0xf6 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19573 /* Table4955 */
},
/* 0xf7 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19575 /* Table4956 */
},
/* 0xf8 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19577 /* Table4957 */
},
/* 0xf9 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19579 /* Table4958 */
},
/* 0xfa */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19581 /* Table4959 */
},
/* 0xfb */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19583 /* Table4960 */
},
/* 0xfc */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19585 /* Table4961 */
},
/* 0xfd */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19587 /* Table4962 */
},
/* 0xfe */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19589 /* Table4963 */
},
/* 0xff */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
}
}
}
, /* IC_64BIT_ADSIZE */
{ /* struct OpcodeDecision */
{
/* 0x00 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
19591 /* Table4964 */
},
/* 0x01 */
{ /* struct ModRMDecision */
MODRM_SPLITMISC,
19607 /* Table4965 */
},
/* 0x02 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19679 /* Table4966 */
},
/* 0x03 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19681 /* Table4967 */
},
/* 0x04 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x05 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
19683 /* Table4968 */
},
/* 0x06 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
19684 /* Table4969 */
},
/* 0x07 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
19685 /* Table4970 */
},
/* 0x08 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
19686 /* Table4971 */
},
/* 0x09 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
19687 /* Table4972 */
},
/* 0x0a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0b */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
19688 /* Table4973 */
},
/* 0x0c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0d */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
19689 /* Table4974 */
},
/* 0x0e */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
19705 /* Table4975 */
},
/* 0x0f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x10 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19706 /* Table4976 */
},
/* 0x11 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19708 /* Table4977 */
},
/* 0x12 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19710 /* Table4978 */
},
/* 0x13 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19712 /* Table4979 */
},
/* 0x14 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19714 /* Table4980 */
},
/* 0x15 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19716 /* Table4981 */
},
/* 0x16 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19718 /* Table4982 */
},
/* 0x17 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19720 /* Table4983 */
},
/* 0x18 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
19722 /* Table4984 */
},
/* 0x19 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1f */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19738 /* Table4985 */
},
/* 0x20 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19740 /* Table4986 */
},
/* 0x21 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19742 /* Table4987 */
},
/* 0x22 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19744 /* Table4988 */
},
/* 0x23 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19746 /* Table4989 */
},
/* 0x24 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x25 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x26 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x27 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x28 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19748 /* Table4990 */
},
/* 0x29 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19750 /* Table4991 */
},
/* 0x2a */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19752 /* Table4992 */
},
/* 0x2b */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19754 /* Table4993 */
},
/* 0x2c */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19756 /* Table4994 */
},
/* 0x2d */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19758 /* Table4995 */
},
/* 0x2e */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19760 /* Table4996 */
},
/* 0x2f */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19762 /* Table4997 */
},
/* 0x30 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
19764 /* Table4998 */
},
/* 0x31 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
19765 /* Table4999 */
},
/* 0x32 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
19766 /* Table5000 */
},
/* 0x33 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
19767 /* Table5001 */
},
/* 0x34 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
19768 /* Table5002 */
},
/* 0x35 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
19769 /* Table5003 */
},
/* 0x36 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x37 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x38 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x39 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x40 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19770 /* Table5004 */
},
/* 0x41 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19772 /* Table5005 */
},
/* 0x42 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19774 /* Table5006 */
},
/* 0x43 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19776 /* Table5007 */
},
/* 0x44 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19778 /* Table5008 */
},
/* 0x45 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19780 /* Table5009 */
},
/* 0x46 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19782 /* Table5010 */
},
/* 0x47 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19784 /* Table5011 */
},
/* 0x48 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19786 /* Table5012 */
},
/* 0x49 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19788 /* Table5013 */
},
/* 0x4a */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19790 /* Table5014 */
},
/* 0x4b */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19792 /* Table5015 */
},
/* 0x4c */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19794 /* Table5016 */
},
/* 0x4d */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19796 /* Table5017 */
},
/* 0x4e */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19798 /* Table5018 */
},
/* 0x4f */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19800 /* Table5019 */
},
/* 0x50 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19802 /* Table5020 */
},
/* 0x51 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19804 /* Table5021 */
},
/* 0x52 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19806 /* Table5022 */
},
/* 0x53 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19808 /* Table5023 */
},
/* 0x54 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19810 /* Table5024 */
},
/* 0x55 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19812 /* Table5025 */
},
/* 0x56 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19814 /* Table5026 */
},
/* 0x57 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19816 /* Table5027 */
},
/* 0x58 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19818 /* Table5028 */
},
/* 0x59 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19820 /* Table5029 */
},
/* 0x5a */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19822 /* Table5030 */
},
/* 0x5b */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19824 /* Table5031 */
},
/* 0x5c */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19826 /* Table5032 */
},
/* 0x5d */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19828 /* Table5033 */
},
/* 0x5e */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19830 /* Table5034 */
},
/* 0x5f */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19832 /* Table5035 */
},
/* 0x60 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19834 /* Table5036 */
},
/* 0x61 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19836 /* Table5037 */
},
/* 0x62 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19838 /* Table5038 */
},
/* 0x63 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19840 /* Table5039 */
},
/* 0x64 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19842 /* Table5040 */
},
/* 0x65 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19844 /* Table5041 */
},
/* 0x66 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19846 /* Table5042 */
},
/* 0x67 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19848 /* Table5043 */
},
/* 0x68 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19850 /* Table5044 */
},
/* 0x69 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19852 /* Table5045 */
},
/* 0x6a */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19854 /* Table5046 */
},
/* 0x6b */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19856 /* Table5047 */
},
/* 0x6c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6e */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19858 /* Table5048 */
},
/* 0x6f */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19860 /* Table5049 */
},
/* 0x70 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19862 /* Table5050 */
},
/* 0x71 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
19864 /* Table5051 */
},
/* 0x72 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
19880 /* Table5052 */
},
/* 0x73 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
19896 /* Table5053 */
},
/* 0x74 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19912 /* Table5054 */
},
/* 0x75 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19914 /* Table5055 */
},
/* 0x76 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19916 /* Table5056 */
},
/* 0x77 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
19918 /* Table5057 */
},
/* 0x78 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19919 /* Table5058 */
},
/* 0x79 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19921 /* Table5059 */
},
/* 0x7a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7e */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19923 /* Table5060 */
},
/* 0x7f */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19925 /* Table5061 */
},
/* 0x80 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
19927 /* Table5062 */
},
/* 0x81 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
19928 /* Table5063 */
},
/* 0x82 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
19929 /* Table5064 */
},
/* 0x83 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
19930 /* Table5065 */
},
/* 0x84 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
19931 /* Table5066 */
},
/* 0x85 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
19932 /* Table5067 */
},
/* 0x86 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
19933 /* Table5068 */
},
/* 0x87 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
19934 /* Table5069 */
},
/* 0x88 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
19935 /* Table5070 */
},
/* 0x89 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
19936 /* Table5071 */
},
/* 0x8a */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
19937 /* Table5072 */
},
/* 0x8b */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
19938 /* Table5073 */
},
/* 0x8c */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
19939 /* Table5074 */
},
/* 0x8d */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
19940 /* Table5075 */
},
/* 0x8e */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
19941 /* Table5076 */
},
/* 0x8f */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
19942 /* Table5077 */
},
/* 0x90 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19943 /* Table5078 */
},
/* 0x91 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19945 /* Table5079 */
},
/* 0x92 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19947 /* Table5080 */
},
/* 0x93 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19949 /* Table5081 */
},
/* 0x94 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19951 /* Table5082 */
},
/* 0x95 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19953 /* Table5083 */
},
/* 0x96 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19955 /* Table5084 */
},
/* 0x97 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19957 /* Table5085 */
},
/* 0x98 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19959 /* Table5086 */
},
/* 0x99 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19961 /* Table5087 */
},
/* 0x9a */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19963 /* Table5088 */
},
/* 0x9b */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19965 /* Table5089 */
},
/* 0x9c */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19967 /* Table5090 */
},
/* 0x9d */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19969 /* Table5091 */
},
/* 0x9e */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19971 /* Table5092 */
},
/* 0x9f */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19973 /* Table5093 */
},
/* 0xa0 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
19975 /* Table5094 */
},
/* 0xa1 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
19976 /* Table5095 */
},
/* 0xa2 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
19977 /* Table5096 */
},
/* 0xa3 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19978 /* Table5097 */
},
/* 0xa4 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19980 /* Table5098 */
},
/* 0xa5 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19982 /* Table5099 */
},
/* 0xa6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa8 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
19984 /* Table5100 */
},
/* 0xa9 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
19985 /* Table5101 */
},
/* 0xaa */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
19986 /* Table5102 */
},
/* 0xab */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19987 /* Table5103 */
},
/* 0xac */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19989 /* Table5104 */
},
/* 0xad */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
19991 /* Table5105 */
},
/* 0xae */
{ /* struct ModRMDecision */
MODRM_SPLITMISC,
19993 /* Table5106 */
},
/* 0xaf */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20065 /* Table5107 */
},
/* 0xb0 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20067 /* Table5108 */
},
/* 0xb1 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20069 /* Table5109 */
},
/* 0xb2 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20071 /* Table5110 */
},
/* 0xb3 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20073 /* Table5111 */
},
/* 0xb4 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20075 /* Table5112 */
},
/* 0xb5 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20077 /* Table5113 */
},
/* 0xb6 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20079 /* Table5114 */
},
/* 0xb7 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20081 /* Table5115 */
},
/* 0xb8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb9 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
20083 /* Table5116 */
},
/* 0xba */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
20084 /* Table5117 */
},
/* 0xbb */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20100 /* Table5118 */
},
/* 0xbc */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20102 /* Table5119 */
},
/* 0xbd */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20104 /* Table5120 */
},
/* 0xbe */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20106 /* Table5121 */
},
/* 0xbf */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20108 /* Table5122 */
},
/* 0xc0 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20110 /* Table5123 */
},
/* 0xc1 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20112 /* Table5124 */
},
/* 0xc2 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20114 /* Table5125 */
},
/* 0xc3 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20116 /* Table5126 */
},
/* 0xc4 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20118 /* Table5127 */
},
/* 0xc5 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20120 /* Table5128 */
},
/* 0xc6 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20122 /* Table5129 */
},
/* 0xc7 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
20124 /* Table5130 */
},
/* 0xc8 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
20140 /* Table5131 */
},
/* 0xc9 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
20141 /* Table5132 */
},
/* 0xca */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
20142 /* Table5133 */
},
/* 0xcb */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
20143 /* Table5134 */
},
/* 0xcc */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
20144 /* Table5135 */
},
/* 0xcd */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
20145 /* Table5136 */
},
/* 0xce */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
20146 /* Table5137 */
},
/* 0xcf */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
20147 /* Table5138 */
},
/* 0xd0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd1 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20148 /* Table5139 */
},
/* 0xd2 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20150 /* Table5140 */
},
/* 0xd3 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20152 /* Table5141 */
},
/* 0xd4 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20154 /* Table5142 */
},
/* 0xd5 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20156 /* Table5143 */
},
/* 0xd6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd7 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20158 /* Table5144 */
},
/* 0xd8 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20160 /* Table5145 */
},
/* 0xd9 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20162 /* Table5146 */
},
/* 0xda */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20164 /* Table5147 */
},
/* 0xdb */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20166 /* Table5148 */
},
/* 0xdc */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20168 /* Table5149 */
},
/* 0xdd */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20170 /* Table5150 */
},
/* 0xde */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20172 /* Table5151 */
},
/* 0xdf */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20174 /* Table5152 */
},
/* 0xe0 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20176 /* Table5153 */
},
/* 0xe1 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20178 /* Table5154 */
},
/* 0xe2 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20180 /* Table5155 */
},
/* 0xe3 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20182 /* Table5156 */
},
/* 0xe4 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20184 /* Table5157 */
},
/* 0xe5 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20186 /* Table5158 */
},
/* 0xe6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe7 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20188 /* Table5159 */
},
/* 0xe8 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20190 /* Table5160 */
},
/* 0xe9 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20192 /* Table5161 */
},
/* 0xea */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20194 /* Table5162 */
},
/* 0xeb */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20196 /* Table5163 */
},
/* 0xec */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20198 /* Table5164 */
},
/* 0xed */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20200 /* Table5165 */
},
/* 0xee */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20202 /* Table5166 */
},
/* 0xef */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20204 /* Table5167 */
},
/* 0xf0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf1 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20206 /* Table5168 */
},
/* 0xf2 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20208 /* Table5169 */
},
/* 0xf3 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20210 /* Table5170 */
},
/* 0xf4 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20212 /* Table5171 */
},
/* 0xf5 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20214 /* Table5172 */
},
/* 0xf6 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20216 /* Table5173 */
},
/* 0xf7 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20218 /* Table5174 */
},
/* 0xf8 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20220 /* Table5175 */
},
/* 0xf9 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20222 /* Table5176 */
},
/* 0xfa */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20224 /* Table5177 */
},
/* 0xfb */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20226 /* Table5178 */
},
/* 0xfc */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20228 /* Table5179 */
},
/* 0xfd */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20230 /* Table5180 */
},
/* 0xfe */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20232 /* Table5181 */
},
/* 0xff */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
}
}
}
, /* IC_64BIT_XD */
{ /* struct OpcodeDecision */
{
/* 0x00 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
20234 /* Table5182 */
},
/* 0x01 */
{ /* struct ModRMDecision */
MODRM_SPLITMISC,
20250 /* Table5183 */
},
/* 0x02 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20322 /* Table5184 */
},
/* 0x03 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20324 /* Table5185 */
},
/* 0x04 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x05 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
20326 /* Table5186 */
},
/* 0x06 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
20327 /* Table5187 */
},
/* 0x07 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
20328 /* Table5188 */
},
/* 0x08 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
20329 /* Table5189 */
},
/* 0x09 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
20330 /* Table5190 */
},
/* 0x0a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0b */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
20331 /* Table5191 */
},
/* 0x0c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0d */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
20332 /* Table5192 */
},
/* 0x0e */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
20348 /* Table5193 */
},
/* 0x0f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x10 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20349 /* Table5194 */
},
/* 0x11 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20351 /* Table5195 */
},
/* 0x12 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20353 /* Table5196 */
},
/* 0x13 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20355 /* Table5197 */
},
/* 0x14 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20357 /* Table5198 */
},
/* 0x15 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20359 /* Table5199 */
},
/* 0x16 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20361 /* Table5200 */
},
/* 0x17 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20363 /* Table5201 */
},
/* 0x18 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
20365 /* Table5202 */
},
/* 0x19 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1f */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20381 /* Table5203 */
},
/* 0x20 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20383 /* Table5204 */
},
/* 0x21 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20385 /* Table5205 */
},
/* 0x22 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20387 /* Table5206 */
},
/* 0x23 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20389 /* Table5207 */
},
/* 0x24 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x25 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x26 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x27 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x28 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20391 /* Table5208 */
},
/* 0x29 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20393 /* Table5209 */
},
/* 0x2a */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20395 /* Table5210 */
},
/* 0x2b */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20397 /* Table5211 */
},
/* 0x2c */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20399 /* Table5212 */
},
/* 0x2d */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20401 /* Table5213 */
},
/* 0x2e */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20403 /* Table5214 */
},
/* 0x2f */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20405 /* Table5215 */
},
/* 0x30 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
20407 /* Table5216 */
},
/* 0x31 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
20408 /* Table5217 */
},
/* 0x32 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
20409 /* Table5218 */
},
/* 0x33 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
20410 /* Table5219 */
},
/* 0x34 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
20411 /* Table5220 */
},
/* 0x35 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
20412 /* Table5221 */
},
/* 0x36 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x37 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x38 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x39 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x40 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20413 /* Table5222 */
},
/* 0x41 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20415 /* Table5223 */
},
/* 0x42 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20417 /* Table5224 */
},
/* 0x43 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20419 /* Table5225 */
},
/* 0x44 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20421 /* Table5226 */
},
/* 0x45 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20423 /* Table5227 */
},
/* 0x46 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20425 /* Table5228 */
},
/* 0x47 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20427 /* Table5229 */
},
/* 0x48 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20429 /* Table5230 */
},
/* 0x49 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20431 /* Table5231 */
},
/* 0x4a */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20433 /* Table5232 */
},
/* 0x4b */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20435 /* Table5233 */
},
/* 0x4c */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20437 /* Table5234 */
},
/* 0x4d */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20439 /* Table5235 */
},
/* 0x4e */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20441 /* Table5236 */
},
/* 0x4f */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20443 /* Table5237 */
},
/* 0x50 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20445 /* Table5238 */
},
/* 0x51 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20447 /* Table5239 */
},
/* 0x52 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20449 /* Table5240 */
},
/* 0x53 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20451 /* Table5241 */
},
/* 0x54 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20453 /* Table5242 */
},
/* 0x55 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20455 /* Table5243 */
},
/* 0x56 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20457 /* Table5244 */
},
/* 0x57 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20459 /* Table5245 */
},
/* 0x58 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20461 /* Table5246 */
},
/* 0x59 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20463 /* Table5247 */
},
/* 0x5a */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20465 /* Table5248 */
},
/* 0x5b */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20467 /* Table5249 */
},
/* 0x5c */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20469 /* Table5250 */
},
/* 0x5d */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20471 /* Table5251 */
},
/* 0x5e */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20473 /* Table5252 */
},
/* 0x5f */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20475 /* Table5253 */
},
/* 0x60 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20477 /* Table5254 */
},
/* 0x61 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20479 /* Table5255 */
},
/* 0x62 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20481 /* Table5256 */
},
/* 0x63 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20483 /* Table5257 */
},
/* 0x64 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20485 /* Table5258 */
},
/* 0x65 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20487 /* Table5259 */
},
/* 0x66 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20489 /* Table5260 */
},
/* 0x67 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20491 /* Table5261 */
},
/* 0x68 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20493 /* Table5262 */
},
/* 0x69 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20495 /* Table5263 */
},
/* 0x6a */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20497 /* Table5264 */
},
/* 0x6b */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20499 /* Table5265 */
},
/* 0x6c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6e */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20501 /* Table5266 */
},
/* 0x6f */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20503 /* Table5267 */
},
/* 0x70 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20505 /* Table5268 */
},
/* 0x71 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
20507 /* Table5269 */
},
/* 0x72 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
20523 /* Table5270 */
},
/* 0x73 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
20539 /* Table5271 */
},
/* 0x74 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20555 /* Table5272 */
},
/* 0x75 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20557 /* Table5273 */
},
/* 0x76 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20559 /* Table5274 */
},
/* 0x77 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
20561 /* Table5275 */
},
/* 0x78 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20562 /* Table5276 */
},
/* 0x79 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20564 /* Table5277 */
},
/* 0x7a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7c */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20566 /* Table5278 */
},
/* 0x7d */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20568 /* Table5279 */
},
/* 0x7e */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20570 /* Table5280 */
},
/* 0x7f */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20572 /* Table5281 */
},
/* 0x80 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
20574 /* Table5282 */
},
/* 0x81 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
20575 /* Table5283 */
},
/* 0x82 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
20576 /* Table5284 */
},
/* 0x83 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
20577 /* Table5285 */
},
/* 0x84 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
20578 /* Table5286 */
},
/* 0x85 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
20579 /* Table5287 */
},
/* 0x86 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
20580 /* Table5288 */
},
/* 0x87 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
20581 /* Table5289 */
},
/* 0x88 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
20582 /* Table5290 */
},
/* 0x89 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
20583 /* Table5291 */
},
/* 0x8a */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
20584 /* Table5292 */
},
/* 0x8b */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
20585 /* Table5293 */
},
/* 0x8c */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
20586 /* Table5294 */
},
/* 0x8d */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
20587 /* Table5295 */
},
/* 0x8e */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
20588 /* Table5296 */
},
/* 0x8f */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
20589 /* Table5297 */
},
/* 0x90 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20590 /* Table5298 */
},
/* 0x91 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20592 /* Table5299 */
},
/* 0x92 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20594 /* Table5300 */
},
/* 0x93 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20596 /* Table5301 */
},
/* 0x94 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20598 /* Table5302 */
},
/* 0x95 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20600 /* Table5303 */
},
/* 0x96 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20602 /* Table5304 */
},
/* 0x97 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20604 /* Table5305 */
},
/* 0x98 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20606 /* Table5306 */
},
/* 0x99 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20608 /* Table5307 */
},
/* 0x9a */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20610 /* Table5308 */
},
/* 0x9b */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20612 /* Table5309 */
},
/* 0x9c */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20614 /* Table5310 */
},
/* 0x9d */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20616 /* Table5311 */
},
/* 0x9e */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20618 /* Table5312 */
},
/* 0x9f */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20620 /* Table5313 */
},
/* 0xa0 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
20622 /* Table5314 */
},
/* 0xa1 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
20623 /* Table5315 */
},
/* 0xa2 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
20624 /* Table5316 */
},
/* 0xa3 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20625 /* Table5317 */
},
/* 0xa4 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20627 /* Table5318 */
},
/* 0xa5 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20629 /* Table5319 */
},
/* 0xa6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa8 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
20631 /* Table5320 */
},
/* 0xa9 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
20632 /* Table5321 */
},
/* 0xaa */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
20633 /* Table5322 */
},
/* 0xab */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20634 /* Table5323 */
},
/* 0xac */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20636 /* Table5324 */
},
/* 0xad */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20638 /* Table5325 */
},
/* 0xae */
{ /* struct ModRMDecision */
MODRM_SPLITMISC,
20640 /* Table5326 */
},
/* 0xaf */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20712 /* Table5327 */
},
/* 0xb0 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20714 /* Table5328 */
},
/* 0xb1 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20716 /* Table5329 */
},
/* 0xb2 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20718 /* Table5330 */
},
/* 0xb3 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20720 /* Table5331 */
},
/* 0xb4 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20722 /* Table5332 */
},
/* 0xb5 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20724 /* Table5333 */
},
/* 0xb6 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20726 /* Table5334 */
},
/* 0xb7 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20728 /* Table5335 */
},
/* 0xb8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb9 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
20730 /* Table5336 */
},
/* 0xba */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
20731 /* Table5337 */
},
/* 0xbb */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20747 /* Table5338 */
},
/* 0xbc */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20749 /* Table5339 */
},
/* 0xbd */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20751 /* Table5340 */
},
/* 0xbe */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20753 /* Table5341 */
},
/* 0xbf */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20755 /* Table5342 */
},
/* 0xc0 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20757 /* Table5343 */
},
/* 0xc1 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20759 /* Table5344 */
},
/* 0xc2 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20761 /* Table5345 */
},
/* 0xc3 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20763 /* Table5346 */
},
/* 0xc4 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20765 /* Table5347 */
},
/* 0xc5 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20767 /* Table5348 */
},
/* 0xc6 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20769 /* Table5349 */
},
/* 0xc7 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
20771 /* Table5350 */
},
/* 0xc8 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
20787 /* Table5351 */
},
/* 0xc9 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
20788 /* Table5352 */
},
/* 0xca */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
20789 /* Table5353 */
},
/* 0xcb */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
20790 /* Table5354 */
},
/* 0xcc */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
20791 /* Table5355 */
},
/* 0xcd */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
20792 /* Table5356 */
},
/* 0xce */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
20793 /* Table5357 */
},
/* 0xcf */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
20794 /* Table5358 */
},
/* 0xd0 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20795 /* Table5359 */
},
/* 0xd1 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20797 /* Table5360 */
},
/* 0xd2 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20799 /* Table5361 */
},
/* 0xd3 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20801 /* Table5362 */
},
/* 0xd4 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20803 /* Table5363 */
},
/* 0xd5 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20805 /* Table5364 */
},
/* 0xd6 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20807 /* Table5365 */
},
/* 0xd7 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20809 /* Table5366 */
},
/* 0xd8 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20811 /* Table5367 */
},
/* 0xd9 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20813 /* Table5368 */
},
/* 0xda */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20815 /* Table5369 */
},
/* 0xdb */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20817 /* Table5370 */
},
/* 0xdc */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20819 /* Table5371 */
},
/* 0xdd */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20821 /* Table5372 */
},
/* 0xde */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20823 /* Table5373 */
},
/* 0xdf */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20825 /* Table5374 */
},
/* 0xe0 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20827 /* Table5375 */
},
/* 0xe1 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20829 /* Table5376 */
},
/* 0xe2 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20831 /* Table5377 */
},
/* 0xe3 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20833 /* Table5378 */
},
/* 0xe4 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20835 /* Table5379 */
},
/* 0xe5 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20837 /* Table5380 */
},
/* 0xe6 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20839 /* Table5381 */
},
/* 0xe7 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20841 /* Table5382 */
},
/* 0xe8 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20843 /* Table5383 */
},
/* 0xe9 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20845 /* Table5384 */
},
/* 0xea */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20847 /* Table5385 */
},
/* 0xeb */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20849 /* Table5386 */
},
/* 0xec */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20851 /* Table5387 */
},
/* 0xed */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20853 /* Table5388 */
},
/* 0xee */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20855 /* Table5389 */
},
/* 0xef */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20857 /* Table5390 */
},
/* 0xf0 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20859 /* Table5391 */
},
/* 0xf1 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20861 /* Table5392 */
},
/* 0xf2 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20863 /* Table5393 */
},
/* 0xf3 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20865 /* Table5394 */
},
/* 0xf4 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20867 /* Table5395 */
},
/* 0xf5 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20869 /* Table5396 */
},
/* 0xf6 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20871 /* Table5397 */
},
/* 0xf7 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20873 /* Table5398 */
},
/* 0xf8 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20875 /* Table5399 */
},
/* 0xf9 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20877 /* Table5400 */
},
/* 0xfa */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20879 /* Table5401 */
},
/* 0xfb */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20881 /* Table5402 */
},
/* 0xfc */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20883 /* Table5403 */
},
/* 0xfd */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20885 /* Table5404 */
},
/* 0xfe */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20887 /* Table5405 */
},
/* 0xff */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
}
}
}
, /* IC_64BIT_XS */
{ /* struct OpcodeDecision */
{
/* 0x00 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
20889 /* Table5406 */
},
/* 0x01 */
{ /* struct ModRMDecision */
MODRM_SPLITMISC,
20905 /* Table5407 */
},
/* 0x02 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20977 /* Table5408 */
},
/* 0x03 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
20979 /* Table5409 */
},
/* 0x04 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x05 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
20981 /* Table5410 */
},
/* 0x06 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
20982 /* Table5411 */
},
/* 0x07 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
20983 /* Table5412 */
},
/* 0x08 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
20984 /* Table5413 */
},
/* 0x09 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
20985 /* Table5414 */
},
/* 0x0a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0b */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
20986 /* Table5415 */
},
/* 0x0c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0d */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
20987 /* Table5416 */
},
/* 0x0e */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
21003 /* Table5417 */
},
/* 0x0f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x10 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21004 /* Table5418 */
},
/* 0x11 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21006 /* Table5419 */
},
/* 0x12 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21008 /* Table5420 */
},
/* 0x13 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21010 /* Table5421 */
},
/* 0x14 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21012 /* Table5422 */
},
/* 0x15 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21014 /* Table5423 */
},
/* 0x16 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21016 /* Table5424 */
},
/* 0x17 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21018 /* Table5425 */
},
/* 0x18 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
21020 /* Table5426 */
},
/* 0x19 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1f */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21036 /* Table5427 */
},
/* 0x20 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21038 /* Table5428 */
},
/* 0x21 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21040 /* Table5429 */
},
/* 0x22 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21042 /* Table5430 */
},
/* 0x23 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21044 /* Table5431 */
},
/* 0x24 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x25 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x26 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x27 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x28 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21046 /* Table5432 */
},
/* 0x29 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21048 /* Table5433 */
},
/* 0x2a */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21050 /* Table5434 */
},
/* 0x2b */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21052 /* Table5435 */
},
/* 0x2c */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21054 /* Table5436 */
},
/* 0x2d */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21056 /* Table5437 */
},
/* 0x2e */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21058 /* Table5438 */
},
/* 0x2f */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21060 /* Table5439 */
},
/* 0x30 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
21062 /* Table5440 */
},
/* 0x31 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
21063 /* Table5441 */
},
/* 0x32 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
21064 /* Table5442 */
},
/* 0x33 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
21065 /* Table5443 */
},
/* 0x34 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
21066 /* Table5444 */
},
/* 0x35 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
21067 /* Table5445 */
},
/* 0x36 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x37 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x38 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x39 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x40 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21068 /* Table5446 */
},
/* 0x41 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21070 /* Table5447 */
},
/* 0x42 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21072 /* Table5448 */
},
/* 0x43 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21074 /* Table5449 */
},
/* 0x44 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21076 /* Table5450 */
},
/* 0x45 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21078 /* Table5451 */
},
/* 0x46 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21080 /* Table5452 */
},
/* 0x47 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21082 /* Table5453 */
},
/* 0x48 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21084 /* Table5454 */
},
/* 0x49 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21086 /* Table5455 */
},
/* 0x4a */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21088 /* Table5456 */
},
/* 0x4b */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21090 /* Table5457 */
},
/* 0x4c */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21092 /* Table5458 */
},
/* 0x4d */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21094 /* Table5459 */
},
/* 0x4e */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21096 /* Table5460 */
},
/* 0x4f */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21098 /* Table5461 */
},
/* 0x50 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21100 /* Table5462 */
},
/* 0x51 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21102 /* Table5463 */
},
/* 0x52 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21104 /* Table5464 */
},
/* 0x53 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21106 /* Table5465 */
},
/* 0x54 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21108 /* Table5466 */
},
/* 0x55 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21110 /* Table5467 */
},
/* 0x56 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21112 /* Table5468 */
},
/* 0x57 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21114 /* Table5469 */
},
/* 0x58 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21116 /* Table5470 */
},
/* 0x59 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21118 /* Table5471 */
},
/* 0x5a */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21120 /* Table5472 */
},
/* 0x5b */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21122 /* Table5473 */
},
/* 0x5c */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21124 /* Table5474 */
},
/* 0x5d */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21126 /* Table5475 */
},
/* 0x5e */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21128 /* Table5476 */
},
/* 0x5f */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21130 /* Table5477 */
},
/* 0x60 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21132 /* Table5478 */
},
/* 0x61 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21134 /* Table5479 */
},
/* 0x62 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21136 /* Table5480 */
},
/* 0x63 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21138 /* Table5481 */
},
/* 0x64 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21140 /* Table5482 */
},
/* 0x65 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21142 /* Table5483 */
},
/* 0x66 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21144 /* Table5484 */
},
/* 0x67 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21146 /* Table5485 */
},
/* 0x68 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21148 /* Table5486 */
},
/* 0x69 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21150 /* Table5487 */
},
/* 0x6a */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21152 /* Table5488 */
},
/* 0x6b */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21154 /* Table5489 */
},
/* 0x6c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6e */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21156 /* Table5490 */
},
/* 0x6f */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21158 /* Table5491 */
},
/* 0x70 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21160 /* Table5492 */
},
/* 0x71 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
21162 /* Table5493 */
},
/* 0x72 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
21178 /* Table5494 */
},
/* 0x73 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
21194 /* Table5495 */
},
/* 0x74 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21210 /* Table5496 */
},
/* 0x75 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21212 /* Table5497 */
},
/* 0x76 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21214 /* Table5498 */
},
/* 0x77 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
21216 /* Table5499 */
},
/* 0x78 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21217 /* Table5500 */
},
/* 0x79 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21219 /* Table5501 */
},
/* 0x7a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7e */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21221 /* Table5502 */
},
/* 0x7f */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21223 /* Table5503 */
},
/* 0x80 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
21225 /* Table5504 */
},
/* 0x81 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
21226 /* Table5505 */
},
/* 0x82 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
21227 /* Table5506 */
},
/* 0x83 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
21228 /* Table5507 */
},
/* 0x84 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
21229 /* Table5508 */
},
/* 0x85 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
21230 /* Table5509 */
},
/* 0x86 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
21231 /* Table5510 */
},
/* 0x87 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
21232 /* Table5511 */
},
/* 0x88 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
21233 /* Table5512 */
},
/* 0x89 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
21234 /* Table5513 */
},
/* 0x8a */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
21235 /* Table5514 */
},
/* 0x8b */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
21236 /* Table5515 */
},
/* 0x8c */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
21237 /* Table5516 */
},
/* 0x8d */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
21238 /* Table5517 */
},
/* 0x8e */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
21239 /* Table5518 */
},
/* 0x8f */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
21240 /* Table5519 */
},
/* 0x90 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21241 /* Table5520 */
},
/* 0x91 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21243 /* Table5521 */
},
/* 0x92 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21245 /* Table5522 */
},
/* 0x93 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21247 /* Table5523 */
},
/* 0x94 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21249 /* Table5524 */
},
/* 0x95 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21251 /* Table5525 */
},
/* 0x96 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21253 /* Table5526 */
},
/* 0x97 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21255 /* Table5527 */
},
/* 0x98 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21257 /* Table5528 */
},
/* 0x99 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21259 /* Table5529 */
},
/* 0x9a */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21261 /* Table5530 */
},
/* 0x9b */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21263 /* Table5531 */
},
/* 0x9c */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21265 /* Table5532 */
},
/* 0x9d */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21267 /* Table5533 */
},
/* 0x9e */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21269 /* Table5534 */
},
/* 0x9f */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21271 /* Table5535 */
},
/* 0xa0 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
21273 /* Table5536 */
},
/* 0xa1 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
21274 /* Table5537 */
},
/* 0xa2 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
21275 /* Table5538 */
},
/* 0xa3 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21276 /* Table5539 */
},
/* 0xa4 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21278 /* Table5540 */
},
/* 0xa5 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21280 /* Table5541 */
},
/* 0xa6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa8 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
21282 /* Table5542 */
},
/* 0xa9 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
21283 /* Table5543 */
},
/* 0xaa */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
21284 /* Table5544 */
},
/* 0xab */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21285 /* Table5545 */
},
/* 0xac */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21287 /* Table5546 */
},
/* 0xad */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21289 /* Table5547 */
},
/* 0xae */
{ /* struct ModRMDecision */
MODRM_SPLITMISC,
21291 /* Table5548 */
},
/* 0xaf */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21363 /* Table5549 */
},
/* 0xb0 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21365 /* Table5550 */
},
/* 0xb1 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21367 /* Table5551 */
},
/* 0xb2 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21369 /* Table5552 */
},
/* 0xb3 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21371 /* Table5553 */
},
/* 0xb4 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21373 /* Table5554 */
},
/* 0xb5 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21375 /* Table5555 */
},
/* 0xb6 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21377 /* Table5556 */
},
/* 0xb7 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21379 /* Table5557 */
},
/* 0xb8 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21381 /* Table5558 */
},
/* 0xb9 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
21383 /* Table5559 */
},
/* 0xba */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
21384 /* Table5560 */
},
/* 0xbb */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21400 /* Table5561 */
},
/* 0xbc */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21402 /* Table5562 */
},
/* 0xbd */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21404 /* Table5563 */
},
/* 0xbe */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21406 /* Table5564 */
},
/* 0xbf */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21408 /* Table5565 */
},
/* 0xc0 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21410 /* Table5566 */
},
/* 0xc1 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21412 /* Table5567 */
},
/* 0xc2 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21414 /* Table5568 */
},
/* 0xc3 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21416 /* Table5569 */
},
/* 0xc4 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21418 /* Table5570 */
},
/* 0xc5 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21420 /* Table5571 */
},
/* 0xc6 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21422 /* Table5572 */
},
/* 0xc7 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
21424 /* Table5573 */
},
/* 0xc8 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
21440 /* Table5574 */
},
/* 0xc9 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
21441 /* Table5575 */
},
/* 0xca */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
21442 /* Table5576 */
},
/* 0xcb */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
21443 /* Table5577 */
},
/* 0xcc */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
21444 /* Table5578 */
},
/* 0xcd */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
21445 /* Table5579 */
},
/* 0xce */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
21446 /* Table5580 */
},
/* 0xcf */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
21447 /* Table5581 */
},
/* 0xd0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd1 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21448 /* Table5582 */
},
/* 0xd2 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21450 /* Table5583 */
},
/* 0xd3 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21452 /* Table5584 */
},
/* 0xd4 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21454 /* Table5585 */
},
/* 0xd5 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21456 /* Table5586 */
},
/* 0xd6 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21458 /* Table5587 */
},
/* 0xd7 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21460 /* Table5588 */
},
/* 0xd8 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21462 /* Table5589 */
},
/* 0xd9 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21464 /* Table5590 */
},
/* 0xda */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21466 /* Table5591 */
},
/* 0xdb */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21468 /* Table5592 */
},
/* 0xdc */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21470 /* Table5593 */
},
/* 0xdd */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21472 /* Table5594 */
},
/* 0xde */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21474 /* Table5595 */
},
/* 0xdf */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21476 /* Table5596 */
},
/* 0xe0 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21478 /* Table5597 */
},
/* 0xe1 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21480 /* Table5598 */
},
/* 0xe2 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21482 /* Table5599 */
},
/* 0xe3 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21484 /* Table5600 */
},
/* 0xe4 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21486 /* Table5601 */
},
/* 0xe5 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21488 /* Table5602 */
},
/* 0xe6 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21490 /* Table5603 */
},
/* 0xe7 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21492 /* Table5604 */
},
/* 0xe8 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21494 /* Table5605 */
},
/* 0xe9 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21496 /* Table5606 */
},
/* 0xea */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21498 /* Table5607 */
},
/* 0xeb */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21500 /* Table5608 */
},
/* 0xec */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21502 /* Table5609 */
},
/* 0xed */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21504 /* Table5610 */
},
/* 0xee */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21506 /* Table5611 */
},
/* 0xef */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21508 /* Table5612 */
},
/* 0xf0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf1 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21510 /* Table5613 */
},
/* 0xf2 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21512 /* Table5614 */
},
/* 0xf3 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21514 /* Table5615 */
},
/* 0xf4 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21516 /* Table5616 */
},
/* 0xf5 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21518 /* Table5617 */
},
/* 0xf6 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21520 /* Table5618 */
},
/* 0xf7 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21522 /* Table5619 */
},
/* 0xf8 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21524 /* Table5620 */
},
/* 0xf9 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21526 /* Table5621 */
},
/* 0xfa */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21528 /* Table5622 */
},
/* 0xfb */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21530 /* Table5623 */
},
/* 0xfc */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21532 /* Table5624 */
},
/* 0xfd */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21534 /* Table5625 */
},
/* 0xfe */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21536 /* Table5626 */
},
/* 0xff */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
}
}
}
, /* IC_64BIT_XD_OPSIZE */
{ /* struct OpcodeDecision */
{
/* 0x00 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x01 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x02 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x03 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x04 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x05 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x06 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x07 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x08 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x09 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x10 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x11 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x12 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x13 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x14 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x15 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x16 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x17 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x18 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x19 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x20 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x21 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x22 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x23 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x24 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x25 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x26 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x27 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x28 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x29 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x30 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x31 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x32 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x33 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x34 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x35 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x36 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x37 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x38 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x39 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x40 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x41 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x42 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x43 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x44 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x45 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x46 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x47 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x48 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x49 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x50 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x51 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x52 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x53 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x54 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x55 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x56 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x57 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x58 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x59 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x60 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x61 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x62 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x63 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x64 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x65 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x66 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x67 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x68 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x69 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x70 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x71 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x72 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x73 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x74 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x75 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x76 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x77 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x78 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x79 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x80 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x81 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x82 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x83 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x84 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x85 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x86 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x87 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x88 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x89 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x90 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x91 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x92 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x93 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x94 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x95 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x96 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x97 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x98 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x99 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xab */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xac */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xad */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xae */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xba */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xca */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xce */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xda */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xde */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xea */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xeb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xec */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xed */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xee */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xef */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xff */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
}
}
}
, /* IC_64BIT_XS_OPSIZE */
{ /* struct OpcodeDecision */
{
/* 0x00 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x01 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x02 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x03 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x04 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x05 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x06 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x07 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x08 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x09 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x10 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x11 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x12 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x13 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x14 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x15 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x16 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x17 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x18 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x19 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x20 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x21 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x22 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x23 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x24 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x25 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x26 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x27 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x28 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x29 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x30 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x31 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x32 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x33 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x34 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x35 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x36 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x37 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x38 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x39 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x40 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x41 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x42 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x43 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x44 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x45 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x46 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x47 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x48 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x49 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x50 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x51 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x52 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x53 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x54 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x55 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x56 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x57 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x58 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x59 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x60 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x61 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x62 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x63 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x64 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x65 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x66 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x67 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x68 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x69 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x70 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x71 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x72 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x73 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x74 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x75 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x76 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x77 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x78 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x79 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x80 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x81 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x82 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x83 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x84 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x85 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x86 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x87 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x88 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x89 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x90 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x91 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x92 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x93 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x94 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x95 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x96 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x97 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x98 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x99 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xab */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xac */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xad */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xae */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb8 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21538 /* Table5627 */
},
/* 0xb9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xba */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbc */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21540 /* Table5628 */
},
/* 0xbd */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21542 /* Table5629 */
},
/* 0xbe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xca */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xce */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xda */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xde */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xea */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xeb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xec */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xed */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xee */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xef */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xff */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
}
}
}
, /* IC_64BIT_REXW_XS */
{ /* struct OpcodeDecision */
{
/* 0x00 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
21544 /* Table5630 */
},
/* 0x01 */
{ /* struct ModRMDecision */
MODRM_SPLITMISC,
21560 /* Table5631 */
},
/* 0x02 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21632 /* Table5632 */
},
/* 0x03 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21634 /* Table5633 */
},
/* 0x04 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x05 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
21636 /* Table5634 */
},
/* 0x06 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
21637 /* Table5635 */
},
/* 0x07 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
21638 /* Table5636 */
},
/* 0x08 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
21639 /* Table5637 */
},
/* 0x09 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
21640 /* Table5638 */
},
/* 0x0a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0b */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
21641 /* Table5639 */
},
/* 0x0c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0d */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
21642 /* Table5640 */
},
/* 0x0e */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
21658 /* Table5641 */
},
/* 0x0f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x10 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21659 /* Table5642 */
},
/* 0x11 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21661 /* Table5643 */
},
/* 0x12 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21663 /* Table5644 */
},
/* 0x13 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21665 /* Table5645 */
},
/* 0x14 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21667 /* Table5646 */
},
/* 0x15 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21669 /* Table5647 */
},
/* 0x16 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21671 /* Table5648 */
},
/* 0x17 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21673 /* Table5649 */
},
/* 0x18 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
21675 /* Table5650 */
},
/* 0x19 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1f */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21691 /* Table5651 */
},
/* 0x20 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21693 /* Table5652 */
},
/* 0x21 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21695 /* Table5653 */
},
/* 0x22 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21697 /* Table5654 */
},
/* 0x23 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21699 /* Table5655 */
},
/* 0x24 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x25 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x26 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x27 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x28 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21701 /* Table5656 */
},
/* 0x29 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21703 /* Table5657 */
},
/* 0x2a */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21705 /* Table5658 */
},
/* 0x2b */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21707 /* Table5659 */
},
/* 0x2c */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21709 /* Table5660 */
},
/* 0x2d */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21711 /* Table5661 */
},
/* 0x2e */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21713 /* Table5662 */
},
/* 0x2f */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21715 /* Table5663 */
},
/* 0x30 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
21717 /* Table5664 */
},
/* 0x31 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
21718 /* Table5665 */
},
/* 0x32 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
21719 /* Table5666 */
},
/* 0x33 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
21720 /* Table5667 */
},
/* 0x34 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
21721 /* Table5668 */
},
/* 0x35 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
21722 /* Table5669 */
},
/* 0x36 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x37 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x38 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x39 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x40 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21723 /* Table5670 */
},
/* 0x41 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21725 /* Table5671 */
},
/* 0x42 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21727 /* Table5672 */
},
/* 0x43 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21729 /* Table5673 */
},
/* 0x44 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21731 /* Table5674 */
},
/* 0x45 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21733 /* Table5675 */
},
/* 0x46 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21735 /* Table5676 */
},
/* 0x47 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21737 /* Table5677 */
},
/* 0x48 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21739 /* Table5678 */
},
/* 0x49 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21741 /* Table5679 */
},
/* 0x4a */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21743 /* Table5680 */
},
/* 0x4b */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21745 /* Table5681 */
},
/* 0x4c */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21747 /* Table5682 */
},
/* 0x4d */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21749 /* Table5683 */
},
/* 0x4e */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21751 /* Table5684 */
},
/* 0x4f */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21753 /* Table5685 */
},
/* 0x50 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21755 /* Table5686 */
},
/* 0x51 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21757 /* Table5687 */
},
/* 0x52 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21759 /* Table5688 */
},
/* 0x53 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21761 /* Table5689 */
},
/* 0x54 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21763 /* Table5690 */
},
/* 0x55 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21765 /* Table5691 */
},
/* 0x56 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21767 /* Table5692 */
},
/* 0x57 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21769 /* Table5693 */
},
/* 0x58 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21771 /* Table5694 */
},
/* 0x59 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21773 /* Table5695 */
},
/* 0x5a */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21775 /* Table5696 */
},
/* 0x5b */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21777 /* Table5697 */
},
/* 0x5c */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21779 /* Table5698 */
},
/* 0x5d */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21781 /* Table5699 */
},
/* 0x5e */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21783 /* Table5700 */
},
/* 0x5f */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21785 /* Table5701 */
},
/* 0x60 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21787 /* Table5702 */
},
/* 0x61 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21789 /* Table5703 */
},
/* 0x62 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21791 /* Table5704 */
},
/* 0x63 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21793 /* Table5705 */
},
/* 0x64 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21795 /* Table5706 */
},
/* 0x65 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21797 /* Table5707 */
},
/* 0x66 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21799 /* Table5708 */
},
/* 0x67 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21801 /* Table5709 */
},
/* 0x68 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21803 /* Table5710 */
},
/* 0x69 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21805 /* Table5711 */
},
/* 0x6a */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21807 /* Table5712 */
},
/* 0x6b */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21809 /* Table5713 */
},
/* 0x6c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6e */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21811 /* Table5714 */
},
/* 0x6f */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21813 /* Table5715 */
},
/* 0x70 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21815 /* Table5716 */
},
/* 0x71 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
21817 /* Table5717 */
},
/* 0x72 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
21833 /* Table5718 */
},
/* 0x73 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
21849 /* Table5719 */
},
/* 0x74 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21865 /* Table5720 */
},
/* 0x75 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21867 /* Table5721 */
},
/* 0x76 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21869 /* Table5722 */
},
/* 0x77 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
21871 /* Table5723 */
},
/* 0x78 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21872 /* Table5724 */
},
/* 0x79 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21874 /* Table5725 */
},
/* 0x7a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7e */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21876 /* Table5726 */
},
/* 0x7f */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21878 /* Table5727 */
},
/* 0x80 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
21880 /* Table5728 */
},
/* 0x81 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
21881 /* Table5729 */
},
/* 0x82 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
21882 /* Table5730 */
},
/* 0x83 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
21883 /* Table5731 */
},
/* 0x84 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
21884 /* Table5732 */
},
/* 0x85 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
21885 /* Table5733 */
},
/* 0x86 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
21886 /* Table5734 */
},
/* 0x87 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
21887 /* Table5735 */
},
/* 0x88 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
21888 /* Table5736 */
},
/* 0x89 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
21889 /* Table5737 */
},
/* 0x8a */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
21890 /* Table5738 */
},
/* 0x8b */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
21891 /* Table5739 */
},
/* 0x8c */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
21892 /* Table5740 */
},
/* 0x8d */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
21893 /* Table5741 */
},
/* 0x8e */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
21894 /* Table5742 */
},
/* 0x8f */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
21895 /* Table5743 */
},
/* 0x90 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21896 /* Table5744 */
},
/* 0x91 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21898 /* Table5745 */
},
/* 0x92 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21900 /* Table5746 */
},
/* 0x93 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21902 /* Table5747 */
},
/* 0x94 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21904 /* Table5748 */
},
/* 0x95 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21906 /* Table5749 */
},
/* 0x96 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21908 /* Table5750 */
},
/* 0x97 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21910 /* Table5751 */
},
/* 0x98 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21912 /* Table5752 */
},
/* 0x99 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21914 /* Table5753 */
},
/* 0x9a */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21916 /* Table5754 */
},
/* 0x9b */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21918 /* Table5755 */
},
/* 0x9c */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21920 /* Table5756 */
},
/* 0x9d */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21922 /* Table5757 */
},
/* 0x9e */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21924 /* Table5758 */
},
/* 0x9f */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21926 /* Table5759 */
},
/* 0xa0 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
21928 /* Table5760 */
},
/* 0xa1 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
21929 /* Table5761 */
},
/* 0xa2 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
21930 /* Table5762 */
},
/* 0xa3 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21931 /* Table5763 */
},
/* 0xa4 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21933 /* Table5764 */
},
/* 0xa5 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21935 /* Table5765 */
},
/* 0xa6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa8 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
21937 /* Table5766 */
},
/* 0xa9 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
21938 /* Table5767 */
},
/* 0xaa */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
21939 /* Table5768 */
},
/* 0xab */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21940 /* Table5769 */
},
/* 0xac */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21942 /* Table5770 */
},
/* 0xad */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
21944 /* Table5771 */
},
/* 0xae */
{ /* struct ModRMDecision */
MODRM_SPLITMISC,
21946 /* Table5772 */
},
/* 0xaf */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22018 /* Table5773 */
},
/* 0xb0 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22020 /* Table5774 */
},
/* 0xb1 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22022 /* Table5775 */
},
/* 0xb2 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22024 /* Table5776 */
},
/* 0xb3 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22026 /* Table5777 */
},
/* 0xb4 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22028 /* Table5778 */
},
/* 0xb5 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22030 /* Table5779 */
},
/* 0xb6 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22032 /* Table5780 */
},
/* 0xb7 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22034 /* Table5781 */
},
/* 0xb8 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22036 /* Table5782 */
},
/* 0xb9 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
22038 /* Table5783 */
},
/* 0xba */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
22039 /* Table5784 */
},
/* 0xbb */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22055 /* Table5785 */
},
/* 0xbc */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22057 /* Table5786 */
},
/* 0xbd */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22059 /* Table5787 */
},
/* 0xbe */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22061 /* Table5788 */
},
/* 0xbf */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22063 /* Table5789 */
},
/* 0xc0 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22065 /* Table5790 */
},
/* 0xc1 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22067 /* Table5791 */
},
/* 0xc2 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22069 /* Table5792 */
},
/* 0xc3 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22071 /* Table5793 */
},
/* 0xc4 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22073 /* Table5794 */
},
/* 0xc5 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22075 /* Table5795 */
},
/* 0xc6 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22077 /* Table5796 */
},
/* 0xc7 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
22079 /* Table5797 */
},
/* 0xc8 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
22095 /* Table5798 */
},
/* 0xc9 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
22096 /* Table5799 */
},
/* 0xca */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
22097 /* Table5800 */
},
/* 0xcb */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
22098 /* Table5801 */
},
/* 0xcc */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
22099 /* Table5802 */
},
/* 0xcd */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
22100 /* Table5803 */
},
/* 0xce */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
22101 /* Table5804 */
},
/* 0xcf */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
22102 /* Table5805 */
},
/* 0xd0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd1 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22103 /* Table5806 */
},
/* 0xd2 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22105 /* Table5807 */
},
/* 0xd3 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22107 /* Table5808 */
},
/* 0xd4 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22109 /* Table5809 */
},
/* 0xd5 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22111 /* Table5810 */
},
/* 0xd6 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22113 /* Table5811 */
},
/* 0xd7 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22115 /* Table5812 */
},
/* 0xd8 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22117 /* Table5813 */
},
/* 0xd9 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22119 /* Table5814 */
},
/* 0xda */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22121 /* Table5815 */
},
/* 0xdb */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22123 /* Table5816 */
},
/* 0xdc */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22125 /* Table5817 */
},
/* 0xdd */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22127 /* Table5818 */
},
/* 0xde */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22129 /* Table5819 */
},
/* 0xdf */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22131 /* Table5820 */
},
/* 0xe0 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22133 /* Table5821 */
},
/* 0xe1 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22135 /* Table5822 */
},
/* 0xe2 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22137 /* Table5823 */
},
/* 0xe3 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22139 /* Table5824 */
},
/* 0xe4 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22141 /* Table5825 */
},
/* 0xe5 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22143 /* Table5826 */
},
/* 0xe6 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22145 /* Table5827 */
},
/* 0xe7 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22147 /* Table5828 */
},
/* 0xe8 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22149 /* Table5829 */
},
/* 0xe9 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22151 /* Table5830 */
},
/* 0xea */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22153 /* Table5831 */
},
/* 0xeb */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22155 /* Table5832 */
},
/* 0xec */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22157 /* Table5833 */
},
/* 0xed */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22159 /* Table5834 */
},
/* 0xee */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22161 /* Table5835 */
},
/* 0xef */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22163 /* Table5836 */
},
/* 0xf0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf1 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22165 /* Table5837 */
},
/* 0xf2 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22167 /* Table5838 */
},
/* 0xf3 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22169 /* Table5839 */
},
/* 0xf4 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22171 /* Table5840 */
},
/* 0xf5 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22173 /* Table5841 */
},
/* 0xf6 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22175 /* Table5842 */
},
/* 0xf7 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22177 /* Table5843 */
},
/* 0xf8 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22179 /* Table5844 */
},
/* 0xf9 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22181 /* Table5845 */
},
/* 0xfa */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22183 /* Table5846 */
},
/* 0xfb */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22185 /* Table5847 */
},
/* 0xfc */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22187 /* Table5848 */
},
/* 0xfd */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22189 /* Table5849 */
},
/* 0xfe */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22191 /* Table5850 */
},
/* 0xff */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
}
}
}
, /* IC_64BIT_REXW_XD */
{ /* struct OpcodeDecision */
{
/* 0x00 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
22193 /* Table5851 */
},
/* 0x01 */
{ /* struct ModRMDecision */
MODRM_SPLITMISC,
22209 /* Table5852 */
},
/* 0x02 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22281 /* Table5853 */
},
/* 0x03 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22283 /* Table5854 */
},
/* 0x04 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x05 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
22285 /* Table5855 */
},
/* 0x06 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
22286 /* Table5856 */
},
/* 0x07 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
22287 /* Table5857 */
},
/* 0x08 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
22288 /* Table5858 */
},
/* 0x09 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
22289 /* Table5859 */
},
/* 0x0a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0b */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
22290 /* Table5860 */
},
/* 0x0c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0d */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
22291 /* Table5861 */
},
/* 0x0e */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
22307 /* Table5862 */
},
/* 0x0f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x10 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22308 /* Table5863 */
},
/* 0x11 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22310 /* Table5864 */
},
/* 0x12 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22312 /* Table5865 */
},
/* 0x13 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22314 /* Table5866 */
},
/* 0x14 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22316 /* Table5867 */
},
/* 0x15 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22318 /* Table5868 */
},
/* 0x16 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22320 /* Table5869 */
},
/* 0x17 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22322 /* Table5870 */
},
/* 0x18 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
22324 /* Table5871 */
},
/* 0x19 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1f */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22340 /* Table5872 */
},
/* 0x20 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22342 /* Table5873 */
},
/* 0x21 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22344 /* Table5874 */
},
/* 0x22 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22346 /* Table5875 */
},
/* 0x23 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22348 /* Table5876 */
},
/* 0x24 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x25 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x26 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x27 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x28 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22350 /* Table5877 */
},
/* 0x29 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22352 /* Table5878 */
},
/* 0x2a */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22354 /* Table5879 */
},
/* 0x2b */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22356 /* Table5880 */
},
/* 0x2c */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22358 /* Table5881 */
},
/* 0x2d */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22360 /* Table5882 */
},
/* 0x2e */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22362 /* Table5883 */
},
/* 0x2f */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22364 /* Table5884 */
},
/* 0x30 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
22366 /* Table5885 */
},
/* 0x31 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
22367 /* Table5886 */
},
/* 0x32 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
22368 /* Table5887 */
},
/* 0x33 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
22369 /* Table5888 */
},
/* 0x34 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
22370 /* Table5889 */
},
/* 0x35 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
22371 /* Table5890 */
},
/* 0x36 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x37 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x38 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x39 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x40 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22372 /* Table5891 */
},
/* 0x41 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22374 /* Table5892 */
},
/* 0x42 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22376 /* Table5893 */
},
/* 0x43 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22378 /* Table5894 */
},
/* 0x44 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22380 /* Table5895 */
},
/* 0x45 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22382 /* Table5896 */
},
/* 0x46 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22384 /* Table5897 */
},
/* 0x47 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22386 /* Table5898 */
},
/* 0x48 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22388 /* Table5899 */
},
/* 0x49 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22390 /* Table5900 */
},
/* 0x4a */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22392 /* Table5901 */
},
/* 0x4b */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22394 /* Table5902 */
},
/* 0x4c */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22396 /* Table5903 */
},
/* 0x4d */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22398 /* Table5904 */
},
/* 0x4e */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22400 /* Table5905 */
},
/* 0x4f */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22402 /* Table5906 */
},
/* 0x50 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22404 /* Table5907 */
},
/* 0x51 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22406 /* Table5908 */
},
/* 0x52 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22408 /* Table5909 */
},
/* 0x53 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22410 /* Table5910 */
},
/* 0x54 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22412 /* Table5911 */
},
/* 0x55 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22414 /* Table5912 */
},
/* 0x56 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22416 /* Table5913 */
},
/* 0x57 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22418 /* Table5914 */
},
/* 0x58 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22420 /* Table5915 */
},
/* 0x59 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22422 /* Table5916 */
},
/* 0x5a */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22424 /* Table5917 */
},
/* 0x5b */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22426 /* Table5918 */
},
/* 0x5c */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22428 /* Table5919 */
},
/* 0x5d */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22430 /* Table5920 */
},
/* 0x5e */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22432 /* Table5921 */
},
/* 0x5f */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22434 /* Table5922 */
},
/* 0x60 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22436 /* Table5923 */
},
/* 0x61 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22438 /* Table5924 */
},
/* 0x62 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22440 /* Table5925 */
},
/* 0x63 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22442 /* Table5926 */
},
/* 0x64 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22444 /* Table5927 */
},
/* 0x65 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22446 /* Table5928 */
},
/* 0x66 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22448 /* Table5929 */
},
/* 0x67 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22450 /* Table5930 */
},
/* 0x68 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22452 /* Table5931 */
},
/* 0x69 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22454 /* Table5932 */
},
/* 0x6a */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22456 /* Table5933 */
},
/* 0x6b */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22458 /* Table5934 */
},
/* 0x6c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6e */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22460 /* Table5935 */
},
/* 0x6f */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22462 /* Table5936 */
},
/* 0x70 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22464 /* Table5937 */
},
/* 0x71 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
22466 /* Table5938 */
},
/* 0x72 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
22482 /* Table5939 */
},
/* 0x73 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
22498 /* Table5940 */
},
/* 0x74 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22514 /* Table5941 */
},
/* 0x75 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22516 /* Table5942 */
},
/* 0x76 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22518 /* Table5943 */
},
/* 0x77 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
22520 /* Table5944 */
},
/* 0x78 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22521 /* Table5945 */
},
/* 0x79 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22523 /* Table5946 */
},
/* 0x7a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7c */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22525 /* Table5947 */
},
/* 0x7d */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22527 /* Table5948 */
},
/* 0x7e */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22529 /* Table5949 */
},
/* 0x7f */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22531 /* Table5950 */
},
/* 0x80 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
22533 /* Table5951 */
},
/* 0x81 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
22534 /* Table5952 */
},
/* 0x82 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
22535 /* Table5953 */
},
/* 0x83 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
22536 /* Table5954 */
},
/* 0x84 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
22537 /* Table5955 */
},
/* 0x85 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
22538 /* Table5956 */
},
/* 0x86 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
22539 /* Table5957 */
},
/* 0x87 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
22540 /* Table5958 */
},
/* 0x88 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
22541 /* Table5959 */
},
/* 0x89 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
22542 /* Table5960 */
},
/* 0x8a */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
22543 /* Table5961 */
},
/* 0x8b */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
22544 /* Table5962 */
},
/* 0x8c */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
22545 /* Table5963 */
},
/* 0x8d */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
22546 /* Table5964 */
},
/* 0x8e */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
22547 /* Table5965 */
},
/* 0x8f */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
22548 /* Table5966 */
},
/* 0x90 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22549 /* Table5967 */
},
/* 0x91 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22551 /* Table5968 */
},
/* 0x92 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22553 /* Table5969 */
},
/* 0x93 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22555 /* Table5970 */
},
/* 0x94 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22557 /* Table5971 */
},
/* 0x95 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22559 /* Table5972 */
},
/* 0x96 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22561 /* Table5973 */
},
/* 0x97 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22563 /* Table5974 */
},
/* 0x98 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22565 /* Table5975 */
},
/* 0x99 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22567 /* Table5976 */
},
/* 0x9a */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22569 /* Table5977 */
},
/* 0x9b */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22571 /* Table5978 */
},
/* 0x9c */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22573 /* Table5979 */
},
/* 0x9d */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22575 /* Table5980 */
},
/* 0x9e */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22577 /* Table5981 */
},
/* 0x9f */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22579 /* Table5982 */
},
/* 0xa0 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
22581 /* Table5983 */
},
/* 0xa1 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
22582 /* Table5984 */
},
/* 0xa2 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
22583 /* Table5985 */
},
/* 0xa3 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22584 /* Table5986 */
},
/* 0xa4 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22586 /* Table5987 */
},
/* 0xa5 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22588 /* Table5988 */
},
/* 0xa6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa8 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
22590 /* Table5989 */
},
/* 0xa9 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
22591 /* Table5990 */
},
/* 0xaa */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
22592 /* Table5991 */
},
/* 0xab */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22593 /* Table5992 */
},
/* 0xac */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22595 /* Table5993 */
},
/* 0xad */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22597 /* Table5994 */
},
/* 0xae */
{ /* struct ModRMDecision */
MODRM_SPLITMISC,
22599 /* Table5995 */
},
/* 0xaf */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22671 /* Table5996 */
},
/* 0xb0 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22673 /* Table5997 */
},
/* 0xb1 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22675 /* Table5998 */
},
/* 0xb2 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22677 /* Table5999 */
},
/* 0xb3 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22679 /* Table6000 */
},
/* 0xb4 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22681 /* Table6001 */
},
/* 0xb5 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22683 /* Table6002 */
},
/* 0xb6 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22685 /* Table6003 */
},
/* 0xb7 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22687 /* Table6004 */
},
/* 0xb8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb9 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
22689 /* Table6005 */
},
/* 0xba */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
22690 /* Table6006 */
},
/* 0xbb */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22706 /* Table6007 */
},
/* 0xbc */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22708 /* Table6008 */
},
/* 0xbd */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22710 /* Table6009 */
},
/* 0xbe */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22712 /* Table6010 */
},
/* 0xbf */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22714 /* Table6011 */
},
/* 0xc0 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22716 /* Table6012 */
},
/* 0xc1 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22718 /* Table6013 */
},
/* 0xc2 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22720 /* Table6014 */
},
/* 0xc3 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22722 /* Table6015 */
},
/* 0xc4 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22724 /* Table6016 */
},
/* 0xc5 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22726 /* Table6017 */
},
/* 0xc6 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22728 /* Table6018 */
},
/* 0xc7 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
22730 /* Table6019 */
},
/* 0xc8 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
22746 /* Table6020 */
},
/* 0xc9 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
22747 /* Table6021 */
},
/* 0xca */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
22748 /* Table6022 */
},
/* 0xcb */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
22749 /* Table6023 */
},
/* 0xcc */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
22750 /* Table6024 */
},
/* 0xcd */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
22751 /* Table6025 */
},
/* 0xce */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
22752 /* Table6026 */
},
/* 0xcf */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
22753 /* Table6027 */
},
/* 0xd0 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22754 /* Table6028 */
},
/* 0xd1 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22756 /* Table6029 */
},
/* 0xd2 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22758 /* Table6030 */
},
/* 0xd3 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22760 /* Table6031 */
},
/* 0xd4 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22762 /* Table6032 */
},
/* 0xd5 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22764 /* Table6033 */
},
/* 0xd6 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22766 /* Table6034 */
},
/* 0xd7 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22768 /* Table6035 */
},
/* 0xd8 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22770 /* Table6036 */
},
/* 0xd9 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22772 /* Table6037 */
},
/* 0xda */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22774 /* Table6038 */
},
/* 0xdb */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22776 /* Table6039 */
},
/* 0xdc */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22778 /* Table6040 */
},
/* 0xdd */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22780 /* Table6041 */
},
/* 0xde */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22782 /* Table6042 */
},
/* 0xdf */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22784 /* Table6043 */
},
/* 0xe0 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22786 /* Table6044 */
},
/* 0xe1 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22788 /* Table6045 */
},
/* 0xe2 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22790 /* Table6046 */
},
/* 0xe3 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22792 /* Table6047 */
},
/* 0xe4 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22794 /* Table6048 */
},
/* 0xe5 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22796 /* Table6049 */
},
/* 0xe6 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22798 /* Table6050 */
},
/* 0xe7 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22800 /* Table6051 */
},
/* 0xe8 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22802 /* Table6052 */
},
/* 0xe9 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22804 /* Table6053 */
},
/* 0xea */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22806 /* Table6054 */
},
/* 0xeb */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22808 /* Table6055 */
},
/* 0xec */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22810 /* Table6056 */
},
/* 0xed */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22812 /* Table6057 */
},
/* 0xee */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22814 /* Table6058 */
},
/* 0xef */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22816 /* Table6059 */
},
/* 0xf0 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22818 /* Table6060 */
},
/* 0xf1 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22820 /* Table6061 */
},
/* 0xf2 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22822 /* Table6062 */
},
/* 0xf3 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22824 /* Table6063 */
},
/* 0xf4 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22826 /* Table6064 */
},
/* 0xf5 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22828 /* Table6065 */
},
/* 0xf6 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22830 /* Table6066 */
},
/* 0xf7 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22832 /* Table6067 */
},
/* 0xf8 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22834 /* Table6068 */
},
/* 0xf9 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22836 /* Table6069 */
},
/* 0xfa */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22838 /* Table6070 */
},
/* 0xfb */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22840 /* Table6071 */
},
/* 0xfc */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22842 /* Table6072 */
},
/* 0xfd */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22844 /* Table6073 */
},
/* 0xfe */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22846 /* Table6074 */
},
/* 0xff */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
}
}
}
, /* IC_64BIT_REXW_OPSIZE */
{ /* struct OpcodeDecision */
{
/* 0x00 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
22848 /* Table6075 */
},
/* 0x01 */
{ /* struct ModRMDecision */
MODRM_SPLITMISC,
22864 /* Table6076 */
},
/* 0x02 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22936 /* Table6077 */
},
/* 0x03 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22938 /* Table6078 */
},
/* 0x04 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x05 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
22940 /* Table6079 */
},
/* 0x06 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
22941 /* Table6080 */
},
/* 0x07 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
22942 /* Table6081 */
},
/* 0x08 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
22943 /* Table6082 */
},
/* 0x09 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
22944 /* Table6083 */
},
/* 0x0a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0b */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
22945 /* Table6084 */
},
/* 0x0c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0d */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
22946 /* Table6085 */
},
/* 0x0e */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
22962 /* Table6086 */
},
/* 0x0f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x10 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22963 /* Table6087 */
},
/* 0x11 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22965 /* Table6088 */
},
/* 0x12 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22967 /* Table6089 */
},
/* 0x13 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22969 /* Table6090 */
},
/* 0x14 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22971 /* Table6091 */
},
/* 0x15 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22973 /* Table6092 */
},
/* 0x16 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22975 /* Table6093 */
},
/* 0x17 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22977 /* Table6094 */
},
/* 0x18 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
22979 /* Table6095 */
},
/* 0x19 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1f */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22995 /* Table6096 */
},
/* 0x20 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22997 /* Table6097 */
},
/* 0x21 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
22999 /* Table6098 */
},
/* 0x22 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23001 /* Table6099 */
},
/* 0x23 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23003 /* Table6100 */
},
/* 0x24 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x25 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x26 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x27 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x28 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23005 /* Table6101 */
},
/* 0x29 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23007 /* Table6102 */
},
/* 0x2a */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23009 /* Table6103 */
},
/* 0x2b */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23011 /* Table6104 */
},
/* 0x2c */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23013 /* Table6105 */
},
/* 0x2d */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23015 /* Table6106 */
},
/* 0x2e */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23017 /* Table6107 */
},
/* 0x2f */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23019 /* Table6108 */
},
/* 0x30 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
23021 /* Table6109 */
},
/* 0x31 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
23022 /* Table6110 */
},
/* 0x32 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
23023 /* Table6111 */
},
/* 0x33 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
23024 /* Table6112 */
},
/* 0x34 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
23025 /* Table6113 */
},
/* 0x35 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
23026 /* Table6114 */
},
/* 0x36 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x37 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x38 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x39 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x40 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23027 /* Table6115 */
},
/* 0x41 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23029 /* Table6116 */
},
/* 0x42 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23031 /* Table6117 */
},
/* 0x43 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23033 /* Table6118 */
},
/* 0x44 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23035 /* Table6119 */
},
/* 0x45 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23037 /* Table6120 */
},
/* 0x46 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23039 /* Table6121 */
},
/* 0x47 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23041 /* Table6122 */
},
/* 0x48 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23043 /* Table6123 */
},
/* 0x49 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23045 /* Table6124 */
},
/* 0x4a */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23047 /* Table6125 */
},
/* 0x4b */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23049 /* Table6126 */
},
/* 0x4c */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23051 /* Table6127 */
},
/* 0x4d */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23053 /* Table6128 */
},
/* 0x4e */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23055 /* Table6129 */
},
/* 0x4f */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23057 /* Table6130 */
},
/* 0x50 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23059 /* Table6131 */
},
/* 0x51 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23061 /* Table6132 */
},
/* 0x52 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23063 /* Table6133 */
},
/* 0x53 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23065 /* Table6134 */
},
/* 0x54 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23067 /* Table6135 */
},
/* 0x55 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23069 /* Table6136 */
},
/* 0x56 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23071 /* Table6137 */
},
/* 0x57 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23073 /* Table6138 */
},
/* 0x58 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23075 /* Table6139 */
},
/* 0x59 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23077 /* Table6140 */
},
/* 0x5a */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23079 /* Table6141 */
},
/* 0x5b */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23081 /* Table6142 */
},
/* 0x5c */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23083 /* Table6143 */
},
/* 0x5d */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23085 /* Table6144 */
},
/* 0x5e */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23087 /* Table6145 */
},
/* 0x5f */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23089 /* Table6146 */
},
/* 0x60 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23091 /* Table6147 */
},
/* 0x61 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23093 /* Table6148 */
},
/* 0x62 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23095 /* Table6149 */
},
/* 0x63 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23097 /* Table6150 */
},
/* 0x64 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23099 /* Table6151 */
},
/* 0x65 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23101 /* Table6152 */
},
/* 0x66 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23103 /* Table6153 */
},
/* 0x67 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23105 /* Table6154 */
},
/* 0x68 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23107 /* Table6155 */
},
/* 0x69 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23109 /* Table6156 */
},
/* 0x6a */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23111 /* Table6157 */
},
/* 0x6b */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23113 /* Table6158 */
},
/* 0x6c */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23115 /* Table6159 */
},
/* 0x6d */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23117 /* Table6160 */
},
/* 0x6e */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23119 /* Table6161 */
},
/* 0x6f */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23121 /* Table6162 */
},
/* 0x70 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23123 /* Table6163 */
},
/* 0x71 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
23125 /* Table6164 */
},
/* 0x72 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
23141 /* Table6165 */
},
/* 0x73 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
23157 /* Table6166 */
},
/* 0x74 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23173 /* Table6167 */
},
/* 0x75 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23175 /* Table6168 */
},
/* 0x76 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23177 /* Table6169 */
},
/* 0x77 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
23179 /* Table6170 */
},
/* 0x78 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23180 /* Table6171 */
},
/* 0x79 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23182 /* Table6172 */
},
/* 0x7a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7c */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23184 /* Table6173 */
},
/* 0x7d */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23186 /* Table6174 */
},
/* 0x7e */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23188 /* Table6175 */
},
/* 0x7f */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23190 /* Table6176 */
},
/* 0x80 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
23192 /* Table6177 */
},
/* 0x81 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
23193 /* Table6178 */
},
/* 0x82 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
23194 /* Table6179 */
},
/* 0x83 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
23195 /* Table6180 */
},
/* 0x84 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
23196 /* Table6181 */
},
/* 0x85 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
23197 /* Table6182 */
},
/* 0x86 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
23198 /* Table6183 */
},
/* 0x87 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
23199 /* Table6184 */
},
/* 0x88 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
23200 /* Table6185 */
},
/* 0x89 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
23201 /* Table6186 */
},
/* 0x8a */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
23202 /* Table6187 */
},
/* 0x8b */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
23203 /* Table6188 */
},
/* 0x8c */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
23204 /* Table6189 */
},
/* 0x8d */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
23205 /* Table6190 */
},
/* 0x8e */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
23206 /* Table6191 */
},
/* 0x8f */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
23207 /* Table6192 */
},
/* 0x90 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23208 /* Table6193 */
},
/* 0x91 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23210 /* Table6194 */
},
/* 0x92 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23212 /* Table6195 */
},
/* 0x93 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23214 /* Table6196 */
},
/* 0x94 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23216 /* Table6197 */
},
/* 0x95 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23218 /* Table6198 */
},
/* 0x96 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23220 /* Table6199 */
},
/* 0x97 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23222 /* Table6200 */
},
/* 0x98 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23224 /* Table6201 */
},
/* 0x99 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23226 /* Table6202 */
},
/* 0x9a */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23228 /* Table6203 */
},
/* 0x9b */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23230 /* Table6204 */
},
/* 0x9c */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23232 /* Table6205 */
},
/* 0x9d */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23234 /* Table6206 */
},
/* 0x9e */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23236 /* Table6207 */
},
/* 0x9f */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23238 /* Table6208 */
},
/* 0xa0 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
23240 /* Table6209 */
},
/* 0xa1 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
23241 /* Table6210 */
},
/* 0xa2 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
23242 /* Table6211 */
},
/* 0xa3 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23243 /* Table6212 */
},
/* 0xa4 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23245 /* Table6213 */
},
/* 0xa5 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23247 /* Table6214 */
},
/* 0xa6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa8 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
23249 /* Table6215 */
},
/* 0xa9 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
23250 /* Table6216 */
},
/* 0xaa */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
23251 /* Table6217 */
},
/* 0xab */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23252 /* Table6218 */
},
/* 0xac */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23254 /* Table6219 */
},
/* 0xad */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23256 /* Table6220 */
},
/* 0xae */
{ /* struct ModRMDecision */
MODRM_SPLITMISC,
23258 /* Table6221 */
},
/* 0xaf */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23330 /* Table6222 */
},
/* 0xb0 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23332 /* Table6223 */
},
/* 0xb1 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23334 /* Table6224 */
},
/* 0xb2 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23336 /* Table6225 */
},
/* 0xb3 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23338 /* Table6226 */
},
/* 0xb4 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23340 /* Table6227 */
},
/* 0xb5 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23342 /* Table6228 */
},
/* 0xb6 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23344 /* Table6229 */
},
/* 0xb7 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23346 /* Table6230 */
},
/* 0xb8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb9 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
23348 /* Table6231 */
},
/* 0xba */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
23349 /* Table6232 */
},
/* 0xbb */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23365 /* Table6233 */
},
/* 0xbc */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23367 /* Table6234 */
},
/* 0xbd */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23369 /* Table6235 */
},
/* 0xbe */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23371 /* Table6236 */
},
/* 0xbf */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23373 /* Table6237 */
},
/* 0xc0 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23375 /* Table6238 */
},
/* 0xc1 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23377 /* Table6239 */
},
/* 0xc2 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23379 /* Table6240 */
},
/* 0xc3 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23381 /* Table6241 */
},
/* 0xc4 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23383 /* Table6242 */
},
/* 0xc5 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23385 /* Table6243 */
},
/* 0xc6 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23387 /* Table6244 */
},
/* 0xc7 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
23389 /* Table6245 */
},
/* 0xc8 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
23405 /* Table6246 */
},
/* 0xc9 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
23406 /* Table6247 */
},
/* 0xca */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
23407 /* Table6248 */
},
/* 0xcb */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
23408 /* Table6249 */
},
/* 0xcc */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
23409 /* Table6250 */
},
/* 0xcd */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
23410 /* Table6251 */
},
/* 0xce */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
23411 /* Table6252 */
},
/* 0xcf */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
23412 /* Table6253 */
},
/* 0xd0 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23413 /* Table6254 */
},
/* 0xd1 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23415 /* Table6255 */
},
/* 0xd2 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23417 /* Table6256 */
},
/* 0xd3 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23419 /* Table6257 */
},
/* 0xd4 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23421 /* Table6258 */
},
/* 0xd5 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23423 /* Table6259 */
},
/* 0xd6 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23425 /* Table6260 */
},
/* 0xd7 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23427 /* Table6261 */
},
/* 0xd8 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23429 /* Table6262 */
},
/* 0xd9 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23431 /* Table6263 */
},
/* 0xda */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23433 /* Table6264 */
},
/* 0xdb */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23435 /* Table6265 */
},
/* 0xdc */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23437 /* Table6266 */
},
/* 0xdd */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23439 /* Table6267 */
},
/* 0xde */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23441 /* Table6268 */
},
/* 0xdf */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23443 /* Table6269 */
},
/* 0xe0 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23445 /* Table6270 */
},
/* 0xe1 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23447 /* Table6271 */
},
/* 0xe2 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23449 /* Table6272 */
},
/* 0xe3 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23451 /* Table6273 */
},
/* 0xe4 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23453 /* Table6274 */
},
/* 0xe5 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23455 /* Table6275 */
},
/* 0xe6 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23457 /* Table6276 */
},
/* 0xe7 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23459 /* Table6277 */
},
/* 0xe8 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23461 /* Table6278 */
},
/* 0xe9 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23463 /* Table6279 */
},
/* 0xea */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23465 /* Table6280 */
},
/* 0xeb */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23467 /* Table6281 */
},
/* 0xec */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23469 /* Table6282 */
},
/* 0xed */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23471 /* Table6283 */
},
/* 0xee */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23473 /* Table6284 */
},
/* 0xef */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23475 /* Table6285 */
},
/* 0xf0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf1 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23477 /* Table6286 */
},
/* 0xf2 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23479 /* Table6287 */
},
/* 0xf3 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23481 /* Table6288 */
},
/* 0xf4 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23483 /* Table6289 */
},
/* 0xf5 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23485 /* Table6290 */
},
/* 0xf6 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23487 /* Table6291 */
},
/* 0xf7 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23489 /* Table6292 */
},
/* 0xf8 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23491 /* Table6293 */
},
/* 0xf9 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23493 /* Table6294 */
},
/* 0xfa */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23495 /* Table6295 */
},
/* 0xfb */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23497 /* Table6296 */
},
/* 0xfc */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23499 /* Table6297 */
},
/* 0xfd */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23501 /* Table6298 */
},
/* 0xfe */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23503 /* Table6299 */
},
/* 0xff */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
}
}
}
, /* IC_VEX */
{ /* struct OpcodeDecision */
{
/* 0x00 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x01 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x02 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x03 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x04 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x05 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x06 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x07 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x08 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x09 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x10 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23505 /* Table6300 */
},
/* 0x11 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23507 /* Table6301 */
},
/* 0x12 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23509 /* Table6302 */
},
/* 0x13 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23511 /* Table6303 */
},
/* 0x14 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23513 /* Table6304 */
},
/* 0x15 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23515 /* Table6305 */
},
/* 0x16 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23517 /* Table6306 */
},
/* 0x17 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23519 /* Table6307 */
},
/* 0x18 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x19 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x20 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x21 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x22 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x23 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x24 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x25 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x26 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x27 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x28 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23521 /* Table6308 */
},
/* 0x29 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23523 /* Table6309 */
},
/* 0x2a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2b */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23525 /* Table6310 */
},
/* 0x2c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2e */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23527 /* Table6311 */
},
/* 0x2f */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23529 /* Table6312 */
},
/* 0x30 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x31 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x32 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x33 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x34 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x35 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x36 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x37 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x38 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x39 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x40 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x41 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x42 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x43 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x44 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x45 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x46 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x47 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x48 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x49 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x50 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23531 /* Table6313 */
},
/* 0x51 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23533 /* Table6314 */
},
/* 0x52 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23535 /* Table6315 */
},
/* 0x53 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23537 /* Table6316 */
},
/* 0x54 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23539 /* Table6317 */
},
/* 0x55 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23541 /* Table6318 */
},
/* 0x56 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23543 /* Table6319 */
},
/* 0x57 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23545 /* Table6320 */
},
/* 0x58 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23547 /* Table6321 */
},
/* 0x59 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23549 /* Table6322 */
},
/* 0x5a */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23551 /* Table6323 */
},
/* 0x5b */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23553 /* Table6324 */
},
/* 0x5c */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23555 /* Table6325 */
},
/* 0x5d */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23557 /* Table6326 */
},
/* 0x5e */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23559 /* Table6327 */
},
/* 0x5f */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23561 /* Table6328 */
},
/* 0x60 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x61 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x62 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x63 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x64 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x65 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x66 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x67 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x68 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x69 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x70 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x71 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x72 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x73 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x74 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x75 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x76 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x77 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
23563 /* Table6329 */
},
/* 0x78 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x79 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x80 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x81 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x82 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x83 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x84 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x85 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x86 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x87 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x88 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x89 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x90 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x91 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x92 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x93 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x94 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x95 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x96 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x97 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x98 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x99 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xab */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xac */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xad */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xae */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
23564 /* Table6330 */
},
/* 0xaf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xba */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc2 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23580 /* Table6331 */
},
/* 0xc3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc6 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23582 /* Table6332 */
},
/* 0xc7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xca */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xce */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xda */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xde */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xea */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xeb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xec */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xed */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xee */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xef */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xff */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
}
}
}
, /* IC_VEX_XS */
{ /* struct OpcodeDecision */
{
/* 0x00 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x01 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x02 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x03 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x04 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x05 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x06 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x07 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x08 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x09 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x10 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23584 /* Table6333 */
},
/* 0x11 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23586 /* Table6334 */
},
/* 0x12 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23588 /* Table6335 */
},
/* 0x13 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x14 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x15 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x16 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23590 /* Table6336 */
},
/* 0x17 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x18 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x19 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x20 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x21 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x22 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x23 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x24 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x25 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x26 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x27 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x28 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x29 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2a */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23592 /* Table6337 */
},
/* 0x2b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2c */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23594 /* Table6338 */
},
/* 0x2d */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23596 /* Table6339 */
},
/* 0x2e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x30 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x31 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x32 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x33 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x34 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x35 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x36 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x37 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x38 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x39 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x40 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x41 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x42 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x43 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x44 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x45 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x46 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x47 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x48 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x49 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x50 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x51 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23598 /* Table6340 */
},
/* 0x52 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23600 /* Table6341 */
},
/* 0x53 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23602 /* Table6342 */
},
/* 0x54 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x55 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x56 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x57 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x58 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23604 /* Table6343 */
},
/* 0x59 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23606 /* Table6344 */
},
/* 0x5a */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23608 /* Table6345 */
},
/* 0x5b */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23610 /* Table6346 */
},
/* 0x5c */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23612 /* Table6347 */
},
/* 0x5d */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23614 /* Table6348 */
},
/* 0x5e */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23616 /* Table6349 */
},
/* 0x5f */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23618 /* Table6350 */
},
/* 0x60 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x61 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x62 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x63 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x64 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x65 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x66 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x67 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x68 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x69 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6f */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23620 /* Table6351 */
},
/* 0x70 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23622 /* Table6352 */
},
/* 0x71 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x72 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x73 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x74 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x75 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x76 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x77 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x78 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x79 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7e */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23624 /* Table6353 */
},
/* 0x7f */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23626 /* Table6354 */
},
/* 0x80 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x81 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x82 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x83 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x84 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x85 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x86 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x87 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x88 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x89 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x90 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x91 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x92 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x93 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x94 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x95 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x96 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x97 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x98 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x99 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xab */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xac */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xad */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xae */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xba */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc2 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23628 /* Table6355 */
},
/* 0xc3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xca */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xce */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xda */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xde */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe6 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23630 /* Table6356 */
},
/* 0xe7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xea */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xeb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xec */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xed */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xee */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xef */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xff */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
}
}
}
, /* IC_VEX_XD */
{ /* struct OpcodeDecision */
{
/* 0x00 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x01 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x02 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x03 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x04 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x05 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x06 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x07 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x08 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x09 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x10 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23632 /* Table6357 */
},
/* 0x11 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23634 /* Table6358 */
},
/* 0x12 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23636 /* Table6359 */
},
/* 0x13 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x14 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x15 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x16 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x17 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x18 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x19 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x20 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x21 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x22 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x23 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x24 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x25 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x26 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x27 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x28 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x29 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2a */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23638 /* Table6360 */
},
/* 0x2b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2c */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23640 /* Table6361 */
},
/* 0x2d */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23642 /* Table6362 */
},
/* 0x2e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x30 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x31 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x32 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x33 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x34 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x35 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x36 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x37 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x38 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x39 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x40 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x41 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x42 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x43 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x44 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x45 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x46 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x47 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x48 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x49 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x50 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x51 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23644 /* Table6363 */
},
/* 0x52 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x53 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x54 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x55 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x56 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x57 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x58 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23646 /* Table6364 */
},
/* 0x59 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23648 /* Table6365 */
},
/* 0x5a */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23650 /* Table6366 */
},
/* 0x5b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5c */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23652 /* Table6367 */
},
/* 0x5d */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23654 /* Table6368 */
},
/* 0x5e */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23656 /* Table6369 */
},
/* 0x5f */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23658 /* Table6370 */
},
/* 0x60 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x61 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x62 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x63 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x64 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x65 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x66 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x67 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x68 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x69 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x70 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23660 /* Table6371 */
},
/* 0x71 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x72 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x73 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x74 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x75 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x76 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x77 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x78 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x79 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7c */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23662 /* Table6372 */
},
/* 0x7d */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23664 /* Table6373 */
},
/* 0x7e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x80 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x81 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x82 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x83 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x84 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x85 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x86 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x87 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x88 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x89 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x90 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x91 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x92 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x93 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x94 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x95 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x96 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x97 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x98 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x99 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xab */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xac */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xad */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xae */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xba */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc2 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23666 /* Table6374 */
},
/* 0xc3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xca */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xce */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd0 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23668 /* Table6375 */
},
/* 0xd1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xda */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xde */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe6 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23670 /* Table6376 */
},
/* 0xe7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xea */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xeb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xec */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xed */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xee */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xef */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf0 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23672 /* Table6377 */
},
/* 0xf1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xff */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
}
}
}
, /* IC_VEX_OPSIZE */
{ /* struct OpcodeDecision */
{
/* 0x00 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x01 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x02 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x03 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x04 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x05 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x06 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x07 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x08 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x09 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x10 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23674 /* Table6378 */
},
/* 0x11 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23676 /* Table6379 */
},
/* 0x12 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23678 /* Table6380 */
},
/* 0x13 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23680 /* Table6381 */
},
/* 0x14 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23682 /* Table6382 */
},
/* 0x15 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23684 /* Table6383 */
},
/* 0x16 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23686 /* Table6384 */
},
/* 0x17 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23688 /* Table6385 */
},
/* 0x18 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x19 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x20 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x21 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x22 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x23 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x24 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x25 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x26 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x27 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x28 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23690 /* Table6386 */
},
/* 0x29 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23692 /* Table6387 */
},
/* 0x2a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2b */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23694 /* Table6388 */
},
/* 0x2c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2e */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23696 /* Table6389 */
},
/* 0x2f */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23698 /* Table6390 */
},
/* 0x30 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x31 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x32 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x33 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x34 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x35 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x36 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x37 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x38 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x39 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x40 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x41 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x42 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x43 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x44 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x45 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x46 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x47 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x48 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x49 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x50 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23700 /* Table6391 */
},
/* 0x51 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23702 /* Table6392 */
},
/* 0x52 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x53 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x54 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23704 /* Table6393 */
},
/* 0x55 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23706 /* Table6394 */
},
/* 0x56 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23708 /* Table6395 */
},
/* 0x57 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23710 /* Table6396 */
},
/* 0x58 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23712 /* Table6397 */
},
/* 0x59 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23714 /* Table6398 */
},
/* 0x5a */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23716 /* Table6399 */
},
/* 0x5b */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23718 /* Table6400 */
},
/* 0x5c */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23720 /* Table6401 */
},
/* 0x5d */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23722 /* Table6402 */
},
/* 0x5e */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23724 /* Table6403 */
},
/* 0x5f */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23726 /* Table6404 */
},
/* 0x60 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23728 /* Table6405 */
},
/* 0x61 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23730 /* Table6406 */
},
/* 0x62 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23732 /* Table6407 */
},
/* 0x63 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23734 /* Table6408 */
},
/* 0x64 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23736 /* Table6409 */
},
/* 0x65 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23738 /* Table6410 */
},
/* 0x66 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23740 /* Table6411 */
},
/* 0x67 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23742 /* Table6412 */
},
/* 0x68 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23744 /* Table6413 */
},
/* 0x69 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23746 /* Table6414 */
},
/* 0x6a */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23748 /* Table6415 */
},
/* 0x6b */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23750 /* Table6416 */
},
/* 0x6c */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23752 /* Table6417 */
},
/* 0x6d */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23754 /* Table6418 */
},
/* 0x6e */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23756 /* Table6419 */
},
/* 0x6f */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23758 /* Table6420 */
},
/* 0x70 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23760 /* Table6421 */
},
/* 0x71 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
23762 /* Table6422 */
},
/* 0x72 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
23778 /* Table6423 */
},
/* 0x73 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
23794 /* Table6424 */
},
/* 0x74 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23810 /* Table6425 */
},
/* 0x75 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23812 /* Table6426 */
},
/* 0x76 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23814 /* Table6427 */
},
/* 0x77 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x78 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x79 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7c */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23816 /* Table6428 */
},
/* 0x7d */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23818 /* Table6429 */
},
/* 0x7e */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23820 /* Table6430 */
},
/* 0x7f */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23822 /* Table6431 */
},
/* 0x80 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x81 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x82 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x83 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x84 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x85 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x86 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x87 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x88 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x89 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x90 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x91 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x92 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x93 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x94 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x95 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x96 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x97 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x98 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x99 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xab */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xac */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xad */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xae */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xba */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc2 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23824 /* Table6432 */
},
/* 0xc3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc4 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23826 /* Table6433 */
},
/* 0xc5 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23828 /* Table6434 */
},
/* 0xc6 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23830 /* Table6435 */
},
/* 0xc7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xca */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xce */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd0 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23832 /* Table6436 */
},
/* 0xd1 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23834 /* Table6437 */
},
/* 0xd2 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23836 /* Table6438 */
},
/* 0xd3 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23838 /* Table6439 */
},
/* 0xd4 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23840 /* Table6440 */
},
/* 0xd5 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23842 /* Table6441 */
},
/* 0xd6 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23844 /* Table6442 */
},
/* 0xd7 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23846 /* Table6443 */
},
/* 0xd8 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23848 /* Table6444 */
},
/* 0xd9 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23850 /* Table6445 */
},
/* 0xda */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23852 /* Table6446 */
},
/* 0xdb */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23854 /* Table6447 */
},
/* 0xdc */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23856 /* Table6448 */
},
/* 0xdd */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23858 /* Table6449 */
},
/* 0xde */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23860 /* Table6450 */
},
/* 0xdf */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23862 /* Table6451 */
},
/* 0xe0 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23864 /* Table6452 */
},
/* 0xe1 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23866 /* Table6453 */
},
/* 0xe2 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23868 /* Table6454 */
},
/* 0xe3 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23870 /* Table6455 */
},
/* 0xe4 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23872 /* Table6456 */
},
/* 0xe5 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23874 /* Table6457 */
},
/* 0xe6 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23876 /* Table6458 */
},
/* 0xe7 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23878 /* Table6459 */
},
/* 0xe8 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23880 /* Table6460 */
},
/* 0xe9 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23882 /* Table6461 */
},
/* 0xea */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23884 /* Table6462 */
},
/* 0xeb */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23886 /* Table6463 */
},
/* 0xec */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23888 /* Table6464 */
},
/* 0xed */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23890 /* Table6465 */
},
/* 0xee */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23892 /* Table6466 */
},
/* 0xef */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23894 /* Table6467 */
},
/* 0xf0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf1 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23896 /* Table6468 */
},
/* 0xf2 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23898 /* Table6469 */
},
/* 0xf3 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23900 /* Table6470 */
},
/* 0xf4 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23902 /* Table6471 */
},
/* 0xf5 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23904 /* Table6472 */
},
/* 0xf6 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23906 /* Table6473 */
},
/* 0xf7 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23908 /* Table6474 */
},
/* 0xf8 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23910 /* Table6475 */
},
/* 0xf9 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23912 /* Table6476 */
},
/* 0xfa */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23914 /* Table6477 */
},
/* 0xfb */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23916 /* Table6478 */
},
/* 0xfc */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23918 /* Table6479 */
},
/* 0xfd */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23920 /* Table6480 */
},
/* 0xfe */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23922 /* Table6481 */
},
/* 0xff */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
}
}
}
, /* IC_VEX_W */
{ /* struct OpcodeDecision */
{
/* 0x00 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x01 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x02 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x03 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x04 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x05 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x06 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x07 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x08 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x09 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x10 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23924 /* Table6482 */
},
/* 0x11 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23926 /* Table6483 */
},
/* 0x12 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23928 /* Table6484 */
},
/* 0x13 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23930 /* Table6485 */
},
/* 0x14 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23932 /* Table6486 */
},
/* 0x15 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23934 /* Table6487 */
},
/* 0x16 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23936 /* Table6488 */
},
/* 0x17 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23938 /* Table6489 */
},
/* 0x18 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x19 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x20 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x21 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x22 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x23 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x24 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x25 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x26 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x27 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x28 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23940 /* Table6490 */
},
/* 0x29 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23942 /* Table6491 */
},
/* 0x2a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2b */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23944 /* Table6492 */
},
/* 0x2c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2e */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23946 /* Table6493 */
},
/* 0x2f */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23948 /* Table6494 */
},
/* 0x30 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x31 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x32 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x33 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x34 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x35 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x36 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x37 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x38 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x39 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x40 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x41 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x42 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x43 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x44 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x45 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x46 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x47 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x48 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x49 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x50 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23950 /* Table6495 */
},
/* 0x51 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23952 /* Table6496 */
},
/* 0x52 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23954 /* Table6497 */
},
/* 0x53 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23956 /* Table6498 */
},
/* 0x54 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23958 /* Table6499 */
},
/* 0x55 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23960 /* Table6500 */
},
/* 0x56 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23962 /* Table6501 */
},
/* 0x57 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23964 /* Table6502 */
},
/* 0x58 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23966 /* Table6503 */
},
/* 0x59 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23968 /* Table6504 */
},
/* 0x5a */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23970 /* Table6505 */
},
/* 0x5b */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23972 /* Table6506 */
},
/* 0x5c */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23974 /* Table6507 */
},
/* 0x5d */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23976 /* Table6508 */
},
/* 0x5e */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23978 /* Table6509 */
},
/* 0x5f */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23980 /* Table6510 */
},
/* 0x60 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x61 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x62 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x63 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x64 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x65 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x66 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x67 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x68 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x69 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x70 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x71 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x72 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x73 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x74 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x75 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x76 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x77 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
23982 /* Table6511 */
},
/* 0x78 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x79 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x80 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x81 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x82 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x83 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x84 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x85 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x86 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x87 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x88 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x89 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x90 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x91 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x92 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x93 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x94 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x95 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x96 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x97 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x98 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x99 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xab */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xac */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xad */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xae */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
23983 /* Table6512 */
},
/* 0xaf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xba */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc2 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
23999 /* Table6513 */
},
/* 0xc3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc6 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24001 /* Table6514 */
},
/* 0xc7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xca */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xce */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xda */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xde */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xea */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xeb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xec */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xed */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xee */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xef */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xff */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
}
}
}
, /* IC_VEX_W_XS */
{ /* struct OpcodeDecision */
{
/* 0x00 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x01 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x02 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x03 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x04 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x05 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x06 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x07 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x08 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x09 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x10 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24003 /* Table6515 */
},
/* 0x11 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24005 /* Table6516 */
},
/* 0x12 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24007 /* Table6517 */
},
/* 0x13 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x14 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x15 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x16 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24009 /* Table6518 */
},
/* 0x17 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x18 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x19 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x20 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x21 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x22 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x23 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x24 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x25 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x26 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x27 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x28 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x29 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2a */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24011 /* Table6519 */
},
/* 0x2b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2c */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24013 /* Table6520 */
},
/* 0x2d */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24015 /* Table6521 */
},
/* 0x2e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x30 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x31 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x32 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x33 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x34 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x35 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x36 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x37 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x38 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x39 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x40 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x41 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x42 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x43 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x44 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x45 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x46 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x47 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x48 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x49 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x50 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x51 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24017 /* Table6522 */
},
/* 0x52 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24019 /* Table6523 */
},
/* 0x53 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24021 /* Table6524 */
},
/* 0x54 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x55 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x56 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x57 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x58 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24023 /* Table6525 */
},
/* 0x59 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24025 /* Table6526 */
},
/* 0x5a */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24027 /* Table6527 */
},
/* 0x5b */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24029 /* Table6528 */
},
/* 0x5c */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24031 /* Table6529 */
},
/* 0x5d */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24033 /* Table6530 */
},
/* 0x5e */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24035 /* Table6531 */
},
/* 0x5f */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24037 /* Table6532 */
},
/* 0x60 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x61 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x62 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x63 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x64 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x65 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x66 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x67 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x68 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x69 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6f */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24039 /* Table6533 */
},
/* 0x70 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24041 /* Table6534 */
},
/* 0x71 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x72 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x73 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x74 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x75 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x76 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x77 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x78 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x79 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7e */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24043 /* Table6535 */
},
/* 0x7f */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24045 /* Table6536 */
},
/* 0x80 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x81 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x82 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x83 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x84 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x85 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x86 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x87 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x88 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x89 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x90 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x91 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x92 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x93 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x94 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x95 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x96 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x97 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x98 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x99 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xab */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xac */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xad */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xae */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xba */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc2 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24047 /* Table6537 */
},
/* 0xc3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xca */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xce */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xda */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xde */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe6 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24049 /* Table6538 */
},
/* 0xe7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xea */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xeb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xec */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xed */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xee */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xef */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xff */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
}
}
}
, /* IC_VEX_W_XD */
{ /* struct OpcodeDecision */
{
/* 0x00 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x01 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x02 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x03 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x04 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x05 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x06 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x07 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x08 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x09 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x10 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24051 /* Table6539 */
},
/* 0x11 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24053 /* Table6540 */
},
/* 0x12 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24055 /* Table6541 */
},
/* 0x13 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x14 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x15 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x16 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x17 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x18 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x19 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x20 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x21 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x22 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x23 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x24 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x25 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x26 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x27 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x28 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x29 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2a */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24057 /* Table6542 */
},
/* 0x2b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2c */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24059 /* Table6543 */
},
/* 0x2d */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24061 /* Table6544 */
},
/* 0x2e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x30 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x31 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x32 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x33 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x34 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x35 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x36 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x37 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x38 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x39 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x40 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x41 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x42 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x43 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x44 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x45 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x46 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x47 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x48 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x49 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x50 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x51 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24063 /* Table6545 */
},
/* 0x52 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x53 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x54 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x55 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x56 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x57 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x58 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24065 /* Table6546 */
},
/* 0x59 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24067 /* Table6547 */
},
/* 0x5a */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24069 /* Table6548 */
},
/* 0x5b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5c */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24071 /* Table6549 */
},
/* 0x5d */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24073 /* Table6550 */
},
/* 0x5e */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24075 /* Table6551 */
},
/* 0x5f */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24077 /* Table6552 */
},
/* 0x60 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x61 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x62 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x63 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x64 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x65 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x66 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x67 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x68 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x69 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x70 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24079 /* Table6553 */
},
/* 0x71 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x72 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x73 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x74 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x75 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x76 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x77 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x78 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x79 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7c */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24081 /* Table6554 */
},
/* 0x7d */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24083 /* Table6555 */
},
/* 0x7e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x80 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x81 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x82 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x83 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x84 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x85 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x86 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x87 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x88 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x89 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x90 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x91 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x92 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x93 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x94 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x95 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x96 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x97 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x98 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x99 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xab */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xac */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xad */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xae */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xba */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc2 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24085 /* Table6556 */
},
/* 0xc3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xca */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xce */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd0 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24087 /* Table6557 */
},
/* 0xd1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xda */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xde */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe6 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24089 /* Table6558 */
},
/* 0xe7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xea */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xeb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xec */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xed */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xee */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xef */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf0 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24091 /* Table6559 */
},
/* 0xf1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xff */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
}
}
}
, /* IC_VEX_W_OPSIZE */
{ /* struct OpcodeDecision */
{
/* 0x00 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x01 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x02 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x03 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x04 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x05 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x06 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x07 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x08 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x09 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x10 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24093 /* Table6560 */
},
/* 0x11 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24095 /* Table6561 */
},
/* 0x12 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24097 /* Table6562 */
},
/* 0x13 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24099 /* Table6563 */
},
/* 0x14 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24101 /* Table6564 */
},
/* 0x15 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24103 /* Table6565 */
},
/* 0x16 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24105 /* Table6566 */
},
/* 0x17 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24107 /* Table6567 */
},
/* 0x18 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x19 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x20 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x21 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x22 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x23 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x24 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x25 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x26 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x27 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x28 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24109 /* Table6568 */
},
/* 0x29 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24111 /* Table6569 */
},
/* 0x2a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2b */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24113 /* Table6570 */
},
/* 0x2c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2e */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24115 /* Table6571 */
},
/* 0x2f */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24117 /* Table6572 */
},
/* 0x30 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x31 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x32 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x33 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x34 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x35 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x36 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x37 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x38 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x39 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x40 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x41 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x42 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x43 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x44 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x45 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x46 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x47 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x48 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x49 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x50 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24119 /* Table6573 */
},
/* 0x51 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24121 /* Table6574 */
},
/* 0x52 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x53 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x54 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24123 /* Table6575 */
},
/* 0x55 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24125 /* Table6576 */
},
/* 0x56 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24127 /* Table6577 */
},
/* 0x57 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24129 /* Table6578 */
},
/* 0x58 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24131 /* Table6579 */
},
/* 0x59 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24133 /* Table6580 */
},
/* 0x5a */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24135 /* Table6581 */
},
/* 0x5b */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24137 /* Table6582 */
},
/* 0x5c */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24139 /* Table6583 */
},
/* 0x5d */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24141 /* Table6584 */
},
/* 0x5e */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24143 /* Table6585 */
},
/* 0x5f */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24145 /* Table6586 */
},
/* 0x60 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24147 /* Table6587 */
},
/* 0x61 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24149 /* Table6588 */
},
/* 0x62 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24151 /* Table6589 */
},
/* 0x63 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24153 /* Table6590 */
},
/* 0x64 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24155 /* Table6591 */
},
/* 0x65 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24157 /* Table6592 */
},
/* 0x66 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24159 /* Table6593 */
},
/* 0x67 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24161 /* Table6594 */
},
/* 0x68 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24163 /* Table6595 */
},
/* 0x69 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24165 /* Table6596 */
},
/* 0x6a */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24167 /* Table6597 */
},
/* 0x6b */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24169 /* Table6598 */
},
/* 0x6c */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24171 /* Table6599 */
},
/* 0x6d */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24173 /* Table6600 */
},
/* 0x6e */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24175 /* Table6601 */
},
/* 0x6f */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24177 /* Table6602 */
},
/* 0x70 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24179 /* Table6603 */
},
/* 0x71 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
24181 /* Table6604 */
},
/* 0x72 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
24197 /* Table6605 */
},
/* 0x73 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
24213 /* Table6606 */
},
/* 0x74 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24229 /* Table6607 */
},
/* 0x75 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24231 /* Table6608 */
},
/* 0x76 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24233 /* Table6609 */
},
/* 0x77 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x78 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x79 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7c */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24235 /* Table6610 */
},
/* 0x7d */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24237 /* Table6611 */
},
/* 0x7e */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24239 /* Table6612 */
},
/* 0x7f */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24241 /* Table6613 */
},
/* 0x80 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x81 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x82 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x83 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x84 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x85 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x86 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x87 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x88 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x89 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x90 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x91 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x92 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x93 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x94 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x95 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x96 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x97 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x98 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x99 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xab */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xac */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xad */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xae */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xba */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc2 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24243 /* Table6614 */
},
/* 0xc3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc4 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24245 /* Table6615 */
},
/* 0xc5 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24247 /* Table6616 */
},
/* 0xc6 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24249 /* Table6617 */
},
/* 0xc7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xca */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xce */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd0 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24251 /* Table6618 */
},
/* 0xd1 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24253 /* Table6619 */
},
/* 0xd2 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24255 /* Table6620 */
},
/* 0xd3 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24257 /* Table6621 */
},
/* 0xd4 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24259 /* Table6622 */
},
/* 0xd5 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24261 /* Table6623 */
},
/* 0xd6 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24263 /* Table6624 */
},
/* 0xd7 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24265 /* Table6625 */
},
/* 0xd8 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24267 /* Table6626 */
},
/* 0xd9 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24269 /* Table6627 */
},
/* 0xda */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24271 /* Table6628 */
},
/* 0xdb */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24273 /* Table6629 */
},
/* 0xdc */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24275 /* Table6630 */
},
/* 0xdd */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24277 /* Table6631 */
},
/* 0xde */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24279 /* Table6632 */
},
/* 0xdf */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24281 /* Table6633 */
},
/* 0xe0 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24283 /* Table6634 */
},
/* 0xe1 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24285 /* Table6635 */
},
/* 0xe2 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24287 /* Table6636 */
},
/* 0xe3 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24289 /* Table6637 */
},
/* 0xe4 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24291 /* Table6638 */
},
/* 0xe5 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24293 /* Table6639 */
},
/* 0xe6 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24295 /* Table6640 */
},
/* 0xe7 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24297 /* Table6641 */
},
/* 0xe8 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24299 /* Table6642 */
},
/* 0xe9 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24301 /* Table6643 */
},
/* 0xea */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24303 /* Table6644 */
},
/* 0xeb */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24305 /* Table6645 */
},
/* 0xec */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24307 /* Table6646 */
},
/* 0xed */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24309 /* Table6647 */
},
/* 0xee */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24311 /* Table6648 */
},
/* 0xef */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24313 /* Table6649 */
},
/* 0xf0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf1 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24315 /* Table6650 */
},
/* 0xf2 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24317 /* Table6651 */
},
/* 0xf3 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24319 /* Table6652 */
},
/* 0xf4 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24321 /* Table6653 */
},
/* 0xf5 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24323 /* Table6654 */
},
/* 0xf6 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24325 /* Table6655 */
},
/* 0xf7 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24327 /* Table6656 */
},
/* 0xf8 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24329 /* Table6657 */
},
/* 0xf9 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24331 /* Table6658 */
},
/* 0xfa */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24333 /* Table6659 */
},
/* 0xfb */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24335 /* Table6660 */
},
/* 0xfc */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24337 /* Table6661 */
},
/* 0xfd */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24339 /* Table6662 */
},
/* 0xfe */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24341 /* Table6663 */
},
/* 0xff */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
}
}
}
, /* IC_VEX_L */
{ /* struct OpcodeDecision */
{
/* 0x00 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x01 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x02 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x03 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x04 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x05 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x06 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x07 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x08 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x09 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x10 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24343 /* Table6664 */
},
/* 0x11 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24345 /* Table6665 */
},
/* 0x12 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x13 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x14 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24347 /* Table6666 */
},
/* 0x15 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24349 /* Table6667 */
},
/* 0x16 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x17 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x18 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x19 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x20 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x21 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x22 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x23 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x24 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x25 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x26 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x27 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x28 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24351 /* Table6668 */
},
/* 0x29 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24353 /* Table6669 */
},
/* 0x2a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2b */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24355 /* Table6670 */
},
/* 0x2c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2e */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24357 /* Table6671 */
},
/* 0x2f */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24359 /* Table6672 */
},
/* 0x30 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x31 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x32 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x33 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x34 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x35 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x36 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x37 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x38 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x39 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x40 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x41 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x42 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x43 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x44 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x45 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x46 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x47 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x48 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x49 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x50 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24361 /* Table6673 */
},
/* 0x51 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24363 /* Table6674 */
},
/* 0x52 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24365 /* Table6675 */
},
/* 0x53 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24367 /* Table6676 */
},
/* 0x54 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24369 /* Table6677 */
},
/* 0x55 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24371 /* Table6678 */
},
/* 0x56 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24373 /* Table6679 */
},
/* 0x57 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24375 /* Table6680 */
},
/* 0x58 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24377 /* Table6681 */
},
/* 0x59 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24379 /* Table6682 */
},
/* 0x5a */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24381 /* Table6683 */
},
/* 0x5b */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24383 /* Table6684 */
},
/* 0x5c */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24385 /* Table6685 */
},
/* 0x5d */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24387 /* Table6686 */
},
/* 0x5e */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24389 /* Table6687 */
},
/* 0x5f */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24391 /* Table6688 */
},
/* 0x60 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x61 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x62 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x63 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x64 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x65 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x66 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x67 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x68 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x69 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x70 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x71 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x72 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x73 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x74 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x75 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x76 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x77 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
24393 /* Table6689 */
},
/* 0x78 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x79 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x80 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x81 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x82 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x83 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x84 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x85 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x86 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x87 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x88 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x89 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x90 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x91 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x92 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x93 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x94 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x95 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x96 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x97 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x98 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x99 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xab */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xac */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xad */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xae */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xba */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc2 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24394 /* Table6690 */
},
/* 0xc3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc6 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24396 /* Table6691 */
},
/* 0xc7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xca */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xce */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xda */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xde */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xea */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xeb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xec */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xed */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xee */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xef */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xff */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
}
}
}
, /* IC_VEX_L_XS */
{ /* struct OpcodeDecision */
{
/* 0x00 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x01 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x02 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x03 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x04 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x05 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x06 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x07 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x08 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x09 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x10 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24398 /* Table6692 */
},
/* 0x11 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24400 /* Table6693 */
},
/* 0x12 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24402 /* Table6694 */
},
/* 0x13 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x14 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x15 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x16 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24404 /* Table6695 */
},
/* 0x17 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x18 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x19 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x20 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x21 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x22 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x23 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x24 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x25 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x26 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x27 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x28 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x29 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2a */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24406 /* Table6696 */
},
/* 0x2b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2c */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24408 /* Table6697 */
},
/* 0x2d */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24410 /* Table6698 */
},
/* 0x2e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x30 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x31 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x32 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x33 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x34 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x35 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x36 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x37 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x38 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x39 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x40 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x41 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x42 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x43 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x44 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x45 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x46 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x47 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x48 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x49 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x50 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x51 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24412 /* Table6699 */
},
/* 0x52 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24414 /* Table6700 */
},
/* 0x53 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24416 /* Table6701 */
},
/* 0x54 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x55 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x56 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x57 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x58 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24418 /* Table6702 */
},
/* 0x59 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24420 /* Table6703 */
},
/* 0x5a */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24422 /* Table6704 */
},
/* 0x5b */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24424 /* Table6705 */
},
/* 0x5c */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24426 /* Table6706 */
},
/* 0x5d */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24428 /* Table6707 */
},
/* 0x5e */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24430 /* Table6708 */
},
/* 0x5f */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24432 /* Table6709 */
},
/* 0x60 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x61 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x62 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x63 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x64 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x65 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x66 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x67 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x68 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x69 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6f */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24434 /* Table6710 */
},
/* 0x70 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24436 /* Table6711 */
},
/* 0x71 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x72 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x73 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x74 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x75 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x76 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x77 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x78 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x79 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7f */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24438 /* Table6712 */
},
/* 0x80 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x81 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x82 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x83 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x84 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x85 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x86 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x87 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x88 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x89 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x90 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x91 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x92 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x93 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x94 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x95 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x96 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x97 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x98 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x99 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xab */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xac */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xad */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xae */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xba */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc2 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24440 /* Table6713 */
},
/* 0xc3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xca */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xce */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xda */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xde */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe6 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24442 /* Table6714 */
},
/* 0xe7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xea */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xeb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xec */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xed */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xee */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xef */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xff */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
}
}
}
, /* IC_VEX_L_XD */
{ /* struct OpcodeDecision */
{
/* 0x00 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x01 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x02 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x03 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x04 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x05 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x06 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x07 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x08 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x09 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x10 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24444 /* Table6715 */
},
/* 0x11 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24446 /* Table6716 */
},
/* 0x12 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24448 /* Table6717 */
},
/* 0x13 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x14 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x15 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x16 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x17 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x18 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x19 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x20 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x21 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x22 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x23 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x24 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x25 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x26 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x27 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x28 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x29 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2a */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24450 /* Table6718 */
},
/* 0x2b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2c */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24452 /* Table6719 */
},
/* 0x2d */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24454 /* Table6720 */
},
/* 0x2e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x30 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x31 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x32 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x33 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x34 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x35 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x36 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x37 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x38 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x39 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x40 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x41 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x42 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x43 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x44 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x45 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x46 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x47 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x48 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x49 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x50 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x51 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24456 /* Table6721 */
},
/* 0x52 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x53 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x54 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x55 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x56 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x57 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x58 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24458 /* Table6722 */
},
/* 0x59 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24460 /* Table6723 */
},
/* 0x5a */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24462 /* Table6724 */
},
/* 0x5b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5c */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24464 /* Table6725 */
},
/* 0x5d */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24466 /* Table6726 */
},
/* 0x5e */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24468 /* Table6727 */
},
/* 0x5f */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24470 /* Table6728 */
},
/* 0x60 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x61 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x62 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x63 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x64 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x65 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x66 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x67 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x68 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x69 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x70 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24472 /* Table6729 */
},
/* 0x71 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x72 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x73 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x74 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x75 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x76 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x77 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x78 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x79 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7c */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24474 /* Table6730 */
},
/* 0x7d */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24476 /* Table6731 */
},
/* 0x7e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x80 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x81 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x82 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x83 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x84 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x85 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x86 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x87 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x88 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x89 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x90 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x91 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x92 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x93 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x94 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x95 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x96 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x97 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x98 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x99 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xab */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xac */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xad */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xae */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xba */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc2 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24478 /* Table6732 */
},
/* 0xc3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xca */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xce */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd0 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24480 /* Table6733 */
},
/* 0xd1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xda */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xde */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe6 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24482 /* Table6734 */
},
/* 0xe7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xea */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xeb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xec */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xed */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xee */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xef */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf0 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24484 /* Table6735 */
},
/* 0xf1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xff */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
}
}
}
, /* IC_VEX_L_OPSIZE */
{ /* struct OpcodeDecision */
{
/* 0x00 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x01 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x02 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x03 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x04 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x05 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x06 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x07 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x08 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x09 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x10 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24486 /* Table6736 */
},
/* 0x11 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24488 /* Table6737 */
},
/* 0x12 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x13 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x14 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24490 /* Table6738 */
},
/* 0x15 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24492 /* Table6739 */
},
/* 0x16 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x17 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x18 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x19 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x20 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x21 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x22 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x23 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x24 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x25 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x26 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x27 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x28 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24494 /* Table6740 */
},
/* 0x29 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24496 /* Table6741 */
},
/* 0x2a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2b */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24498 /* Table6742 */
},
/* 0x2c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2e */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24500 /* Table6743 */
},
/* 0x2f */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24502 /* Table6744 */
},
/* 0x30 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x31 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x32 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x33 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x34 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x35 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x36 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x37 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x38 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x39 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x40 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x41 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x42 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x43 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x44 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x45 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x46 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x47 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x48 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x49 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x50 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24504 /* Table6745 */
},
/* 0x51 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24506 /* Table6746 */
},
/* 0x52 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x53 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x54 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24508 /* Table6747 */
},
/* 0x55 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24510 /* Table6748 */
},
/* 0x56 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24512 /* Table6749 */
},
/* 0x57 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24514 /* Table6750 */
},
/* 0x58 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24516 /* Table6751 */
},
/* 0x59 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24518 /* Table6752 */
},
/* 0x5a */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24520 /* Table6753 */
},
/* 0x5b */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24522 /* Table6754 */
},
/* 0x5c */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24524 /* Table6755 */
},
/* 0x5d */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24526 /* Table6756 */
},
/* 0x5e */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24528 /* Table6757 */
},
/* 0x5f */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24530 /* Table6758 */
},
/* 0x60 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24532 /* Table6759 */
},
/* 0x61 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24534 /* Table6760 */
},
/* 0x62 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24536 /* Table6761 */
},
/* 0x63 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24538 /* Table6762 */
},
/* 0x64 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24540 /* Table6763 */
},
/* 0x65 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24542 /* Table6764 */
},
/* 0x66 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24544 /* Table6765 */
},
/* 0x67 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24546 /* Table6766 */
},
/* 0x68 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24548 /* Table6767 */
},
/* 0x69 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24550 /* Table6768 */
},
/* 0x6a */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24552 /* Table6769 */
},
/* 0x6b */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24554 /* Table6770 */
},
/* 0x6c */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24556 /* Table6771 */
},
/* 0x6d */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24558 /* Table6772 */
},
/* 0x6e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6f */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24560 /* Table6773 */
},
/* 0x70 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24562 /* Table6774 */
},
/* 0x71 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
24564 /* Table6775 */
},
/* 0x72 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
24580 /* Table6776 */
},
/* 0x73 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
24596 /* Table6777 */
},
/* 0x74 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24612 /* Table6778 */
},
/* 0x75 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24614 /* Table6779 */
},
/* 0x76 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24616 /* Table6780 */
},
/* 0x77 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x78 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x79 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7c */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24618 /* Table6781 */
},
/* 0x7d */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24620 /* Table6782 */
},
/* 0x7e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7f */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24622 /* Table6783 */
},
/* 0x80 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x81 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x82 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x83 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x84 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x85 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x86 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x87 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x88 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x89 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x90 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x91 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x92 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x93 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x94 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x95 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x96 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x97 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x98 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x99 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xab */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xac */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xad */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xae */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xba */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc2 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24624 /* Table6784 */
},
/* 0xc3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc6 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24626 /* Table6785 */
},
/* 0xc7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xca */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xce */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd0 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24628 /* Table6786 */
},
/* 0xd1 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24630 /* Table6787 */
},
/* 0xd2 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24632 /* Table6788 */
},
/* 0xd3 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24634 /* Table6789 */
},
/* 0xd4 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24636 /* Table6790 */
},
/* 0xd5 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24638 /* Table6791 */
},
/* 0xd6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd7 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24640 /* Table6792 */
},
/* 0xd8 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24642 /* Table6793 */
},
/* 0xd9 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24644 /* Table6794 */
},
/* 0xda */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24646 /* Table6795 */
},
/* 0xdb */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24648 /* Table6796 */
},
/* 0xdc */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24650 /* Table6797 */
},
/* 0xdd */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24652 /* Table6798 */
},
/* 0xde */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24654 /* Table6799 */
},
/* 0xdf */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24656 /* Table6800 */
},
/* 0xe0 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24658 /* Table6801 */
},
/* 0xe1 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24660 /* Table6802 */
},
/* 0xe2 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24662 /* Table6803 */
},
/* 0xe3 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24664 /* Table6804 */
},
/* 0xe4 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24666 /* Table6805 */
},
/* 0xe5 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24668 /* Table6806 */
},
/* 0xe6 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24670 /* Table6807 */
},
/* 0xe7 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24672 /* Table6808 */
},
/* 0xe8 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24674 /* Table6809 */
},
/* 0xe9 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24676 /* Table6810 */
},
/* 0xea */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24678 /* Table6811 */
},
/* 0xeb */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24680 /* Table6812 */
},
/* 0xec */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24682 /* Table6813 */
},
/* 0xed */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24684 /* Table6814 */
},
/* 0xee */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24686 /* Table6815 */
},
/* 0xef */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24688 /* Table6816 */
},
/* 0xf0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf1 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24690 /* Table6817 */
},
/* 0xf2 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24692 /* Table6818 */
},
/* 0xf3 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24694 /* Table6819 */
},
/* 0xf4 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24696 /* Table6820 */
},
/* 0xf5 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24698 /* Table6821 */
},
/* 0xf6 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24700 /* Table6822 */
},
/* 0xf7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf8 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24702 /* Table6823 */
},
/* 0xf9 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24704 /* Table6824 */
},
/* 0xfa */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24706 /* Table6825 */
},
/* 0xfb */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24708 /* Table6826 */
},
/* 0xfc */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24710 /* Table6827 */
},
/* 0xfd */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24712 /* Table6828 */
},
/* 0xfe */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24714 /* Table6829 */
},
/* 0xff */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
}
}
}
, /* IC_VEX_L_W_OPSIZE */
{ /* struct OpcodeDecision */
{
/* 0x00 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x01 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x02 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x03 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x04 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x05 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x06 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x07 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x08 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x09 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x10 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24716 /* Table6830 */
},
/* 0x11 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24718 /* Table6831 */
},
/* 0x12 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x13 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x14 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24720 /* Table6832 */
},
/* 0x15 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24722 /* Table6833 */
},
/* 0x16 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x17 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x18 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x19 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x20 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x21 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x22 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x23 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x24 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x25 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x26 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x27 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x28 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24724 /* Table6834 */
},
/* 0x29 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24726 /* Table6835 */
},
/* 0x2a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2b */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24728 /* Table6836 */
},
/* 0x2c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2e */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24730 /* Table6837 */
},
/* 0x2f */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24732 /* Table6838 */
},
/* 0x30 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x31 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x32 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x33 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x34 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x35 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x36 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x37 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x38 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x39 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x40 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x41 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x42 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x43 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x44 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x45 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x46 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x47 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x48 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x49 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x50 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24734 /* Table6839 */
},
/* 0x51 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24736 /* Table6840 */
},
/* 0x52 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x53 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x54 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24738 /* Table6841 */
},
/* 0x55 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24740 /* Table6842 */
},
/* 0x56 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24742 /* Table6843 */
},
/* 0x57 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24744 /* Table6844 */
},
/* 0x58 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24746 /* Table6845 */
},
/* 0x59 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24748 /* Table6846 */
},
/* 0x5a */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24750 /* Table6847 */
},
/* 0x5b */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24752 /* Table6848 */
},
/* 0x5c */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24754 /* Table6849 */
},
/* 0x5d */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24756 /* Table6850 */
},
/* 0x5e */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24758 /* Table6851 */
},
/* 0x5f */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24760 /* Table6852 */
},
/* 0x60 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24762 /* Table6853 */
},
/* 0x61 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24764 /* Table6854 */
},
/* 0x62 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24766 /* Table6855 */
},
/* 0x63 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24768 /* Table6856 */
},
/* 0x64 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24770 /* Table6857 */
},
/* 0x65 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24772 /* Table6858 */
},
/* 0x66 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24774 /* Table6859 */
},
/* 0x67 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24776 /* Table6860 */
},
/* 0x68 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24778 /* Table6861 */
},
/* 0x69 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24780 /* Table6862 */
},
/* 0x6a */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24782 /* Table6863 */
},
/* 0x6b */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24784 /* Table6864 */
},
/* 0x6c */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24786 /* Table6865 */
},
/* 0x6d */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24788 /* Table6866 */
},
/* 0x6e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6f */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24790 /* Table6867 */
},
/* 0x70 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24792 /* Table6868 */
},
/* 0x71 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
24794 /* Table6869 */
},
/* 0x72 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
24810 /* Table6870 */
},
/* 0x73 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
24826 /* Table6871 */
},
/* 0x74 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24842 /* Table6872 */
},
/* 0x75 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24844 /* Table6873 */
},
/* 0x76 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24846 /* Table6874 */
},
/* 0x77 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x78 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x79 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7c */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24848 /* Table6875 */
},
/* 0x7d */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24850 /* Table6876 */
},
/* 0x7e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7f */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24852 /* Table6877 */
},
/* 0x80 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x81 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x82 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x83 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x84 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x85 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x86 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x87 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x88 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x89 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x90 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x91 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x92 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x93 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x94 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x95 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x96 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x97 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x98 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x99 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xab */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xac */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xad */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xae */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xba */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc2 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24854 /* Table6878 */
},
/* 0xc3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc6 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24856 /* Table6879 */
},
/* 0xc7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xca */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xce */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd0 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24858 /* Table6880 */
},
/* 0xd1 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24860 /* Table6881 */
},
/* 0xd2 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24862 /* Table6882 */
},
/* 0xd3 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24864 /* Table6883 */
},
/* 0xd4 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24866 /* Table6884 */
},
/* 0xd5 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24868 /* Table6885 */
},
/* 0xd6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd7 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24870 /* Table6886 */
},
/* 0xd8 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24872 /* Table6887 */
},
/* 0xd9 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24874 /* Table6888 */
},
/* 0xda */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24876 /* Table6889 */
},
/* 0xdb */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24878 /* Table6890 */
},
/* 0xdc */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24880 /* Table6891 */
},
/* 0xdd */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24882 /* Table6892 */
},
/* 0xde */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24884 /* Table6893 */
},
/* 0xdf */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24886 /* Table6894 */
},
/* 0xe0 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24888 /* Table6895 */
},
/* 0xe1 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24890 /* Table6896 */
},
/* 0xe2 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24892 /* Table6897 */
},
/* 0xe3 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24894 /* Table6898 */
},
/* 0xe4 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24896 /* Table6899 */
},
/* 0xe5 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24898 /* Table6900 */
},
/* 0xe6 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24900 /* Table6901 */
},
/* 0xe7 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24902 /* Table6902 */
},
/* 0xe8 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24904 /* Table6903 */
},
/* 0xe9 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24906 /* Table6904 */
},
/* 0xea */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24908 /* Table6905 */
},
/* 0xeb */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24910 /* Table6906 */
},
/* 0xec */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24912 /* Table6907 */
},
/* 0xed */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24914 /* Table6908 */
},
/* 0xee */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24916 /* Table6909 */
},
/* 0xef */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24918 /* Table6910 */
},
/* 0xf0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf1 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24920 /* Table6911 */
},
/* 0xf2 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24922 /* Table6912 */
},
/* 0xf3 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24924 /* Table6913 */
},
/* 0xf4 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24926 /* Table6914 */
},
/* 0xf5 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24928 /* Table6915 */
},
/* 0xf6 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24930 /* Table6916 */
},
/* 0xf7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf8 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24932 /* Table6917 */
},
/* 0xf9 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24934 /* Table6918 */
},
/* 0xfa */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24936 /* Table6919 */
},
/* 0xfb */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24938 /* Table6920 */
},
/* 0xfc */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24940 /* Table6921 */
},
/* 0xfd */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24942 /* Table6922 */
},
/* 0xfe */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24944 /* Table6923 */
},
/* 0xff */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
}
}
}
}
};
static const struct ContextDecision x86DisassemblerThreeByte38Opcodes = {
{ /* opcodeDecisions */
/* IC */
{ /* struct OpcodeDecision */
{
/* 0x00 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24946 /* Table6924 */
},
/* 0x01 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24948 /* Table6925 */
},
/* 0x02 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24950 /* Table6926 */
},
/* 0x03 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24952 /* Table6927 */
},
/* 0x04 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24954 /* Table6928 */
},
/* 0x05 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24956 /* Table6929 */
},
/* 0x06 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24958 /* Table6930 */
},
/* 0x07 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24960 /* Table6931 */
},
/* 0x08 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24962 /* Table6932 */
},
/* 0x09 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24964 /* Table6933 */
},
/* 0x0a */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24966 /* Table6934 */
},
/* 0x0b */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24968 /* Table6935 */
},
/* 0x0c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x10 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x11 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x12 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x13 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x14 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x15 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x16 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x17 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x18 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x19 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1c */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24970 /* Table6936 */
},
/* 0x1d */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24972 /* Table6937 */
},
/* 0x1e */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24974 /* Table6938 */
},
/* 0x1f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x20 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x21 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x22 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x23 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x24 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x25 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x26 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x27 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x28 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x29 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x30 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x31 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x32 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x33 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x34 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x35 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x36 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x37 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x38 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x39 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x40 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x41 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x42 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x43 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x44 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x45 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x46 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x47 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x48 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x49 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x50 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x51 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x52 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x53 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x54 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x55 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x56 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x57 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x58 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x59 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x60 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x61 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x62 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x63 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x64 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x65 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x66 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x67 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x68 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x69 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x70 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x71 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x72 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x73 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x74 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x75 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x76 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x77 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x78 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x79 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x80 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x81 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x82 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x83 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x84 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x85 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x86 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x87 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x88 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x89 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x90 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x91 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x92 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x93 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x94 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x95 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x96 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x97 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x98 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x99 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xab */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xac */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xad */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xae */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xba */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xca */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xce */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xda */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xde */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xea */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xeb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xec */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xed */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xee */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xef */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf0 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24976 /* Table6939 */
},
/* 0xf1 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24978 /* Table6940 */
},
/* 0xf2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xff */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
}
}
}
, /* IC_64BIT */
{ /* struct OpcodeDecision */
{
/* 0x00 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24980 /* Table6941 */
},
/* 0x01 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24982 /* Table6942 */
},
/* 0x02 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24984 /* Table6943 */
},
/* 0x03 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24986 /* Table6944 */
},
/* 0x04 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24988 /* Table6945 */
},
/* 0x05 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24990 /* Table6946 */
},
/* 0x06 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24992 /* Table6947 */
},
/* 0x07 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24994 /* Table6948 */
},
/* 0x08 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24996 /* Table6949 */
},
/* 0x09 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
24998 /* Table6950 */
},
/* 0x0a */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25000 /* Table6951 */
},
/* 0x0b */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25002 /* Table6952 */
},
/* 0x0c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x10 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x11 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x12 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x13 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x14 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x15 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x16 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x17 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x18 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x19 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1c */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25004 /* Table6953 */
},
/* 0x1d */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25006 /* Table6954 */
},
/* 0x1e */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25008 /* Table6955 */
},
/* 0x1f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x20 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x21 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x22 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x23 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x24 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x25 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x26 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x27 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x28 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x29 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x30 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x31 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x32 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x33 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x34 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x35 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x36 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x37 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x38 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x39 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x40 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x41 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x42 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x43 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x44 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x45 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x46 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x47 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x48 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x49 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x50 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x51 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x52 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x53 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x54 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x55 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x56 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x57 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x58 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x59 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x60 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x61 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x62 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x63 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x64 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x65 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x66 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x67 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x68 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x69 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x70 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x71 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x72 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x73 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x74 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x75 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x76 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x77 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x78 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x79 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x80 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x81 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x82 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x83 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x84 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x85 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x86 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x87 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x88 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x89 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x90 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x91 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x92 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x93 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x94 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x95 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x96 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x97 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x98 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x99 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xab */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xac */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xad */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xae */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xba */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xca */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xce */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xda */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xde */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xea */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xeb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xec */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xed */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xee */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xef */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf0 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25010 /* Table6956 */
},
/* 0xf1 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25012 /* Table6957 */
},
/* 0xf2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xff */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
}
}
}
, /* IC_OPSIZE */
{ /* struct OpcodeDecision */
{
/* 0x00 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25014 /* Table6958 */
},
/* 0x01 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25016 /* Table6959 */
},
/* 0x02 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25018 /* Table6960 */
},
/* 0x03 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25020 /* Table6961 */
},
/* 0x04 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25022 /* Table6962 */
},
/* 0x05 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25024 /* Table6963 */
},
/* 0x06 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25026 /* Table6964 */
},
/* 0x07 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25028 /* Table6965 */
},
/* 0x08 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25030 /* Table6966 */
},
/* 0x09 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25032 /* Table6967 */
},
/* 0x0a */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25034 /* Table6968 */
},
/* 0x0b */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25036 /* Table6969 */
},
/* 0x0c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x10 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25038 /* Table6970 */
},
/* 0x11 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x12 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x13 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x14 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25040 /* Table6971 */
},
/* 0x15 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25042 /* Table6972 */
},
/* 0x16 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x17 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25044 /* Table6973 */
},
/* 0x18 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x19 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1c */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25046 /* Table6974 */
},
/* 0x1d */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25048 /* Table6975 */
},
/* 0x1e */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25050 /* Table6976 */
},
/* 0x1f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x20 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25052 /* Table6977 */
},
/* 0x21 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25054 /* Table6978 */
},
/* 0x22 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25056 /* Table6979 */
},
/* 0x23 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25058 /* Table6980 */
},
/* 0x24 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25060 /* Table6981 */
},
/* 0x25 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25062 /* Table6982 */
},
/* 0x26 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x27 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x28 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25064 /* Table6983 */
},
/* 0x29 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25066 /* Table6984 */
},
/* 0x2a */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25068 /* Table6985 */
},
/* 0x2b */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25070 /* Table6986 */
},
/* 0x2c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x30 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25072 /* Table6987 */
},
/* 0x31 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25074 /* Table6988 */
},
/* 0x32 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25076 /* Table6989 */
},
/* 0x33 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25078 /* Table6990 */
},
/* 0x34 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25080 /* Table6991 */
},
/* 0x35 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25082 /* Table6992 */
},
/* 0x36 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x37 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25084 /* Table6993 */
},
/* 0x38 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25086 /* Table6994 */
},
/* 0x39 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25088 /* Table6995 */
},
/* 0x3a */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25090 /* Table6996 */
},
/* 0x3b */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25092 /* Table6997 */
},
/* 0x3c */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25094 /* Table6998 */
},
/* 0x3d */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25096 /* Table6999 */
},
/* 0x3e */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25098 /* Table7000 */
},
/* 0x3f */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25100 /* Table7001 */
},
/* 0x40 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25102 /* Table7002 */
},
/* 0x41 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25104 /* Table7003 */
},
/* 0x42 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x43 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x44 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x45 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x46 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x47 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x48 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x49 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x50 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x51 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x52 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x53 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x54 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x55 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x56 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x57 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x58 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x59 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x60 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x61 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x62 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x63 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x64 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x65 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x66 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x67 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x68 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x69 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x70 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x71 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x72 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x73 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x74 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x75 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x76 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x77 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x78 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x79 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x80 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25106 /* Table7004 */
},
/* 0x81 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25108 /* Table7005 */
},
/* 0x82 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25110 /* Table7006 */
},
/* 0x83 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x84 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x85 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x86 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x87 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x88 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x89 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x90 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x91 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x92 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x93 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x94 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x95 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x96 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x97 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x98 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x99 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xab */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xac */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xad */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xae */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xba */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xca */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xce */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xda */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdb */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25112 /* Table7007 */
},
/* 0xdc */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25114 /* Table7008 */
},
/* 0xdd */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25116 /* Table7009 */
},
/* 0xde */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25118 /* Table7010 */
},
/* 0xdf */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25120 /* Table7011 */
},
/* 0xe0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xea */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xeb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xec */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xed */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xee */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xef */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf0 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25122 /* Table7012 */
},
/* 0xf1 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25124 /* Table7013 */
},
/* 0xf2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf6 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25126 /* Table7014 */
},
/* 0xf7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xff */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
}
}
}
, /* IC_ADSIZE */
{ /* struct OpcodeDecision */
{
/* 0x00 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25128 /* Table7015 */
},
/* 0x01 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25130 /* Table7016 */
},
/* 0x02 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25132 /* Table7017 */
},
/* 0x03 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25134 /* Table7018 */
},
/* 0x04 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25136 /* Table7019 */
},
/* 0x05 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25138 /* Table7020 */
},
/* 0x06 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25140 /* Table7021 */
},
/* 0x07 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25142 /* Table7022 */
},
/* 0x08 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25144 /* Table7023 */
},
/* 0x09 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25146 /* Table7024 */
},
/* 0x0a */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25148 /* Table7025 */
},
/* 0x0b */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25150 /* Table7026 */
},
/* 0x0c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x10 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x11 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x12 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x13 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x14 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x15 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x16 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x17 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x18 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x19 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1c */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25152 /* Table7027 */
},
/* 0x1d */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25154 /* Table7028 */
},
/* 0x1e */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25156 /* Table7029 */
},
/* 0x1f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x20 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x21 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x22 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x23 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x24 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x25 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x26 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x27 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x28 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x29 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x30 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x31 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x32 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x33 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x34 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x35 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x36 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x37 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x38 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x39 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x40 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x41 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x42 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x43 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x44 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x45 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x46 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x47 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x48 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x49 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x50 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x51 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x52 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x53 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x54 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x55 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x56 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x57 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x58 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x59 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x60 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x61 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x62 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x63 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x64 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x65 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x66 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x67 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x68 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x69 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x70 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x71 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x72 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x73 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x74 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x75 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x76 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x77 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x78 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x79 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x80 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x81 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x82 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x83 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x84 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x85 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x86 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x87 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x88 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x89 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x90 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x91 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x92 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x93 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x94 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x95 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x96 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x97 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x98 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x99 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xab */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xac */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xad */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xae */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xba */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xca */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xce */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xda */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xde */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xea */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xeb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xec */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xed */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xee */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xef */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf0 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25158 /* Table7030 */
},
/* 0xf1 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25160 /* Table7031 */
},
/* 0xf2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xff */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
}
}
}
, /* IC_XD */
{ /* struct OpcodeDecision */
{
/* 0x00 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25162 /* Table7032 */
},
/* 0x01 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25164 /* Table7033 */
},
/* 0x02 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25166 /* Table7034 */
},
/* 0x03 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25168 /* Table7035 */
},
/* 0x04 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25170 /* Table7036 */
},
/* 0x05 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25172 /* Table7037 */
},
/* 0x06 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25174 /* Table7038 */
},
/* 0x07 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25176 /* Table7039 */
},
/* 0x08 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25178 /* Table7040 */
},
/* 0x09 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25180 /* Table7041 */
},
/* 0x0a */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25182 /* Table7042 */
},
/* 0x0b */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25184 /* Table7043 */
},
/* 0x0c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x10 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x11 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x12 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x13 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x14 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x15 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x16 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x17 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x18 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x19 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1c */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25186 /* Table7044 */
},
/* 0x1d */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25188 /* Table7045 */
},
/* 0x1e */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25190 /* Table7046 */
},
/* 0x1f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x20 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x21 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x22 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x23 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x24 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x25 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x26 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x27 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x28 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x29 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x30 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x31 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x32 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x33 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x34 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x35 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x36 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x37 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x38 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x39 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x40 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x41 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x42 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x43 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x44 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x45 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x46 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x47 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x48 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x49 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x50 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x51 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x52 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x53 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x54 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x55 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x56 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x57 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x58 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x59 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x60 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x61 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x62 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x63 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x64 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x65 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x66 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x67 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x68 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x69 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x70 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x71 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x72 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x73 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x74 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x75 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x76 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x77 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x78 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x79 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x80 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x81 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x82 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x83 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x84 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x85 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x86 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x87 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x88 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x89 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x90 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x91 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x92 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x93 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x94 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x95 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x96 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x97 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x98 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x99 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xab */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xac */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xad */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xae */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xba */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xca */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xce */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xda */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xde */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xea */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xeb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xec */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xed */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xee */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xef */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf0 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25192 /* Table7047 */
},
/* 0xf1 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25194 /* Table7048 */
},
/* 0xf2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xff */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
}
}
}
, /* IC_XS */
{ /* struct OpcodeDecision */
{
/* 0x00 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25196 /* Table7049 */
},
/* 0x01 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25198 /* Table7050 */
},
/* 0x02 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25200 /* Table7051 */
},
/* 0x03 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25202 /* Table7052 */
},
/* 0x04 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25204 /* Table7053 */
},
/* 0x05 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25206 /* Table7054 */
},
/* 0x06 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25208 /* Table7055 */
},
/* 0x07 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25210 /* Table7056 */
},
/* 0x08 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25212 /* Table7057 */
},
/* 0x09 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25214 /* Table7058 */
},
/* 0x0a */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25216 /* Table7059 */
},
/* 0x0b */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25218 /* Table7060 */
},
/* 0x0c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x10 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x11 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x12 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x13 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x14 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x15 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x16 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x17 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x18 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x19 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1c */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25220 /* Table7061 */
},
/* 0x1d */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25222 /* Table7062 */
},
/* 0x1e */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25224 /* Table7063 */
},
/* 0x1f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x20 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x21 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x22 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x23 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x24 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x25 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x26 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x27 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x28 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x29 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x30 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x31 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x32 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x33 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x34 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x35 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x36 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x37 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x38 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x39 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x40 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x41 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x42 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x43 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x44 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x45 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x46 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x47 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x48 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x49 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x50 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x51 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x52 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x53 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x54 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x55 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x56 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x57 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x58 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x59 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x60 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x61 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x62 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x63 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x64 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x65 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x66 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x67 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x68 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x69 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x70 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x71 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x72 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x73 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x74 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x75 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x76 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x77 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x78 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x79 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x80 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x81 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x82 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x83 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x84 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x85 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x86 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x87 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x88 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x89 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x90 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x91 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x92 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x93 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x94 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x95 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x96 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x97 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x98 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x99 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xab */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xac */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xad */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xae */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xba */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xca */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xce */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xda */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xde */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xea */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xeb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xec */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xed */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xee */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xef */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf0 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25226 /* Table7064 */
},
/* 0xf1 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25228 /* Table7065 */
},
/* 0xf2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf6 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25230 /* Table7066 */
},
/* 0xf7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xff */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
}
}
}
, /* IC_XD_OPSIZE */
{ /* struct OpcodeDecision */
{
/* 0x00 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x01 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x02 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x03 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x04 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x05 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x06 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x07 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x08 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x09 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x10 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x11 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x12 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x13 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x14 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x15 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x16 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x17 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x18 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x19 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x20 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x21 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x22 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x23 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x24 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x25 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x26 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x27 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x28 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x29 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x30 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x31 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x32 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x33 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x34 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x35 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x36 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x37 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x38 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x39 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x40 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x41 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x42 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x43 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x44 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x45 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x46 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x47 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x48 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x49 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x50 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x51 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x52 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x53 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x54 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x55 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x56 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x57 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x58 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x59 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x60 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x61 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x62 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x63 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x64 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x65 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x66 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x67 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x68 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x69 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x70 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x71 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x72 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x73 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x74 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x75 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x76 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x77 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x78 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x79 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x80 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x81 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x82 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x83 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x84 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x85 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x86 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x87 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x88 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x89 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x90 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x91 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x92 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x93 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x94 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x95 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x96 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x97 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x98 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x99 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xab */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xac */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xad */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xae */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xba */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xca */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xce */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xda */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xde */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xea */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xeb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xec */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xed */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xee */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xef */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf1 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25232 /* Table7067 */
},
/* 0xf2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xff */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
}
}
}
, /* IC_XS_OPSIZE */
{ /* struct OpcodeDecision */
{
/* 0x00 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x01 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x02 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x03 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x04 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x05 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x06 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x07 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x08 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x09 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x10 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x11 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x12 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x13 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x14 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x15 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x16 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x17 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x18 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x19 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x20 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x21 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x22 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x23 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x24 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x25 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x26 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x27 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x28 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x29 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x30 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x31 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x32 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x33 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x34 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x35 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x36 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x37 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x38 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x39 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x40 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x41 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x42 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x43 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x44 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x45 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x46 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x47 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x48 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x49 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x50 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x51 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x52 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x53 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x54 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x55 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x56 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x57 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x58 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x59 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x60 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x61 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x62 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x63 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x64 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x65 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x66 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x67 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x68 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x69 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x70 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x71 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x72 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x73 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x74 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x75 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x76 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x77 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x78 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x79 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x80 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x81 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x82 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x83 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x84 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x85 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x86 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x87 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x88 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x89 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x90 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x91 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x92 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x93 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x94 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x95 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x96 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x97 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x98 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x99 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xab */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xac */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xad */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xae */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xba */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xca */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xce */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xda */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xde */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xea */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xeb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xec */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xed */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xee */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xef */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xff */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
}
}
}
, /* IC_64BIT_REXW */
{ /* struct OpcodeDecision */
{
/* 0x00 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25234 /* Table7068 */
},
/* 0x01 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25236 /* Table7069 */
},
/* 0x02 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25238 /* Table7070 */
},
/* 0x03 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25240 /* Table7071 */
},
/* 0x04 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25242 /* Table7072 */
},
/* 0x05 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25244 /* Table7073 */
},
/* 0x06 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25246 /* Table7074 */
},
/* 0x07 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25248 /* Table7075 */
},
/* 0x08 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25250 /* Table7076 */
},
/* 0x09 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25252 /* Table7077 */
},
/* 0x0a */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25254 /* Table7078 */
},
/* 0x0b */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25256 /* Table7079 */
},
/* 0x0c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x10 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x11 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x12 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x13 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x14 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x15 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x16 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x17 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x18 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x19 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1c */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25258 /* Table7080 */
},
/* 0x1d */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25260 /* Table7081 */
},
/* 0x1e */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25262 /* Table7082 */
},
/* 0x1f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x20 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x21 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x22 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x23 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x24 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x25 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x26 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x27 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x28 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x29 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x30 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x31 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x32 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x33 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x34 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x35 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x36 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x37 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x38 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x39 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x40 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x41 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x42 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x43 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x44 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x45 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x46 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x47 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x48 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x49 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x50 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x51 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x52 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x53 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x54 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x55 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x56 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x57 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x58 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x59 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x60 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x61 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x62 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x63 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x64 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x65 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x66 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x67 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x68 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x69 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x70 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x71 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x72 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x73 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x74 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x75 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x76 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x77 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x78 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x79 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x80 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x81 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x82 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x83 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x84 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x85 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x86 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x87 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x88 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x89 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x90 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x91 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x92 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x93 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x94 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x95 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x96 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x97 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x98 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x99 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xab */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xac */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xad */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xae */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xba */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xca */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xce */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xda */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xde */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xea */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xeb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xec */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xed */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xee */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xef */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf0 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25264 /* Table7083 */
},
/* 0xf1 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25266 /* Table7084 */
},
/* 0xf2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xff */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
}
}
}
, /* IC_64BIT_OPSIZE */
{ /* struct OpcodeDecision */
{
/* 0x00 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25268 /* Table7085 */
},
/* 0x01 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25270 /* Table7086 */
},
/* 0x02 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25272 /* Table7087 */
},
/* 0x03 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25274 /* Table7088 */
},
/* 0x04 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25276 /* Table7089 */
},
/* 0x05 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25278 /* Table7090 */
},
/* 0x06 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25280 /* Table7091 */
},
/* 0x07 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25282 /* Table7092 */
},
/* 0x08 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25284 /* Table7093 */
},
/* 0x09 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25286 /* Table7094 */
},
/* 0x0a */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25288 /* Table7095 */
},
/* 0x0b */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25290 /* Table7096 */
},
/* 0x0c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x10 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25292 /* Table7097 */
},
/* 0x11 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x12 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x13 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x14 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25294 /* Table7098 */
},
/* 0x15 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25296 /* Table7099 */
},
/* 0x16 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x17 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25298 /* Table7100 */
},
/* 0x18 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x19 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1c */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25300 /* Table7101 */
},
/* 0x1d */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25302 /* Table7102 */
},
/* 0x1e */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25304 /* Table7103 */
},
/* 0x1f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x20 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25306 /* Table7104 */
},
/* 0x21 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25308 /* Table7105 */
},
/* 0x22 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25310 /* Table7106 */
},
/* 0x23 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25312 /* Table7107 */
},
/* 0x24 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25314 /* Table7108 */
},
/* 0x25 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25316 /* Table7109 */
},
/* 0x26 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x27 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x28 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25318 /* Table7110 */
},
/* 0x29 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25320 /* Table7111 */
},
/* 0x2a */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25322 /* Table7112 */
},
/* 0x2b */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25324 /* Table7113 */
},
/* 0x2c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x30 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25326 /* Table7114 */
},
/* 0x31 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25328 /* Table7115 */
},
/* 0x32 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25330 /* Table7116 */
},
/* 0x33 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25332 /* Table7117 */
},
/* 0x34 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25334 /* Table7118 */
},
/* 0x35 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25336 /* Table7119 */
},
/* 0x36 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x37 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25338 /* Table7120 */
},
/* 0x38 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25340 /* Table7121 */
},
/* 0x39 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25342 /* Table7122 */
},
/* 0x3a */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25344 /* Table7123 */
},
/* 0x3b */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25346 /* Table7124 */
},
/* 0x3c */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25348 /* Table7125 */
},
/* 0x3d */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25350 /* Table7126 */
},
/* 0x3e */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25352 /* Table7127 */
},
/* 0x3f */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25354 /* Table7128 */
},
/* 0x40 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25356 /* Table7129 */
},
/* 0x41 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25358 /* Table7130 */
},
/* 0x42 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x43 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x44 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x45 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x46 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x47 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x48 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x49 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x50 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x51 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x52 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x53 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x54 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x55 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x56 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x57 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x58 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x59 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x60 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x61 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x62 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x63 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x64 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x65 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x66 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x67 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x68 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x69 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x70 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x71 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x72 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x73 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x74 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x75 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x76 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x77 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x78 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x79 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x80 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25360 /* Table7131 */
},
/* 0x81 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25362 /* Table7132 */
},
/* 0x82 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25364 /* Table7133 */
},
/* 0x83 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x84 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x85 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x86 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x87 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x88 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x89 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x90 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x91 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x92 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x93 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x94 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x95 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x96 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x97 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x98 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x99 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xab */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xac */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xad */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xae */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xba */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xca */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xce */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xda */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdb */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25366 /* Table7134 */
},
/* 0xdc */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25368 /* Table7135 */
},
/* 0xdd */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25370 /* Table7136 */
},
/* 0xde */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25372 /* Table7137 */
},
/* 0xdf */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25374 /* Table7138 */
},
/* 0xe0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xea */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xeb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xec */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xed */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xee */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xef */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf0 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25376 /* Table7139 */
},
/* 0xf1 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25378 /* Table7140 */
},
/* 0xf2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf6 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25380 /* Table7141 */
},
/* 0xf7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xff */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
}
}
}
, /* IC_64BIT_ADSIZE */
{ /* struct OpcodeDecision */
{
/* 0x00 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25382 /* Table7142 */
},
/* 0x01 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25384 /* Table7143 */
},
/* 0x02 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25386 /* Table7144 */
},
/* 0x03 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25388 /* Table7145 */
},
/* 0x04 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25390 /* Table7146 */
},
/* 0x05 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25392 /* Table7147 */
},
/* 0x06 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25394 /* Table7148 */
},
/* 0x07 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25396 /* Table7149 */
},
/* 0x08 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25398 /* Table7150 */
},
/* 0x09 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25400 /* Table7151 */
},
/* 0x0a */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25402 /* Table7152 */
},
/* 0x0b */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25404 /* Table7153 */
},
/* 0x0c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x10 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x11 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x12 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x13 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x14 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x15 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x16 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x17 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x18 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x19 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1c */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25406 /* Table7154 */
},
/* 0x1d */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25408 /* Table7155 */
},
/* 0x1e */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25410 /* Table7156 */
},
/* 0x1f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x20 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x21 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x22 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x23 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x24 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x25 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x26 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x27 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x28 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x29 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x30 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x31 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x32 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x33 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x34 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x35 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x36 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x37 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x38 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x39 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x40 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x41 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x42 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x43 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x44 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x45 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x46 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x47 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x48 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x49 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x50 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x51 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x52 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x53 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x54 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x55 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x56 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x57 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x58 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x59 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x60 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x61 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x62 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x63 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x64 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x65 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x66 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x67 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x68 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x69 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x70 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x71 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x72 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x73 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x74 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x75 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x76 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x77 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x78 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x79 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x80 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x81 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x82 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x83 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x84 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x85 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x86 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x87 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x88 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x89 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x90 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x91 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x92 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x93 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x94 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x95 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x96 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x97 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x98 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x99 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xab */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xac */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xad */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xae */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xba */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xca */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xce */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xda */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xde */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xea */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xeb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xec */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xed */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xee */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xef */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf0 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25412 /* Table7157 */
},
/* 0xf1 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25414 /* Table7158 */
},
/* 0xf2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xff */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
}
}
}
, /* IC_64BIT_XD */
{ /* struct OpcodeDecision */
{
/* 0x00 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25416 /* Table7159 */
},
/* 0x01 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25418 /* Table7160 */
},
/* 0x02 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25420 /* Table7161 */
},
/* 0x03 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25422 /* Table7162 */
},
/* 0x04 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25424 /* Table7163 */
},
/* 0x05 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25426 /* Table7164 */
},
/* 0x06 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25428 /* Table7165 */
},
/* 0x07 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25430 /* Table7166 */
},
/* 0x08 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25432 /* Table7167 */
},
/* 0x09 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25434 /* Table7168 */
},
/* 0x0a */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25436 /* Table7169 */
},
/* 0x0b */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25438 /* Table7170 */
},
/* 0x0c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x10 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x11 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x12 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x13 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x14 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x15 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x16 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x17 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x18 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x19 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1c */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25440 /* Table7171 */
},
/* 0x1d */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25442 /* Table7172 */
},
/* 0x1e */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25444 /* Table7173 */
},
/* 0x1f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x20 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x21 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x22 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x23 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x24 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x25 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x26 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x27 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x28 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x29 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x30 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x31 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x32 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x33 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x34 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x35 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x36 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x37 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x38 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x39 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x40 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x41 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x42 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x43 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x44 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x45 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x46 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x47 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x48 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x49 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x50 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x51 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x52 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x53 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x54 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x55 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x56 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x57 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x58 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x59 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x60 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x61 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x62 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x63 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x64 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x65 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x66 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x67 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x68 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x69 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x70 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x71 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x72 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x73 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x74 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x75 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x76 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x77 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x78 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x79 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x80 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x81 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x82 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x83 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x84 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x85 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x86 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x87 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x88 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x89 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x90 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x91 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x92 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x93 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x94 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x95 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x96 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x97 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x98 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x99 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xab */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xac */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xad */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xae */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xba */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xca */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xce */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xda */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xde */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xea */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xeb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xec */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xed */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xee */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xef */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf0 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25446 /* Table7174 */
},
/* 0xf1 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25448 /* Table7175 */
},
/* 0xf2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xff */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
}
}
}
, /* IC_64BIT_XS */
{ /* struct OpcodeDecision */
{
/* 0x00 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25450 /* Table7176 */
},
/* 0x01 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25452 /* Table7177 */
},
/* 0x02 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25454 /* Table7178 */
},
/* 0x03 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25456 /* Table7179 */
},
/* 0x04 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25458 /* Table7180 */
},
/* 0x05 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25460 /* Table7181 */
},
/* 0x06 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25462 /* Table7182 */
},
/* 0x07 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25464 /* Table7183 */
},
/* 0x08 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25466 /* Table7184 */
},
/* 0x09 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25468 /* Table7185 */
},
/* 0x0a */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25470 /* Table7186 */
},
/* 0x0b */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25472 /* Table7187 */
},
/* 0x0c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x10 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x11 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x12 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x13 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x14 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x15 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x16 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x17 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x18 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x19 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1c */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25474 /* Table7188 */
},
/* 0x1d */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25476 /* Table7189 */
},
/* 0x1e */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25478 /* Table7190 */
},
/* 0x1f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x20 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x21 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x22 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x23 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x24 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x25 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x26 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x27 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x28 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x29 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x30 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x31 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x32 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x33 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x34 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x35 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x36 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x37 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x38 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x39 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x40 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x41 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x42 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x43 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x44 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x45 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x46 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x47 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x48 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x49 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x50 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x51 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x52 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x53 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x54 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x55 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x56 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x57 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x58 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x59 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x60 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x61 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x62 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x63 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x64 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x65 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x66 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x67 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x68 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x69 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x70 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x71 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x72 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x73 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x74 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x75 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x76 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x77 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x78 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x79 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x80 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x81 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x82 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x83 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x84 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x85 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x86 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x87 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x88 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x89 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x90 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x91 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x92 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x93 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x94 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x95 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x96 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x97 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x98 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x99 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xab */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xac */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xad */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xae */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xba */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xca */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xce */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xda */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xde */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xea */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xeb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xec */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xed */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xee */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xef */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf0 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25480 /* Table7191 */
},
/* 0xf1 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25482 /* Table7192 */
},
/* 0xf2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf6 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25484 /* Table7193 */
},
/* 0xf7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xff */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
}
}
}
, /* IC_64BIT_XD_OPSIZE */
{ /* struct OpcodeDecision */
{
/* 0x00 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x01 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x02 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x03 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x04 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x05 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x06 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x07 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x08 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x09 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x10 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x11 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x12 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x13 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x14 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x15 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x16 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x17 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x18 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x19 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x20 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x21 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x22 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x23 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x24 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x25 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x26 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x27 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x28 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x29 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x30 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x31 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x32 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x33 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x34 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x35 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x36 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x37 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x38 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x39 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x40 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x41 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x42 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x43 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x44 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x45 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x46 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x47 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x48 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x49 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x50 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x51 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x52 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x53 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x54 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x55 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x56 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x57 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x58 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x59 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x60 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x61 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x62 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x63 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x64 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x65 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x66 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x67 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x68 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x69 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x70 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x71 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x72 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x73 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x74 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x75 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x76 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x77 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x78 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x79 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x80 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x81 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x82 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x83 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x84 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x85 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x86 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x87 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x88 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x89 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x90 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x91 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x92 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x93 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x94 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x95 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x96 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x97 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x98 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x99 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xab */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xac */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xad */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xae */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xba */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xca */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xce */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xda */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xde */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xea */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xeb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xec */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xed */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xee */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xef */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf1 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25486 /* Table7194 */
},
/* 0xf2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xff */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
}
}
}
, /* IC_64BIT_XS_OPSIZE */
{ /* struct OpcodeDecision */
{
/* 0x00 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x01 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x02 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x03 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x04 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x05 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x06 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x07 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x08 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x09 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x10 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x11 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x12 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x13 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x14 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x15 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x16 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x17 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x18 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x19 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x20 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x21 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x22 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x23 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x24 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x25 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x26 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x27 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x28 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x29 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x30 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x31 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x32 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x33 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x34 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x35 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x36 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x37 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x38 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x39 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x40 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x41 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x42 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x43 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x44 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x45 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x46 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x47 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x48 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x49 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x50 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x51 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x52 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x53 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x54 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x55 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x56 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x57 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x58 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x59 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x60 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x61 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x62 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x63 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x64 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x65 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x66 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x67 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x68 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x69 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x70 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x71 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x72 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x73 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x74 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x75 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x76 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x77 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x78 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x79 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x80 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x81 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x82 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x83 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x84 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x85 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x86 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x87 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x88 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x89 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x90 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x91 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x92 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x93 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x94 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x95 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x96 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x97 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x98 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x99 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xab */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xac */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xad */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xae */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xba */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xca */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xce */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xda */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xde */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xea */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xeb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xec */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xed */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xee */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xef */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xff */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
}
}
}
, /* IC_64BIT_REXW_XS */
{ /* struct OpcodeDecision */
{
/* 0x00 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25488 /* Table7195 */
},
/* 0x01 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25490 /* Table7196 */
},
/* 0x02 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25492 /* Table7197 */
},
/* 0x03 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25494 /* Table7198 */
},
/* 0x04 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25496 /* Table7199 */
},
/* 0x05 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25498 /* Table7200 */
},
/* 0x06 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25500 /* Table7201 */
},
/* 0x07 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25502 /* Table7202 */
},
/* 0x08 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25504 /* Table7203 */
},
/* 0x09 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25506 /* Table7204 */
},
/* 0x0a */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25508 /* Table7205 */
},
/* 0x0b */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25510 /* Table7206 */
},
/* 0x0c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x10 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x11 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x12 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x13 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x14 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x15 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x16 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x17 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x18 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x19 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1c */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25512 /* Table7207 */
},
/* 0x1d */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25514 /* Table7208 */
},
/* 0x1e */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25516 /* Table7209 */
},
/* 0x1f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x20 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x21 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x22 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x23 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x24 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x25 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x26 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x27 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x28 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x29 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x30 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x31 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x32 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x33 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x34 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x35 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x36 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x37 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x38 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x39 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x40 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x41 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x42 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x43 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x44 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x45 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x46 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x47 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x48 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x49 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x50 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x51 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x52 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x53 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x54 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x55 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x56 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x57 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x58 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x59 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x60 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x61 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x62 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x63 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x64 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x65 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x66 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x67 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x68 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x69 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x70 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x71 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x72 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x73 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x74 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x75 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x76 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x77 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x78 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x79 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x80 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x81 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x82 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x83 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x84 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x85 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x86 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x87 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x88 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x89 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x90 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x91 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x92 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x93 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x94 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x95 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x96 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x97 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x98 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x99 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xab */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xac */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xad */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xae */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xba */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xca */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xce */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xda */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xde */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xea */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xeb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xec */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xed */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xee */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xef */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf0 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25518 /* Table7210 */
},
/* 0xf1 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25520 /* Table7211 */
},
/* 0xf2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf6 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25522 /* Table7212 */
},
/* 0xf7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xff */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
}
}
}
, /* IC_64BIT_REXW_XD */
{ /* struct OpcodeDecision */
{
/* 0x00 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25524 /* Table7213 */
},
/* 0x01 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25526 /* Table7214 */
},
/* 0x02 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25528 /* Table7215 */
},
/* 0x03 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25530 /* Table7216 */
},
/* 0x04 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25532 /* Table7217 */
},
/* 0x05 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25534 /* Table7218 */
},
/* 0x06 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25536 /* Table7219 */
},
/* 0x07 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25538 /* Table7220 */
},
/* 0x08 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25540 /* Table7221 */
},
/* 0x09 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25542 /* Table7222 */
},
/* 0x0a */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25544 /* Table7223 */
},
/* 0x0b */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25546 /* Table7224 */
},
/* 0x0c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x10 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x11 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x12 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x13 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x14 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x15 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x16 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x17 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x18 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x19 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1c */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25548 /* Table7225 */
},
/* 0x1d */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25550 /* Table7226 */
},
/* 0x1e */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25552 /* Table7227 */
},
/* 0x1f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x20 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x21 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x22 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x23 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x24 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x25 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x26 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x27 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x28 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x29 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x30 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x31 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x32 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x33 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x34 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x35 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x36 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x37 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x38 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x39 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x40 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x41 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x42 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x43 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x44 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x45 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x46 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x47 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x48 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x49 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x50 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x51 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x52 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x53 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x54 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x55 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x56 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x57 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x58 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x59 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x60 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x61 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x62 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x63 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x64 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x65 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x66 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x67 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x68 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x69 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x70 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x71 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x72 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x73 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x74 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x75 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x76 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x77 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x78 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x79 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x80 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x81 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x82 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x83 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x84 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x85 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x86 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x87 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x88 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x89 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x90 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x91 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x92 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x93 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x94 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x95 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x96 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x97 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x98 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x99 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xab */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xac */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xad */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xae */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xba */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xca */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xce */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xda */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xde */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xea */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xeb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xec */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xed */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xee */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xef */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf0 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25554 /* Table7228 */
},
/* 0xf1 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25556 /* Table7229 */
},
/* 0xf2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xff */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
}
}
}
, /* IC_64BIT_REXW_OPSIZE */
{ /* struct OpcodeDecision */
{
/* 0x00 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25558 /* Table7230 */
},
/* 0x01 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25560 /* Table7231 */
},
/* 0x02 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25562 /* Table7232 */
},
/* 0x03 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25564 /* Table7233 */
},
/* 0x04 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25566 /* Table7234 */
},
/* 0x05 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25568 /* Table7235 */
},
/* 0x06 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25570 /* Table7236 */
},
/* 0x07 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25572 /* Table7237 */
},
/* 0x08 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25574 /* Table7238 */
},
/* 0x09 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25576 /* Table7239 */
},
/* 0x0a */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25578 /* Table7240 */
},
/* 0x0b */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25580 /* Table7241 */
},
/* 0x0c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x10 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25582 /* Table7242 */
},
/* 0x11 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x12 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x13 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x14 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25584 /* Table7243 */
},
/* 0x15 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25586 /* Table7244 */
},
/* 0x16 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x17 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25588 /* Table7245 */
},
/* 0x18 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x19 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1c */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25590 /* Table7246 */
},
/* 0x1d */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25592 /* Table7247 */
},
/* 0x1e */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25594 /* Table7248 */
},
/* 0x1f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x20 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25596 /* Table7249 */
},
/* 0x21 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25598 /* Table7250 */
},
/* 0x22 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25600 /* Table7251 */
},
/* 0x23 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25602 /* Table7252 */
},
/* 0x24 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25604 /* Table7253 */
},
/* 0x25 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25606 /* Table7254 */
},
/* 0x26 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x27 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x28 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25608 /* Table7255 */
},
/* 0x29 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25610 /* Table7256 */
},
/* 0x2a */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25612 /* Table7257 */
},
/* 0x2b */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25614 /* Table7258 */
},
/* 0x2c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x30 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25616 /* Table7259 */
},
/* 0x31 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25618 /* Table7260 */
},
/* 0x32 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25620 /* Table7261 */
},
/* 0x33 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25622 /* Table7262 */
},
/* 0x34 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25624 /* Table7263 */
},
/* 0x35 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25626 /* Table7264 */
},
/* 0x36 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x37 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25628 /* Table7265 */
},
/* 0x38 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25630 /* Table7266 */
},
/* 0x39 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25632 /* Table7267 */
},
/* 0x3a */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25634 /* Table7268 */
},
/* 0x3b */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25636 /* Table7269 */
},
/* 0x3c */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25638 /* Table7270 */
},
/* 0x3d */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25640 /* Table7271 */
},
/* 0x3e */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25642 /* Table7272 */
},
/* 0x3f */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25644 /* Table7273 */
},
/* 0x40 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25646 /* Table7274 */
},
/* 0x41 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25648 /* Table7275 */
},
/* 0x42 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x43 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x44 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x45 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x46 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x47 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x48 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x49 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x50 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x51 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x52 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x53 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x54 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x55 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x56 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x57 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x58 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x59 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x60 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x61 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x62 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x63 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x64 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x65 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x66 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x67 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x68 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x69 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x70 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x71 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x72 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x73 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x74 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x75 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x76 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x77 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x78 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x79 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x80 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25650 /* Table7276 */
},
/* 0x81 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25652 /* Table7277 */
},
/* 0x82 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25654 /* Table7278 */
},
/* 0x83 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x84 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x85 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x86 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x87 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x88 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x89 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x90 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x91 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x92 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x93 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x94 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x95 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x96 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x97 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x98 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x99 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xab */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xac */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xad */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xae */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xba */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xca */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xce */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xda */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdb */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25656 /* Table7279 */
},
/* 0xdc */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25658 /* Table7280 */
},
/* 0xdd */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25660 /* Table7281 */
},
/* 0xde */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25662 /* Table7282 */
},
/* 0xdf */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25664 /* Table7283 */
},
/* 0xe0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xea */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xeb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xec */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xed */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xee */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xef */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf0 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25666 /* Table7284 */
},
/* 0xf1 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25668 /* Table7285 */
},
/* 0xf2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf6 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25670 /* Table7286 */
},
/* 0xf7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xff */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
}
}
}
, /* IC_VEX */
{ /* struct OpcodeDecision */
{
/* 0x00 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x01 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x02 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x03 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x04 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x05 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x06 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x07 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x08 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x09 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x10 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x11 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x12 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x13 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x14 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x15 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x16 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x17 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x18 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x19 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x20 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x21 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x22 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x23 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x24 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x25 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x26 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x27 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x28 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x29 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x30 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x31 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x32 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x33 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x34 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x35 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x36 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x37 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x38 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x39 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x40 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x41 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x42 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x43 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x44 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x45 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x46 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x47 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x48 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x49 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x50 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x51 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x52 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x53 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x54 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x55 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x56 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x57 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x58 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x59 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x60 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x61 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x62 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x63 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x64 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x65 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x66 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x67 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x68 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x69 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x70 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x71 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x72 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x73 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x74 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x75 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x76 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x77 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x78 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x79 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x80 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x81 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x82 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x83 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x84 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x85 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x86 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x87 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x88 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x89 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x90 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x91 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x92 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x93 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x94 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x95 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x96 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x97 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x98 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x99 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xab */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xac */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xad */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xae */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xba */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xca */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xce */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xda */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xde */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xea */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xeb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xec */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xed */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xee */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xef */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf2 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25672 /* Table7287 */
},
/* 0xf3 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
25674 /* Table7288 */
},
/* 0xf4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf5 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25690 /* Table7289 */
},
/* 0xf6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf7 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25692 /* Table7290 */
},
/* 0xf8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xff */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
}
}
}
, /* IC_VEX_XS */
{ /* struct OpcodeDecision */
{
/* 0x00 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x01 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x02 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x03 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x04 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x05 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x06 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x07 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x08 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x09 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x10 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x11 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x12 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x13 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x14 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x15 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x16 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x17 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x18 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x19 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x20 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x21 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x22 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x23 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x24 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x25 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x26 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x27 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x28 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x29 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x30 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x31 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x32 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x33 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x34 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x35 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x36 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x37 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x38 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x39 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x40 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x41 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x42 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x43 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x44 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x45 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x46 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x47 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x48 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x49 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x50 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x51 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x52 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x53 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x54 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x55 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x56 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x57 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x58 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x59 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x60 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x61 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x62 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x63 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x64 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x65 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x66 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x67 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x68 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x69 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x70 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x71 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x72 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x73 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x74 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x75 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x76 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x77 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x78 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x79 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x80 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x81 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x82 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x83 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x84 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x85 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x86 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x87 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x88 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x89 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x90 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x91 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x92 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x93 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x94 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x95 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x96 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x97 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x98 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x99 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xab */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xac */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xad */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xae */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xba */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xca */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xce */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xda */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xde */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xea */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xeb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xec */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xed */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xee */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xef */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf5 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25694 /* Table7291 */
},
/* 0xf6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf7 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25696 /* Table7292 */
},
/* 0xf8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xff */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
}
}
}
, /* IC_VEX_XD */
{ /* struct OpcodeDecision */
{
/* 0x00 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x01 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x02 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x03 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x04 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x05 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x06 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x07 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x08 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x09 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x10 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x11 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x12 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x13 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x14 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x15 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x16 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x17 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x18 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x19 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x20 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x21 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x22 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x23 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x24 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x25 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x26 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x27 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x28 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x29 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x30 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x31 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x32 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x33 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x34 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x35 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x36 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x37 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x38 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x39 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x40 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x41 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x42 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x43 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x44 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x45 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x46 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x47 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x48 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x49 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x50 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x51 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x52 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x53 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x54 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x55 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x56 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x57 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x58 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x59 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x60 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x61 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x62 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x63 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x64 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x65 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x66 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x67 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x68 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x69 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x70 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x71 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x72 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x73 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x74 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x75 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x76 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x77 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x78 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x79 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x80 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x81 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x82 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x83 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x84 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x85 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x86 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x87 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x88 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x89 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x90 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x91 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x92 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x93 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x94 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x95 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x96 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x97 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x98 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x99 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xab */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xac */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xad */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xae */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xba */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xca */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xce */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xda */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xde */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xea */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xeb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xec */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xed */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xee */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xef */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf5 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25698 /* Table7293 */
},
/* 0xf6 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25700 /* Table7294 */
},
/* 0xf7 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25702 /* Table7295 */
},
/* 0xf8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xff */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
}
}
}
, /* IC_VEX_OPSIZE */
{ /* struct OpcodeDecision */
{
/* 0x00 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25704 /* Table7296 */
},
/* 0x01 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25706 /* Table7297 */
},
/* 0x02 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25708 /* Table7298 */
},
/* 0x03 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25710 /* Table7299 */
},
/* 0x04 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25712 /* Table7300 */
},
/* 0x05 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25714 /* Table7301 */
},
/* 0x06 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25716 /* Table7302 */
},
/* 0x07 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25718 /* Table7303 */
},
/* 0x08 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25720 /* Table7304 */
},
/* 0x09 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25722 /* Table7305 */
},
/* 0x0a */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25724 /* Table7306 */
},
/* 0x0b */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25726 /* Table7307 */
},
/* 0x0c */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25728 /* Table7308 */
},
/* 0x0d */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25730 /* Table7309 */
},
/* 0x0e */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25732 /* Table7310 */
},
/* 0x0f */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25734 /* Table7311 */
},
/* 0x10 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x11 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x12 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x13 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25736 /* Table7312 */
},
/* 0x14 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x15 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x16 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x17 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25738 /* Table7313 */
},
/* 0x18 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25740 /* Table7314 */
},
/* 0x19 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1c */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25742 /* Table7315 */
},
/* 0x1d */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25744 /* Table7316 */
},
/* 0x1e */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25746 /* Table7317 */
},
/* 0x1f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x20 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25748 /* Table7318 */
},
/* 0x21 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25750 /* Table7319 */
},
/* 0x22 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25752 /* Table7320 */
},
/* 0x23 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25754 /* Table7321 */
},
/* 0x24 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25756 /* Table7322 */
},
/* 0x25 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25758 /* Table7323 */
},
/* 0x26 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x27 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x28 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25760 /* Table7324 */
},
/* 0x29 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25762 /* Table7325 */
},
/* 0x2a */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25764 /* Table7326 */
},
/* 0x2b */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25766 /* Table7327 */
},
/* 0x2c */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25768 /* Table7328 */
},
/* 0x2d */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25770 /* Table7329 */
},
/* 0x2e */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25772 /* Table7330 */
},
/* 0x2f */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25774 /* Table7331 */
},
/* 0x30 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25776 /* Table7332 */
},
/* 0x31 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25778 /* Table7333 */
},
/* 0x32 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25780 /* Table7334 */
},
/* 0x33 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25782 /* Table7335 */
},
/* 0x34 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25784 /* Table7336 */
},
/* 0x35 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25786 /* Table7337 */
},
/* 0x36 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x37 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25788 /* Table7338 */
},
/* 0x38 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25790 /* Table7339 */
},
/* 0x39 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25792 /* Table7340 */
},
/* 0x3a */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25794 /* Table7341 */
},
/* 0x3b */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25796 /* Table7342 */
},
/* 0x3c */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25798 /* Table7343 */
},
/* 0x3d */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25800 /* Table7344 */
},
/* 0x3e */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25802 /* Table7345 */
},
/* 0x3f */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25804 /* Table7346 */
},
/* 0x40 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25806 /* Table7347 */
},
/* 0x41 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25808 /* Table7348 */
},
/* 0x42 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x43 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x44 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x45 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25810 /* Table7349 */
},
/* 0x46 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25812 /* Table7350 */
},
/* 0x47 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25814 /* Table7351 */
},
/* 0x48 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x49 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x50 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x51 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x52 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x53 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x54 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x55 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x56 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x57 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x58 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25816 /* Table7352 */
},
/* 0x59 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25818 /* Table7353 */
},
/* 0x5a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x60 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x61 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x62 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x63 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x64 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x65 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x66 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x67 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x68 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x69 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x70 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x71 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x72 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x73 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x74 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x75 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x76 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x77 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x78 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25820 /* Table7354 */
},
/* 0x79 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25822 /* Table7355 */
},
/* 0x7a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x80 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x81 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x82 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x83 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x84 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x85 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x86 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x87 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x88 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x89 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8c */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25824 /* Table7356 */
},
/* 0x8d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8e */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25826 /* Table7357 */
},
/* 0x8f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x90 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25828 /* Table7358 */
},
/* 0x91 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25830 /* Table7359 */
},
/* 0x92 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25832 /* Table7360 */
},
/* 0x93 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25834 /* Table7361 */
},
/* 0x94 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x95 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x96 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25836 /* Table7362 */
},
/* 0x97 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25838 /* Table7363 */
},
/* 0x98 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25840 /* Table7364 */
},
/* 0x99 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25842 /* Table7365 */
},
/* 0x9a */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25844 /* Table7366 */
},
/* 0x9b */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25846 /* Table7367 */
},
/* 0x9c */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25848 /* Table7368 */
},
/* 0x9d */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25850 /* Table7369 */
},
/* 0x9e */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25852 /* Table7370 */
},
/* 0x9f */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25854 /* Table7371 */
},
/* 0xa0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa6 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25856 /* Table7372 */
},
/* 0xa7 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25858 /* Table7373 */
},
/* 0xa8 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25860 /* Table7374 */
},
/* 0xa9 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25862 /* Table7375 */
},
/* 0xaa */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25864 /* Table7376 */
},
/* 0xab */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25866 /* Table7377 */
},
/* 0xac */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25868 /* Table7378 */
},
/* 0xad */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25870 /* Table7379 */
},
/* 0xae */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25872 /* Table7380 */
},
/* 0xaf */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25874 /* Table7381 */
},
/* 0xb0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb6 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25876 /* Table7382 */
},
/* 0xb7 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25878 /* Table7383 */
},
/* 0xb8 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25880 /* Table7384 */
},
/* 0xb9 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25882 /* Table7385 */
},
/* 0xba */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25884 /* Table7386 */
},
/* 0xbb */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25886 /* Table7387 */
},
/* 0xbc */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25888 /* Table7388 */
},
/* 0xbd */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25890 /* Table7389 */
},
/* 0xbe */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25892 /* Table7390 */
},
/* 0xbf */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25894 /* Table7391 */
},
/* 0xc0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xca */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xce */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xda */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdb */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25896 /* Table7392 */
},
/* 0xdc */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25898 /* Table7393 */
},
/* 0xdd */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25900 /* Table7394 */
},
/* 0xde */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25902 /* Table7395 */
},
/* 0xdf */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25904 /* Table7396 */
},
/* 0xe0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xea */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xeb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xec */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xed */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xee */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xef */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf7 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25906 /* Table7397 */
},
/* 0xf8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xff */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
}
}
}
, /* IC_VEX_W */
{ /* struct OpcodeDecision */
{
/* 0x00 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x01 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x02 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x03 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x04 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x05 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x06 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x07 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x08 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x09 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x10 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x11 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x12 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x13 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x14 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x15 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x16 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x17 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x18 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x19 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x20 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x21 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x22 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x23 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x24 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x25 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x26 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x27 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x28 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x29 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x30 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x31 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x32 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x33 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x34 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x35 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x36 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x37 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x38 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x39 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x40 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x41 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x42 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x43 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x44 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x45 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x46 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x47 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x48 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x49 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x50 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x51 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x52 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x53 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x54 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x55 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x56 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x57 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x58 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x59 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x60 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x61 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x62 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x63 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x64 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x65 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x66 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x67 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x68 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x69 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x70 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x71 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x72 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x73 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x74 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x75 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x76 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x77 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x78 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x79 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x80 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x81 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x82 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x83 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x84 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x85 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x86 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x87 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x88 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x89 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x90 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x91 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x92 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x93 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x94 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x95 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x96 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x97 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x98 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x99 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xab */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xac */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xad */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xae */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xba */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xca */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xce */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xda */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xde */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xea */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xeb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xec */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xed */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xee */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xef */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf2 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25908 /* Table7398 */
},
/* 0xf3 */
{ /* struct ModRMDecision */
MODRM_SPLITREG,
25910 /* Table7399 */
},
/* 0xf4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf5 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25926 /* Table7400 */
},
/* 0xf6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf7 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25928 /* Table7401 */
},
/* 0xf8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xff */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
}
}
}
, /* IC_VEX_W_XS */
{ /* struct OpcodeDecision */
{
/* 0x00 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x01 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x02 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x03 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x04 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x05 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x06 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x07 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x08 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x09 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x10 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x11 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x12 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x13 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x14 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x15 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x16 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x17 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x18 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x19 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x20 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x21 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x22 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x23 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x24 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x25 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x26 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x27 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x28 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x29 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x30 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x31 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x32 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x33 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x34 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x35 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x36 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x37 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x38 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x39 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x40 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x41 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x42 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x43 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x44 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x45 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x46 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x47 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x48 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x49 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x50 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x51 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x52 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x53 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x54 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x55 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x56 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x57 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x58 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x59 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x60 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x61 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x62 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x63 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x64 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x65 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x66 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x67 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x68 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x69 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x70 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x71 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x72 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x73 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x74 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x75 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x76 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x77 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x78 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x79 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x80 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x81 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x82 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x83 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x84 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x85 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x86 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x87 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x88 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x89 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x90 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x91 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x92 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x93 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x94 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x95 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x96 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x97 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x98 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x99 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xab */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xac */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xad */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xae */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xba */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xca */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xce */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xda */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xde */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xea */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xeb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xec */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xed */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xee */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xef */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf5 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25930 /* Table7402 */
},
/* 0xf6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf7 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25932 /* Table7403 */
},
/* 0xf8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xff */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
}
}
}
, /* IC_VEX_W_XD */
{ /* struct OpcodeDecision */
{
/* 0x00 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x01 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x02 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x03 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x04 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x05 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x06 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x07 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x08 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x09 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x10 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x11 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x12 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x13 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x14 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x15 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x16 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x17 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x18 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x19 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x20 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x21 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x22 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x23 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x24 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x25 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x26 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x27 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x28 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x29 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x30 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x31 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x32 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x33 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x34 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x35 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x36 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x37 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x38 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x39 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x40 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x41 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x42 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x43 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x44 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x45 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x46 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x47 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x48 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x49 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x50 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x51 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x52 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x53 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x54 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x55 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x56 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x57 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x58 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x59 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x60 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x61 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x62 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x63 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x64 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x65 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x66 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x67 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x68 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x69 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x70 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x71 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x72 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x73 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x74 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x75 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x76 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x77 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x78 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x79 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x80 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x81 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x82 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x83 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x84 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x85 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x86 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x87 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x88 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x89 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x90 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x91 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x92 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x93 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x94 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x95 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x96 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x97 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x98 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x99 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xab */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xac */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xad */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xae */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xba */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xca */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xce */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xda */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xde */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xea */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xeb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xec */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xed */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xee */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xef */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf5 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25934 /* Table7404 */
},
/* 0xf6 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25936 /* Table7405 */
},
/* 0xf7 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25938 /* Table7406 */
},
/* 0xf8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xff */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
}
}
}
, /* IC_VEX_W_OPSIZE */
{ /* struct OpcodeDecision */
{
/* 0x00 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25940 /* Table7407 */
},
/* 0x01 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25942 /* Table7408 */
},
/* 0x02 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25944 /* Table7409 */
},
/* 0x03 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25946 /* Table7410 */
},
/* 0x04 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25948 /* Table7411 */
},
/* 0x05 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25950 /* Table7412 */
},
/* 0x06 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25952 /* Table7413 */
},
/* 0x07 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25954 /* Table7414 */
},
/* 0x08 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25956 /* Table7415 */
},
/* 0x09 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25958 /* Table7416 */
},
/* 0x0a */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25960 /* Table7417 */
},
/* 0x0b */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25962 /* Table7418 */
},
/* 0x0c */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25964 /* Table7419 */
},
/* 0x0d */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25966 /* Table7420 */
},
/* 0x0e */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25968 /* Table7421 */
},
/* 0x0f */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25970 /* Table7422 */
},
/* 0x10 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x11 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x12 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x13 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25972 /* Table7423 */
},
/* 0x14 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x15 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x16 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x17 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25974 /* Table7424 */
},
/* 0x18 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25976 /* Table7425 */
},
/* 0x19 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1c */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25978 /* Table7426 */
},
/* 0x1d */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25980 /* Table7427 */
},
/* 0x1e */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25982 /* Table7428 */
},
/* 0x1f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x20 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25984 /* Table7429 */
},
/* 0x21 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25986 /* Table7430 */
},
/* 0x22 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25988 /* Table7431 */
},
/* 0x23 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25990 /* Table7432 */
},
/* 0x24 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25992 /* Table7433 */
},
/* 0x25 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25994 /* Table7434 */
},
/* 0x26 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x27 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x28 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25996 /* Table7435 */
},
/* 0x29 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
25998 /* Table7436 */
},
/* 0x2a */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26000 /* Table7437 */
},
/* 0x2b */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26002 /* Table7438 */
},
/* 0x2c */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26004 /* Table7439 */
},
/* 0x2d */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26006 /* Table7440 */
},
/* 0x2e */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26008 /* Table7441 */
},
/* 0x2f */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26010 /* Table7442 */
},
/* 0x30 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26012 /* Table7443 */
},
/* 0x31 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26014 /* Table7444 */
},
/* 0x32 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26016 /* Table7445 */
},
/* 0x33 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26018 /* Table7446 */
},
/* 0x34 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26020 /* Table7447 */
},
/* 0x35 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26022 /* Table7448 */
},
/* 0x36 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x37 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26024 /* Table7449 */
},
/* 0x38 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26026 /* Table7450 */
},
/* 0x39 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26028 /* Table7451 */
},
/* 0x3a */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26030 /* Table7452 */
},
/* 0x3b */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26032 /* Table7453 */
},
/* 0x3c */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26034 /* Table7454 */
},
/* 0x3d */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26036 /* Table7455 */
},
/* 0x3e */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26038 /* Table7456 */
},
/* 0x3f */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26040 /* Table7457 */
},
/* 0x40 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26042 /* Table7458 */
},
/* 0x41 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26044 /* Table7459 */
},
/* 0x42 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x43 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x44 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x45 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26046 /* Table7460 */
},
/* 0x46 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26048 /* Table7461 */
},
/* 0x47 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26050 /* Table7462 */
},
/* 0x48 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x49 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x50 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x51 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x52 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x53 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x54 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x55 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x56 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x57 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x58 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26052 /* Table7463 */
},
/* 0x59 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26054 /* Table7464 */
},
/* 0x5a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x60 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x61 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x62 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x63 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x64 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x65 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x66 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x67 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x68 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x69 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x70 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x71 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x72 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x73 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x74 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x75 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x76 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x77 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x78 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26056 /* Table7465 */
},
/* 0x79 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26058 /* Table7466 */
},
/* 0x7a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x80 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x81 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x82 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x83 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x84 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x85 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x86 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x87 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x88 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x89 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8c */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26060 /* Table7467 */
},
/* 0x8d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8e */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26062 /* Table7468 */
},
/* 0x8f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x90 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26064 /* Table7469 */
},
/* 0x91 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26066 /* Table7470 */
},
/* 0x92 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26068 /* Table7471 */
},
/* 0x93 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26070 /* Table7472 */
},
/* 0x94 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x95 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x96 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26072 /* Table7473 */
},
/* 0x97 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26074 /* Table7474 */
},
/* 0x98 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26076 /* Table7475 */
},
/* 0x99 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26078 /* Table7476 */
},
/* 0x9a */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26080 /* Table7477 */
},
/* 0x9b */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26082 /* Table7478 */
},
/* 0x9c */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26084 /* Table7479 */
},
/* 0x9d */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26086 /* Table7480 */
},
/* 0x9e */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26088 /* Table7481 */
},
/* 0x9f */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26090 /* Table7482 */
},
/* 0xa0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa6 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26092 /* Table7483 */
},
/* 0xa7 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26094 /* Table7484 */
},
/* 0xa8 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26096 /* Table7485 */
},
/* 0xa9 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26098 /* Table7486 */
},
/* 0xaa */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26100 /* Table7487 */
},
/* 0xab */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26102 /* Table7488 */
},
/* 0xac */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26104 /* Table7489 */
},
/* 0xad */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26106 /* Table7490 */
},
/* 0xae */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26108 /* Table7491 */
},
/* 0xaf */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26110 /* Table7492 */
},
/* 0xb0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb6 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26112 /* Table7493 */
},
/* 0xb7 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26114 /* Table7494 */
},
/* 0xb8 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26116 /* Table7495 */
},
/* 0xb9 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26118 /* Table7496 */
},
/* 0xba */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26120 /* Table7497 */
},
/* 0xbb */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26122 /* Table7498 */
},
/* 0xbc */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26124 /* Table7499 */
},
/* 0xbd */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26126 /* Table7500 */
},
/* 0xbe */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26128 /* Table7501 */
},
/* 0xbf */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26130 /* Table7502 */
},
/* 0xc0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xca */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xce */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xda */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdb */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26132 /* Table7503 */
},
/* 0xdc */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26134 /* Table7504 */
},
/* 0xdd */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26136 /* Table7505 */
},
/* 0xde */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26138 /* Table7506 */
},
/* 0xdf */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26140 /* Table7507 */
},
/* 0xe0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xea */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xeb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xec */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xed */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xee */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xef */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf7 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26142 /* Table7508 */
},
/* 0xf8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xff */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
}
}
}
, /* IC_VEX_L */
{ /* struct OpcodeDecision */
{
/* 0x00 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x01 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x02 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x03 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x04 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x05 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x06 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x07 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x08 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x09 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x10 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x11 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x12 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x13 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x14 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x15 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x16 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x17 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x18 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x19 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x20 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x21 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x22 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x23 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x24 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x25 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x26 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x27 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x28 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x29 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x30 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x31 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x32 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x33 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x34 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x35 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x36 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x37 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x38 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x39 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x40 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x41 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x42 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x43 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x44 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x45 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x46 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x47 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x48 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x49 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x50 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x51 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x52 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x53 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x54 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x55 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x56 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x57 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x58 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x59 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x60 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x61 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x62 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x63 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x64 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x65 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x66 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x67 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x68 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x69 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x70 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x71 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x72 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x73 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x74 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x75 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x76 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x77 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x78 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x79 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x80 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x81 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x82 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x83 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x84 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x85 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x86 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x87 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x88 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x89 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x90 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x91 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x92 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x93 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x94 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x95 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x96 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x97 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x98 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x99 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xab */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xac */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xad */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xae */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xba */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xca */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xce */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xda */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xde */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xea */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xeb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xec */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xed */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xee */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xef */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xff */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
}
}
}
, /* IC_VEX_L_XS */
{ /* struct OpcodeDecision */
{
/* 0x00 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x01 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x02 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x03 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x04 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x05 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x06 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x07 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x08 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x09 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x10 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x11 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x12 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x13 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x14 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x15 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x16 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x17 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x18 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x19 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x20 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x21 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x22 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x23 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x24 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x25 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x26 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x27 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x28 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x29 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x30 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x31 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x32 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x33 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x34 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x35 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x36 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x37 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x38 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x39 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x40 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x41 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x42 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x43 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x44 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x45 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x46 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x47 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x48 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x49 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x50 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x51 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x52 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x53 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x54 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x55 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x56 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x57 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x58 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x59 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x60 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x61 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x62 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x63 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x64 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x65 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x66 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x67 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x68 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x69 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x70 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x71 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x72 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x73 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x74 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x75 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x76 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x77 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x78 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x79 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x80 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x81 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x82 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x83 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x84 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x85 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x86 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x87 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x88 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x89 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x90 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x91 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x92 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x93 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x94 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x95 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x96 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x97 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x98 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x99 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xab */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xac */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xad */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xae */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xba */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xca */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xce */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xda */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xde */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xea */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xeb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xec */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xed */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xee */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xef */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xff */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
}
}
}
, /* IC_VEX_L_XD */
{ /* struct OpcodeDecision */
{
/* 0x00 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x01 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x02 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x03 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x04 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x05 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x06 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x07 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x08 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x09 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x10 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x11 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x12 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x13 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x14 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x15 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x16 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x17 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x18 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x19 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x20 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x21 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x22 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x23 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x24 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x25 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x26 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x27 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x28 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x29 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x30 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x31 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x32 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x33 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x34 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x35 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x36 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x37 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x38 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x39 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x40 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x41 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x42 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x43 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x44 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x45 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x46 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x47 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x48 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x49 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x50 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x51 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x52 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x53 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x54 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x55 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x56 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x57 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x58 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x59 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x60 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x61 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x62 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x63 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x64 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x65 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x66 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x67 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x68 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x69 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x70 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x71 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x72 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x73 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x74 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x75 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x76 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x77 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x78 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x79 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x80 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x81 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x82 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x83 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x84 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x85 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x86 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x87 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x88 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x89 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x90 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x91 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x92 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x93 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x94 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x95 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x96 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x97 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x98 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x99 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xab */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xac */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xad */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xae */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xba */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xca */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xce */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xda */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xde */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xea */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xeb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xec */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xed */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xee */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xef */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xff */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
}
}
}
, /* IC_VEX_L_OPSIZE */
{ /* struct OpcodeDecision */
{
/* 0x00 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26144 /* Table7509 */
},
/* 0x01 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26146 /* Table7510 */
},
/* 0x02 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26148 /* Table7511 */
},
/* 0x03 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26150 /* Table7512 */
},
/* 0x04 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26152 /* Table7513 */
},
/* 0x05 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26154 /* Table7514 */
},
/* 0x06 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26156 /* Table7515 */
},
/* 0x07 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26158 /* Table7516 */
},
/* 0x08 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26160 /* Table7517 */
},
/* 0x09 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26162 /* Table7518 */
},
/* 0x0a */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26164 /* Table7519 */
},
/* 0x0b */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26166 /* Table7520 */
},
/* 0x0c */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26168 /* Table7521 */
},
/* 0x0d */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26170 /* Table7522 */
},
/* 0x0e */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26172 /* Table7523 */
},
/* 0x0f */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26174 /* Table7524 */
},
/* 0x10 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x11 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x12 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x13 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26176 /* Table7525 */
},
/* 0x14 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x15 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x16 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26178 /* Table7526 */
},
/* 0x17 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26180 /* Table7527 */
},
/* 0x18 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26182 /* Table7528 */
},
/* 0x19 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26184 /* Table7529 */
},
/* 0x1a */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26186 /* Table7530 */
},
/* 0x1b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1c */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26188 /* Table7531 */
},
/* 0x1d */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26190 /* Table7532 */
},
/* 0x1e */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26192 /* Table7533 */
},
/* 0x1f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x20 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26194 /* Table7534 */
},
/* 0x21 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26196 /* Table7535 */
},
/* 0x22 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26198 /* Table7536 */
},
/* 0x23 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26200 /* Table7537 */
},
/* 0x24 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26202 /* Table7538 */
},
/* 0x25 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26204 /* Table7539 */
},
/* 0x26 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x27 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x28 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26206 /* Table7540 */
},
/* 0x29 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26208 /* Table7541 */
},
/* 0x2a */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26210 /* Table7542 */
},
/* 0x2b */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26212 /* Table7543 */
},
/* 0x2c */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26214 /* Table7544 */
},
/* 0x2d */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26216 /* Table7545 */
},
/* 0x2e */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26218 /* Table7546 */
},
/* 0x2f */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26220 /* Table7547 */
},
/* 0x30 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26222 /* Table7548 */
},
/* 0x31 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26224 /* Table7549 */
},
/* 0x32 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26226 /* Table7550 */
},
/* 0x33 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26228 /* Table7551 */
},
/* 0x34 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26230 /* Table7552 */
},
/* 0x35 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26232 /* Table7553 */
},
/* 0x36 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26234 /* Table7554 */
},
/* 0x37 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26236 /* Table7555 */
},
/* 0x38 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26238 /* Table7556 */
},
/* 0x39 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26240 /* Table7557 */
},
/* 0x3a */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26242 /* Table7558 */
},
/* 0x3b */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26244 /* Table7559 */
},
/* 0x3c */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26246 /* Table7560 */
},
/* 0x3d */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26248 /* Table7561 */
},
/* 0x3e */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26250 /* Table7562 */
},
/* 0x3f */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26252 /* Table7563 */
},
/* 0x40 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26254 /* Table7564 */
},
/* 0x41 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x42 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x43 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x44 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x45 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26256 /* Table7565 */
},
/* 0x46 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26258 /* Table7566 */
},
/* 0x47 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26260 /* Table7567 */
},
/* 0x48 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x49 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x50 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x51 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x52 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x53 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x54 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x55 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x56 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x57 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x58 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26262 /* Table7568 */
},
/* 0x59 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26264 /* Table7569 */
},
/* 0x5a */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26266 /* Table7570 */
},
/* 0x5b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x60 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x61 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x62 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x63 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x64 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x65 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x66 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x67 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x68 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x69 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x70 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x71 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x72 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x73 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x74 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x75 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x76 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x77 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x78 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26268 /* Table7571 */
},
/* 0x79 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26270 /* Table7572 */
},
/* 0x7a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x80 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x81 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x82 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x83 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x84 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x85 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x86 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x87 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x88 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x89 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8c */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26272 /* Table7573 */
},
/* 0x8d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8e */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26274 /* Table7574 */
},
/* 0x8f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x90 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26276 /* Table7575 */
},
/* 0x91 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26278 /* Table7576 */
},
/* 0x92 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26280 /* Table7577 */
},
/* 0x93 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26282 /* Table7578 */
},
/* 0x94 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x95 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x96 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26284 /* Table7579 */
},
/* 0x97 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26286 /* Table7580 */
},
/* 0x98 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26288 /* Table7581 */
},
/* 0x99 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26290 /* Table7582 */
},
/* 0x9a */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26292 /* Table7583 */
},
/* 0x9b */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26294 /* Table7584 */
},
/* 0x9c */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26296 /* Table7585 */
},
/* 0x9d */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26298 /* Table7586 */
},
/* 0x9e */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26300 /* Table7587 */
},
/* 0x9f */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26302 /* Table7588 */
},
/* 0xa0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa6 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26304 /* Table7589 */
},
/* 0xa7 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26306 /* Table7590 */
},
/* 0xa8 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26308 /* Table7591 */
},
/* 0xa9 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26310 /* Table7592 */
},
/* 0xaa */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26312 /* Table7593 */
},
/* 0xab */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26314 /* Table7594 */
},
/* 0xac */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26316 /* Table7595 */
},
/* 0xad */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26318 /* Table7596 */
},
/* 0xae */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26320 /* Table7597 */
},
/* 0xaf */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26322 /* Table7598 */
},
/* 0xb0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb6 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26324 /* Table7599 */
},
/* 0xb7 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26326 /* Table7600 */
},
/* 0xb8 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26328 /* Table7601 */
},
/* 0xb9 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26330 /* Table7602 */
},
/* 0xba */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26332 /* Table7603 */
},
/* 0xbb */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26334 /* Table7604 */
},
/* 0xbc */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26336 /* Table7605 */
},
/* 0xbd */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26338 /* Table7606 */
},
/* 0xbe */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26340 /* Table7607 */
},
/* 0xbf */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26342 /* Table7608 */
},
/* 0xc0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xca */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xce */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xda */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xde */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xea */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xeb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xec */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xed */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xee */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xef */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xff */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
}
}
}
, /* IC_VEX_L_W_OPSIZE */
{ /* struct OpcodeDecision */
{
/* 0x00 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26344 /* Table7609 */
},
/* 0x01 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26346 /* Table7610 */
},
/* 0x02 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26348 /* Table7611 */
},
/* 0x03 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26350 /* Table7612 */
},
/* 0x04 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26352 /* Table7613 */
},
/* 0x05 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26354 /* Table7614 */
},
/* 0x06 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26356 /* Table7615 */
},
/* 0x07 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26358 /* Table7616 */
},
/* 0x08 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26360 /* Table7617 */
},
/* 0x09 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26362 /* Table7618 */
},
/* 0x0a */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26364 /* Table7619 */
},
/* 0x0b */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26366 /* Table7620 */
},
/* 0x0c */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26368 /* Table7621 */
},
/* 0x0d */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26370 /* Table7622 */
},
/* 0x0e */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26372 /* Table7623 */
},
/* 0x0f */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26374 /* Table7624 */
},
/* 0x10 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x11 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x12 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x13 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26376 /* Table7625 */
},
/* 0x14 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x15 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x16 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26378 /* Table7626 */
},
/* 0x17 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26380 /* Table7627 */
},
/* 0x18 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26382 /* Table7628 */
},
/* 0x19 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26384 /* Table7629 */
},
/* 0x1a */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26386 /* Table7630 */
},
/* 0x1b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1c */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26388 /* Table7631 */
},
/* 0x1d */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26390 /* Table7632 */
},
/* 0x1e */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26392 /* Table7633 */
},
/* 0x1f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x20 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26394 /* Table7634 */
},
/* 0x21 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26396 /* Table7635 */
},
/* 0x22 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26398 /* Table7636 */
},
/* 0x23 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26400 /* Table7637 */
},
/* 0x24 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26402 /* Table7638 */
},
/* 0x25 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26404 /* Table7639 */
},
/* 0x26 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x27 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x28 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26406 /* Table7640 */
},
/* 0x29 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26408 /* Table7641 */
},
/* 0x2a */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26410 /* Table7642 */
},
/* 0x2b */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26412 /* Table7643 */
},
/* 0x2c */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26414 /* Table7644 */
},
/* 0x2d */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26416 /* Table7645 */
},
/* 0x2e */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26418 /* Table7646 */
},
/* 0x2f */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26420 /* Table7647 */
},
/* 0x30 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26422 /* Table7648 */
},
/* 0x31 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26424 /* Table7649 */
},
/* 0x32 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26426 /* Table7650 */
},
/* 0x33 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26428 /* Table7651 */
},
/* 0x34 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26430 /* Table7652 */
},
/* 0x35 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26432 /* Table7653 */
},
/* 0x36 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26434 /* Table7654 */
},
/* 0x37 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26436 /* Table7655 */
},
/* 0x38 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26438 /* Table7656 */
},
/* 0x39 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26440 /* Table7657 */
},
/* 0x3a */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26442 /* Table7658 */
},
/* 0x3b */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26444 /* Table7659 */
},
/* 0x3c */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26446 /* Table7660 */
},
/* 0x3d */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26448 /* Table7661 */
},
/* 0x3e */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26450 /* Table7662 */
},
/* 0x3f */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26452 /* Table7663 */
},
/* 0x40 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26454 /* Table7664 */
},
/* 0x41 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x42 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x43 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x44 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x45 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26456 /* Table7665 */
},
/* 0x46 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26458 /* Table7666 */
},
/* 0x47 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26460 /* Table7667 */
},
/* 0x48 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x49 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x50 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x51 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x52 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x53 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x54 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x55 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x56 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x57 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x58 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26462 /* Table7668 */
},
/* 0x59 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26464 /* Table7669 */
},
/* 0x5a */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26466 /* Table7670 */
},
/* 0x5b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x60 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x61 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x62 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x63 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x64 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x65 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x66 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x67 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x68 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x69 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x70 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x71 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x72 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x73 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x74 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x75 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x76 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x77 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x78 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26468 /* Table7671 */
},
/* 0x79 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26470 /* Table7672 */
},
/* 0x7a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x80 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x81 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x82 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x83 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x84 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x85 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x86 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x87 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x88 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x89 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8c */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26472 /* Table7673 */
},
/* 0x8d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8e */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26474 /* Table7674 */
},
/* 0x8f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x90 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26476 /* Table7675 */
},
/* 0x91 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26478 /* Table7676 */
},
/* 0x92 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26480 /* Table7677 */
},
/* 0x93 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26482 /* Table7678 */
},
/* 0x94 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x95 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x96 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26484 /* Table7679 */
},
/* 0x97 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26486 /* Table7680 */
},
/* 0x98 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26488 /* Table7681 */
},
/* 0x99 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26490 /* Table7682 */
},
/* 0x9a */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26492 /* Table7683 */
},
/* 0x9b */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26494 /* Table7684 */
},
/* 0x9c */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26496 /* Table7685 */
},
/* 0x9d */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26498 /* Table7686 */
},
/* 0x9e */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26500 /* Table7687 */
},
/* 0x9f */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26502 /* Table7688 */
},
/* 0xa0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa6 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26504 /* Table7689 */
},
/* 0xa7 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26506 /* Table7690 */
},
/* 0xa8 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26508 /* Table7691 */
},
/* 0xa9 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26510 /* Table7692 */
},
/* 0xaa */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26512 /* Table7693 */
},
/* 0xab */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26514 /* Table7694 */
},
/* 0xac */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26516 /* Table7695 */
},
/* 0xad */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26518 /* Table7696 */
},
/* 0xae */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26520 /* Table7697 */
},
/* 0xaf */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26522 /* Table7698 */
},
/* 0xb0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb6 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26524 /* Table7699 */
},
/* 0xb7 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26526 /* Table7700 */
},
/* 0xb8 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26528 /* Table7701 */
},
/* 0xb9 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26530 /* Table7702 */
},
/* 0xba */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26532 /* Table7703 */
},
/* 0xbb */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26534 /* Table7704 */
},
/* 0xbc */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26536 /* Table7705 */
},
/* 0xbd */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26538 /* Table7706 */
},
/* 0xbe */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26540 /* Table7707 */
},
/* 0xbf */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26542 /* Table7708 */
},
/* 0xc0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xca */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xce */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xda */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xde */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xea */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xeb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xec */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xed */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xee */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xef */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xff */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
}
}
}
}
};
static const struct ContextDecision x86DisassemblerThreeByte3AOpcodes = {
{ /* opcodeDecisions */
/* IC */
{ /* struct OpcodeDecision */
{
/* 0x00 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x01 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x02 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x03 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x04 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x05 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x06 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x07 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x08 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x09 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0f */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26544 /* Table7709 */
},
/* 0x10 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x11 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x12 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x13 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x14 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x15 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x16 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x17 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x18 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x19 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x20 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x21 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x22 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x23 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x24 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x25 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x26 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x27 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x28 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x29 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x30 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x31 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x32 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x33 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x34 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x35 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x36 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x37 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x38 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x39 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x40 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x41 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x42 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x43 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x44 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x45 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x46 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x47 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x48 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x49 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x50 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x51 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x52 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x53 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x54 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x55 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x56 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x57 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x58 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x59 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x60 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x61 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x62 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x63 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x64 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x65 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x66 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x67 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x68 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x69 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x70 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x71 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x72 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x73 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x74 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x75 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x76 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x77 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x78 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x79 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x80 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x81 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x82 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x83 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x84 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x85 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x86 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x87 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x88 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x89 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x90 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x91 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x92 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x93 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x94 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x95 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x96 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x97 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x98 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x99 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xab */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xac */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xad */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xae */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xba */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xca */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xce */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xda */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xde */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xea */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xeb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xec */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xed */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xee */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xef */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xff */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
}
}
}
, /* IC_64BIT */
{ /* struct OpcodeDecision */
{
/* 0x00 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x01 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x02 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x03 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x04 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x05 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x06 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x07 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x08 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x09 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0f */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26546 /* Table7710 */
},
/* 0x10 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x11 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x12 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x13 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x14 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x15 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x16 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x17 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x18 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x19 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x20 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x21 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x22 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x23 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x24 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x25 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x26 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x27 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x28 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x29 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x30 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x31 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x32 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x33 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x34 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x35 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x36 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x37 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x38 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x39 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x40 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x41 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x42 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x43 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x44 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x45 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x46 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x47 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x48 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x49 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x50 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x51 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x52 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x53 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x54 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x55 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x56 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x57 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x58 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x59 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x60 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x61 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x62 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x63 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x64 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x65 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x66 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x67 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x68 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x69 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x70 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x71 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x72 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x73 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x74 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x75 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x76 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x77 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x78 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x79 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x80 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x81 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x82 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x83 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x84 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x85 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x86 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x87 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x88 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x89 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x90 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x91 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x92 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x93 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x94 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x95 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x96 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x97 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x98 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x99 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xab */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xac */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xad */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xae */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xba */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xca */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xce */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xda */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xde */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xea */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xeb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xec */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xed */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xee */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xef */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xff */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
}
}
}
, /* IC_OPSIZE */
{ /* struct OpcodeDecision */
{
/* 0x00 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x01 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x02 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x03 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x04 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x05 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x06 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x07 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x08 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26548 /* Table7711 */
},
/* 0x09 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26550 /* Table7712 */
},
/* 0x0a */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26552 /* Table7713 */
},
/* 0x0b */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26554 /* Table7714 */
},
/* 0x0c */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26556 /* Table7715 */
},
/* 0x0d */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26558 /* Table7716 */
},
/* 0x0e */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26560 /* Table7717 */
},
/* 0x0f */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26562 /* Table7718 */
},
/* 0x10 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x11 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x12 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x13 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x14 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26564 /* Table7719 */
},
/* 0x15 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26566 /* Table7720 */
},
/* 0x16 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26568 /* Table7721 */
},
/* 0x17 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26570 /* Table7722 */
},
/* 0x18 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x19 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x20 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26572 /* Table7723 */
},
/* 0x21 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26574 /* Table7724 */
},
/* 0x22 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26576 /* Table7725 */
},
/* 0x23 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x24 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x25 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x26 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x27 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x28 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x29 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x30 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x31 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x32 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x33 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x34 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x35 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x36 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x37 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x38 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x39 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x40 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26578 /* Table7726 */
},
/* 0x41 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26580 /* Table7727 */
},
/* 0x42 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26582 /* Table7728 */
},
/* 0x43 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x44 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26584 /* Table7729 */
},
/* 0x45 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x46 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x47 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x48 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x49 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x50 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x51 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x52 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x53 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x54 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x55 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x56 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x57 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x58 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x59 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x60 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26586 /* Table7730 */
},
/* 0x61 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26588 /* Table7731 */
},
/* 0x62 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26590 /* Table7732 */
},
/* 0x63 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26592 /* Table7733 */
},
/* 0x64 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x65 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x66 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x67 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x68 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x69 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x70 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x71 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x72 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x73 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x74 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x75 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x76 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x77 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x78 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x79 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x80 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x81 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x82 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x83 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x84 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x85 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x86 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x87 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x88 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x89 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x90 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x91 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x92 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x93 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x94 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x95 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x96 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x97 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x98 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x99 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xab */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xac */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xad */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xae */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xba */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xca */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xce */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xda */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xde */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdf */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26594 /* Table7734 */
},
/* 0xe0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xea */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xeb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xec */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xed */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xee */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xef */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xff */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
}
}
}
, /* IC_ADSIZE */
{ /* struct OpcodeDecision */
{
/* 0x00 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x01 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x02 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x03 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x04 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x05 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x06 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x07 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x08 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x09 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0f */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26596 /* Table7735 */
},
/* 0x10 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x11 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x12 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x13 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x14 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x15 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x16 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x17 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x18 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x19 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x20 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x21 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x22 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x23 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x24 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x25 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x26 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x27 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x28 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x29 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x30 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x31 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x32 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x33 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x34 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x35 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x36 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x37 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x38 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x39 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x40 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x41 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x42 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x43 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x44 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x45 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x46 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x47 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x48 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x49 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x50 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x51 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x52 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x53 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x54 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x55 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x56 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x57 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x58 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x59 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x60 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x61 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x62 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x63 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x64 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x65 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x66 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x67 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x68 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x69 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x70 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x71 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x72 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x73 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x74 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x75 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x76 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x77 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x78 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x79 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x80 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x81 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x82 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x83 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x84 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x85 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x86 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x87 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x88 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x89 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x90 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x91 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x92 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x93 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x94 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x95 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x96 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x97 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x98 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x99 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xab */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xac */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xad */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xae */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xba */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xca */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xce */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xda */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xde */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xea */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xeb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xec */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xed */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xee */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xef */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xff */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
}
}
}
, /* IC_XD */
{ /* struct OpcodeDecision */
{
/* 0x00 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x01 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x02 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x03 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x04 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x05 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x06 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x07 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x08 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x09 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0f */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26598 /* Table7736 */
},
/* 0x10 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x11 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x12 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x13 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x14 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x15 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x16 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x17 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x18 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x19 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x20 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x21 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x22 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x23 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x24 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x25 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x26 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x27 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x28 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x29 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x30 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x31 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x32 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x33 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x34 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x35 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x36 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x37 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x38 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x39 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x40 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x41 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x42 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x43 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x44 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x45 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x46 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x47 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x48 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x49 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x50 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x51 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x52 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x53 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x54 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x55 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x56 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x57 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x58 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x59 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x60 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x61 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x62 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x63 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x64 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x65 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x66 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x67 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x68 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x69 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x70 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x71 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x72 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x73 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x74 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x75 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x76 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x77 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x78 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x79 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x80 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x81 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x82 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x83 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x84 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x85 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x86 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x87 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x88 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x89 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x90 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x91 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x92 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x93 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x94 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x95 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x96 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x97 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x98 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x99 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xab */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xac */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xad */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xae */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xba */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xca */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xce */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xda */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xde */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xea */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xeb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xec */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xed */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xee */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xef */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xff */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
}
}
}
, /* IC_XS */
{ /* struct OpcodeDecision */
{
/* 0x00 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x01 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x02 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x03 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x04 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x05 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x06 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x07 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x08 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x09 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0f */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26600 /* Table7737 */
},
/* 0x10 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x11 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x12 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x13 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x14 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x15 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x16 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x17 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x18 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x19 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x20 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x21 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x22 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x23 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x24 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x25 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x26 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x27 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x28 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x29 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x30 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x31 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x32 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x33 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x34 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x35 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x36 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x37 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x38 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x39 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x40 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x41 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x42 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x43 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x44 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x45 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x46 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x47 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x48 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x49 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x50 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x51 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x52 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x53 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x54 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x55 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x56 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x57 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x58 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x59 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x60 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x61 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x62 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x63 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x64 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x65 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x66 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x67 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x68 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x69 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x70 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x71 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x72 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x73 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x74 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x75 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x76 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x77 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x78 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x79 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x80 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x81 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x82 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x83 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x84 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x85 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x86 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x87 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x88 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x89 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x90 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x91 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x92 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x93 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x94 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x95 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x96 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x97 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x98 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x99 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xab */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xac */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xad */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xae */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xba */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xca */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xce */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xda */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xde */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xea */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xeb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xec */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xed */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xee */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xef */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xff */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
}
}
}
, /* IC_XD_OPSIZE */
{ /* struct OpcodeDecision */
{
/* 0x00 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x01 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x02 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x03 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x04 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x05 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x06 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x07 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x08 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x09 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x10 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x11 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x12 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x13 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x14 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x15 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x16 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x17 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x18 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x19 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x20 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x21 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x22 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x23 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x24 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x25 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x26 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x27 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x28 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x29 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x30 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x31 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x32 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x33 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x34 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x35 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x36 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x37 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x38 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x39 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x40 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x41 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x42 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x43 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x44 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x45 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x46 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x47 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x48 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x49 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x50 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x51 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x52 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x53 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x54 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x55 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x56 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x57 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x58 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x59 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x60 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x61 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x62 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x63 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x64 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x65 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x66 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x67 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x68 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x69 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x70 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x71 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x72 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x73 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x74 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x75 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x76 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x77 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x78 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x79 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x80 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x81 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x82 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x83 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x84 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x85 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x86 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x87 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x88 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x89 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x90 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x91 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x92 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x93 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x94 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x95 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x96 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x97 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x98 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x99 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xab */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xac */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xad */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xae */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xba */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xca */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xce */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xda */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xde */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xea */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xeb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xec */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xed */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xee */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xef */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xff */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
}
}
}
, /* IC_XS_OPSIZE */
{ /* struct OpcodeDecision */
{
/* 0x00 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x01 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x02 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x03 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x04 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x05 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x06 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x07 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x08 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x09 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x10 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x11 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x12 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x13 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x14 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x15 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x16 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x17 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x18 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x19 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x20 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x21 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x22 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x23 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x24 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x25 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x26 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x27 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x28 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x29 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x30 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x31 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x32 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x33 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x34 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x35 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x36 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x37 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x38 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x39 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x40 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x41 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x42 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x43 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x44 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x45 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x46 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x47 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x48 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x49 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x50 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x51 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x52 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x53 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x54 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x55 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x56 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x57 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x58 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x59 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x60 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x61 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x62 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x63 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x64 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x65 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x66 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x67 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x68 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x69 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x70 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x71 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x72 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x73 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x74 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x75 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x76 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x77 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x78 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x79 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x80 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x81 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x82 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x83 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x84 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x85 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x86 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x87 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x88 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x89 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x90 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x91 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x92 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x93 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x94 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x95 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x96 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x97 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x98 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x99 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xab */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xac */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xad */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xae */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xba */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xca */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xce */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xda */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xde */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xea */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xeb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xec */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xed */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xee */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xef */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xff */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
}
}
}
, /* IC_64BIT_REXW */
{ /* struct OpcodeDecision */
{
/* 0x00 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x01 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x02 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x03 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x04 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x05 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x06 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x07 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x08 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x09 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0f */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26602 /* Table7738 */
},
/* 0x10 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x11 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x12 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x13 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x14 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x15 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x16 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x17 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x18 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x19 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x20 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x21 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x22 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x23 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x24 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x25 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x26 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x27 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x28 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x29 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x30 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x31 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x32 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x33 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x34 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x35 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x36 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x37 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x38 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x39 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x40 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x41 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x42 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x43 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x44 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x45 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x46 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x47 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x48 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x49 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x50 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x51 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x52 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x53 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x54 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x55 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x56 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x57 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x58 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x59 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x60 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x61 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x62 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x63 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x64 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x65 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x66 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x67 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x68 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x69 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x70 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x71 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x72 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x73 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x74 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x75 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x76 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x77 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x78 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x79 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x80 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x81 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x82 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x83 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x84 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x85 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x86 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x87 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x88 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x89 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x90 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x91 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x92 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x93 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x94 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x95 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x96 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x97 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x98 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x99 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xab */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xac */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xad */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xae */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xba */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xca */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xce */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xda */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xde */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xea */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xeb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xec */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xed */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xee */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xef */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xff */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
}
}
}
, /* IC_64BIT_OPSIZE */
{ /* struct OpcodeDecision */
{
/* 0x00 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x01 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x02 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x03 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x04 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x05 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x06 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x07 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x08 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26604 /* Table7739 */
},
/* 0x09 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26606 /* Table7740 */
},
/* 0x0a */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26608 /* Table7741 */
},
/* 0x0b */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26610 /* Table7742 */
},
/* 0x0c */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26612 /* Table7743 */
},
/* 0x0d */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26614 /* Table7744 */
},
/* 0x0e */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26616 /* Table7745 */
},
/* 0x0f */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26618 /* Table7746 */
},
/* 0x10 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x11 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x12 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x13 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x14 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26620 /* Table7747 */
},
/* 0x15 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26622 /* Table7748 */
},
/* 0x16 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26624 /* Table7749 */
},
/* 0x17 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26626 /* Table7750 */
},
/* 0x18 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x19 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x20 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26628 /* Table7751 */
},
/* 0x21 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26630 /* Table7752 */
},
/* 0x22 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26632 /* Table7753 */
},
/* 0x23 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x24 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x25 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x26 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x27 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x28 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x29 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x30 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x31 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x32 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x33 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x34 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x35 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x36 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x37 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x38 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x39 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x40 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26634 /* Table7754 */
},
/* 0x41 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26636 /* Table7755 */
},
/* 0x42 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26638 /* Table7756 */
},
/* 0x43 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x44 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26640 /* Table7757 */
},
/* 0x45 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x46 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x47 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x48 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x49 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x50 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x51 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x52 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x53 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x54 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x55 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x56 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x57 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x58 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x59 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x60 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26642 /* Table7758 */
},
/* 0x61 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26644 /* Table7759 */
},
/* 0x62 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26646 /* Table7760 */
},
/* 0x63 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26648 /* Table7761 */
},
/* 0x64 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x65 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x66 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x67 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x68 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x69 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x70 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x71 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x72 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x73 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x74 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x75 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x76 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x77 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x78 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x79 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x80 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x81 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x82 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x83 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x84 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x85 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x86 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x87 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x88 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x89 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x90 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x91 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x92 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x93 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x94 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x95 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x96 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x97 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x98 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x99 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xab */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xac */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xad */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xae */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xba */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xca */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xce */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xda */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xde */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdf */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26650 /* Table7762 */
},
/* 0xe0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xea */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xeb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xec */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xed */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xee */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xef */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xff */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
}
}
}
, /* IC_64BIT_ADSIZE */
{ /* struct OpcodeDecision */
{
/* 0x00 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x01 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x02 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x03 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x04 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x05 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x06 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x07 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x08 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x09 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0f */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26652 /* Table7763 */
},
/* 0x10 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x11 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x12 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x13 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x14 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x15 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x16 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x17 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x18 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x19 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x20 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x21 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x22 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x23 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x24 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x25 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x26 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x27 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x28 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x29 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x30 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x31 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x32 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x33 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x34 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x35 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x36 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x37 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x38 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x39 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x40 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x41 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x42 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x43 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x44 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x45 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x46 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x47 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x48 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x49 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x50 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x51 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x52 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x53 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x54 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x55 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x56 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x57 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x58 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x59 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x60 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x61 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x62 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x63 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x64 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x65 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x66 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x67 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x68 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x69 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x70 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x71 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x72 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x73 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x74 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x75 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x76 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x77 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x78 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x79 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x80 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x81 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x82 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x83 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x84 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x85 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x86 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x87 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x88 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x89 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x90 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x91 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x92 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x93 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x94 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x95 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x96 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x97 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x98 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x99 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xab */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xac */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xad */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xae */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xba */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xca */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xce */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xda */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xde */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xea */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xeb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xec */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xed */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xee */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xef */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xff */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
}
}
}
, /* IC_64BIT_XD */
{ /* struct OpcodeDecision */
{
/* 0x00 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x01 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x02 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x03 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x04 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x05 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x06 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x07 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x08 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x09 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0f */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26654 /* Table7764 */
},
/* 0x10 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x11 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x12 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x13 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x14 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x15 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x16 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x17 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x18 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x19 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x20 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x21 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x22 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x23 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x24 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x25 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x26 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x27 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x28 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x29 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x30 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x31 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x32 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x33 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x34 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x35 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x36 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x37 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x38 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x39 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x40 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x41 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x42 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x43 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x44 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x45 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x46 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x47 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x48 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x49 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x50 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x51 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x52 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x53 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x54 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x55 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x56 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x57 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x58 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x59 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x60 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x61 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x62 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x63 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x64 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x65 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x66 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x67 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x68 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x69 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x70 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x71 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x72 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x73 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x74 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x75 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x76 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x77 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x78 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x79 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x80 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x81 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x82 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x83 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x84 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x85 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x86 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x87 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x88 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x89 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x90 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x91 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x92 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x93 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x94 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x95 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x96 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x97 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x98 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x99 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xab */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xac */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xad */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xae */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xba */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xca */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xce */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xda */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xde */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xea */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xeb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xec */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xed */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xee */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xef */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xff */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
}
}
}
, /* IC_64BIT_XS */
{ /* struct OpcodeDecision */
{
/* 0x00 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x01 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x02 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x03 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x04 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x05 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x06 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x07 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x08 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x09 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0f */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26656 /* Table7765 */
},
/* 0x10 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x11 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x12 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x13 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x14 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x15 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x16 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x17 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x18 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x19 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x20 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x21 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x22 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x23 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x24 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x25 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x26 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x27 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x28 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x29 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x30 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x31 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x32 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x33 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x34 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x35 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x36 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x37 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x38 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x39 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x40 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x41 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x42 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x43 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x44 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x45 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x46 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x47 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x48 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x49 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x50 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x51 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x52 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x53 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x54 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x55 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x56 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x57 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x58 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x59 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x60 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x61 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x62 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x63 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x64 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x65 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x66 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x67 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x68 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x69 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x70 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x71 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x72 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x73 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x74 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x75 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x76 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x77 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x78 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x79 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x80 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x81 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x82 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x83 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x84 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x85 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x86 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x87 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x88 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x89 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x90 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x91 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x92 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x93 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x94 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x95 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x96 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x97 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x98 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x99 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xab */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xac */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xad */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xae */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xba */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xca */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xce */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xda */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xde */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xea */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xeb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xec */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xed */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xee */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xef */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xff */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
}
}
}
, /* IC_64BIT_XD_OPSIZE */
{ /* struct OpcodeDecision */
{
/* 0x00 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x01 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x02 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x03 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x04 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x05 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x06 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x07 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x08 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x09 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x10 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x11 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x12 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x13 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x14 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x15 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x16 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x17 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x18 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x19 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x20 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x21 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x22 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x23 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x24 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x25 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x26 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x27 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x28 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x29 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x30 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x31 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x32 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x33 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x34 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x35 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x36 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x37 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x38 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x39 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x40 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x41 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x42 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x43 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x44 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x45 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x46 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x47 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x48 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x49 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x50 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x51 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x52 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x53 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x54 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x55 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x56 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x57 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x58 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x59 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x60 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x61 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x62 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x63 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x64 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x65 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x66 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x67 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x68 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x69 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x70 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x71 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x72 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x73 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x74 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x75 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x76 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x77 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x78 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x79 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x80 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x81 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x82 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x83 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x84 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x85 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x86 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x87 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x88 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x89 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x90 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x91 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x92 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x93 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x94 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x95 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x96 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x97 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x98 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x99 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xab */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xac */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xad */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xae */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xba */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xca */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xce */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xda */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xde */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xea */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xeb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xec */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xed */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xee */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xef */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xff */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
}
}
}
, /* IC_64BIT_XS_OPSIZE */
{ /* struct OpcodeDecision */
{
/* 0x00 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x01 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x02 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x03 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x04 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x05 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x06 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x07 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x08 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x09 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x10 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x11 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x12 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x13 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x14 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x15 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x16 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x17 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x18 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x19 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x20 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x21 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x22 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x23 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x24 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x25 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x26 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x27 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x28 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x29 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x30 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x31 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x32 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x33 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x34 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x35 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x36 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x37 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x38 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x39 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x40 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x41 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x42 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x43 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x44 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x45 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x46 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x47 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x48 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x49 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x50 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x51 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x52 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x53 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x54 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x55 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x56 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x57 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x58 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x59 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x60 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x61 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x62 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x63 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x64 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x65 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x66 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x67 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x68 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x69 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x70 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x71 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x72 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x73 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x74 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x75 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x76 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x77 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x78 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x79 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x80 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x81 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x82 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x83 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x84 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x85 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x86 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x87 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x88 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x89 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x90 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x91 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x92 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x93 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x94 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x95 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x96 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x97 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x98 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x99 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xab */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xac */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xad */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xae */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xba */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xca */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xce */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xda */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xde */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xea */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xeb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xec */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xed */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xee */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xef */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xff */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
}
}
}
, /* IC_64BIT_REXW_XS */
{ /* struct OpcodeDecision */
{
/* 0x00 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x01 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x02 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x03 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x04 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x05 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x06 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x07 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x08 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x09 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0f */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26658 /* Table7766 */
},
/* 0x10 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x11 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x12 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x13 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x14 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x15 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x16 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x17 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x18 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x19 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x20 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x21 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x22 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x23 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x24 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x25 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x26 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x27 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x28 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x29 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x30 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x31 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x32 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x33 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x34 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x35 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x36 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x37 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x38 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x39 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x40 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x41 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x42 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x43 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x44 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x45 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x46 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x47 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x48 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x49 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x50 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x51 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x52 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x53 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x54 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x55 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x56 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x57 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x58 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x59 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x60 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x61 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x62 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x63 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x64 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x65 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x66 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x67 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x68 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x69 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x70 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x71 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x72 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x73 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x74 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x75 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x76 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x77 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x78 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x79 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x80 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x81 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x82 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x83 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x84 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x85 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x86 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x87 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x88 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x89 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x90 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x91 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x92 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x93 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x94 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x95 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x96 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x97 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x98 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x99 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xab */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xac */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xad */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xae */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xba */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xca */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xce */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xda */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xde */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xea */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xeb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xec */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xed */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xee */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xef */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xff */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
}
}
}
, /* IC_64BIT_REXW_XD */
{ /* struct OpcodeDecision */
{
/* 0x00 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x01 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x02 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x03 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x04 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x05 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x06 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x07 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x08 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x09 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0f */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26660 /* Table7767 */
},
/* 0x10 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x11 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x12 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x13 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x14 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x15 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x16 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x17 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x18 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x19 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x20 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x21 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x22 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x23 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x24 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x25 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x26 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x27 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x28 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x29 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x30 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x31 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x32 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x33 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x34 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x35 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x36 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x37 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x38 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x39 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x40 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x41 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x42 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x43 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x44 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x45 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x46 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x47 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x48 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x49 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x50 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x51 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x52 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x53 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x54 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x55 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x56 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x57 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x58 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x59 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x60 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x61 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x62 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x63 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x64 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x65 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x66 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x67 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x68 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x69 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x70 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x71 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x72 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x73 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x74 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x75 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x76 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x77 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x78 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x79 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x80 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x81 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x82 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x83 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x84 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x85 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x86 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x87 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x88 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x89 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x90 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x91 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x92 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x93 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x94 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x95 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x96 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x97 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x98 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x99 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xab */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xac */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xad */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xae */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xba */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xca */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xce */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xda */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xde */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xea */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xeb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xec */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xed */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xee */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xef */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xff */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
}
}
}
, /* IC_64BIT_REXW_OPSIZE */
{ /* struct OpcodeDecision */
{
/* 0x00 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x01 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x02 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x03 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x04 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x05 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x06 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x07 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x08 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26662 /* Table7768 */
},
/* 0x09 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26664 /* Table7769 */
},
/* 0x0a */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26666 /* Table7770 */
},
/* 0x0b */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26668 /* Table7771 */
},
/* 0x0c */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26670 /* Table7772 */
},
/* 0x0d */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26672 /* Table7773 */
},
/* 0x0e */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26674 /* Table7774 */
},
/* 0x0f */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26676 /* Table7775 */
},
/* 0x10 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x11 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x12 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x13 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x14 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26678 /* Table7776 */
},
/* 0x15 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26680 /* Table7777 */
},
/* 0x16 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26682 /* Table7778 */
},
/* 0x17 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26684 /* Table7779 */
},
/* 0x18 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x19 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x20 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26686 /* Table7780 */
},
/* 0x21 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26688 /* Table7781 */
},
/* 0x22 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26690 /* Table7782 */
},
/* 0x23 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x24 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x25 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x26 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x27 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x28 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x29 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x30 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x31 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x32 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x33 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x34 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x35 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x36 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x37 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x38 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x39 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x40 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26692 /* Table7783 */
},
/* 0x41 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26694 /* Table7784 */
},
/* 0x42 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26696 /* Table7785 */
},
/* 0x43 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x44 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26698 /* Table7786 */
},
/* 0x45 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x46 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x47 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x48 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x49 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x50 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x51 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x52 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x53 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x54 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x55 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x56 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x57 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x58 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x59 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x60 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26700 /* Table7787 */
},
/* 0x61 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26702 /* Table7788 */
},
/* 0x62 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26704 /* Table7789 */
},
/* 0x63 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26706 /* Table7790 */
},
/* 0x64 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x65 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x66 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x67 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x68 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x69 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x70 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x71 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x72 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x73 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x74 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x75 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x76 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x77 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x78 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x79 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x80 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x81 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x82 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x83 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x84 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x85 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x86 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x87 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x88 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x89 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x90 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x91 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x92 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x93 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x94 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x95 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x96 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x97 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x98 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x99 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xab */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xac */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xad */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xae */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xba */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xca */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xce */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xda */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xde */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdf */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26708 /* Table7791 */
},
/* 0xe0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xea */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xeb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xec */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xed */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xee */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xef */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xff */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
}
}
}
, /* IC_VEX */
{ /* struct OpcodeDecision */
{
/* 0x00 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x01 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x02 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x03 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x04 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x05 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x06 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x07 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x08 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x09 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x10 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x11 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x12 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x13 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x14 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x15 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x16 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x17 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x18 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x19 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x20 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x21 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x22 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x23 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x24 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x25 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x26 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x27 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x28 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x29 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x30 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x31 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x32 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x33 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x34 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x35 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x36 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x37 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x38 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x39 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x40 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x41 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x42 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x43 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x44 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x45 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x46 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x47 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x48 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x49 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x50 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x51 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x52 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x53 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x54 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x55 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x56 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x57 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x58 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x59 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x60 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x61 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x62 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x63 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x64 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x65 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x66 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x67 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x68 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x69 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x70 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x71 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x72 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x73 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x74 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x75 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x76 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x77 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x78 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x79 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x80 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x81 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x82 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x83 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x84 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x85 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x86 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x87 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x88 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x89 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x90 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x91 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x92 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x93 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x94 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x95 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x96 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x97 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x98 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x99 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xab */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xac */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xad */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xae */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xba */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xca */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xce */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xda */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xde */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xea */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xeb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xec */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xed */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xee */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xef */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xff */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
}
}
}
, /* IC_VEX_XS */
{ /* struct OpcodeDecision */
{
/* 0x00 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x01 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x02 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x03 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x04 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x05 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x06 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x07 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x08 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x09 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x10 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x11 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x12 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x13 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x14 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x15 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x16 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x17 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x18 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x19 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x20 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x21 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x22 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x23 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x24 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x25 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x26 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x27 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x28 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x29 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x30 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x31 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x32 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x33 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x34 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x35 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x36 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x37 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x38 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x39 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x40 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x41 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x42 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x43 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x44 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x45 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x46 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x47 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x48 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x49 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x50 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x51 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x52 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x53 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x54 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x55 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x56 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x57 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x58 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x59 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x60 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x61 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x62 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x63 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x64 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x65 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x66 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x67 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x68 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x69 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x70 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x71 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x72 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x73 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x74 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x75 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x76 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x77 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x78 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x79 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x80 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x81 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x82 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x83 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x84 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x85 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x86 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x87 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x88 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x89 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x90 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x91 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x92 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x93 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x94 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x95 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x96 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x97 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x98 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x99 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xab */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xac */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xad */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xae */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xba */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xca */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xce */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xda */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xde */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xea */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xeb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xec */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xed */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xee */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xef */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xff */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
}
}
}
, /* IC_VEX_XD */
{ /* struct OpcodeDecision */
{
/* 0x00 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x01 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x02 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x03 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x04 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x05 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x06 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x07 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x08 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x09 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x10 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x11 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x12 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x13 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x14 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x15 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x16 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x17 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x18 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x19 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x20 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x21 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x22 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x23 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x24 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x25 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x26 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x27 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x28 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x29 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x30 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x31 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x32 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x33 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x34 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x35 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x36 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x37 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x38 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x39 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x40 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x41 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x42 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x43 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x44 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x45 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x46 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x47 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x48 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x49 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x50 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x51 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x52 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x53 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x54 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x55 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x56 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x57 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x58 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x59 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x60 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x61 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x62 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x63 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x64 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x65 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x66 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x67 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x68 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x69 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x70 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x71 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x72 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x73 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x74 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x75 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x76 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x77 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x78 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x79 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x80 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x81 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x82 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x83 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x84 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x85 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x86 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x87 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x88 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x89 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x90 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x91 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x92 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x93 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x94 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x95 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x96 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x97 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x98 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x99 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xab */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xac */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xad */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xae */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xba */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xca */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xce */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xda */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xde */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xea */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xeb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xec */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xed */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xee */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xef */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf0 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26710 /* Table7792 */
},
/* 0xf1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xff */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
}
}
}
, /* IC_VEX_OPSIZE */
{ /* struct OpcodeDecision */
{
/* 0x00 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x01 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x02 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26712 /* Table7793 */
},
/* 0x03 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x04 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26714 /* Table7794 */
},
/* 0x05 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26716 /* Table7795 */
},
/* 0x06 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x07 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x08 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26718 /* Table7796 */
},
/* 0x09 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26720 /* Table7797 */
},
/* 0x0a */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26722 /* Table7798 */
},
/* 0x0b */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26724 /* Table7799 */
},
/* 0x0c */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26726 /* Table7800 */
},
/* 0x0d */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26728 /* Table7801 */
},
/* 0x0e */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26730 /* Table7802 */
},
/* 0x0f */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26732 /* Table7803 */
},
/* 0x10 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x11 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x12 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x13 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x14 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26734 /* Table7804 */
},
/* 0x15 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26736 /* Table7805 */
},
/* 0x16 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26738 /* Table7806 */
},
/* 0x17 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26740 /* Table7807 */
},
/* 0x18 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x19 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1d */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26742 /* Table7808 */
},
/* 0x1e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x20 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26744 /* Table7809 */
},
/* 0x21 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26746 /* Table7810 */
},
/* 0x22 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26748 /* Table7811 */
},
/* 0x23 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x24 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x25 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x26 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x27 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x28 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x29 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x30 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x31 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x32 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x33 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x34 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x35 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x36 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x37 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x38 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x39 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x40 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26750 /* Table7812 */
},
/* 0x41 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26752 /* Table7813 */
},
/* 0x42 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26754 /* Table7814 */
},
/* 0x43 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x44 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26756 /* Table7815 */
},
/* 0x45 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x46 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x47 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x48 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26758 /* Table7816 */
},
/* 0x49 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26760 /* Table7817 */
},
/* 0x4a */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26762 /* Table7818 */
},
/* 0x4b */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26764 /* Table7819 */
},
/* 0x4c */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26766 /* Table7820 */
},
/* 0x4d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x50 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x51 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x52 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x53 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x54 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x55 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x56 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x57 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x58 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x59 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5c */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26768 /* Table7821 */
},
/* 0x5d */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26770 /* Table7822 */
},
/* 0x5e */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26772 /* Table7823 */
},
/* 0x5f */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26774 /* Table7824 */
},
/* 0x60 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26776 /* Table7825 */
},
/* 0x61 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26778 /* Table7826 */
},
/* 0x62 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26780 /* Table7827 */
},
/* 0x63 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26782 /* Table7828 */
},
/* 0x64 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x65 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x66 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x67 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x68 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26784 /* Table7829 */
},
/* 0x69 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26786 /* Table7830 */
},
/* 0x6a */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26788 /* Table7831 */
},
/* 0x6b */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26790 /* Table7832 */
},
/* 0x6c */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26792 /* Table7833 */
},
/* 0x6d */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26794 /* Table7834 */
},
/* 0x6e */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26796 /* Table7835 */
},
/* 0x6f */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26798 /* Table7836 */
},
/* 0x70 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x71 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x72 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x73 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x74 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x75 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x76 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x77 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x78 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26800 /* Table7837 */
},
/* 0x79 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26802 /* Table7838 */
},
/* 0x7a */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26804 /* Table7839 */
},
/* 0x7b */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26806 /* Table7840 */
},
/* 0x7c */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26808 /* Table7841 */
},
/* 0x7d */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26810 /* Table7842 */
},
/* 0x7e */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26812 /* Table7843 */
},
/* 0x7f */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26814 /* Table7844 */
},
/* 0x80 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x81 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x82 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x83 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x84 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x85 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x86 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x87 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x88 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x89 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x90 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x91 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x92 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x93 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x94 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x95 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x96 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x97 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x98 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x99 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xab */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xac */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xad */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xae */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xba */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xca */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xce */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xda */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xde */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdf */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26816 /* Table7845 */
},
/* 0xe0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xea */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xeb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xec */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xed */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xee */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xef */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xff */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
}
}
}
, /* IC_VEX_W */
{ /* struct OpcodeDecision */
{
/* 0x00 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x01 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x02 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x03 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x04 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x05 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x06 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x07 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x08 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x09 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x10 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x11 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x12 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x13 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x14 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x15 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x16 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x17 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x18 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x19 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x20 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x21 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x22 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x23 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x24 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x25 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x26 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x27 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x28 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x29 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x30 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x31 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x32 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x33 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x34 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x35 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x36 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x37 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x38 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x39 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x40 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x41 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x42 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x43 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x44 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x45 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x46 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x47 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x48 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x49 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x50 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x51 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x52 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x53 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x54 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x55 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x56 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x57 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x58 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x59 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x60 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x61 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x62 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x63 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x64 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x65 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x66 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x67 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x68 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x69 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x70 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x71 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x72 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x73 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x74 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x75 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x76 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x77 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x78 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x79 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x80 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x81 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x82 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x83 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x84 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x85 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x86 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x87 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x88 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x89 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x90 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x91 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x92 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x93 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x94 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x95 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x96 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x97 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x98 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x99 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xab */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xac */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xad */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xae */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xba */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xca */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xce */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xda */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xde */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xea */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xeb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xec */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xed */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xee */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xef */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xff */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
}
}
}
, /* IC_VEX_W_XS */
{ /* struct OpcodeDecision */
{
/* 0x00 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x01 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x02 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x03 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x04 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x05 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x06 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x07 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x08 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x09 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x10 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x11 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x12 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x13 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x14 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x15 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x16 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x17 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x18 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x19 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x20 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x21 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x22 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x23 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x24 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x25 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x26 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x27 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x28 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x29 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x30 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x31 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x32 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x33 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x34 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x35 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x36 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x37 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x38 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x39 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x40 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x41 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x42 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x43 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x44 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x45 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x46 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x47 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x48 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x49 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x50 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x51 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x52 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x53 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x54 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x55 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x56 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x57 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x58 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x59 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x60 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x61 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x62 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x63 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x64 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x65 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x66 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x67 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x68 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x69 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x70 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x71 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x72 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x73 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x74 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x75 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x76 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x77 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x78 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x79 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x80 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x81 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x82 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x83 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x84 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x85 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x86 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x87 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x88 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x89 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x90 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x91 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x92 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x93 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x94 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x95 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x96 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x97 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x98 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x99 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xab */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xac */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xad */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xae */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xba */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xca */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xce */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xda */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xde */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xea */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xeb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xec */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xed */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xee */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xef */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xff */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
}
}
}
, /* IC_VEX_W_XD */
{ /* struct OpcodeDecision */
{
/* 0x00 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x01 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x02 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x03 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x04 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x05 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x06 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x07 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x08 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x09 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x10 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x11 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x12 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x13 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x14 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x15 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x16 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x17 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x18 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x19 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x20 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x21 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x22 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x23 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x24 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x25 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x26 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x27 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x28 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x29 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x30 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x31 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x32 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x33 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x34 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x35 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x36 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x37 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x38 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x39 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x40 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x41 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x42 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x43 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x44 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x45 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x46 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x47 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x48 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x49 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x50 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x51 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x52 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x53 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x54 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x55 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x56 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x57 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x58 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x59 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x60 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x61 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x62 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x63 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x64 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x65 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x66 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x67 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x68 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x69 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x70 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x71 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x72 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x73 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x74 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x75 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x76 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x77 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x78 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x79 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x80 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x81 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x82 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x83 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x84 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x85 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x86 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x87 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x88 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x89 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x90 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x91 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x92 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x93 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x94 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x95 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x96 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x97 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x98 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x99 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xab */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xac */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xad */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xae */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xba */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xca */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xce */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xda */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xde */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xea */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xeb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xec */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xed */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xee */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xef */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf0 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26818 /* Table7846 */
},
/* 0xf1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xff */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
}
}
}
, /* IC_VEX_W_OPSIZE */
{ /* struct OpcodeDecision */
{
/* 0x00 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x01 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x02 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26820 /* Table7847 */
},
/* 0x03 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x04 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26822 /* Table7848 */
},
/* 0x05 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26824 /* Table7849 */
},
/* 0x06 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x07 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x08 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26826 /* Table7850 */
},
/* 0x09 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26828 /* Table7851 */
},
/* 0x0a */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26830 /* Table7852 */
},
/* 0x0b */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26832 /* Table7853 */
},
/* 0x0c */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26834 /* Table7854 */
},
/* 0x0d */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26836 /* Table7855 */
},
/* 0x0e */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26838 /* Table7856 */
},
/* 0x0f */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26840 /* Table7857 */
},
/* 0x10 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x11 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x12 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x13 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x14 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26842 /* Table7858 */
},
/* 0x15 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26844 /* Table7859 */
},
/* 0x16 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26846 /* Table7860 */
},
/* 0x17 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26848 /* Table7861 */
},
/* 0x18 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x19 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1d */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26850 /* Table7862 */
},
/* 0x1e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x20 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26852 /* Table7863 */
},
/* 0x21 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26854 /* Table7864 */
},
/* 0x22 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26856 /* Table7865 */
},
/* 0x23 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x24 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x25 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x26 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x27 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x28 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x29 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x30 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x31 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x32 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x33 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x34 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x35 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x36 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x37 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x38 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x39 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x40 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26858 /* Table7866 */
},
/* 0x41 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26860 /* Table7867 */
},
/* 0x42 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26862 /* Table7868 */
},
/* 0x43 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x44 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26864 /* Table7869 */
},
/* 0x45 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x46 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x47 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x48 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26866 /* Table7870 */
},
/* 0x49 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26868 /* Table7871 */
},
/* 0x4a */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26870 /* Table7872 */
},
/* 0x4b */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26872 /* Table7873 */
},
/* 0x4c */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26874 /* Table7874 */
},
/* 0x4d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x50 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x51 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x52 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x53 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x54 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x55 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x56 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x57 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x58 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x59 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5c */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26876 /* Table7875 */
},
/* 0x5d */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26878 /* Table7876 */
},
/* 0x5e */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26880 /* Table7877 */
},
/* 0x5f */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26882 /* Table7878 */
},
/* 0x60 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26884 /* Table7879 */
},
/* 0x61 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26886 /* Table7880 */
},
/* 0x62 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26888 /* Table7881 */
},
/* 0x63 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26890 /* Table7882 */
},
/* 0x64 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x65 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x66 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x67 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x68 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26892 /* Table7883 */
},
/* 0x69 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26894 /* Table7884 */
},
/* 0x6a */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26896 /* Table7885 */
},
/* 0x6b */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26898 /* Table7886 */
},
/* 0x6c */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26900 /* Table7887 */
},
/* 0x6d */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26902 /* Table7888 */
},
/* 0x6e */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26904 /* Table7889 */
},
/* 0x6f */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26906 /* Table7890 */
},
/* 0x70 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x71 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x72 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x73 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x74 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x75 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x76 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x77 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x78 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26908 /* Table7891 */
},
/* 0x79 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26910 /* Table7892 */
},
/* 0x7a */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26912 /* Table7893 */
},
/* 0x7b */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26914 /* Table7894 */
},
/* 0x7c */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26916 /* Table7895 */
},
/* 0x7d */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26918 /* Table7896 */
},
/* 0x7e */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26920 /* Table7897 */
},
/* 0x7f */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26922 /* Table7898 */
},
/* 0x80 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x81 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x82 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x83 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x84 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x85 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x86 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x87 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x88 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x89 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x90 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x91 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x92 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x93 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x94 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x95 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x96 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x97 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x98 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x99 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xab */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xac */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xad */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xae */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xba */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xca */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xce */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xda */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xde */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdf */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26924 /* Table7899 */
},
/* 0xe0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xea */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xeb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xec */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xed */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xee */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xef */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xff */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
}
}
}
, /* IC_VEX_L */
{ /* struct OpcodeDecision */
{
/* 0x00 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x01 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x02 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x03 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x04 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x05 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x06 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x07 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x08 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x09 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x10 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x11 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x12 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x13 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x14 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x15 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x16 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x17 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x18 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x19 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x20 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x21 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x22 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x23 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x24 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x25 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x26 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x27 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x28 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x29 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x30 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x31 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x32 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x33 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x34 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x35 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x36 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x37 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x38 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x39 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x40 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x41 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x42 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x43 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x44 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x45 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x46 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x47 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x48 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x49 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x50 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x51 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x52 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x53 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x54 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x55 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x56 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x57 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x58 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x59 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x60 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x61 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x62 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x63 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x64 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x65 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x66 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x67 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x68 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x69 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x70 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x71 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x72 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x73 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x74 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x75 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x76 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x77 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x78 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x79 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x80 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x81 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x82 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x83 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x84 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x85 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x86 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x87 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x88 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x89 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x90 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x91 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x92 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x93 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x94 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x95 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x96 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x97 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x98 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x99 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xab */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xac */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xad */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xae */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xba */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xca */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xce */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xda */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xde */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xea */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xeb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xec */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xed */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xee */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xef */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xff */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
}
}
}
, /* IC_VEX_L_XS */
{ /* struct OpcodeDecision */
{
/* 0x00 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x01 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x02 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x03 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x04 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x05 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x06 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x07 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x08 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x09 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x10 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x11 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x12 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x13 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x14 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x15 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x16 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x17 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x18 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x19 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x20 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x21 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x22 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x23 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x24 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x25 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x26 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x27 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x28 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x29 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x30 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x31 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x32 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x33 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x34 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x35 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x36 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x37 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x38 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x39 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x40 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x41 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x42 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x43 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x44 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x45 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x46 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x47 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x48 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x49 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x50 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x51 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x52 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x53 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x54 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x55 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x56 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x57 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x58 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x59 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x60 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x61 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x62 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x63 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x64 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x65 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x66 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x67 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x68 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x69 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x70 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x71 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x72 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x73 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x74 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x75 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x76 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x77 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x78 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x79 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x80 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x81 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x82 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x83 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x84 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x85 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x86 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x87 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x88 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x89 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x90 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x91 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x92 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x93 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x94 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x95 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x96 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x97 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x98 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x99 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xab */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xac */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xad */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xae */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xba */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xca */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xce */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xda */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xde */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xea */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xeb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xec */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xed */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xee */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xef */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xff */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
}
}
}
, /* IC_VEX_L_XD */
{ /* struct OpcodeDecision */
{
/* 0x00 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x01 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x02 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x03 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x04 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x05 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x06 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x07 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x08 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x09 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x10 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x11 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x12 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x13 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x14 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x15 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x16 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x17 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x18 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x19 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x20 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x21 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x22 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x23 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x24 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x25 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x26 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x27 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x28 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x29 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x30 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x31 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x32 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x33 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x34 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x35 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x36 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x37 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x38 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x39 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x40 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x41 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x42 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x43 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x44 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x45 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x46 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x47 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x48 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x49 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x50 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x51 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x52 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x53 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x54 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x55 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x56 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x57 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x58 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x59 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x60 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x61 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x62 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x63 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x64 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x65 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x66 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x67 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x68 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x69 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x70 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x71 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x72 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x73 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x74 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x75 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x76 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x77 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x78 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x79 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x80 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x81 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x82 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x83 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x84 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x85 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x86 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x87 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x88 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x89 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x90 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x91 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x92 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x93 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x94 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x95 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x96 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x97 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x98 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x99 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xab */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xac */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xad */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xae */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xba */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xca */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xce */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xda */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xde */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xea */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xeb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xec */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xed */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xee */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xef */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xff */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
}
}
}
, /* IC_VEX_L_OPSIZE */
{ /* struct OpcodeDecision */
{
/* 0x00 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x01 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x02 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26926 /* Table7900 */
},
/* 0x03 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x04 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26928 /* Table7901 */
},
/* 0x05 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26930 /* Table7902 */
},
/* 0x06 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26932 /* Table7903 */
},
/* 0x07 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x08 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26934 /* Table7904 */
},
/* 0x09 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26936 /* Table7905 */
},
/* 0x0a */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26938 /* Table7906 */
},
/* 0x0b */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26940 /* Table7907 */
},
/* 0x0c */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26942 /* Table7908 */
},
/* 0x0d */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26944 /* Table7909 */
},
/* 0x0e */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26946 /* Table7910 */
},
/* 0x0f */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26948 /* Table7911 */
},
/* 0x10 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x11 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x12 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x13 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x14 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x15 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x16 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x17 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x18 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26950 /* Table7912 */
},
/* 0x19 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26952 /* Table7913 */
},
/* 0x1a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1d */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26954 /* Table7914 */
},
/* 0x1e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x20 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x21 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x22 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x23 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x24 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x25 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x26 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x27 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x28 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x29 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x30 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x31 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x32 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x33 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x34 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x35 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x36 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x37 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x38 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26956 /* Table7915 */
},
/* 0x39 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26958 /* Table7916 */
},
/* 0x3a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x40 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26960 /* Table7917 */
},
/* 0x41 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x42 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26962 /* Table7918 */
},
/* 0x43 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x44 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x45 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x46 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26964 /* Table7919 */
},
/* 0x47 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x48 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26966 /* Table7920 */
},
/* 0x49 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26968 /* Table7921 */
},
/* 0x4a */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26970 /* Table7922 */
},
/* 0x4b */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26972 /* Table7923 */
},
/* 0x4c */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26974 /* Table7924 */
},
/* 0x4d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x50 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x51 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x52 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x53 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x54 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x55 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x56 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x57 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x58 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x59 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5c */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26976 /* Table7925 */
},
/* 0x5d */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26978 /* Table7926 */
},
/* 0x5e */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26980 /* Table7927 */
},
/* 0x5f */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26982 /* Table7928 */
},
/* 0x60 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x61 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x62 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x63 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x64 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x65 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x66 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x67 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x68 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26984 /* Table7929 */
},
/* 0x69 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26986 /* Table7930 */
},
/* 0x6a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6c */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26988 /* Table7931 */
},
/* 0x6d */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26990 /* Table7932 */
},
/* 0x6e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x70 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x71 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x72 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x73 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x74 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x75 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x76 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x77 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x78 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26992 /* Table7933 */
},
/* 0x79 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26994 /* Table7934 */
},
/* 0x7a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7c */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26996 /* Table7935 */
},
/* 0x7d */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
26998 /* Table7936 */
},
/* 0x7e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x80 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x81 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x82 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x83 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x84 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x85 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x86 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x87 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x88 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x89 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x90 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x91 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x92 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x93 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x94 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x95 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x96 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x97 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x98 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x99 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xab */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xac */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xad */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xae */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xba */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xca */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xce */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xda */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xde */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xea */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xeb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xec */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xed */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xee */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xef */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xff */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
}
}
}
, /* IC_VEX_L_W_OPSIZE */
{ /* struct OpcodeDecision */
{
/* 0x00 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
27000 /* Table7937 */
},
/* 0x01 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
27002 /* Table7938 */
},
/* 0x02 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
27004 /* Table7939 */
},
/* 0x03 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x04 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
27006 /* Table7940 */
},
/* 0x05 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
27008 /* Table7941 */
},
/* 0x06 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
27010 /* Table7942 */
},
/* 0x07 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x08 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
27012 /* Table7943 */
},
/* 0x09 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
27014 /* Table7944 */
},
/* 0x0a */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
27016 /* Table7945 */
},
/* 0x0b */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
27018 /* Table7946 */
},
/* 0x0c */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
27020 /* Table7947 */
},
/* 0x0d */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
27022 /* Table7948 */
},
/* 0x0e */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
27024 /* Table7949 */
},
/* 0x0f */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
27026 /* Table7950 */
},
/* 0x10 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x11 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x12 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x13 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x14 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x15 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x16 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x17 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x18 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
27028 /* Table7951 */
},
/* 0x19 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
27030 /* Table7952 */
},
/* 0x1a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1d */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
27032 /* Table7953 */
},
/* 0x1e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x20 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x21 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x22 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x23 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x24 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x25 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x26 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x27 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x28 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x29 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x30 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x31 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x32 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x33 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x34 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x35 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x36 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x37 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x38 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
27034 /* Table7954 */
},
/* 0x39 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
27036 /* Table7955 */
},
/* 0x3a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x40 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
27038 /* Table7956 */
},
/* 0x41 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x42 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
27040 /* Table7957 */
},
/* 0x43 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x44 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x45 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x46 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
27042 /* Table7958 */
},
/* 0x47 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x48 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
27044 /* Table7959 */
},
/* 0x49 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
27046 /* Table7960 */
},
/* 0x4a */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
27048 /* Table7961 */
},
/* 0x4b */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
27050 /* Table7962 */
},
/* 0x4c */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
27052 /* Table7963 */
},
/* 0x4d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x50 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x51 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x52 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x53 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x54 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x55 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x56 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x57 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x58 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x59 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5c */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
27054 /* Table7964 */
},
/* 0x5d */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
27056 /* Table7965 */
},
/* 0x5e */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
27058 /* Table7966 */
},
/* 0x5f */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
27060 /* Table7967 */
},
/* 0x60 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x61 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x62 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x63 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x64 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x65 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x66 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x67 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x68 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
27062 /* Table7968 */
},
/* 0x69 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
27064 /* Table7969 */
},
/* 0x6a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6c */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
27066 /* Table7970 */
},
/* 0x6d */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
27068 /* Table7971 */
},
/* 0x6e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x70 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x71 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x72 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x73 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x74 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x75 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x76 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x77 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x78 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
27070 /* Table7972 */
},
/* 0x79 */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
27072 /* Table7973 */
},
/* 0x7a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7c */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
27074 /* Table7974 */
},
/* 0x7d */
{ /* struct ModRMDecision */
MODRM_SPLITRM,
27076 /* Table7975 */
},
/* 0x7e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x80 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x81 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x82 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x83 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x84 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x85 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x86 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x87 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x88 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x89 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x90 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x91 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x92 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x93 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x94 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x95 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x96 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x97 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x98 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x99 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xab */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xac */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xad */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xae */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xba */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xca */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xce */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xda */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xde */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xea */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xeb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xec */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xed */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xee */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xef */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xff */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
}
}
}
}
};
static const struct ContextDecision x86DisassemblerThreeByteA6Opcodes = {
{ /* opcodeDecisions */
/* IC */
{ /* struct OpcodeDecision */
{
/* 0x00 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x01 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x02 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x03 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x04 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x05 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x06 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x07 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x08 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x09 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x10 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x11 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x12 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x13 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x14 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x15 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x16 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x17 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x18 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x19 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x20 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x21 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x22 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x23 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x24 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x25 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x26 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x27 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x28 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x29 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x30 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x31 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x32 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x33 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x34 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x35 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x36 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x37 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x38 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x39 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x40 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x41 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x42 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x43 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x44 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x45 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x46 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x47 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x48 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x49 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x50 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x51 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x52 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x53 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x54 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x55 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x56 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x57 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x58 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x59 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x60 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x61 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x62 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x63 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x64 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x65 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x66 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x67 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x68 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x69 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x70 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x71 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x72 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x73 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x74 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x75 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x76 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x77 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x78 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x79 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x80 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x81 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x82 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x83 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x84 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x85 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x86 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x87 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x88 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x89 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x90 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x91 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x92 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x93 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x94 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x95 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x96 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x97 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x98 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x99 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xab */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xac */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xad */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xae */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xba */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc0 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
27078 /* Table7976 */
},
/* 0xc1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc8 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
27079 /* Table7977 */
},
/* 0xc9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xca */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xce */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd0 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
27080 /* Table7978 */
},
/* 0xd1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xda */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xde */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xea */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xeb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xec */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xed */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xee */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xef */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xff */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
}
}
}
, /* IC_64BIT */
{ /* struct OpcodeDecision */
{
/* 0x00 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x01 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x02 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x03 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x04 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x05 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x06 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x07 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x08 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x09 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x10 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x11 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x12 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x13 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x14 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x15 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x16 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x17 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x18 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x19 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x20 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x21 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x22 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x23 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x24 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x25 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x26 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x27 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x28 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x29 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x30 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x31 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x32 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x33 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x34 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x35 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x36 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x37 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x38 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x39 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x40 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x41 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x42 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x43 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x44 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x45 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x46 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x47 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x48 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x49 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x50 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x51 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x52 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x53 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x54 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x55 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x56 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x57 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x58 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x59 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x60 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x61 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x62 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x63 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x64 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x65 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x66 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x67 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x68 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x69 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x70 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x71 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x72 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x73 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x74 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x75 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x76 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x77 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x78 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x79 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x80 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x81 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x82 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x83 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x84 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x85 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x86 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x87 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x88 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x89 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x90 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x91 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x92 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x93 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x94 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x95 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x96 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x97 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x98 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x99 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xab */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xac */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xad */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xae */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xba */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc0 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
27081 /* Table7979 */
},
/* 0xc1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc8 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
27082 /* Table7980 */
},
/* 0xc9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xca */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xce */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd0 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
27083 /* Table7981 */
},
/* 0xd1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xda */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xde */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xea */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xeb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xec */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xed */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xee */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xef */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xff */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
}
}
}
, /* IC_OPSIZE */
{ /* struct OpcodeDecision */
{
/* 0x00 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x01 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x02 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x03 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x04 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x05 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x06 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x07 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x08 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x09 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x10 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x11 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x12 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x13 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x14 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x15 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x16 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x17 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x18 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x19 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x20 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x21 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x22 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x23 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x24 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x25 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x26 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x27 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x28 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x29 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x30 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x31 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x32 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x33 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x34 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x35 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x36 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x37 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x38 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x39 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x40 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x41 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x42 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x43 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x44 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x45 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x46 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x47 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x48 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x49 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x50 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x51 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x52 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x53 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x54 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x55 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x56 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x57 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x58 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x59 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x60 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x61 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x62 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x63 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x64 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x65 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x66 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x67 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x68 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x69 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x70 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x71 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x72 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x73 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x74 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x75 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x76 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x77 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x78 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x79 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x80 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x81 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x82 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x83 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x84 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x85 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x86 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x87 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x88 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x89 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x90 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x91 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x92 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x93 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x94 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x95 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x96 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x97 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x98 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x99 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xab */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xac */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xad */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xae */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xba */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc0 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
27084 /* Table7982 */
},
/* 0xc1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc8 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
27085 /* Table7983 */
},
/* 0xc9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xca */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xce */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd0 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
27086 /* Table7984 */
},
/* 0xd1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xda */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xde */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xea */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xeb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xec */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xed */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xee */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xef */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xff */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
}
}
}
, /* IC_ADSIZE */
{ /* struct OpcodeDecision */
{
/* 0x00 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x01 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x02 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x03 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x04 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x05 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x06 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x07 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x08 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x09 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x10 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x11 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x12 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x13 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x14 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x15 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x16 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x17 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x18 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x19 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x20 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x21 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x22 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x23 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x24 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x25 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x26 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x27 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x28 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x29 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x30 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x31 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x32 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x33 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x34 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x35 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x36 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x37 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x38 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x39 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x40 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x41 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x42 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x43 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x44 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x45 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x46 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x47 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x48 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x49 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x50 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x51 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x52 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x53 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x54 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x55 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x56 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x57 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x58 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x59 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x60 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x61 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x62 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x63 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x64 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x65 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x66 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x67 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x68 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x69 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x70 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x71 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x72 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x73 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x74 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x75 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x76 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x77 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x78 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x79 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x80 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x81 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x82 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x83 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x84 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x85 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x86 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x87 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x88 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x89 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x90 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x91 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x92 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x93 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x94 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x95 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x96 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x97 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x98 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x99 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xab */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xac */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xad */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xae */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xba */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc0 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
27087 /* Table7985 */
},
/* 0xc1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc8 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
27088 /* Table7986 */
},
/* 0xc9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xca */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xce */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd0 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
27089 /* Table7987 */
},
/* 0xd1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xda */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xde */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xea */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xeb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xec */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xed */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xee */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xef */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xff */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
}
}
}
, /* IC_XD */
{ /* struct OpcodeDecision */
{
/* 0x00 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x01 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x02 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x03 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x04 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x05 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x06 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x07 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x08 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x09 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x10 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x11 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x12 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x13 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x14 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x15 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x16 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x17 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x18 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x19 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x20 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x21 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x22 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x23 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x24 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x25 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x26 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x27 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x28 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x29 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x30 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x31 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x32 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x33 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x34 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x35 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x36 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x37 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x38 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x39 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x40 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x41 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x42 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x43 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x44 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x45 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x46 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x47 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x48 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x49 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x50 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x51 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x52 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x53 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x54 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x55 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x56 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x57 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x58 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x59 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x60 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x61 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x62 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x63 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x64 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x65 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x66 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x67 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x68 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x69 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x70 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x71 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x72 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x73 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x74 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x75 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x76 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x77 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x78 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x79 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x80 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x81 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x82 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x83 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x84 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x85 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x86 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x87 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x88 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x89 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x90 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x91 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x92 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x93 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x94 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x95 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x96 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x97 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x98 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x99 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xab */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xac */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xad */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xae */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xba */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc0 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
27090 /* Table7988 */
},
/* 0xc1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc8 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
27091 /* Table7989 */
},
/* 0xc9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xca */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xce */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd0 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
27092 /* Table7990 */
},
/* 0xd1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xda */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xde */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xea */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xeb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xec */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xed */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xee */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xef */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xff */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
}
}
}
, /* IC_XS */
{ /* struct OpcodeDecision */
{
/* 0x00 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x01 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x02 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x03 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x04 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x05 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x06 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x07 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x08 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x09 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x10 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x11 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x12 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x13 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x14 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x15 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x16 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x17 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x18 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x19 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x20 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x21 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x22 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x23 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x24 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x25 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x26 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x27 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x28 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x29 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x30 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x31 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x32 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x33 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x34 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x35 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x36 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x37 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x38 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x39 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x40 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x41 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x42 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x43 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x44 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x45 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x46 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x47 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x48 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x49 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x50 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x51 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x52 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x53 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x54 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x55 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x56 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x57 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x58 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x59 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x60 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x61 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x62 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x63 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x64 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x65 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x66 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x67 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x68 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x69 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x70 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x71 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x72 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x73 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x74 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x75 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x76 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x77 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x78 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x79 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x80 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x81 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x82 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x83 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x84 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x85 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x86 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x87 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x88 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x89 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x90 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x91 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x92 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x93 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x94 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x95 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x96 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x97 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x98 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x99 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xab */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xac */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xad */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xae */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xba */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc0 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
27093 /* Table7991 */
},
/* 0xc1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc8 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
27094 /* Table7992 */
},
/* 0xc9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xca */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xce */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd0 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
27095 /* Table7993 */
},
/* 0xd1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xda */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xde */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xea */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xeb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xec */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xed */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xee */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xef */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xff */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
}
}
}
, /* IC_XD_OPSIZE */
{ /* struct OpcodeDecision */
{
/* 0x00 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x01 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x02 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x03 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x04 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x05 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x06 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x07 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x08 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x09 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x10 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x11 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x12 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x13 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x14 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x15 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x16 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x17 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x18 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x19 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x20 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x21 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x22 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x23 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x24 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x25 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x26 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x27 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x28 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x29 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x30 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x31 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x32 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x33 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x34 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x35 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x36 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x37 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x38 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x39 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x40 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x41 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x42 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x43 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x44 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x45 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x46 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x47 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x48 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x49 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x50 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x51 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x52 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x53 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x54 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x55 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x56 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x57 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x58 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x59 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x60 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x61 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x62 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x63 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x64 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x65 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x66 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x67 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x68 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x69 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x70 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x71 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x72 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x73 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x74 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x75 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x76 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x77 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x78 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x79 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x80 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x81 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x82 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x83 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x84 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x85 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x86 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x87 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x88 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x89 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x90 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x91 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x92 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x93 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x94 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x95 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x96 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x97 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x98 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x99 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xab */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xac */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xad */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xae */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xba */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xca */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xce */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xda */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xde */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xea */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xeb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xec */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xed */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xee */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xef */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xff */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
}
}
}
, /* IC_XS_OPSIZE */
{ /* struct OpcodeDecision */
{
/* 0x00 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x01 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x02 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x03 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x04 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x05 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x06 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x07 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x08 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x09 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x10 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x11 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x12 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x13 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x14 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x15 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x16 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x17 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x18 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x19 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x20 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x21 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x22 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x23 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x24 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x25 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x26 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x27 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x28 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x29 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x30 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x31 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x32 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x33 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x34 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x35 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x36 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x37 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x38 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x39 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x40 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x41 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x42 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x43 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x44 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x45 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x46 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x47 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x48 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x49 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x50 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x51 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x52 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x53 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x54 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x55 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x56 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x57 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x58 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x59 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x60 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x61 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x62 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x63 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x64 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x65 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x66 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x67 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x68 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x69 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x70 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x71 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x72 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x73 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x74 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x75 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x76 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x77 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x78 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x79 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x80 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x81 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x82 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x83 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x84 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x85 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x86 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x87 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x88 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x89 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x90 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x91 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x92 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x93 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x94 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x95 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x96 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x97 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x98 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x99 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xab */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xac */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xad */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xae */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xba */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xca */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xce */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xda */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xde */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xea */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xeb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xec */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xed */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xee */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xef */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xff */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
}
}
}
, /* IC_64BIT_REXW */
{ /* struct OpcodeDecision */
{
/* 0x00 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x01 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x02 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x03 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x04 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x05 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x06 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x07 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x08 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x09 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x10 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x11 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x12 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x13 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x14 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x15 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x16 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x17 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x18 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x19 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x20 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x21 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x22 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x23 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x24 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x25 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x26 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x27 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x28 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x29 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x30 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x31 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x32 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x33 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x34 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x35 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x36 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x37 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x38 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x39 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x40 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x41 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x42 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x43 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x44 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x45 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x46 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x47 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x48 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x49 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x50 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x51 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x52 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x53 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x54 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x55 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x56 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x57 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x58 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x59 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x60 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x61 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x62 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x63 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x64 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x65 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x66 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x67 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x68 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x69 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x70 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x71 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x72 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x73 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x74 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x75 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x76 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x77 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x78 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x79 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x80 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x81 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x82 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x83 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x84 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x85 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x86 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x87 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x88 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x89 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x90 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x91 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x92 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x93 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x94 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x95 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x96 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x97 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x98 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x99 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xab */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xac */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xad */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xae */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xba */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc0 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
27096 /* Table7994 */
},
/* 0xc1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc8 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
27097 /* Table7995 */
},
/* 0xc9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xca */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xce */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd0 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
27098 /* Table7996 */
},
/* 0xd1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xda */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xde */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xea */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xeb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xec */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xed */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xee */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xef */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xff */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
}
}
}
, /* IC_64BIT_OPSIZE */
{ /* struct OpcodeDecision */
{
/* 0x00 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x01 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x02 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x03 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x04 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x05 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x06 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x07 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x08 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x09 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x10 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x11 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x12 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x13 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x14 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x15 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x16 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x17 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x18 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x19 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x20 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x21 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x22 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x23 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x24 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x25 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x26 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x27 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x28 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x29 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x30 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x31 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x32 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x33 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x34 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x35 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x36 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x37 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x38 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x39 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x40 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x41 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x42 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x43 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x44 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x45 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x46 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x47 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x48 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x49 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x50 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x51 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x52 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x53 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x54 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x55 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x56 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x57 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x58 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x59 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x60 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x61 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x62 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x63 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x64 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x65 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x66 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x67 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x68 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x69 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x70 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x71 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x72 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x73 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x74 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x75 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x76 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x77 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x78 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x79 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x80 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x81 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x82 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x83 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x84 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x85 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x86 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x87 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x88 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x89 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x90 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x91 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x92 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x93 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x94 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x95 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x96 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x97 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x98 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x99 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xab */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xac */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xad */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xae */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xba */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc0 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
27099 /* Table7997 */
},
/* 0xc1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc8 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
27100 /* Table7998 */
},
/* 0xc9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xca */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xce */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd0 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
27101 /* Table7999 */
},
/* 0xd1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xda */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xde */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xea */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xeb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xec */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xed */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xee */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xef */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xff */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
}
}
}
, /* IC_64BIT_ADSIZE */
{ /* struct OpcodeDecision */
{
/* 0x00 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x01 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x02 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x03 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x04 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x05 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x06 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x07 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x08 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x09 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x10 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x11 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x12 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x13 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x14 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x15 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x16 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x17 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x18 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x19 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x20 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x21 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x22 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x23 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x24 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x25 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x26 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x27 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x28 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x29 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x30 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x31 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x32 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x33 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x34 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x35 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x36 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x37 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x38 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x39 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x40 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x41 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x42 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x43 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x44 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x45 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x46 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x47 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x48 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x49 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x50 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x51 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x52 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x53 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x54 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x55 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x56 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x57 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x58 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x59 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x60 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x61 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x62 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x63 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x64 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x65 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x66 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x67 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x68 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x69 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x70 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x71 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x72 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x73 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x74 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x75 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x76 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x77 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x78 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x79 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x80 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x81 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x82 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x83 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x84 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x85 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x86 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x87 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x88 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x89 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x90 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x91 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x92 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x93 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x94 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x95 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x96 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x97 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x98 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x99 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xab */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xac */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xad */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xae */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xba */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc0 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
27102 /* Table8000 */
},
/* 0xc1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc8 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
27103 /* Table8001 */
},
/* 0xc9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xca */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xce */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd0 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
27104 /* Table8002 */
},
/* 0xd1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xda */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xde */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xea */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xeb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xec */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xed */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xee */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xef */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xff */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
}
}
}
, /* IC_64BIT_XD */
{ /* struct OpcodeDecision */
{
/* 0x00 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x01 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x02 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x03 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x04 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x05 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x06 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x07 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x08 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x09 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x10 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x11 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x12 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x13 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x14 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x15 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x16 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x17 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x18 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x19 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x20 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x21 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x22 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x23 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x24 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x25 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x26 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x27 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x28 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x29 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x30 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x31 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x32 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x33 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x34 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x35 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x36 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x37 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x38 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x39 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x40 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x41 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x42 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x43 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x44 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x45 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x46 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x47 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x48 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x49 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x50 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x51 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x52 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x53 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x54 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x55 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x56 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x57 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x58 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x59 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x60 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x61 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x62 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x63 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x64 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x65 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x66 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x67 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x68 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x69 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x70 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x71 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x72 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x73 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x74 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x75 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x76 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x77 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x78 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x79 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x80 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x81 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x82 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x83 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x84 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x85 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x86 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x87 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x88 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x89 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x90 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x91 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x92 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x93 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x94 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x95 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x96 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x97 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x98 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x99 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xab */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xac */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xad */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xae */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xba */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc0 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
27105 /* Table8003 */
},
/* 0xc1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc8 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
27106 /* Table8004 */
},
/* 0xc9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xca */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xce */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd0 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
27107 /* Table8005 */
},
/* 0xd1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xda */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xde */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xea */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xeb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xec */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xed */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xee */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xef */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xff */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
}
}
}
, /* IC_64BIT_XS */
{ /* struct OpcodeDecision */
{
/* 0x00 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x01 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x02 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x03 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x04 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x05 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x06 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x07 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x08 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x09 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x10 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x11 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x12 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x13 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x14 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x15 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x16 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x17 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x18 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x19 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x20 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x21 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x22 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x23 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x24 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x25 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x26 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x27 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x28 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x29 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x30 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x31 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x32 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x33 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x34 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x35 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x36 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x37 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x38 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x39 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x40 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x41 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x42 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x43 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x44 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x45 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x46 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x47 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x48 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x49 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x50 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x51 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x52 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x53 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x54 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x55 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x56 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x57 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x58 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x59 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x60 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x61 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x62 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x63 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x64 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x65 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x66 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x67 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x68 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x69 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x70 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x71 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x72 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x73 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x74 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x75 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x76 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x77 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x78 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x79 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x80 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x81 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x82 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x83 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x84 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x85 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x86 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x87 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x88 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x89 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x90 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x91 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x92 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x93 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x94 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x95 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x96 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x97 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x98 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x99 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xab */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xac */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xad */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xae */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xba */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc0 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
27108 /* Table8006 */
},
/* 0xc1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc8 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
27109 /* Table8007 */
},
/* 0xc9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xca */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xce */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd0 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
27110 /* Table8008 */
},
/* 0xd1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xda */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xde */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xea */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xeb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xec */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xed */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xee */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xef */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xff */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
}
}
}
, /* IC_64BIT_XD_OPSIZE */
{ /* struct OpcodeDecision */
{
/* 0x00 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x01 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x02 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x03 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x04 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x05 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x06 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x07 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x08 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x09 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x10 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x11 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x12 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x13 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x14 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x15 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x16 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x17 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x18 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x19 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x20 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x21 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x22 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x23 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x24 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x25 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x26 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x27 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x28 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x29 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x30 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x31 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x32 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x33 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x34 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x35 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x36 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x37 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x38 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x39 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x40 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x41 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x42 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x43 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x44 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x45 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x46 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x47 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x48 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x49 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x50 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x51 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x52 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x53 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x54 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x55 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x56 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x57 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x58 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x59 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x60 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x61 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x62 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x63 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x64 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x65 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x66 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x67 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x68 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x69 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x70 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x71 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x72 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x73 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x74 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x75 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x76 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x77 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x78 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x79 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x80 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x81 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x82 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x83 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x84 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x85 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x86 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x87 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x88 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x89 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x90 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x91 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x92 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x93 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x94 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x95 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x96 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x97 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x98 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x99 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xab */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xac */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xad */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xae */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xba */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xca */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xce */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xda */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xde */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xea */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xeb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xec */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xed */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xee */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xef */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xff */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
}
}
}
, /* IC_64BIT_XS_OPSIZE */
{ /* struct OpcodeDecision */
{
/* 0x00 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x01 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x02 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x03 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x04 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x05 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x06 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x07 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x08 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x09 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x10 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x11 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x12 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x13 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x14 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x15 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x16 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x17 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x18 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x19 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x20 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x21 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x22 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x23 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x24 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x25 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x26 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x27 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x28 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x29 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x30 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x31 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x32 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x33 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x34 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x35 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x36 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x37 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x38 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x39 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x40 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x41 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x42 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x43 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x44 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x45 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x46 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x47 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x48 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x49 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x50 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x51 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x52 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x53 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x54 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x55 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x56 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x57 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x58 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x59 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x60 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x61 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x62 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x63 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x64 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x65 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x66 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x67 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x68 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x69 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x70 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x71 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x72 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x73 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x74 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x75 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x76 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x77 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x78 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x79 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x80 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x81 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x82 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x83 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x84 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x85 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x86 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x87 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x88 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x89 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x90 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x91 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x92 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x93 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x94 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x95 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x96 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x97 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x98 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x99 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xab */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xac */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xad */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xae */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xba */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xca */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xce */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xda */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xde */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xea */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xeb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xec */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xed */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xee */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xef */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xff */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
}
}
}
, /* IC_64BIT_REXW_XS */
{ /* struct OpcodeDecision */
{
/* 0x00 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x01 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x02 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x03 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x04 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x05 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x06 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x07 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x08 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x09 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x10 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x11 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x12 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x13 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x14 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x15 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x16 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x17 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x18 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x19 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x20 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x21 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x22 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x23 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x24 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x25 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x26 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x27 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x28 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x29 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x30 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x31 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x32 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x33 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x34 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x35 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x36 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x37 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x38 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x39 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x40 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x41 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x42 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x43 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x44 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x45 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x46 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x47 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x48 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x49 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x50 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x51 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x52 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x53 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x54 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x55 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x56 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x57 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x58 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x59 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x60 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x61 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x62 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x63 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x64 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x65 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x66 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x67 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x68 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x69 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x70 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x71 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x72 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x73 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x74 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x75 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x76 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x77 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x78 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x79 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x80 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x81 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x82 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x83 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x84 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x85 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x86 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x87 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x88 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x89 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x90 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x91 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x92 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x93 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x94 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x95 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x96 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x97 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x98 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x99 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xab */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xac */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xad */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xae */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xba */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc0 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
27111 /* Table8009 */
},
/* 0xc1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc8 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
27112 /* Table8010 */
},
/* 0xc9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xca */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xce */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd0 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
27113 /* Table8011 */
},
/* 0xd1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xda */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xde */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xea */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xeb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xec */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xed */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xee */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xef */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xff */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
}
}
}
, /* IC_64BIT_REXW_XD */
{ /* struct OpcodeDecision */
{
/* 0x00 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x01 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x02 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x03 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x04 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x05 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x06 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x07 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x08 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x09 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x10 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x11 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x12 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x13 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x14 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x15 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x16 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x17 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x18 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x19 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x20 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x21 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x22 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x23 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x24 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x25 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x26 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x27 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x28 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x29 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x30 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x31 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x32 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x33 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x34 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x35 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x36 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x37 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x38 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x39 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x40 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x41 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x42 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x43 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x44 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x45 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x46 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x47 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x48 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x49 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x50 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x51 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x52 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x53 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x54 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x55 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x56 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x57 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x58 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x59 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x60 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x61 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x62 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x63 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x64 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x65 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x66 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x67 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x68 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x69 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x70 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x71 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x72 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x73 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x74 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x75 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x76 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x77 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x78 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x79 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x80 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x81 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x82 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x83 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x84 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x85 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x86 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x87 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x88 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x89 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x90 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x91 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x92 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x93 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x94 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x95 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x96 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x97 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x98 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x99 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xab */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xac */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xad */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xae */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xba */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc0 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
27114 /* Table8012 */
},
/* 0xc1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc8 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
27115 /* Table8013 */
},
/* 0xc9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xca */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xce */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd0 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
27116 /* Table8014 */
},
/* 0xd1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xda */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xde */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xea */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xeb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xec */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xed */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xee */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xef */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xff */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
}
}
}
, /* IC_64BIT_REXW_OPSIZE */
{ /* struct OpcodeDecision */
{
/* 0x00 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x01 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x02 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x03 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x04 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x05 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x06 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x07 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x08 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x09 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x10 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x11 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x12 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x13 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x14 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x15 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x16 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x17 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x18 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x19 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x20 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x21 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x22 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x23 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x24 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x25 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x26 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x27 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x28 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x29 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x30 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x31 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x32 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x33 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x34 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x35 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x36 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x37 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x38 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x39 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x40 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x41 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x42 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x43 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x44 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x45 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x46 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x47 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x48 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x49 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x50 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x51 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x52 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x53 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x54 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x55 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x56 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x57 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x58 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x59 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x60 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x61 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x62 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x63 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x64 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x65 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x66 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x67 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x68 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x69 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x70 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x71 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x72 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x73 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x74 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x75 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x76 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x77 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x78 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x79 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x80 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x81 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x82 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x83 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x84 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x85 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x86 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x87 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x88 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x89 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x90 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x91 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x92 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x93 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x94 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x95 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x96 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x97 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x98 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x99 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xab */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xac */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xad */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xae */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xba */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc0 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
27117 /* Table8015 */
},
/* 0xc1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc8 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
27118 /* Table8016 */
},
/* 0xc9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xca */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xce */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd0 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
27119 /* Table8017 */
},
/* 0xd1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xda */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xde */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xea */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xeb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xec */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xed */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xee */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xef */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xff */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
}
}
}
, /* IC_VEX */
{ /* struct OpcodeDecision */
{
/* 0x00 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x01 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x02 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x03 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x04 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x05 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x06 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x07 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x08 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x09 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x10 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x11 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x12 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x13 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x14 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x15 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x16 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x17 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x18 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x19 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x20 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x21 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x22 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x23 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x24 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x25 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x26 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x27 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x28 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x29 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x30 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x31 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x32 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x33 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x34 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x35 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x36 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x37 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x38 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x39 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x40 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x41 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x42 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x43 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x44 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x45 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x46 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x47 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x48 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x49 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x50 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x51 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x52 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x53 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x54 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x55 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x56 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x57 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x58 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x59 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x60 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x61 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x62 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x63 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x64 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x65 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x66 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x67 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x68 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x69 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x70 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x71 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x72 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x73 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x74 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x75 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x76 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x77 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x78 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x79 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x80 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x81 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x82 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x83 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x84 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x85 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x86 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x87 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x88 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x89 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x90 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x91 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x92 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x93 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x94 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x95 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x96 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x97 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x98 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x99 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xab */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xac */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xad */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xae */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xba */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xca */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xce */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xda */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xde */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xea */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xeb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xec */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xed */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xee */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xef */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xff */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
}
}
}
, /* IC_VEX_XS */
{ /* struct OpcodeDecision */
{
/* 0x00 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x01 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x02 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x03 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x04 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x05 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x06 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x07 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x08 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x09 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x10 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x11 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x12 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x13 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x14 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x15 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x16 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x17 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x18 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x19 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x20 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x21 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x22 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x23 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x24 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x25 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x26 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x27 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x28 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x29 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x30 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x31 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x32 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x33 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x34 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x35 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x36 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x37 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x38 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x39 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x40 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x41 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x42 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x43 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x44 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x45 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x46 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x47 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x48 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x49 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x50 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x51 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x52 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x53 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x54 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x55 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x56 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x57 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x58 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x59 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x60 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x61 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x62 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x63 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x64 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x65 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x66 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x67 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x68 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x69 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x70 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x71 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x72 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x73 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x74 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x75 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x76 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x77 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x78 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x79 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x80 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x81 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x82 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x83 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x84 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x85 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x86 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x87 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x88 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x89 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x90 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x91 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x92 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x93 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x94 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x95 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x96 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x97 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x98 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x99 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xab */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xac */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xad */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xae */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xba */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xca */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xce */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xda */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xde */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xea */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xeb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xec */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xed */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xee */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xef */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xff */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
}
}
}
, /* IC_VEX_XD */
{ /* struct OpcodeDecision */
{
/* 0x00 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x01 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x02 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x03 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x04 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x05 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x06 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x07 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x08 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x09 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x10 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x11 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x12 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x13 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x14 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x15 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x16 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x17 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x18 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x19 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x20 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x21 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x22 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x23 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x24 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x25 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x26 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x27 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x28 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x29 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x30 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x31 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x32 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x33 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x34 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x35 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x36 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x37 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x38 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x39 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x40 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x41 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x42 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x43 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x44 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x45 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x46 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x47 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x48 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x49 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x50 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x51 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x52 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x53 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x54 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x55 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x56 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x57 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x58 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x59 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x60 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x61 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x62 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x63 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x64 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x65 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x66 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x67 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x68 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x69 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x70 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x71 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x72 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x73 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x74 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x75 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x76 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x77 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x78 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x79 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x80 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x81 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x82 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x83 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x84 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x85 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x86 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x87 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x88 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x89 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x90 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x91 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x92 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x93 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x94 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x95 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x96 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x97 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x98 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x99 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xab */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xac */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xad */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xae */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xba */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xca */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xce */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xda */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xde */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xea */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xeb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xec */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xed */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xee */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xef */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xff */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
}
}
}
, /* IC_VEX_OPSIZE */
{ /* struct OpcodeDecision */
{
/* 0x00 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x01 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x02 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x03 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x04 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x05 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x06 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x07 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x08 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x09 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x10 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x11 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x12 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x13 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x14 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x15 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x16 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x17 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x18 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x19 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x20 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x21 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x22 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x23 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x24 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x25 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x26 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x27 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x28 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x29 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x30 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x31 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x32 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x33 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x34 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x35 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x36 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x37 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x38 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x39 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x40 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x41 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x42 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x43 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x44 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x45 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x46 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x47 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x48 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x49 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x50 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x51 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x52 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x53 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x54 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x55 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x56 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x57 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x58 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x59 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x60 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x61 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x62 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x63 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x64 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x65 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x66 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x67 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x68 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x69 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x70 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x71 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x72 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x73 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x74 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x75 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x76 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x77 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x78 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x79 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x80 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x81 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x82 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x83 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x84 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x85 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x86 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x87 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x88 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x89 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x90 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x91 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x92 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x93 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x94 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x95 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x96 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x97 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x98 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x99 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xab */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xac */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xad */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xae */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xba */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xca */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xce */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xda */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xde */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xea */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xeb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xec */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xed */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xee */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xef */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xff */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
}
}
}
, /* IC_VEX_W */
{ /* struct OpcodeDecision */
{
/* 0x00 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x01 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x02 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x03 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x04 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x05 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x06 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x07 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x08 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x09 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x10 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x11 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x12 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x13 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x14 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x15 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x16 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x17 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x18 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x19 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x20 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x21 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x22 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x23 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x24 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x25 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x26 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x27 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x28 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x29 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x30 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x31 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x32 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x33 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x34 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x35 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x36 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x37 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x38 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x39 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x40 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x41 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x42 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x43 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x44 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x45 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x46 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x47 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x48 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x49 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x50 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x51 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x52 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x53 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x54 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x55 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x56 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x57 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x58 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x59 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x60 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x61 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x62 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x63 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x64 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x65 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x66 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x67 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x68 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x69 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x70 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x71 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x72 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x73 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x74 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x75 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x76 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x77 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x78 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x79 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x80 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x81 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x82 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x83 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x84 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x85 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x86 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x87 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x88 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x89 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x90 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x91 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x92 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x93 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x94 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x95 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x96 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x97 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x98 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x99 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xab */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xac */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xad */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xae */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xba */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xca */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xce */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xda */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xde */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xea */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xeb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xec */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xed */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xee */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xef */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xff */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
}
}
}
, /* IC_VEX_W_XS */
{ /* struct OpcodeDecision */
{
/* 0x00 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x01 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x02 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x03 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x04 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x05 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x06 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x07 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x08 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x09 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x10 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x11 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x12 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x13 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x14 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x15 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x16 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x17 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x18 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x19 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x20 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x21 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x22 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x23 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x24 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x25 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x26 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x27 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x28 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x29 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x30 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x31 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x32 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x33 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x34 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x35 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x36 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x37 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x38 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x39 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x40 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x41 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x42 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x43 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x44 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x45 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x46 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x47 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x48 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x49 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x50 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x51 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x52 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x53 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x54 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x55 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x56 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x57 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x58 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x59 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x60 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x61 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x62 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x63 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x64 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x65 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x66 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x67 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x68 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x69 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x70 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x71 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x72 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x73 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x74 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x75 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x76 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x77 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x78 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x79 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x80 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x81 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x82 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x83 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x84 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x85 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x86 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x87 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x88 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x89 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x90 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x91 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x92 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x93 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x94 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x95 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x96 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x97 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x98 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x99 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xab */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xac */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xad */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xae */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xba */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xca */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xce */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xda */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xde */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xea */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xeb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xec */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xed */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xee */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xef */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xff */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
}
}
}
, /* IC_VEX_W_XD */
{ /* struct OpcodeDecision */
{
/* 0x00 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x01 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x02 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x03 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x04 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x05 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x06 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x07 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x08 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x09 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x10 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x11 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x12 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x13 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x14 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x15 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x16 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x17 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x18 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x19 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x20 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x21 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x22 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x23 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x24 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x25 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x26 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x27 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x28 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x29 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x30 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x31 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x32 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x33 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x34 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x35 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x36 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x37 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x38 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x39 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x40 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x41 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x42 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x43 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x44 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x45 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x46 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x47 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x48 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x49 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x50 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x51 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x52 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x53 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x54 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x55 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x56 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x57 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x58 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x59 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x60 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x61 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x62 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x63 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x64 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x65 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x66 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x67 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x68 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x69 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x70 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x71 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x72 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x73 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x74 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x75 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x76 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x77 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x78 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x79 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x80 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x81 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x82 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x83 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x84 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x85 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x86 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x87 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x88 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x89 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x90 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x91 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x92 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x93 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x94 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x95 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x96 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x97 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x98 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x99 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xab */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xac */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xad */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xae */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xba */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xca */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xce */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xda */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xde */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xea */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xeb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xec */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xed */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xee */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xef */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xff */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
}
}
}
, /* IC_VEX_W_OPSIZE */
{ /* struct OpcodeDecision */
{
/* 0x00 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x01 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x02 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x03 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x04 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x05 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x06 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x07 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x08 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x09 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x10 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x11 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x12 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x13 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x14 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x15 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x16 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x17 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x18 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x19 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x20 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x21 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x22 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x23 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x24 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x25 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x26 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x27 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x28 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x29 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x30 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x31 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x32 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x33 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x34 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x35 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x36 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x37 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x38 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x39 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x40 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x41 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x42 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x43 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x44 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x45 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x46 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x47 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x48 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x49 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x50 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x51 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x52 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x53 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x54 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x55 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x56 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x57 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x58 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x59 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x60 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x61 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x62 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x63 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x64 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x65 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x66 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x67 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x68 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x69 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x70 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x71 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x72 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x73 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x74 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x75 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x76 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x77 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x78 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x79 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x80 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x81 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x82 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x83 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x84 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x85 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x86 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x87 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x88 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x89 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x90 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x91 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x92 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x93 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x94 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x95 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x96 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x97 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x98 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x99 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xab */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xac */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xad */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xae */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xba */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xca */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xce */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xda */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xde */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xea */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xeb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xec */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xed */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xee */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xef */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xff */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
}
}
}
, /* IC_VEX_L */
{ /* struct OpcodeDecision */
{
/* 0x00 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x01 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x02 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x03 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x04 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x05 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x06 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x07 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x08 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x09 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x10 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x11 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x12 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x13 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x14 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x15 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x16 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x17 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x18 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x19 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x20 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x21 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x22 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x23 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x24 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x25 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x26 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x27 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x28 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x29 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x30 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x31 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x32 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x33 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x34 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x35 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x36 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x37 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x38 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x39 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x40 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x41 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x42 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x43 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x44 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x45 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x46 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x47 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x48 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x49 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x50 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x51 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x52 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x53 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x54 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x55 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x56 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x57 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x58 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x59 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x60 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x61 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x62 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x63 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x64 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x65 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x66 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x67 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x68 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x69 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x70 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x71 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x72 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x73 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x74 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x75 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x76 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x77 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x78 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x79 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x80 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x81 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x82 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x83 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x84 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x85 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x86 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x87 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x88 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x89 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x90 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x91 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x92 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x93 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x94 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x95 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x96 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x97 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x98 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x99 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xab */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xac */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xad */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xae */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xba */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xca */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xce */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xda */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xde */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xea */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xeb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xec */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xed */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xee */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xef */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xff */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
}
}
}
, /* IC_VEX_L_XS */
{ /* struct OpcodeDecision */
{
/* 0x00 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x01 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x02 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x03 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x04 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x05 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x06 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x07 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x08 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x09 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x10 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x11 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x12 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x13 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x14 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x15 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x16 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x17 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x18 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x19 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x20 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x21 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x22 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x23 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x24 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x25 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x26 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x27 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x28 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x29 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x30 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x31 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x32 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x33 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x34 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x35 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x36 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x37 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x38 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x39 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x40 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x41 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x42 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x43 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x44 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x45 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x46 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x47 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x48 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x49 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x50 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x51 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x52 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x53 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x54 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x55 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x56 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x57 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x58 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x59 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x60 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x61 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x62 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x63 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x64 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x65 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x66 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x67 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x68 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x69 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x70 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x71 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x72 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x73 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x74 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x75 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x76 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x77 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x78 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x79 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x80 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x81 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x82 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x83 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x84 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x85 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x86 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x87 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x88 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x89 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x90 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x91 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x92 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x93 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x94 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x95 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x96 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x97 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x98 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x99 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xab */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xac */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xad */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xae */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xba */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xca */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xce */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xda */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xde */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xea */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xeb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xec */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xed */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xee */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xef */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xff */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
}
}
}
, /* IC_VEX_L_XD */
{ /* struct OpcodeDecision */
{
/* 0x00 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x01 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x02 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x03 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x04 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x05 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x06 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x07 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x08 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x09 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x10 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x11 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x12 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x13 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x14 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x15 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x16 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x17 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x18 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x19 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x20 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x21 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x22 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x23 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x24 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x25 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x26 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x27 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x28 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x29 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x30 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x31 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x32 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x33 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x34 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x35 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x36 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x37 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x38 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x39 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x40 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x41 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x42 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x43 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x44 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x45 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x46 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x47 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x48 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x49 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x50 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x51 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x52 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x53 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x54 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x55 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x56 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x57 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x58 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x59 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x60 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x61 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x62 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x63 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x64 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x65 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x66 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x67 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x68 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x69 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x70 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x71 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x72 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x73 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x74 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x75 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x76 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x77 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x78 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x79 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x80 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x81 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x82 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x83 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x84 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x85 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x86 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x87 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x88 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x89 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x90 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x91 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x92 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x93 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x94 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x95 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x96 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x97 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x98 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x99 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xab */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xac */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xad */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xae */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xba */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xca */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xce */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xda */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xde */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xea */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xeb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xec */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xed */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xee */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xef */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xff */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
}
}
}
, /* IC_VEX_L_OPSIZE */
{ /* struct OpcodeDecision */
{
/* 0x00 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x01 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x02 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x03 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x04 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x05 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x06 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x07 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x08 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x09 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x10 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x11 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x12 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x13 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x14 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x15 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x16 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x17 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x18 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x19 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x20 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x21 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x22 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x23 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x24 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x25 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x26 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x27 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x28 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x29 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x30 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x31 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x32 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x33 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x34 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x35 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x36 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x37 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x38 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x39 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x40 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x41 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x42 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x43 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x44 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x45 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x46 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x47 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x48 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x49 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x50 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x51 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x52 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x53 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x54 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x55 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x56 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x57 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x58 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x59 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x60 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x61 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x62 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x63 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x64 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x65 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x66 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x67 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x68 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x69 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x70 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x71 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x72 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x73 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x74 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x75 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x76 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x77 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x78 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x79 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x80 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x81 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x82 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x83 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x84 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x85 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x86 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x87 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x88 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x89 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x90 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x91 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x92 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x93 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x94 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x95 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x96 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x97 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x98 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x99 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xab */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xac */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xad */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xae */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xba */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xca */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xce */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xda */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xde */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xea */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xeb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xec */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xed */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xee */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xef */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xff */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
}
}
}
, /* IC_VEX_L_W_OPSIZE */
{ /* struct OpcodeDecision */
{
/* 0x00 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x01 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x02 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x03 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x04 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x05 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x06 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x07 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x08 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x09 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x10 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x11 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x12 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x13 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x14 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x15 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x16 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x17 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x18 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x19 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x20 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x21 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x22 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x23 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x24 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x25 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x26 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x27 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x28 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x29 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x30 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x31 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x32 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x33 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x34 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x35 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x36 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x37 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x38 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x39 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x40 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x41 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x42 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x43 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x44 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x45 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x46 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x47 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x48 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x49 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x50 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x51 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x52 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x53 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x54 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x55 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x56 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x57 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x58 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x59 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x60 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x61 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x62 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x63 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x64 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x65 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x66 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x67 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x68 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x69 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x70 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x71 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x72 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x73 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x74 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x75 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x76 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x77 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x78 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x79 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x80 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x81 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x82 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x83 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x84 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x85 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x86 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x87 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x88 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x89 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x90 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x91 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x92 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x93 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x94 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x95 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x96 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x97 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x98 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x99 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xab */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xac */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xad */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xae */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xba */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xca */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xce */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xda */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xde */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xea */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xeb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xec */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xed */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xee */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xef */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xff */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
}
}
}
}
};
static const struct ContextDecision x86DisassemblerThreeByteA7Opcodes = {
{ /* opcodeDecisions */
/* IC */
{ /* struct OpcodeDecision */
{
/* 0x00 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x01 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x02 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x03 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x04 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x05 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x06 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x07 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x08 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x09 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x10 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x11 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x12 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x13 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x14 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x15 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x16 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x17 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x18 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x19 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x20 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x21 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x22 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x23 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x24 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x25 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x26 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x27 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x28 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x29 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x30 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x31 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x32 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x33 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x34 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x35 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x36 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x37 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x38 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x39 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x40 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x41 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x42 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x43 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x44 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x45 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x46 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x47 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x48 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x49 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x50 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x51 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x52 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x53 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x54 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x55 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x56 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x57 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x58 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x59 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x60 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x61 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x62 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x63 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x64 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x65 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x66 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x67 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x68 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x69 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x70 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x71 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x72 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x73 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x74 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x75 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x76 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x77 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x78 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x79 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x80 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x81 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x82 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x83 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x84 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x85 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x86 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x87 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x88 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x89 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x90 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x91 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x92 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x93 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x94 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x95 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x96 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x97 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x98 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x99 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xab */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xac */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xad */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xae */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xba */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc0 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
27120 /* Table8018 */
},
/* 0xc1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc8 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
27121 /* Table8019 */
},
/* 0xc9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xca */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xce */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd0 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
27122 /* Table8020 */
},
/* 0xd1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd8 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
27123 /* Table8021 */
},
/* 0xd9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xda */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xde */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe0 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
27124 /* Table8022 */
},
/* 0xe1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe8 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
27125 /* Table8023 */
},
/* 0xe9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xea */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xeb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xec */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xed */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xee */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xef */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xff */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
}
}
}
, /* IC_64BIT */
{ /* struct OpcodeDecision */
{
/* 0x00 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x01 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x02 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x03 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x04 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x05 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x06 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x07 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x08 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x09 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x10 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x11 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x12 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x13 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x14 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x15 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x16 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x17 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x18 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x19 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x20 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x21 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x22 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x23 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x24 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x25 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x26 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x27 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x28 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x29 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x30 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x31 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x32 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x33 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x34 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x35 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x36 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x37 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x38 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x39 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x40 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x41 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x42 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x43 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x44 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x45 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x46 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x47 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x48 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x49 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x50 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x51 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x52 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x53 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x54 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x55 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x56 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x57 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x58 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x59 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x60 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x61 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x62 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x63 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x64 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x65 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x66 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x67 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x68 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x69 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x70 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x71 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x72 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x73 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x74 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x75 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x76 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x77 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x78 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x79 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x80 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x81 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x82 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x83 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x84 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x85 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x86 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x87 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x88 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x89 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x90 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x91 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x92 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x93 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x94 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x95 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x96 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x97 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x98 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x99 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xab */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xac */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xad */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xae */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xba */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc0 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
27126 /* Table8024 */
},
/* 0xc1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc8 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
27127 /* Table8025 */
},
/* 0xc9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xca */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xce */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd0 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
27128 /* Table8026 */
},
/* 0xd1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd8 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
27129 /* Table8027 */
},
/* 0xd9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xda */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xde */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe0 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
27130 /* Table8028 */
},
/* 0xe1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe8 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
27131 /* Table8029 */
},
/* 0xe9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xea */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xeb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xec */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xed */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xee */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xef */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xff */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
}
}
}
, /* IC_OPSIZE */
{ /* struct OpcodeDecision */
{
/* 0x00 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x01 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x02 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x03 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x04 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x05 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x06 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x07 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x08 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x09 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x10 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x11 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x12 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x13 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x14 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x15 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x16 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x17 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x18 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x19 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x20 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x21 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x22 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x23 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x24 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x25 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x26 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x27 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x28 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x29 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x30 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x31 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x32 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x33 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x34 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x35 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x36 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x37 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x38 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x39 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x40 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x41 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x42 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x43 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x44 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x45 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x46 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x47 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x48 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x49 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x50 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x51 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x52 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x53 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x54 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x55 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x56 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x57 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x58 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x59 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x60 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x61 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x62 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x63 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x64 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x65 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x66 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x67 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x68 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x69 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x70 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x71 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x72 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x73 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x74 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x75 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x76 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x77 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x78 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x79 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x80 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x81 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x82 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x83 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x84 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x85 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x86 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x87 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x88 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x89 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x90 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x91 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x92 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x93 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x94 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x95 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x96 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x97 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x98 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x99 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xab */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xac */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xad */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xae */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xba */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc0 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
27132 /* Table8030 */
},
/* 0xc1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc8 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
27133 /* Table8031 */
},
/* 0xc9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xca */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xce */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd0 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
27134 /* Table8032 */
},
/* 0xd1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd8 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
27135 /* Table8033 */
},
/* 0xd9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xda */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xde */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe0 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
27136 /* Table8034 */
},
/* 0xe1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe8 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
27137 /* Table8035 */
},
/* 0xe9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xea */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xeb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xec */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xed */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xee */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xef */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xff */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
}
}
}
, /* IC_ADSIZE */
{ /* struct OpcodeDecision */
{
/* 0x00 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x01 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x02 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x03 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x04 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x05 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x06 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x07 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x08 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x09 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x10 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x11 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x12 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x13 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x14 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x15 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x16 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x17 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x18 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x19 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x20 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x21 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x22 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x23 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x24 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x25 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x26 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x27 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x28 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x29 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x30 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x31 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x32 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x33 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x34 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x35 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x36 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x37 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x38 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x39 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x40 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x41 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x42 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x43 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x44 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x45 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x46 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x47 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x48 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x49 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x50 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x51 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x52 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x53 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x54 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x55 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x56 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x57 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x58 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x59 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x60 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x61 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x62 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x63 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x64 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x65 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x66 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x67 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x68 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x69 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x70 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x71 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x72 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x73 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x74 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x75 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x76 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x77 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x78 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x79 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x80 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x81 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x82 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x83 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x84 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x85 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x86 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x87 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x88 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x89 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x90 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x91 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x92 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x93 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x94 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x95 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x96 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x97 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x98 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x99 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xab */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xac */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xad */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xae */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xba */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc0 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
27138 /* Table8036 */
},
/* 0xc1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc8 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
27139 /* Table8037 */
},
/* 0xc9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xca */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xce */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd0 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
27140 /* Table8038 */
},
/* 0xd1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd8 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
27141 /* Table8039 */
},
/* 0xd9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xda */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xde */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe0 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
27142 /* Table8040 */
},
/* 0xe1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe8 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
27143 /* Table8041 */
},
/* 0xe9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xea */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xeb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xec */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xed */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xee */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xef */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xff */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
}
}
}
, /* IC_XD */
{ /* struct OpcodeDecision */
{
/* 0x00 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x01 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x02 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x03 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x04 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x05 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x06 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x07 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x08 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x09 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x10 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x11 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x12 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x13 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x14 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x15 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x16 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x17 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x18 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x19 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x20 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x21 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x22 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x23 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x24 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x25 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x26 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x27 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x28 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x29 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x30 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x31 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x32 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x33 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x34 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x35 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x36 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x37 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x38 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x39 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x40 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x41 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x42 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x43 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x44 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x45 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x46 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x47 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x48 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x49 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x50 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x51 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x52 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x53 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x54 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x55 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x56 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x57 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x58 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x59 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x60 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x61 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x62 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x63 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x64 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x65 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x66 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x67 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x68 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x69 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x70 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x71 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x72 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x73 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x74 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x75 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x76 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x77 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x78 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x79 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x80 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x81 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x82 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x83 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x84 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x85 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x86 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x87 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x88 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x89 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x90 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x91 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x92 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x93 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x94 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x95 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x96 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x97 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x98 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x99 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xab */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xac */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xad */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xae */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xba */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc0 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
27144 /* Table8042 */
},
/* 0xc1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc8 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
27145 /* Table8043 */
},
/* 0xc9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xca */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xce */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd0 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
27146 /* Table8044 */
},
/* 0xd1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd8 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
27147 /* Table8045 */
},
/* 0xd9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xda */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xde */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe0 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
27148 /* Table8046 */
},
/* 0xe1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe8 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
27149 /* Table8047 */
},
/* 0xe9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xea */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xeb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xec */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xed */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xee */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xef */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xff */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
}
}
}
, /* IC_XS */
{ /* struct OpcodeDecision */
{
/* 0x00 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x01 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x02 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x03 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x04 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x05 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x06 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x07 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x08 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x09 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x10 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x11 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x12 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x13 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x14 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x15 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x16 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x17 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x18 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x19 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x20 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x21 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x22 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x23 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x24 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x25 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x26 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x27 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x28 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x29 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x30 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x31 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x32 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x33 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x34 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x35 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x36 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x37 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x38 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x39 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x40 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x41 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x42 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x43 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x44 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x45 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x46 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x47 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x48 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x49 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x50 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x51 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x52 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x53 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x54 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x55 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x56 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x57 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x58 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x59 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x60 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x61 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x62 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x63 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x64 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x65 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x66 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x67 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x68 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x69 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x70 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x71 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x72 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x73 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x74 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x75 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x76 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x77 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x78 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x79 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x80 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x81 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x82 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x83 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x84 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x85 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x86 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x87 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x88 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x89 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x90 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x91 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x92 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x93 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x94 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x95 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x96 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x97 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x98 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x99 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xab */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xac */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xad */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xae */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xba */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc0 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
27150 /* Table8048 */
},
/* 0xc1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc8 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
27151 /* Table8049 */
},
/* 0xc9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xca */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xce */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd0 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
27152 /* Table8050 */
},
/* 0xd1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd8 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
27153 /* Table8051 */
},
/* 0xd9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xda */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xde */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe0 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
27154 /* Table8052 */
},
/* 0xe1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe8 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
27155 /* Table8053 */
},
/* 0xe9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xea */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xeb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xec */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xed */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xee */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xef */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xff */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
}
}
}
, /* IC_XD_OPSIZE */
{ /* struct OpcodeDecision */
{
/* 0x00 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x01 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x02 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x03 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x04 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x05 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x06 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x07 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x08 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x09 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x10 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x11 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x12 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x13 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x14 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x15 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x16 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x17 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x18 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x19 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x20 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x21 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x22 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x23 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x24 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x25 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x26 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x27 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x28 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x29 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x30 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x31 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x32 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x33 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x34 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x35 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x36 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x37 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x38 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x39 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x40 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x41 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x42 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x43 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x44 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x45 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x46 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x47 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x48 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x49 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x50 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x51 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x52 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x53 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x54 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x55 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x56 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x57 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x58 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x59 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x60 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x61 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x62 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x63 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x64 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x65 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x66 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x67 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x68 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x69 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x70 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x71 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x72 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x73 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x74 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x75 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x76 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x77 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x78 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x79 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x80 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x81 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x82 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x83 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x84 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x85 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x86 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x87 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x88 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x89 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x90 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x91 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x92 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x93 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x94 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x95 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x96 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x97 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x98 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x99 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xab */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xac */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xad */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xae */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xba */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xca */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xce */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xda */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xde */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xea */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xeb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xec */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xed */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xee */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xef */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xff */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
}
}
}
, /* IC_XS_OPSIZE */
{ /* struct OpcodeDecision */
{
/* 0x00 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x01 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x02 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x03 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x04 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x05 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x06 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x07 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x08 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x09 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x10 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x11 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x12 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x13 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x14 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x15 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x16 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x17 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x18 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x19 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x20 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x21 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x22 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x23 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x24 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x25 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x26 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x27 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x28 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x29 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x30 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x31 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x32 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x33 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x34 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x35 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x36 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x37 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x38 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x39 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x40 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x41 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x42 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x43 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x44 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x45 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x46 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x47 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x48 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x49 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x50 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x51 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x52 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x53 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x54 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x55 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x56 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x57 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x58 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x59 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x60 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x61 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x62 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x63 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x64 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x65 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x66 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x67 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x68 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x69 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x70 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x71 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x72 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x73 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x74 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x75 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x76 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x77 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x78 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x79 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x80 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x81 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x82 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x83 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x84 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x85 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x86 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x87 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x88 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x89 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x90 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x91 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x92 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x93 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x94 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x95 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x96 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x97 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x98 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x99 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xab */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xac */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xad */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xae */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xba */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xca */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xce */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xda */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xde */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xea */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xeb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xec */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xed */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xee */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xef */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xff */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
}
}
}
, /* IC_64BIT_REXW */
{ /* struct OpcodeDecision */
{
/* 0x00 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x01 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x02 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x03 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x04 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x05 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x06 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x07 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x08 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x09 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x10 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x11 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x12 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x13 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x14 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x15 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x16 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x17 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x18 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x19 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x20 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x21 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x22 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x23 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x24 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x25 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x26 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x27 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x28 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x29 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x30 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x31 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x32 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x33 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x34 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x35 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x36 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x37 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x38 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x39 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x40 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x41 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x42 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x43 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x44 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x45 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x46 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x47 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x48 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x49 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x50 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x51 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x52 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x53 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x54 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x55 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x56 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x57 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x58 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x59 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x60 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x61 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x62 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x63 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x64 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x65 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x66 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x67 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x68 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x69 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x70 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x71 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x72 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x73 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x74 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x75 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x76 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x77 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x78 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x79 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x80 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x81 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x82 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x83 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x84 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x85 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x86 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x87 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x88 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x89 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x90 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x91 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x92 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x93 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x94 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x95 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x96 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x97 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x98 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x99 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xab */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xac */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xad */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xae */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xba */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc0 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
27156 /* Table8054 */
},
/* 0xc1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc8 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
27157 /* Table8055 */
},
/* 0xc9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xca */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xce */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd0 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
27158 /* Table8056 */
},
/* 0xd1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd8 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
27159 /* Table8057 */
},
/* 0xd9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xda */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xde */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe0 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
27160 /* Table8058 */
},
/* 0xe1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe8 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
27161 /* Table8059 */
},
/* 0xe9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xea */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xeb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xec */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xed */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xee */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xef */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xff */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
}
}
}
, /* IC_64BIT_OPSIZE */
{ /* struct OpcodeDecision */
{
/* 0x00 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x01 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x02 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x03 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x04 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x05 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x06 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x07 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x08 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x09 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x10 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x11 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x12 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x13 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x14 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x15 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x16 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x17 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x18 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x19 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x20 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x21 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x22 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x23 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x24 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x25 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x26 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x27 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x28 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x29 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x30 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x31 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x32 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x33 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x34 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x35 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x36 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x37 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x38 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x39 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x40 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x41 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x42 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x43 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x44 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x45 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x46 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x47 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x48 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x49 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x50 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x51 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x52 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x53 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x54 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x55 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x56 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x57 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x58 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x59 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x60 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x61 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x62 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x63 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x64 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x65 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x66 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x67 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x68 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x69 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x70 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x71 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x72 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x73 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x74 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x75 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x76 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x77 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x78 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x79 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x80 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x81 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x82 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x83 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x84 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x85 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x86 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x87 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x88 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x89 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x90 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x91 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x92 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x93 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x94 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x95 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x96 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x97 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x98 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x99 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xab */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xac */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xad */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xae */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xba */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc0 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
27162 /* Table8060 */
},
/* 0xc1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc8 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
27163 /* Table8061 */
},
/* 0xc9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xca */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xce */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd0 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
27164 /* Table8062 */
},
/* 0xd1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd8 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
27165 /* Table8063 */
},
/* 0xd9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xda */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xde */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe0 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
27166 /* Table8064 */
},
/* 0xe1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe8 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
27167 /* Table8065 */
},
/* 0xe9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xea */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xeb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xec */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xed */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xee */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xef */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xff */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
}
}
}
, /* IC_64BIT_ADSIZE */
{ /* struct OpcodeDecision */
{
/* 0x00 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x01 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x02 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x03 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x04 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x05 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x06 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x07 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x08 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x09 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x10 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x11 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x12 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x13 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x14 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x15 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x16 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x17 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x18 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x19 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x20 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x21 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x22 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x23 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x24 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x25 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x26 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x27 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x28 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x29 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x30 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x31 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x32 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x33 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x34 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x35 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x36 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x37 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x38 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x39 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x40 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x41 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x42 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x43 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x44 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x45 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x46 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x47 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x48 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x49 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x50 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x51 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x52 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x53 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x54 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x55 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x56 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x57 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x58 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x59 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x60 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x61 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x62 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x63 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x64 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x65 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x66 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x67 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x68 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x69 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x70 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x71 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x72 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x73 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x74 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x75 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x76 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x77 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x78 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x79 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x80 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x81 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x82 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x83 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x84 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x85 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x86 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x87 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x88 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x89 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x90 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x91 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x92 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x93 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x94 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x95 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x96 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x97 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x98 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x99 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xab */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xac */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xad */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xae */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xba */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc0 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
27168 /* Table8066 */
},
/* 0xc1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc8 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
27169 /* Table8067 */
},
/* 0xc9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xca */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xce */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd0 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
27170 /* Table8068 */
},
/* 0xd1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd8 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
27171 /* Table8069 */
},
/* 0xd9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xda */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xde */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe0 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
27172 /* Table8070 */
},
/* 0xe1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe8 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
27173 /* Table8071 */
},
/* 0xe9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xea */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xeb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xec */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xed */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xee */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xef */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xff */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
}
}
}
, /* IC_64BIT_XD */
{ /* struct OpcodeDecision */
{
/* 0x00 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x01 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x02 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x03 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x04 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x05 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x06 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x07 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x08 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x09 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x10 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x11 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x12 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x13 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x14 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x15 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x16 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x17 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x18 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x19 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x20 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x21 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x22 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x23 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x24 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x25 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x26 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x27 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x28 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x29 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x30 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x31 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x32 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x33 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x34 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x35 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x36 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x37 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x38 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x39 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x40 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x41 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x42 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x43 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x44 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x45 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x46 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x47 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x48 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x49 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x50 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x51 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x52 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x53 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x54 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x55 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x56 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x57 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x58 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x59 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x60 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x61 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x62 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x63 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x64 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x65 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x66 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x67 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x68 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x69 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x70 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x71 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x72 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x73 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x74 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x75 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x76 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x77 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x78 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x79 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x80 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x81 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x82 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x83 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x84 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x85 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x86 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x87 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x88 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x89 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x90 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x91 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x92 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x93 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x94 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x95 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x96 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x97 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x98 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x99 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xab */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xac */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xad */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xae */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xba */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc0 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
27174 /* Table8072 */
},
/* 0xc1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc8 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
27175 /* Table8073 */
},
/* 0xc9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xca */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xce */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd0 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
27176 /* Table8074 */
},
/* 0xd1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd8 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
27177 /* Table8075 */
},
/* 0xd9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xda */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xde */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe0 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
27178 /* Table8076 */
},
/* 0xe1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe8 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
27179 /* Table8077 */
},
/* 0xe9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xea */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xeb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xec */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xed */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xee */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xef */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xff */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
}
}
}
, /* IC_64BIT_XS */
{ /* struct OpcodeDecision */
{
/* 0x00 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x01 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x02 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x03 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x04 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x05 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x06 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x07 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x08 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x09 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x10 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x11 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x12 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x13 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x14 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x15 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x16 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x17 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x18 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x19 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x20 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x21 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x22 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x23 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x24 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x25 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x26 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x27 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x28 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x29 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x30 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x31 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x32 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x33 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x34 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x35 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x36 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x37 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x38 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x39 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x40 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x41 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x42 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x43 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x44 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x45 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x46 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x47 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x48 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x49 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x50 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x51 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x52 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x53 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x54 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x55 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x56 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x57 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x58 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x59 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x60 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x61 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x62 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x63 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x64 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x65 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x66 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x67 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x68 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x69 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x70 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x71 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x72 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x73 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x74 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x75 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x76 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x77 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x78 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x79 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x80 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x81 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x82 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x83 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x84 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x85 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x86 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x87 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x88 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x89 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x90 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x91 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x92 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x93 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x94 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x95 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x96 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x97 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x98 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x99 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xab */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xac */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xad */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xae */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xba */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc0 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
27180 /* Table8078 */
},
/* 0xc1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc8 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
27181 /* Table8079 */
},
/* 0xc9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xca */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xce */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd0 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
27182 /* Table8080 */
},
/* 0xd1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd8 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
27183 /* Table8081 */
},
/* 0xd9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xda */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xde */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe0 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
27184 /* Table8082 */
},
/* 0xe1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe8 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
27185 /* Table8083 */
},
/* 0xe9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xea */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xeb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xec */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xed */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xee */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xef */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xff */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
}
}
}
, /* IC_64BIT_XD_OPSIZE */
{ /* struct OpcodeDecision */
{
/* 0x00 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x01 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x02 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x03 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x04 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x05 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x06 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x07 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x08 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x09 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x10 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x11 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x12 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x13 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x14 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x15 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x16 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x17 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x18 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x19 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x20 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x21 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x22 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x23 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x24 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x25 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x26 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x27 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x28 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x29 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x30 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x31 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x32 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x33 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x34 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x35 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x36 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x37 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x38 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x39 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x40 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x41 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x42 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x43 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x44 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x45 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x46 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x47 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x48 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x49 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x50 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x51 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x52 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x53 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x54 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x55 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x56 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x57 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x58 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x59 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x60 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x61 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x62 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x63 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x64 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x65 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x66 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x67 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x68 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x69 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x70 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x71 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x72 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x73 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x74 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x75 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x76 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x77 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x78 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x79 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x80 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x81 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x82 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x83 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x84 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x85 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x86 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x87 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x88 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x89 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x90 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x91 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x92 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x93 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x94 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x95 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x96 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x97 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x98 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x99 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xab */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xac */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xad */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xae */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xba */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xca */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xce */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xda */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xde */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xea */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xeb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xec */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xed */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xee */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xef */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xff */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
}
}
}
, /* IC_64BIT_XS_OPSIZE */
{ /* struct OpcodeDecision */
{
/* 0x00 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x01 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x02 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x03 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x04 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x05 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x06 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x07 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x08 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x09 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x10 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x11 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x12 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x13 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x14 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x15 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x16 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x17 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x18 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x19 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x20 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x21 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x22 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x23 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x24 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x25 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x26 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x27 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x28 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x29 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x30 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x31 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x32 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x33 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x34 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x35 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x36 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x37 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x38 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x39 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x40 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x41 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x42 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x43 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x44 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x45 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x46 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x47 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x48 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x49 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x50 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x51 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x52 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x53 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x54 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x55 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x56 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x57 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x58 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x59 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x60 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x61 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x62 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x63 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x64 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x65 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x66 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x67 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x68 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x69 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x70 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x71 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x72 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x73 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x74 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x75 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x76 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x77 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x78 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x79 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x80 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x81 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x82 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x83 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x84 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x85 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x86 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x87 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x88 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x89 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x90 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x91 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x92 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x93 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x94 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x95 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x96 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x97 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x98 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x99 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xab */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xac */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xad */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xae */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xba */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xca */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xce */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xda */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xde */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xea */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xeb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xec */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xed */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xee */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xef */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xff */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
}
}
}
, /* IC_64BIT_REXW_XS */
{ /* struct OpcodeDecision */
{
/* 0x00 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x01 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x02 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x03 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x04 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x05 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x06 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x07 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x08 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x09 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x10 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x11 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x12 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x13 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x14 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x15 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x16 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x17 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x18 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x19 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x20 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x21 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x22 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x23 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x24 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x25 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x26 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x27 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x28 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x29 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x30 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x31 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x32 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x33 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x34 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x35 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x36 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x37 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x38 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x39 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x40 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x41 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x42 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x43 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x44 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x45 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x46 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x47 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x48 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x49 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x50 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x51 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x52 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x53 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x54 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x55 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x56 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x57 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x58 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x59 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x60 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x61 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x62 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x63 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x64 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x65 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x66 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x67 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x68 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x69 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x70 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x71 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x72 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x73 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x74 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x75 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x76 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x77 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x78 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x79 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x80 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x81 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x82 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x83 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x84 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x85 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x86 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x87 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x88 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x89 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x90 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x91 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x92 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x93 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x94 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x95 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x96 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x97 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x98 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x99 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xab */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xac */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xad */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xae */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xba */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc0 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
27186 /* Table8084 */
},
/* 0xc1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc8 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
27187 /* Table8085 */
},
/* 0xc9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xca */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xce */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd0 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
27188 /* Table8086 */
},
/* 0xd1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd8 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
27189 /* Table8087 */
},
/* 0xd9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xda */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xde */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe0 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
27190 /* Table8088 */
},
/* 0xe1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe8 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
27191 /* Table8089 */
},
/* 0xe9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xea */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xeb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xec */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xed */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xee */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xef */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xff */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
}
}
}
, /* IC_64BIT_REXW_XD */
{ /* struct OpcodeDecision */
{
/* 0x00 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x01 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x02 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x03 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x04 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x05 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x06 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x07 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x08 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x09 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x10 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x11 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x12 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x13 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x14 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x15 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x16 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x17 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x18 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x19 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x20 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x21 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x22 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x23 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x24 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x25 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x26 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x27 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x28 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x29 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x30 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x31 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x32 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x33 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x34 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x35 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x36 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x37 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x38 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x39 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x40 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x41 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x42 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x43 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x44 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x45 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x46 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x47 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x48 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x49 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x50 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x51 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x52 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x53 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x54 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x55 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x56 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x57 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x58 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x59 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x60 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x61 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x62 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x63 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x64 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x65 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x66 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x67 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x68 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x69 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x70 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x71 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x72 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x73 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x74 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x75 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x76 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x77 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x78 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x79 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x80 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x81 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x82 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x83 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x84 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x85 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x86 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x87 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x88 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x89 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x90 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x91 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x92 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x93 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x94 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x95 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x96 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x97 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x98 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x99 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xab */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xac */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xad */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xae */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xba */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc0 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
27192 /* Table8090 */
},
/* 0xc1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc8 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
27193 /* Table8091 */
},
/* 0xc9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xca */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xce */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd0 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
27194 /* Table8092 */
},
/* 0xd1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd8 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
27195 /* Table8093 */
},
/* 0xd9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xda */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xde */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe0 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
27196 /* Table8094 */
},
/* 0xe1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe8 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
27197 /* Table8095 */
},
/* 0xe9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xea */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xeb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xec */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xed */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xee */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xef */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xff */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
}
}
}
, /* IC_64BIT_REXW_OPSIZE */
{ /* struct OpcodeDecision */
{
/* 0x00 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x01 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x02 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x03 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x04 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x05 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x06 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x07 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x08 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x09 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x10 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x11 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x12 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x13 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x14 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x15 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x16 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x17 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x18 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x19 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x20 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x21 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x22 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x23 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x24 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x25 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x26 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x27 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x28 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x29 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x30 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x31 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x32 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x33 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x34 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x35 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x36 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x37 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x38 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x39 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x40 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x41 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x42 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x43 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x44 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x45 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x46 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x47 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x48 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x49 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x50 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x51 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x52 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x53 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x54 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x55 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x56 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x57 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x58 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x59 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x60 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x61 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x62 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x63 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x64 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x65 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x66 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x67 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x68 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x69 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x70 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x71 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x72 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x73 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x74 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x75 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x76 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x77 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x78 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x79 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x80 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x81 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x82 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x83 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x84 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x85 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x86 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x87 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x88 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x89 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x90 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x91 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x92 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x93 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x94 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x95 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x96 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x97 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x98 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x99 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xab */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xac */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xad */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xae */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xba */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc0 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
27198 /* Table8096 */
},
/* 0xc1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc8 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
27199 /* Table8097 */
},
/* 0xc9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xca */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xce */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd0 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
27200 /* Table8098 */
},
/* 0xd1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd8 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
27201 /* Table8099 */
},
/* 0xd9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xda */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xde */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe0 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
27202 /* Table8100 */
},
/* 0xe1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe8 */
{ /* struct ModRMDecision */
MODRM_ONEENTRY,
27203 /* Table8101 */
},
/* 0xe9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xea */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xeb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xec */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xed */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xee */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xef */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xff */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
}
}
}
, /* IC_VEX */
{ /* struct OpcodeDecision */
{
/* 0x00 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x01 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x02 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x03 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x04 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x05 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x06 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x07 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x08 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x09 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x10 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x11 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x12 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x13 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x14 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x15 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x16 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x17 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x18 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x19 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x20 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x21 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x22 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x23 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x24 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x25 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x26 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x27 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x28 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x29 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x30 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x31 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x32 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x33 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x34 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x35 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x36 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x37 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x38 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x39 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x40 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x41 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x42 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x43 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x44 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x45 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x46 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x47 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x48 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x49 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x50 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x51 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x52 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x53 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x54 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x55 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x56 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x57 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x58 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x59 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x60 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x61 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x62 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x63 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x64 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x65 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x66 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x67 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x68 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x69 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x70 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x71 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x72 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x73 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x74 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x75 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x76 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x77 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x78 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x79 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x80 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x81 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x82 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x83 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x84 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x85 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x86 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x87 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x88 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x89 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x90 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x91 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x92 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x93 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x94 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x95 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x96 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x97 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x98 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x99 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xab */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xac */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xad */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xae */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xba */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xca */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xce */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xda */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xde */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xea */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xeb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xec */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xed */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xee */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xef */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xff */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
}
}
}
, /* IC_VEX_XS */
{ /* struct OpcodeDecision */
{
/* 0x00 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x01 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x02 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x03 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x04 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x05 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x06 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x07 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x08 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x09 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x10 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x11 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x12 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x13 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x14 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x15 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x16 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x17 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x18 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x19 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x20 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x21 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x22 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x23 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x24 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x25 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x26 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x27 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x28 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x29 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x30 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x31 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x32 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x33 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x34 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x35 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x36 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x37 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x38 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x39 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x40 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x41 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x42 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x43 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x44 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x45 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x46 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x47 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x48 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x49 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x50 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x51 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x52 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x53 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x54 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x55 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x56 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x57 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x58 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x59 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x60 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x61 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x62 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x63 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x64 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x65 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x66 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x67 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x68 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x69 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x70 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x71 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x72 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x73 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x74 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x75 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x76 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x77 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x78 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x79 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x80 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x81 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x82 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x83 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x84 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x85 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x86 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x87 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x88 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x89 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x90 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x91 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x92 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x93 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x94 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x95 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x96 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x97 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x98 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x99 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xab */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xac */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xad */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xae */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xba */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xca */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xce */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xda */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xde */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xea */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xeb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xec */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xed */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xee */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xef */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xff */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
}
}
}
, /* IC_VEX_XD */
{ /* struct OpcodeDecision */
{
/* 0x00 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x01 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x02 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x03 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x04 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x05 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x06 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x07 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x08 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x09 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x10 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x11 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x12 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x13 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x14 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x15 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x16 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x17 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x18 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x19 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x20 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x21 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x22 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x23 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x24 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x25 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x26 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x27 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x28 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x29 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x30 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x31 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x32 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x33 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x34 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x35 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x36 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x37 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x38 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x39 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x40 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x41 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x42 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x43 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x44 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x45 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x46 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x47 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x48 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x49 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x50 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x51 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x52 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x53 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x54 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x55 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x56 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x57 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x58 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x59 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x60 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x61 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x62 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x63 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x64 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x65 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x66 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x67 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x68 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x69 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x70 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x71 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x72 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x73 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x74 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x75 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x76 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x77 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x78 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x79 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x80 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x81 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x82 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x83 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x84 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x85 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x86 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x87 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x88 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x89 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x90 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x91 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x92 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x93 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x94 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x95 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x96 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x97 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x98 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x99 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xab */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xac */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xad */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xae */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xba */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xca */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xce */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xda */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xde */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xea */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xeb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xec */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xed */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xee */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xef */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xff */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
}
}
}
, /* IC_VEX_OPSIZE */
{ /* struct OpcodeDecision */
{
/* 0x00 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x01 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x02 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x03 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x04 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x05 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x06 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x07 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x08 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x09 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x10 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x11 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x12 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x13 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x14 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x15 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x16 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x17 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x18 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x19 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x20 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x21 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x22 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x23 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x24 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x25 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x26 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x27 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x28 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x29 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x30 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x31 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x32 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x33 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x34 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x35 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x36 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x37 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x38 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x39 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x40 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x41 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x42 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x43 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x44 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x45 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x46 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x47 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x48 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x49 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x50 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x51 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x52 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x53 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x54 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x55 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x56 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x57 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x58 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x59 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x60 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x61 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x62 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x63 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x64 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x65 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x66 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x67 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x68 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x69 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x70 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x71 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x72 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x73 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x74 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x75 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x76 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x77 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x78 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x79 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x80 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x81 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x82 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x83 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x84 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x85 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x86 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x87 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x88 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x89 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x90 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x91 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x92 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x93 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x94 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x95 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x96 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x97 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x98 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x99 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xab */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xac */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xad */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xae */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xba */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xca */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xce */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xda */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xde */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xea */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xeb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xec */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xed */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xee */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xef */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xff */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
}
}
}
, /* IC_VEX_W */
{ /* struct OpcodeDecision */
{
/* 0x00 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x01 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x02 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x03 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x04 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x05 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x06 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x07 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x08 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x09 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x10 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x11 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x12 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x13 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x14 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x15 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x16 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x17 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x18 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x19 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x20 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x21 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x22 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x23 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x24 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x25 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x26 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x27 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x28 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x29 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x30 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x31 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x32 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x33 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x34 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x35 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x36 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x37 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x38 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x39 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x40 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x41 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x42 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x43 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x44 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x45 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x46 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x47 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x48 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x49 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x50 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x51 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x52 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x53 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x54 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x55 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x56 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x57 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x58 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x59 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x60 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x61 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x62 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x63 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x64 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x65 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x66 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x67 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x68 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x69 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x70 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x71 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x72 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x73 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x74 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x75 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x76 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x77 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x78 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x79 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x80 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x81 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x82 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x83 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x84 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x85 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x86 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x87 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x88 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x89 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x90 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x91 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x92 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x93 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x94 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x95 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x96 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x97 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x98 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x99 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xab */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xac */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xad */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xae */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xba */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xca */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xce */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xda */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xde */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xea */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xeb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xec */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xed */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xee */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xef */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xff */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
}
}
}
, /* IC_VEX_W_XS */
{ /* struct OpcodeDecision */
{
/* 0x00 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x01 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x02 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x03 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x04 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x05 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x06 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x07 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x08 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x09 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x10 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x11 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x12 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x13 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x14 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x15 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x16 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x17 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x18 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x19 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x20 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x21 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x22 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x23 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x24 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x25 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x26 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x27 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x28 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x29 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x30 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x31 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x32 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x33 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x34 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x35 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x36 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x37 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x38 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x39 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x40 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x41 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x42 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x43 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x44 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x45 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x46 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x47 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x48 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x49 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x50 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x51 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x52 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x53 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x54 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x55 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x56 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x57 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x58 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x59 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x60 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x61 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x62 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x63 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x64 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x65 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x66 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x67 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x68 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x69 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x70 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x71 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x72 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x73 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x74 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x75 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x76 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x77 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x78 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x79 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x80 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x81 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x82 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x83 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x84 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x85 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x86 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x87 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x88 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x89 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x90 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x91 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x92 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x93 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x94 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x95 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x96 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x97 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x98 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x99 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xab */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xac */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xad */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xae */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xba */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xca */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xce */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xda */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xde */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xea */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xeb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xec */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xed */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xee */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xef */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xff */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
}
}
}
, /* IC_VEX_W_XD */
{ /* struct OpcodeDecision */
{
/* 0x00 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x01 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x02 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x03 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x04 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x05 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x06 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x07 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x08 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x09 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x10 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x11 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x12 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x13 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x14 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x15 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x16 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x17 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x18 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x19 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x20 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x21 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x22 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x23 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x24 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x25 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x26 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x27 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x28 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x29 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x30 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x31 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x32 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x33 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x34 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x35 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x36 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x37 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x38 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x39 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x40 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x41 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x42 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x43 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x44 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x45 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x46 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x47 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x48 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x49 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x50 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x51 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x52 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x53 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x54 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x55 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x56 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x57 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x58 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x59 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x60 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x61 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x62 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x63 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x64 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x65 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x66 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x67 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x68 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x69 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x70 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x71 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x72 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x73 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x74 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x75 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x76 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x77 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x78 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x79 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x80 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x81 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x82 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x83 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x84 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x85 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x86 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x87 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x88 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x89 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x90 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x91 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x92 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x93 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x94 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x95 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x96 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x97 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x98 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x99 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xab */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xac */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xad */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xae */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xba */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xca */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xce */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xda */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xde */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xea */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xeb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xec */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xed */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xee */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xef */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xff */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
}
}
}
, /* IC_VEX_W_OPSIZE */
{ /* struct OpcodeDecision */
{
/* 0x00 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x01 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x02 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x03 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x04 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x05 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x06 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x07 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x08 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x09 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x10 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x11 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x12 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x13 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x14 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x15 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x16 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x17 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x18 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x19 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x20 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x21 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x22 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x23 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x24 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x25 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x26 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x27 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x28 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x29 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x30 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x31 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x32 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x33 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x34 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x35 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x36 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x37 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x38 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x39 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x40 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x41 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x42 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x43 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x44 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x45 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x46 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x47 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x48 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x49 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x50 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x51 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x52 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x53 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x54 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x55 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x56 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x57 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x58 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x59 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x60 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x61 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x62 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x63 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x64 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x65 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x66 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x67 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x68 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x69 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x70 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x71 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x72 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x73 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x74 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x75 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x76 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x77 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x78 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x79 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x80 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x81 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x82 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x83 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x84 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x85 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x86 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x87 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x88 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x89 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x90 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x91 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x92 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x93 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x94 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x95 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x96 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x97 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x98 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x99 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xab */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xac */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xad */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xae */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xba */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xca */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xce */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xda */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xde */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xea */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xeb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xec */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xed */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xee */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xef */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xff */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
}
}
}
, /* IC_VEX_L */
{ /* struct OpcodeDecision */
{
/* 0x00 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x01 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x02 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x03 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x04 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x05 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x06 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x07 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x08 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x09 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x10 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x11 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x12 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x13 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x14 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x15 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x16 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x17 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x18 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x19 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x20 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x21 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x22 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x23 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x24 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x25 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x26 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x27 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x28 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x29 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x30 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x31 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x32 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x33 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x34 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x35 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x36 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x37 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x38 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x39 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x40 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x41 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x42 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x43 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x44 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x45 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x46 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x47 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x48 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x49 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x50 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x51 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x52 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x53 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x54 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x55 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x56 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x57 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x58 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x59 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x60 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x61 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x62 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x63 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x64 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x65 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x66 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x67 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x68 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x69 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x70 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x71 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x72 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x73 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x74 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x75 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x76 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x77 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x78 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x79 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x80 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x81 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x82 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x83 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x84 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x85 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x86 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x87 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x88 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x89 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x90 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x91 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x92 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x93 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x94 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x95 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x96 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x97 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x98 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x99 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xab */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xac */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xad */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xae */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xba */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xca */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xce */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xda */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xde */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xea */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xeb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xec */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xed */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xee */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xef */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xff */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
}
}
}
, /* IC_VEX_L_XS */
{ /* struct OpcodeDecision */
{
/* 0x00 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x01 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x02 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x03 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x04 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x05 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x06 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x07 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x08 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x09 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x10 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x11 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x12 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x13 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x14 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x15 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x16 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x17 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x18 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x19 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x20 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x21 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x22 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x23 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x24 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x25 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x26 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x27 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x28 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x29 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x30 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x31 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x32 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x33 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x34 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x35 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x36 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x37 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x38 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x39 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x40 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x41 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x42 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x43 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x44 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x45 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x46 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x47 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x48 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x49 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x50 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x51 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x52 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x53 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x54 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x55 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x56 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x57 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x58 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x59 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x60 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x61 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x62 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x63 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x64 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x65 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x66 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x67 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x68 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x69 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x70 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x71 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x72 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x73 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x74 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x75 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x76 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x77 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x78 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x79 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x80 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x81 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x82 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x83 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x84 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x85 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x86 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x87 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x88 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x89 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x90 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x91 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x92 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x93 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x94 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x95 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x96 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x97 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x98 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x99 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xab */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xac */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xad */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xae */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xba */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xca */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xce */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xda */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xde */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xea */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xeb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xec */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xed */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xee */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xef */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xff */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
}
}
}
, /* IC_VEX_L_XD */
{ /* struct OpcodeDecision */
{
/* 0x00 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x01 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x02 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x03 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x04 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x05 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x06 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x07 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x08 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x09 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x10 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x11 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x12 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x13 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x14 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x15 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x16 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x17 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x18 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x19 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x20 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x21 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x22 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x23 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x24 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x25 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x26 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x27 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x28 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x29 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x30 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x31 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x32 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x33 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x34 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x35 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x36 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x37 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x38 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x39 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x40 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x41 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x42 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x43 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x44 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x45 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x46 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x47 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x48 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x49 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x50 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x51 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x52 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x53 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x54 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x55 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x56 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x57 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x58 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x59 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x60 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x61 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x62 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x63 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x64 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x65 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x66 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x67 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x68 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x69 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x70 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x71 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x72 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x73 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x74 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x75 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x76 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x77 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x78 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x79 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x80 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x81 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x82 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x83 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x84 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x85 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x86 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x87 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x88 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x89 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x90 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x91 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x92 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x93 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x94 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x95 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x96 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x97 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x98 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x99 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xab */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xac */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xad */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xae */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xba */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xca */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xce */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xda */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xde */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xea */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xeb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xec */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xed */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xee */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xef */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xff */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
}
}
}
, /* IC_VEX_L_OPSIZE */
{ /* struct OpcodeDecision */
{
/* 0x00 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x01 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x02 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x03 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x04 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x05 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x06 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x07 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x08 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x09 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x10 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x11 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x12 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x13 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x14 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x15 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x16 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x17 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x18 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x19 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x20 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x21 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x22 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x23 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x24 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x25 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x26 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x27 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x28 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x29 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x30 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x31 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x32 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x33 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x34 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x35 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x36 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x37 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x38 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x39 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x40 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x41 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x42 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x43 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x44 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x45 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x46 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x47 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x48 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x49 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x50 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x51 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x52 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x53 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x54 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x55 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x56 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x57 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x58 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x59 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x60 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x61 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x62 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x63 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x64 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x65 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x66 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x67 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x68 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x69 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x70 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x71 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x72 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x73 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x74 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x75 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x76 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x77 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x78 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x79 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x80 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x81 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x82 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x83 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x84 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x85 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x86 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x87 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x88 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x89 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x90 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x91 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x92 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x93 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x94 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x95 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x96 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x97 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x98 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x99 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xab */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xac */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xad */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xae */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xba */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xca */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xce */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xda */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xde */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xea */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xeb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xec */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xed */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xee */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xef */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xff */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
}
}
}
, /* IC_VEX_L_W_OPSIZE */
{ /* struct OpcodeDecision */
{
/* 0x00 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x01 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x02 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x03 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x04 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x05 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x06 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x07 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x08 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x09 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x0f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x10 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x11 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x12 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x13 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x14 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x15 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x16 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x17 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x18 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x19 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x1f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x20 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x21 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x22 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x23 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x24 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x25 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x26 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x27 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x28 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x29 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x2f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x30 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x31 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x32 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x33 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x34 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x35 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x36 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x37 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x38 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x39 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x3f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x40 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x41 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x42 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x43 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x44 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x45 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x46 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x47 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x48 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x49 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x4f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x50 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x51 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x52 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x53 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x54 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x55 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x56 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x57 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x58 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x59 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x5f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x60 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x61 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x62 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x63 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x64 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x65 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x66 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x67 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x68 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x69 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x6f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x70 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x71 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x72 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x73 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x74 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x75 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x76 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x77 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x78 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x79 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x7f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x80 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x81 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x82 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x83 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x84 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x85 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x86 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x87 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x88 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x89 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x8f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x90 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x91 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x92 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x93 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x94 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x95 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x96 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x97 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x98 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x99 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9a */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9b */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9c */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9d */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9e */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0x9f */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xa9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xab */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xac */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xad */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xae */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xaf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xb9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xba */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xbf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xc9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xca */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xce */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xcf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xd9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xda */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xde */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xdf */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xe9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xea */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xeb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xec */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xed */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xee */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xef */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf0 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf1 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf2 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf3 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf4 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf5 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf6 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf7 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf8 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xf9 */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfa */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfb */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfc */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfd */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xfe */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
},
/* 0xff */
{ /* ModRMDecision */
MODRM_ONEENTRY,
0 /* EmptyTable */
}
}
}
}
};
| [
"james.ryan.stortz@gmail.com"
] | james.ryan.stortz@gmail.com |
e07e1c07b76a9aa50a99970ee55f949418e5b6ab | 16451b68e5a9da816e05a52465d8b0d118d7d40c | /data/tplcache/c1e58721909de48e2e720c635c7aa174.inc | d03eee28a3981c76d0b15b116deca865b90c84bb | [] | no_license | winter2012/tian_ya_tu_ku | 6e22517187ae47242d3fde16995f085a68c04280 | 82d2f8b73f6ed15686f59efa9a5ebb8117c18ae5 | refs/heads/master | 2020-06-20T17:42:14.565617 | 2019-07-16T12:02:09 | 2019-07-16T12:02:09 | 197,184,466 | 0 | 1 | null | null | null | null | GB18030 | C++ | false | false | 1,558 | inc | {dede:field name='keywords'}{/dede:field}
{dede:field name='description'}{/dede:field}
{dede:field name='title'}美腿模特第405期Jill{/dede:field}
{dede:field name='writer'}{/dede:field}
{dede:field name='source'}{/dede:field}
{dede:field name='pubdate'}{/dede:field}
{dede:field name='body'}{/dede:field}
{dede:field name='imgurls'}
{dede:pagestyle maxwidth='800' ddmaxwidth='240' row='3' col='3' value='2'/}
{dede:comments}图集类型会采集时生成此配置是正常的,不过如果后面没有跟着img标记则表示规则无效{/dede:comments}
{dede:img ddimg='' text='图 1'}/uploads/allimg/c120410/133404Z2443c0-14R6.jpg{/dede:img}
{dede:img ddimg='' text='图 2'}/uploads/allimg/c120410/133404Z2N4M0-22A7.jpg{/dede:img}
{dede:img ddimg='' text='图 3'}/uploads/allimg/c120410/133404Z30931Z-3b02.jpg{/dede:img}
{dede:img ddimg='' text='图 4'}/uploads/allimg/c120410/133404Z3345Z-4QK.jpg{/dede:img}
{dede:img ddimg='' text='图 5'}/uploads/allimg/c120410/133404Z3645S0-55L2.jpg{/dede:img}
{dede:img ddimg='' text='图 6'}/uploads/allimg/c120410/133404Z393WF-CG1.jpg{/dede:img}
{dede:img ddimg='' text='图 7'}/uploads/allimg/c120410/133404Z4241610-MX9.jpg{/dede:img}
{dede:img ddimg='' text='图 8'}/uploads/allimg/c120410/133404Z45323Z-WF4.jpg{/dede:img}
{dede:img ddimg='' text='图 9'}/uploads/allimg/c120410/133404Z4S0O0-95J6.jpg{/dede:img}
{dede:img ddimg='' text='图 10'}/uploads/allimg/c120410/133404Z5159430-10TS.jpg{/dede:img}{/dede:field}
{dede:field name='litpic'}/uploads/allimg/c120410/133404Z2443c0-14R6_lit.jpg{/dede:field}
| [
"winter2012102@gmail.com"
] | winter2012102@gmail.com |
2a3774042f8095eb12501ee2cb81ac3bac5526c8 | cf0849b4bc13a46cc3779ea3f0f2f8c406e675f8 | /ALGS_CPP/w2_part2/p2.cpp | 6a29b366af48ea22ba34037deefa792b0f58f7c4 | [] | no_license | physhouse/Exercises | 69074ded60725bdc6b7c54a9e10fea20a1659984 | 7a95946c3746ccdd9cb14703972581f8fa83dd6f | refs/heads/master | 2020-12-24T08:42:28.838129 | 2016-11-10T03:22:10 | 2016-11-10T03:22:10 | 73,326,058 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,539 | cpp | #include "cluster.h"
#include "digraph.h"
#include "uf.h"
#include <queue>
#include <vector>
#include <cstdio>
#include <cstdlib>
#include <iostream>
#include <unordered_map>
cluster::cluster(DiGraph& P, int numVertices) : G(P), connect(numVertices)
{
printf("start initilization\n");
for (Edge e : P.edges())
{
pq.push(e);
}
}
int cluster::maxDistance(int size)
{
printf("entering function\n");
while (!pq.empty())
{
Edge e = pq.top();
pq.pop();
if (!connect.connected(e.to, e.from))
{
//printf("edges: %d <--> %d w %d cluster %d\n", e.to, e.from, e.weight, connect.getCount());
connect.union_path(e.to, e.from);
}
}
return connect.getCount();
}
int main(int argc, char** argv)
{
printf("%s\n", argv[1]);
FILE* fp = fopen(argv[1], "r");
int nv;
int nbits;
fscanf(fp, "%d %d", &nv, &nbits);
printf("nv = %d nbits = %d\n", nv, nbits);
std::vector<std::vector<bool> > data;
std::unordered_map<std::vector<bool>, int> hashTable;
int count = 0;
for (int i=0; i<nv; i++)
{
std::vector<bool> vertex(nbits);
for (int id=0; id<nbits; id++)
{
int bit;
fscanf(fp, "%d", &bit);
vertex[id] = (bool)bit;
}
if (hashTable.count(vertex) == 0)
{
data.push_back(vertex);
std::pair<std::vector<bool>, int> thisVertex(vertex, count);
count++;
hashTable.insert(thisVertex);
}
}
printf("reading finished\n");
printf("#of vertices = %d \n", count);
nv = count;
printf("hashTable: size %lu bucked count %lu\n", hashTable.size(), hashTable.bucket_count());
printf("vector size = %lu\n", data.size());
fclose(fp);
//UF connect(count);
DiGraph P(nv);
printf("preparing...\n");
auto end = hashTable.end();
//Draw links between 2-differences
for (int i=0; i<nv; i++)
{
int counti = 0;
std::vector<bool> s = data[i];
for (int j = 0; j<nbits; j++)
{
s[j] = !s[j];
for (int k = j; k<nbits; k++)
{
if (k != j) { s[k] = !s[k];}
auto iter = hashTable.find(s);
if (k != j) { s[k] = !s[k];}
if (iter != end)
{
counti++;
int index = iter->second;
if (index > i)
{
Edge e;
e.from = i;
e.to = index;
if (k == j)
e.weight = 1;
else
e.weight = 2;
P.addEdge(e);
//connect.union_path(i, index);
}
}
else
{
continue;
}
}
s[j] = !s[j];
}
//printf("%d : count = %d\n", i, counti);
}
cluster kruskal(P, nv);
int answer = kruskal.maxDistance(3);
//int answer = connect.getCount();
printf("answer = %d\n", answer);
return 0;
}
| [
"physhouse@Yinings-MacBook-Pro.local"
] | physhouse@Yinings-MacBook-Pro.local |
1f15c65ea08c8d5aa48f9be2f1beea917deec539 | 040edc2bdbefe7c0d640a18d23f25a8761d62f40 | /25mt/src/nblike2.cpp | da217e2eca86111b8c9ad3bae9cef46bb75b8bb1 | [
"BSD-2-Clause"
] | permissive | johnrsibert/tagest | 9d3be8352f6bb5603fbd0eb6140589bb852ff40b | 0194b1fbafe062396cc32a0f5a4bbe824341e725 | refs/heads/master | 2021-01-24T00:18:24.231639 | 2018-01-16T19:10:25 | 2018-01-16T19:10:25 | 30,438,830 | 3 | 3 | null | 2016-12-08T17:59:28 | 2015-02-07T00:05:30 | C++ | UTF-8 | C++ | false | false | 4,554 | cpp | //$Id: nblike2.cpp 2860 2011-10-21 23:08:57Z jsibert $
#include "par_t.h"
#include "trace.h"
double min_nb_par = 0.0;
double max_nb_par = 100.0;
template <typename MATRIX1, typename MATRIX2>
void resid_comp(const MATRIX1& obs, const MATRIX2& pred, const MATRIX1& like, const int report);
template <typename DOUBLE>
void set(const DOUBLE v, double& d);
template <typename DOUBLE>
DOUBLE mm_gammln(const DOUBLE xx);
void getreturns(dmatrix& returns, const int fleet, const year_month& date, const int cohort, const recaptype_vector& recaps, const int nrec, const int m, const int n);
extern ofstream clogf;
extern int _global_report_flag;
double min_tpred = 1e-7;
template <typename D3_ARRAY, typename MATRIX, typename VECTOR, typename DOUBLE>
void negative_binomial_like(DOUBLE& like, MATRIX& pred_tags, year_month& date, int cohort, d3_array& recaps, int nrec, par_t<D3_ARRAY,MATRIX,VECTOR,DOUBLE>& param, MATRIX& z, ivector& effort_occured, D3_ARRAY& fmort, VECTOR& aa, const int naa, const int nb_scale)
{
double pred_tac = 0.0;
double obs_tac = 0.0;
DOUBLE tpred = 0.0;
double tobs = 0.0;
DOUBLE temp = 0.0;
int _m = param.get_m();
int _n = param.get_n();
ivector& jlb = param.get_jlb();
ivector& jub = param.get_jub();
dmatrix obs(1, _m, jlb, jub); obs.initialize();
MATRIX pred(1, _m, jlb, jub); pred.initialize();
static int nlikebin = 22;
static dvector like_bins;
static dvector like_count;
static dmatrix like_mat;
if ( (_global_report_flag) && (!like_bins) )
{
like_mat.allocate(1, _m, jlb, jub);
like_mat.initialize();
like_bins.allocate(1,nlikebin);
like_count.allocate(1,nlikebin);
like_count.initialize();
like_bins(1) = 0.015625;
for (int b = 2; b <= nlikebin; b++)
like_bins(b) = like_bins(b-1)*2.0;
}
int nf = param.get_nfleet();
for (int f = 1; f <= nf; f++)
{
if (effort_occured(f))
{
//getreturns(obs, f, date, cohort, recaps, nrec, _m, _n);
dmatrix obs = recaps(f);
param.pred_recapture_comp(pred, pred_tags, z, fmort, f, date);
if (_global_report_flag)
{
//clogf << "pred: " << cohort << " " << date << " " << f << " " << sum(pred) << endl;
//clogf << "tags: " << cohort << " " << date << " " << f << " " << sum(pred_tags) << endl;
set(sum(pred), pred_tac);
obs_tac += sum(obs);
}
DOUBLE w = 0;
if (naa == nf)
w = aa(f);
else if ( (naa == 2) &&
( (param.fleet_names[f] == "phdo") ||
(param.fleet_names[f] == "iddo") ) )
w = aa(2);
else
w = aa(1);
//int count = 0;
temp = 0.0;
for (int i=1; i <=_m; i++)
{
int lb = jlb(i);
int ub = jub(i);
for (int j=lb; j <= ub; j++)
{
tobs = obs(i,j);
tpred = pred(i,j);
if (tpred > min_tpred) //0.0)
{
//count ++;
DOUBLE a = 0;
if (nb_scale)
a = w*tpred;
else
a = w;
DOUBLE latp = log(tpred + a);
//temp += mm_gammln(tobs+a) - mm_gammln(tobs+1.0);
//temp += -a*latp + tobs*log(tpred) - tobs*latp;
DOUBLE tobsa = tobs + a;
temp += mm_gammln(tobsa) - mm_gammln(a) - mm_gammln(tobs+1.0);
temp += a*(log(a) - latp) + tobs*(log(tpred)-latp);
}
} // j loop
} // i loop
//temp += count*(a*log(a) - mm_gammln(a));
like +=temp;
if (_global_report_flag)
resid_comp(obs, pred, like_mat,0);
} // if (effort_occured(f))
} // fleet loop
if (_global_report_flag)
{
clogf << "\nlfreq: " << date << endl;
for (int b = 1; b <= nlikebin; b++)
{
clogf << "lfreq: " << like_bins(b) << " " << like_count(b) << endl;
}
//clogf << "tac: " << cohort << " " << date << " " << obs_tac << " " << pred_tac << endl;
}
} // end of negative_binomial_like
template void negative_binomial_like(double& like, dmatrix& pred_tags, year_month& date, int cohort, d3_array& recaps, int nrec, par_t<d3_array,dmatrix,dvector,double>& param, dmatrix& z, ivector& effort_occured, d3_array& fmort, dvector& aa, const int naa, const int nb_scale);
template void negative_binomial_like(dvariable& like, dvar_matrix& pred_tags, year_month& date, int cohort, d3_array& recaps, int nrec, par_t<dvar3_array,dvar_matrix,dvar_vector,dvariable>& param, dvar_matrix& z, ivector& effort_occured, dvar3_array& fmort, dvar_vector& aa, const int naa, const int nb_scale);
| [
"sibert@hawaii.edu"
] | sibert@hawaii.edu |
5fe9ec47817d004894f306ac3fea8416c3d90128 | 0d37a489416e75ff013ebec2fbc2fdad80a521ac | /opi_emac_ltc_smpte/include/oscserver.h | 636f935086f2a2f27c69a9395072257701a41cd1 | [] | no_license | JohnSHoover/rpidmx512 | fc26f7ee9ead5c1a9cb4dbbac5b4963744d3353d | ed1416b693d28030ba9ae45a25adf0f280bfc70b | refs/heads/master | 2022-04-10T17:31:36.334680 | 2020-04-10T16:48:45 | 2020-04-10T16:48:45 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,910 | h | /**
* @file oscserver.h
*
*/
/* Copyright (C) 2019-2020 by Arjan van Vught mailto:info@orangepi-dmx.nl
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*/
#ifndef OSCSERVER_H_
#define OSCSERVER_H_
#include <stdint.h>
#include "ltcdisplayws28xx.h"
#define OSCSERVER_PATH_LENGTH_MAX 128
class OSCServer {
public:
OSCServer(void);
~OSCServer(void);
void Start(void);
void Stop(void);
void Run(void);
void Print(void);
void SetPortIncoming(uint16_t nPortIncoming) {
m_nPortIncoming = nPortIncoming;
}
uint16_t GetPortIncoming(void) {
return m_nPortIncoming;
}
private:
void SetWS28xxRGB(uint32_t nSize, TLtcDisplayWS28xxColourIndex tIndex);
private:
uint16_t m_nPortIncoming;
int32_t m_nHandle;
uint32_t m_nRemoteIp;
uint16_t m_nRemotePort;
char m_aPath[OSCSERVER_PATH_LENGTH_MAX];
uint32_t m_nPathLength;
uint8_t *m_pBuffer;
};
#endif /* OSCSERVER_H_ */
| [
"Arjan.van.Vught@gmail.com"
] | Arjan.van.Vught@gmail.com |
7c9a815730c3d1918fa5fc79bff54a3c674cfc4a | d3f38c70958ffcc50e387f786e0b3c9045ae702e | /src/wx/MatView/wxMatView.cpp | 8ad89d78a19b7729fe09a1d575d4ba6f6de4505f | [] | no_license | whpark/gtl | e510534eda24cd70a792890f0e77b9fb84ae1dc5 | 7c8c9be4b7a39fce08b4a26a2d5d6f7005025c1a | refs/heads/master | 2023-08-31T10:47:39.610608 | 2023-08-30T07:32:09 | 2023-08-30T07:32:09 | 339,640,266 | 0 | 2 | null | 2022-12-15T01:04:56 | 2021-02-17T07:13:24 | C++ | UTF-8 | C++ | false | false | 14,361 | cpp | ///////////////////////////////////////////////////////////////////////////
// C++ code generated with wxFormBuilder (version 3.10.1-284-gf026a8e1)
// http://www.wxformbuilder.org/
//
// PLEASE DO *NOT* EDIT THIS FILE!
///////////////////////////////////////////////////////////////////////////
#include "pch.h"
#include "wxGLCanvasAdapter.h"
#include "wxMatView.h"
///////////////////////////////////////////////////////////////////////////
using namespace gtl::wx::ui;
IMatView::IMatView( wxWindow* parent, wxWindowID id, const wxPoint& pos, const wxSize& size, long style, const wxString& name ) : wxPanel( parent, id, pos, size, style, name )
{
m_sizerTop = new wxBoxSizer( wxVERTICAL );
m_toolBar = new wxToolBar( this, wxID_ANY, wxDefaultPosition, wxDefaultSize, wxTB_HORIZONTAL );
m_btnHide = new wxButton( m_toolBar, wxID_ANY, wxEmptyString, wxDefaultPosition, wxSize( 20,-1 ), 0 );
m_btnHide->SetBitmap( wxArtProvider::GetBitmap( wxART_CLOSE, wxART_TOOLBAR ) );
m_toolBar->AddControl( m_btnHide );
m_toolBar->AddSeparator();
m_cmbZoomMode = new wxComboBox( m_toolBar, wxID_ANY, _("fit2window"), wxDefaultPosition, wxDefaultSize, 0, NULL, wxCB_READONLY );
m_cmbZoomMode->Append( _("1:1") );
m_cmbZoomMode->Append( _("fit2window") );
m_cmbZoomMode->Append( _("fit2width") );
m_cmbZoomMode->Append( _("fit2height") );
m_cmbZoomMode->Append( _("lock (mouse wheel)") );
m_cmbZoomMode->Append( _("free") );
m_cmbZoomMode->SetSelection( 1 );
m_toolBar->AddControl( m_cmbZoomMode );
m_spinCtrlZoom = new wxSpinCtrlDouble( m_toolBar, wxID_ANY, wxT("1"), wxDefaultPosition, wxDefaultSize, wxALIGN_RIGHT|wxSP_ARROW_KEYS, 0.001, 1000, 1, 0.25 );
m_spinCtrlZoom->SetDigits( 4 );
m_spinCtrlZoom->SetToolTip( _("zoom") );
m_toolBar->AddControl( m_spinCtrlZoom );
m_toolZoomIn = m_toolBar->AddTool( wxID_ANY, wxEmptyString, wxArtProvider::GetBitmap( wxART_PLUS, wxART_TOOLBAR ), wxNullBitmap, wxITEM_NORMAL, wxEmptyString, wxEmptyString, NULL );
m_toolZoomOut = m_toolBar->AddTool( wxID_ANY, _("tool"), wxArtProvider::GetBitmap( wxART_MINUS, wxART_TOOLBAR ), wxNullBitmap, wxITEM_NORMAL, wxEmptyString, wxEmptyString, NULL );
m_toolZoomReset = m_toolBar->AddTool( wxID_ANY, _("tool"), wxArtProvider::GetBitmap( wxART_FULL_SCREEN, wxART_TOOLBAR ), wxNullBitmap, wxITEM_NORMAL, wxEmptyString, wxEmptyString, NULL );
m_toolSettings = m_toolBar->AddTool( wxID_ANY, _("tool"), wxArtProvider::GetBitmap( wxART_LIST_VIEW, wxART_TOOLBAR ), wxNullBitmap, wxITEM_NORMAL, wxEmptyString, wxEmptyString, NULL );
m_textStatus = new wxTextCtrl( m_toolBar, wxID_ANY, wxEmptyString, wxDefaultPosition, wxSize( 200,-1 ), wxTE_READONLY );
m_toolBar->AddControl( m_textStatus );
m_toolBar->Realize();
m_sizerTop->Add( m_toolBar, 0, wxEXPAND|wxRIGHT|wxLEFT, 0 );
m_view = new wxGLCanvasAdapter( this, wxID_ANY, wxDefaultPosition, wxDefaultSize, wxALWAYS_SHOW_SB|wxHSCROLL|wxVSCROLL );
m_sizerTop->Add( m_view, 1, wxEXPAND, 5 );
this->SetSizer( m_sizerTop );
this->Layout();
m_timerScroll.SetOwner( this, wxID_SCROLL );
// Connect Events
this->Connect( wxEVT_CHAR_HOOK, wxKeyEventHandler( IMatView::OnCharHook ) );
m_btnHide->Connect( wxEVT_COMMAND_BUTTON_CLICKED, wxCommandEventHandler( IMatView::OnButtonClick_Hide ), NULL, this );
m_cmbZoomMode->Connect( wxEVT_COMMAND_COMBOBOX_SELECTED, wxCommandEventHandler( IMatView::OnCombobox_ZoomMode ), NULL, this );
m_spinCtrlZoom->Connect( wxEVT_COMMAND_SPINCTRLDOUBLE_UPDATED, wxSpinDoubleEventHandler( IMatView::OnSpinCtrlDouble_ZoomValue ), NULL, this );
m_spinCtrlZoom->Connect( wxEVT_COMMAND_TEXT_ENTER, wxCommandEventHandler( IMatView::OnTextEnter_ZoomValue ), NULL, this );
this->Connect( m_toolZoomIn->GetId(), wxEVT_COMMAND_TOOL_CLICKED, wxCommandEventHandler( IMatView::OnZoomIn ) );
this->Connect( m_toolZoomOut->GetId(), wxEVT_COMMAND_TOOL_CLICKED, wxCommandEventHandler( IMatView::OnZoomOut ) );
this->Connect( m_toolZoomReset->GetId(), wxEVT_COMMAND_TOOL_CLICKED, wxCommandEventHandler( IMatView::OnZoomFit ) );
this->Connect( m_toolSettings->GetId(), wxEVT_COMMAND_TOOL_CLICKED, wxCommandEventHandler( IMatView::OnSettings ) );
m_view->Connect( wxEVT_CHAR_HOOK, wxKeyEventHandler( IMatView::OnCharHook_View ), NULL, this );
m_view->Connect( wxEVT_LEFT_DOWN, wxMouseEventHandler( IMatView::OnLeftDown_View ), NULL, this );
m_view->Connect( wxEVT_LEFT_UP, wxMouseEventHandler( IMatView::OnLeftUp_View ), NULL, this );
m_view->Connect( wxEVT_MIDDLE_DOWN, wxMouseEventHandler( IMatView::OnMiddleDown_View ), NULL, this );
m_view->Connect( wxEVT_MIDDLE_UP, wxMouseEventHandler( IMatView::OnMiddleUp_View ), NULL, this );
m_view->Connect( wxEVT_MOTION, wxMouseEventHandler( IMatView::OnMotion_View ), NULL, this );
m_view->Connect( wxEVT_MOUSEWHEEL, wxMouseEventHandler( IMatView::OnMouseWheel_View ), NULL, this );
m_view->Connect( wxEVT_PAINT, wxPaintEventHandler( IMatView::OnPaint_View ), NULL, this );
m_view->Connect( wxEVT_RIGHT_DOWN, wxMouseEventHandler( IMatView::OnRightDown_View ), NULL, this );
m_view->Connect( wxEVT_RIGHT_UP, wxMouseEventHandler( IMatView::OnRightUp_View ), NULL, this );
m_view->Connect( wxEVT_SIZE, wxSizeEventHandler( IMatView::OnSize_View ), NULL, this );
this->Connect( wxID_SCROLL, wxEVT_TIMER, wxTimerEventHandler( IMatView::OnTimerScroll ) );
}
IMatView::~IMatView()
{
// Disconnect Events
this->Disconnect( wxEVT_CHAR_HOOK, wxKeyEventHandler( IMatView::OnCharHook ) );
m_btnHide->Disconnect( wxEVT_COMMAND_BUTTON_CLICKED, wxCommandEventHandler( IMatView::OnButtonClick_Hide ), NULL, this );
m_cmbZoomMode->Disconnect( wxEVT_COMMAND_COMBOBOX_SELECTED, wxCommandEventHandler( IMatView::OnCombobox_ZoomMode ), NULL, this );
m_spinCtrlZoom->Disconnect( wxEVT_COMMAND_SPINCTRLDOUBLE_UPDATED, wxSpinDoubleEventHandler( IMatView::OnSpinCtrlDouble_ZoomValue ), NULL, this );
m_spinCtrlZoom->Disconnect( wxEVT_COMMAND_TEXT_ENTER, wxCommandEventHandler( IMatView::OnTextEnter_ZoomValue ), NULL, this );
this->Disconnect( m_toolZoomIn->GetId(), wxEVT_COMMAND_TOOL_CLICKED, wxCommandEventHandler( IMatView::OnZoomIn ) );
this->Disconnect( m_toolZoomOut->GetId(), wxEVT_COMMAND_TOOL_CLICKED, wxCommandEventHandler( IMatView::OnZoomOut ) );
this->Disconnect( m_toolZoomReset->GetId(), wxEVT_COMMAND_TOOL_CLICKED, wxCommandEventHandler( IMatView::OnZoomFit ) );
this->Disconnect( m_toolSettings->GetId(), wxEVT_COMMAND_TOOL_CLICKED, wxCommandEventHandler( IMatView::OnSettings ) );
m_view->Disconnect( wxEVT_CHAR_HOOK, wxKeyEventHandler( IMatView::OnCharHook_View ), NULL, this );
m_view->Disconnect( wxEVT_LEFT_DOWN, wxMouseEventHandler( IMatView::OnLeftDown_View ), NULL, this );
m_view->Disconnect( wxEVT_LEFT_UP, wxMouseEventHandler( IMatView::OnLeftUp_View ), NULL, this );
m_view->Disconnect( wxEVT_MIDDLE_DOWN, wxMouseEventHandler( IMatView::OnMiddleDown_View ), NULL, this );
m_view->Disconnect( wxEVT_MIDDLE_UP, wxMouseEventHandler( IMatView::OnMiddleUp_View ), NULL, this );
m_view->Disconnect( wxEVT_MOTION, wxMouseEventHandler( IMatView::OnMotion_View ), NULL, this );
m_view->Disconnect( wxEVT_MOUSEWHEEL, wxMouseEventHandler( IMatView::OnMouseWheel_View ), NULL, this );
m_view->Disconnect( wxEVT_PAINT, wxPaintEventHandler( IMatView::OnPaint_View ), NULL, this );
m_view->Disconnect( wxEVT_RIGHT_DOWN, wxMouseEventHandler( IMatView::OnRightDown_View ), NULL, this );
m_view->Disconnect( wxEVT_RIGHT_UP, wxMouseEventHandler( IMatView::OnRightUp_View ), NULL, this );
m_view->Disconnect( wxEVT_SIZE, wxSizeEventHandler( IMatView::OnSize_View ), NULL, this );
this->Disconnect( wxID_SCROLL, wxEVT_TIMER, wxTimerEventHandler( IMatView::OnTimerScroll ) );
}
IDlgMatViewOption::IDlgMatViewOption( wxWindow* parent, wxWindowID id, const wxString& title, const wxPoint& pos, const wxSize& size, long style ) : wxDialog( parent, id, title, pos, size, style )
{
this->SetSizeHints( wxDefaultSize, wxDefaultSize );
wxBoxSizer* bSizerTOP;
bSizerTOP = new wxBoxSizer( wxVERTICAL );
m_chkGLonly = new wxCheckBox( this, wxID_ANY, _("openGL only"), wxDefaultPosition, wxDefaultSize, 0 );
bSizerTOP->Add( m_chkGLonly, 0, wxALL, 5 );
m_chkSkia = new wxCheckBox( this, wxID_ANY, _("Skia"), wxDefaultPosition, wxDefaultSize, 0 );
bSizerTOP->Add( m_chkSkia, 0, wxALL, 5 );
m_chkZoomLock = new wxCheckBox( this, wxID_ANY, _("Zoom Lock"), wxDefaultPosition, wxDefaultSize, 0 );
bSizerTOP->Add( m_chkZoomLock, 0, wxALL, 5 );
m_chkPanningLock = new wxCheckBox( this, wxID_ANY, _("Panning Lock"), wxDefaultPosition, wxDefaultSize, 0 );
bSizerTOP->Add( m_chkPanningLock, 0, wxALL, 5 );
m_chkExtendedPanning = new wxCheckBox( this, wxID_ANY, _("Extended Panning"), wxDefaultPosition, wxDefaultSize, 0 );
bSizerTOP->Add( m_chkExtendedPanning, 0, wxALL, 5 );
m_chkKeyboardNavigation = new wxCheckBox( this, wxID_ANY, _("Keyboard navigation"), wxDefaultPosition, wxDefaultSize, 0 );
bSizerTOP->Add( m_chkKeyboardNavigation, 0, wxALL, 5 );
m_chkDrawPixelValue = new wxCheckBox( this, wxID_ANY, _("Draw Pixel Value"), wxDefaultPosition, wxDefaultSize, 0 );
bSizerTOP->Add( m_chkDrawPixelValue, 0, wxALL, 5 );
m_chkPyrImageDown = new wxCheckBox( this, wxID_ANY, _("Build Image Pyramid (for down sampling)"), wxDefaultPosition, wxDefaultSize, 0 );
bSizerTOP->Add( m_chkPyrImageDown, 0, wxALL, 5 );
wxFlexGridSizer* fgSizer1;
fgSizer1 = new wxFlexGridSizer( 0, 2, 0, 0 );
fgSizer1->SetFlexibleDirection( wxBOTH );
fgSizer1->SetNonFlexibleGrowMode( wxFLEX_GROWMODE_SPECIFIED );
m_staticText1 = new wxStaticText( this, wxID_ANY, _("Mouse Speed :"), wxDefaultPosition, wxDefaultSize, 0 );
m_staticText1->Wrap( -1 );
fgSizer1->Add( m_staticText1, 0, wxALL|wxALIGN_CENTER_VERTICAL, 5 );
m_spinMouseSpeed = new wxSpinCtrlDouble( this, wxID_ANY, wxEmptyString, wxDefaultPosition, wxDefaultSize, wxALIGN_RIGHT, 0.01, 10, 1.000000, 0.25 );
m_spinMouseSpeed->SetDigits( 3 );
m_spinMouseSpeed->SetMinSize( wxSize( 80,-1 ) );
fgSizer1->Add( m_spinMouseSpeed, 0, wxALL|wxALIGN_CENTER_VERTICAL, 5 );
m_staticText2 = new wxStaticText( this, wxID_ANY, _("Scroll Margin :"), wxDefaultPosition, wxDefaultSize, 0 );
m_staticText2->Wrap( -1 );
fgSizer1->Add( m_staticText2, 0, wxALL|wxALIGN_CENTER_VERTICAL, 5 );
m_spinScrollMargin = new wxSpinCtrl( this, wxID_ANY, wxT("5"), wxDefaultPosition, wxDefaultSize, wxALIGN_RIGHT|wxSP_ARROW_KEYS, 0, 1000, 0 );
m_spinScrollMargin->SetMinSize( wxSize( 80,-1 ) );
fgSizer1->Add( m_spinScrollMargin, 0, wxALL|wxALIGN_CENTER_VERTICAL, 5 );
m_staticText3 = new wxStaticText( this, wxID_ANY, _("Scroll Time (in ms) :"), wxDefaultPosition, wxDefaultSize, 0 );
m_staticText3->Wrap( -1 );
fgSizer1->Add( m_staticText3, 0, wxALL|wxALIGN_CENTER_VERTICAL, 5 );
m_spinScrollTime = new wxSpinCtrl( this, wxID_ANY, wxT("250"), wxDefaultPosition, wxDefaultSize, wxALIGN_RIGHT|wxSP_ARROW_KEYS, 0, 100000, 250 );
m_spinScrollTime->SetMinSize( wxSize( 80,-1 ) );
fgSizer1->Add( m_spinScrollTime, 0, wxALL|wxALIGN_CENTER_VERTICAL, 5 );
bSizerTOP->Add( fgSizer1, 1, wxEXPAND, 5 );
wxString m_radioZoomInMethodChoices[] = { _("Neareset"), _("Linear"), _("Bicubic"), _("Lanczos4") };
int m_radioZoomInMethodNChoices = sizeof( m_radioZoomInMethodChoices ) / sizeof( wxString );
m_radioZoomInMethod = new wxRadioBox( this, wxID_ANY, _("Zoom In Method"), wxDefaultPosition, wxDefaultSize, m_radioZoomInMethodNChoices, m_radioZoomInMethodChoices, 1, wxRA_SPECIFY_ROWS );
m_radioZoomInMethod->SetSelection( 0 );
bSizerTOP->Add( m_radioZoomInMethod, 0, wxALL, 5 );
wxString m_radioZoomOutMethodChoices[] = { _("Neareset"), _("Area") };
int m_radioZoomOutMethodNChoices = sizeof( m_radioZoomOutMethodChoices ) / sizeof( wxString );
m_radioZoomOutMethod = new wxRadioBox( this, wxID_ANY, _("Zoom Out Method"), wxDefaultPosition, wxDefaultSize, m_radioZoomOutMethodNChoices, m_radioZoomOutMethodChoices, 1, wxRA_SPECIFY_ROWS );
m_radioZoomOutMethod->SetSelection( 0 );
bSizerTOP->Add( m_radioZoomOutMethod, 0, wxALL, 5 );
wxBoxSizer* bSizer5;
bSizer5 = new wxBoxSizer( wxHORIZONTAL );
m_staticText4 = new wxStaticText( this, wxID_ANY, _("Background Color :"), wxDefaultPosition, wxDefaultSize, 0 );
m_staticText4->Wrap( -1 );
bSizer5->Add( m_staticText4, 0, wxALL|wxALIGN_CENTER_VERTICAL, 5 );
m_crBackground = new wxColourPickerCtrl( this, wxID_ANY, *wxBLACK, wxDefaultPosition, wxDefaultSize, wxCLRP_DEFAULT_STYLE );
bSizer5->Add( m_crBackground, 0, wxALL, 5 );
m_btnRestoreColor = new wxButton( this, wxID_ANY, wxEmptyString, wxDefaultPosition, wxSize( 30,-1 ), 0 );
m_btnRestoreColor->SetBitmap( wxArtProvider::GetBitmap( wxART_UNDO, wxART_BUTTON ) );
bSizer5->Add( m_btnRestoreColor, 0, wxALL, 5 );
bSizerTOP->Add( bSizer5, 0, wxEXPAND, 5 );
wxBoxSizer* bSizer6;
bSizer6 = new wxBoxSizer( wxHORIZONTAL );
m_btnOK = new wxButton( this, wxID_ANY, _("OK"), wxDefaultPosition, wxDefaultSize, 0 );
m_btnOK->SetDefault();
bSizer6->Add( m_btnOK, 0, wxALL|wxALIGN_BOTTOM, 5 );
m_btnCancel = new wxButton( this, wxID_ANY, _("Cancel"), wxDefaultPosition, wxDefaultSize, 0 );
bSizer6->Add( m_btnCancel, 0, wxALL|wxALIGN_BOTTOM, 5 );
bSizerTOP->Add( bSizer6, 1, wxALIGN_RIGHT, 5 );
this->SetSizer( bSizerTOP );
this->Layout();
this->Centre( wxBOTH );
// Connect Events
m_chkSkia->Connect( wxEVT_COMMAND_CHECKBOX_CLICKED, wxCommandEventHandler( IDlgMatViewOption::OnCheckBox_Skia ), NULL, this );
m_btnRestoreColor->Connect( wxEVT_COMMAND_BUTTON_CLICKED, wxCommandEventHandler( IDlgMatViewOption::OnButtonClick_RestoreBackgroundColor ), NULL, this );
m_btnOK->Connect( wxEVT_COMMAND_BUTTON_CLICKED, wxCommandEventHandler( IDlgMatViewOption::OnButtonClick_OK ), NULL, this );
m_btnCancel->Connect( wxEVT_COMMAND_BUTTON_CLICKED, wxCommandEventHandler( IDlgMatViewOption::OnButtonClick_Cancel ), NULL, this );
}
IDlgMatViewOption::~IDlgMatViewOption()
{
// Disconnect Events
m_chkSkia->Disconnect( wxEVT_COMMAND_CHECKBOX_CLICKED, wxCommandEventHandler( IDlgMatViewOption::OnCheckBox_Skia ), NULL, this );
m_btnRestoreColor->Disconnect( wxEVT_COMMAND_BUTTON_CLICKED, wxCommandEventHandler( IDlgMatViewOption::OnButtonClick_RestoreBackgroundColor ), NULL, this );
m_btnOK->Disconnect( wxEVT_COMMAND_BUTTON_CLICKED, wxCommandEventHandler( IDlgMatViewOption::OnButtonClick_OK ), NULL, this );
m_btnCancel->Disconnect( wxEVT_COMMAND_BUTTON_CLICKED, wxCommandEventHandler( IDlgMatViewOption::OnButtonClick_Cancel ), NULL, this );
}
| [
"whitedevil75@naver.com"
] | whitedevil75@naver.com |
bc7811d08300ca04dccd75851ab6e10c31d4f28e | 886af21972b21fcad13a94a51fa9238b24a81c6e | /op_ros_helpers/src/ROSMapHandler.cpp | 54863ec12b82ea082346c15d4536758ef653d51b | [
"Apache-2.0"
] | permissive | neophack/common | 077ae7e5ec8106b63923d37f6bbbecb57df7886e | 29f6dc2a05e11204a469d6b7517cf80003956cf1 | refs/heads/master | 2023-08-14T19:32:50.324499 | 2021-09-20T02:16:52 | 2021-09-20T02:16:52 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 8,374 | cpp | /// \file ROSMapHandler.h
/// \brief Handle road network mapping functionality for OpenPlanner, such as message subscription, reading the map, measurement conversion
/// It handles (Vector Maps, KML, Lanelet2)
/// \author Hatem Darweesh
/// \date June 18, 2021
#include "op_ros_helpers/ROSMapHandler.h"
#include "op_ros_helpers/op_ROSHelpers.h"
#include "op_planner/MappingHelpers.h"
#include "op_planner/KmlMapLoader.h"
#include "op_planner/Lanelet2MapLoader.h"
#include "op_planner/VectorMapLoader.h"
namespace PlannerHNS
{
MapHandler::MapHandler()
{
m_MapType = PlannerHNS::MAP_KML_FILE;
m_bMap = false;
m_bMapBinReceived = false;
m_bKmlMapFileNameReceived = false;
}
MapHandler::~MapHandler()
{
}
bool MapHandler::IsMapLoaded()
{
return m_bMap;
}
void MapHandler::InitMapHandler(ros::NodeHandle& nh, const std::string& source_topic, const std::string& map_path_topic, const std::string& map_origin_topic)
{
std::string str_map_path;
nh.getParam(map_path_topic , m_MapPath);
int iSource = 0;
nh.getParam(source_topic, iSource);
std::string str_origin;
nh.getParam(map_origin_topic , str_origin);
if(iSource == 0)
{
m_MapType = PlannerHNS::MAP_AUTOWARE;
}
else if (iSource == 1)
{
m_MapType = PlannerHNS::MAP_FOLDER;
}
else if(iSource == 2)
{
m_MapType = PlannerHNS::MAP_KML_FILE;
}
else if(iSource == 3)
{
m_MapType = PlannerHNS::MAP_LANELET_2;
std::vector<std::string> lat_lon_alt = PlannerHNS::MappingHelpers::SplitString(str_origin, ",");
if(lat_lon_alt.size() == 3)
{
m_MapOrigin.pos.lat = atof(lat_lon_alt.at(0).c_str());
m_MapOrigin.pos.lon = atof(lat_lon_alt.at(1).c_str());
m_MapOrigin.pos.alt = atof(lat_lon_alt.at(2).c_str());
}
}
else if(iSource == 4)
{
m_MapType = PlannerHNS::MAP_KML_FILE_NAME;
}
sub_map_file_name = nh.subscribe("/assure_kml_map_file_name", 1, &MapHandler::callbackGetkmlMapFileName, this);
sub_bin_map = nh.subscribe("/lanelet_map_bin", 1, &MapHandler::callbackGetLanelet2, this);
sub_lanes = nh.subscribe("/vector_map_info/lane", 1, &MapHandler::callbackGetVMLanes, this);
sub_points = nh.subscribe("/vector_map_info/point", 1, &MapHandler::callbackGetVMPoints, this);
sub_dt_lanes = nh.subscribe("/vector_map_info/dtlane", 1, &MapHandler::callbackGetVMdtLanes, this);
sub_intersect = nh.subscribe("/vector_map_info/cross_road", 1, &MapHandler::callbackGetVMIntersections, this);
sup_area = nh.subscribe("/vector_map_info/area", 1, &MapHandler::callbackGetVMAreas, this);
sub_lines = nh.subscribe("/vector_map_info/line", 1, &MapHandler::callbackGetVMLines, this);
sub_stop_line = nh.subscribe("/vector_map_info/stop_line", 1, &MapHandler::callbackGetVMStopLines, this);
sub_signals = nh.subscribe("/vector_map_info/signal", 1, &MapHandler::callbackGetVMSignal, this);
sub_vectors = nh.subscribe("/vector_map_info/vector", 1, &MapHandler::callbackGetVMVectors, this);
sub_curbs = nh.subscribe("/vector_map_info/curb", 1, &MapHandler::callbackGetVMCurbs, this);
sub_edges = nh.subscribe("/vector_map_info/road_edge", 1, &MapHandler::callbackGetVMRoadEdges, this);
sub_way_areas = nh.subscribe("/vector_map_info/way_area", 1, &MapHandler::callbackGetVMWayAreas, this);
sub_cross_walk = nh.subscribe("/vector_map_info/cross_walk", 1, &MapHandler::callbackGetVMCrossWalks, this);
sub_nodes = nh.subscribe("/vector_map_info/node", 1, &MapHandler::callbackGetVMNodes, this);
}
void MapHandler::LoadMap(RoadNetwork& map, bool bEnableLaneChange)
{
if(m_bMap) return;
map.Clear();
if(m_MapType == PlannerHNS::MAP_KML_FILE)
{
LoadKmlMap(m_MapPath, map);
}
else if(m_MapType == PlannerHNS::MAP_KML_FILE_NAME && m_bKmlMapFileNameReceived)
{
LoadKmlMap(m_MapFileName, map);
}
else if (m_MapType == PlannerHNS::MAP_FOLDER)
{
PlannerHNS::VectorMapLoader vec_loader(1, bEnableLaneChange);
vec_loader.LoadFromFile(m_MapPath, map);
}
else if (m_MapType == PlannerHNS::MAP_LANELET_2)
{
map.origin = m_MapOrigin;
PlannerHNS::Lanelet2MapLoader map_loader;
if(m_MapPath.size() > 0)
{
map_loader.LoadMap(m_MapPath, map);
}
else if(m_bMapBinReceived)
{
map_loader.LoadMap(m_Lanelet2Bin, map);
}
}
else if (m_MapType == PlannerHNS::MAP_AUTOWARE)
{
if(m_MapRaw.AreMessagesReceived())
{
PlannerHNS::VectorMapLoader vec_loader(1, bEnableLaneChange);
vec_loader.LoadFromData(m_MapRaw, map);
}
}
if(map.roadSegments.size() > 0)
{
PlannerHNS::MappingHelpers::ConvertVelocityToMeterPerSecond(map);
m_bMap = true;
m_bKmlMapFileNameReceived = false;
m_bMapBinReceived = false;
std::cout << " ******* Map Is Loaded successfully from the tracker." << std::endl;
}
}
void MapHandler::LoadKmlMap(const std::string& file_name, RoadNetwork& map)
{
PlannerHNS::KmlMapLoader kml_loader;
kml_loader.LoadKML(file_name, map);
}
void MapHandler::callbackGetkmlMapFileName(const std_msgs::String& file_name)
{
m_MapFileName = file_name.data;
m_bKmlMapFileNameReceived = true;
}
void MapHandler::callbackGetLanelet2(const autoware_lanelet2_msgs::MapBin& msg)
{
m_Lanelet2Bin = msg;
m_bMapBinReceived = true;
}
void MapHandler::callbackGetVMLanes(const vector_map_msgs::LaneArray& msg)
{
std::cout << "Received Lanes" << std::endl;
if(m_MapRaw.pLanes == nullptr)
m_MapRaw.pLanes = new UtilityHNS::AisanLanesFileReader(msg);
}
void MapHandler::callbackGetVMPoints(const vector_map_msgs::PointArray& msg)
{
std::cout << "Received Points" << std::endl;
if(m_MapRaw.pPoints == nullptr)
m_MapRaw.pPoints = new UtilityHNS::AisanPointsFileReader(msg);
}
void MapHandler::callbackGetVMdtLanes(const vector_map_msgs::DTLaneArray& msg)
{
std::cout << "Received dtLanes" << std::endl;
if(m_MapRaw.pCenterLines == nullptr)
m_MapRaw.pCenterLines = new UtilityHNS::AisanCenterLinesFileReader(msg);
}
void MapHandler::callbackGetVMIntersections(const vector_map_msgs::CrossRoadArray& msg)
{
std::cout << "Received CrossRoads" << std::endl;
if(m_MapRaw.pIntersections == nullptr)
m_MapRaw.pIntersections = new UtilityHNS::AisanIntersectionFileReader(msg);
}
void MapHandler::callbackGetVMAreas(const vector_map_msgs::AreaArray& msg)
{
std::cout << "Received Areas" << std::endl;
if(m_MapRaw.pAreas == nullptr)
m_MapRaw.pAreas = new UtilityHNS::AisanAreasFileReader(msg);
}
void MapHandler::callbackGetVMLines(const vector_map_msgs::LineArray& msg)
{
std::cout << "Received Lines" << std::endl;
if(m_MapRaw.pLines == nullptr)
m_MapRaw.pLines = new UtilityHNS::AisanLinesFileReader(msg);
}
void MapHandler::callbackGetVMStopLines(const vector_map_msgs::StopLineArray& msg)
{
std::cout << "Received StopLines" << std::endl;
if(m_MapRaw.pStopLines == nullptr)
m_MapRaw.pStopLines = new UtilityHNS::AisanStopLineFileReader(msg);
}
void MapHandler::callbackGetVMSignal(const vector_map_msgs::SignalArray& msg)
{
std::cout << "Received Signals" << std::endl;
if(m_MapRaw.pSignals == nullptr)
m_MapRaw.pSignals = new UtilityHNS::AisanSignalFileReader(msg);
}
void MapHandler::callbackGetVMVectors(const vector_map_msgs::VectorArray& msg)
{
std::cout << "Received Vectors" << std::endl;
if(m_MapRaw.pVectors == nullptr)
m_MapRaw.pVectors = new UtilityHNS::AisanVectorFileReader(msg);
}
void MapHandler::callbackGetVMCurbs(const vector_map_msgs::CurbArray& msg)
{
std::cout << "Received Curbs" << std::endl;
if(m_MapRaw.pCurbs == nullptr)
m_MapRaw.pCurbs = new UtilityHNS::AisanCurbFileReader(msg);
}
void MapHandler::callbackGetVMRoadEdges(const vector_map_msgs::RoadEdgeArray& msg)
{
std::cout << "Received Edges" << std::endl;
if(m_MapRaw.pRoadedges == nullptr)
m_MapRaw.pRoadedges = new UtilityHNS::AisanRoadEdgeFileReader(msg);
}
void MapHandler::callbackGetVMWayAreas(const vector_map_msgs::WayAreaArray& msg)
{
std::cout << "Received Way areas" << std::endl;
if(m_MapRaw.pWayAreas == nullptr)
m_MapRaw.pWayAreas = new UtilityHNS::AisanWayareaFileReader(msg);
}
void MapHandler::callbackGetVMCrossWalks(const vector_map_msgs::CrossWalkArray& msg)
{
std::cout << "Received CrossWalks" << std::endl;
if(m_MapRaw.pCrossWalks == nullptr)
m_MapRaw.pCrossWalks = new UtilityHNS::AisanCrossWalkFileReader(msg);
}
void MapHandler::callbackGetVMNodes(const vector_map_msgs::NodeArray& msg)
{
std::cout << "Received Nodes" << std::endl;
if(m_MapRaw.pNodes == nullptr)
m_MapRaw.pNodes = new UtilityHNS::AisanNodesFileReader(msg);
}
} /* namespace PlannerHNS */
| [
"marcusvini178@gmail.com"
] | marcusvini178@gmail.com |
6b2fb7d175fe5c215023bb387dd0eba5c724fe3e | 62a2243638434c67199503c23ff9ea516dfd5534 | /libxaos-maths/interface/linear/affine.h | dd3ac642f8358b1b94ebf482a6270389c7c306f3 | [
"MIT"
] | permissive | CorneliaXaos/libxaos | 163e963771628155016d5541686e679c31e2cf27 | 7637f7279d08f451841633a59cd2fbd210bdc58b | refs/heads/master | 2021-01-12T07:35:32.997631 | 2017-04-16T03:33:16 | 2017-04-16T03:33:16 | 76,983,602 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,256 | h | #ifndef LIBXAOS_MATHS_LINEAR_AFFINE_H
#define LIBXAOS_MATHS_LINEAR_AFFINE_H
#include "linear/Matrix.h"
#include "linear/Vector.h"
namespace libxaos {
namespace linear {
/**
* @brief Contains methods for producing 2D and 3D affine transforms.
*
* Contains helper methods for producing scale, rotation, and
* translation transformations in two and three dimensions. All
* matrices are in homogenous coordinates.
*/
namespace affine {
namespace {
template<typename T>
using Matrix3 = libxaos::linear::Matrix<T, 3, 3>;
template<typename T>
using Matrix4 = libxaos::linear::Matrix<T, 4, 4>;
template<typename T>
using Vector2 = libxaos::linear::Vector<T, 2>;
template<typename T>
using Vector3 = libxaos::linear::Vector<T, 3>;
}
//! 2D Scaling
template<typename T>
inline Matrix3<T> get2DScaling(T, T);
template<typename T>
inline Matrix3<T> get2DScaling(const Vector2<T>&);
//! 3D Scaling
template<typename T>
inline Matrix4<T> get3DScaling(T, T, T);
template<typename T>
inline Matrix4<T> get3DScaling(const Vector3<T>&);
//! 2D Rotation around the only possible axis
template<typename T>
inline Matrix3<T> get2DRotation(T);
//! 2D Rotation of a Vector2 onto another Vector2
template<typename T>
inline Matrix3<T> get2DRotationOnto(const Vector2<T>&,
const Vector2<T>&);
//! 3D Rotation around the X axis
template<typename T>
inline Matrix4<T> get3DRotationX(T);
//! 3D Rotation around the Y axis
template<typename T>
inline Matrix4<T> get3DRotationY(T);
//! 3D Rotation around the Z axis
template<typename T>
inline Matrix4<T> get3DRotationZ(T);
//! 3D Rotation around coordinate axes: zRot * yRot * xRot = rot
template<typename T>
inline Matrix4<T> get3DRotation(T, T, T);
template<typename T>
inline Matrix4<T> get3DRotation(const Vector3<T>&);
//! 3D Rotation of a Vector3 onto a Vector3
template<typename T>
Matrix4<T> get3DRotationOnto(const Vector3<T>&, const Vector3<T>&);
//! 3D Rotation around an arbitrary axis vector
template<typename T>
Matrix4<T> get3DRotationArbitrary(T, const Vector3<T>&);
//! 2D Translation
template<typename T>
inline Matrix3<T> get2DTranslation(T, T);
template<typename T>
inline Matrix3<T> get2DTranslation(const Vector2<T>&);
//! 3D Translation
template<typename T>
inline Matrix4<T> get3DTranslation(T, T, T);
template<typename T>
inline Matrix4<T> get3DTranslation(const Vector3<T>&);
}
}
}
// pull in implementations
#include "affine-tpp.h"
#endif // LIBXAOS_MATHS_LINEAR_AFFINE_H
| [
"cornelia.xaos@gmail.com"
] | cornelia.xaos@gmail.com |
61527faa6fbce8b505b6dfe4474ed1731d46cb9c | 0b5b650d2990778821dd2ec853cfabfc16a30a72 | /trivia/LoginManagerException.h | 470cb8daabff3a3b2934dd605229f7a9403626a5 | [] | no_license | DarthBakerXD/Trivia-game | 6d8bd9079ee550d349973f97d9758cda90ab15cf | cd9efadd8bb5e7d62a7582bc09855f483cdff48f | refs/heads/master | 2021-05-18T16:32:16.686887 | 2020-03-30T13:52:44 | 2020-03-30T13:52:44 | 251,317,670 | 0 | 0 | null | 2020-03-30T13:53:54 | 2020-03-30T13:44:39 | C | UTF-8 | C++ | false | false | 285 | h | #pragma once
#include <exception>
#include <string>
class LoginManagerException : public std::exception
{
public:
LoginManagerException(std::string error)
{
errorMessage = error;
}
const char* what()
{
return errorMessage.c_str();
}
protected:
std::string errorMessage;
};
| [
"eranking95@gmail.com"
] | eranking95@gmail.com |
554bf0de517a5276289303522aa611ecaa07cc57 | 4dbc51a53b285c0cbb422a20bb957e3e6049b4ff | /tuan1/HelloWeek1_1.cpp | 194830090d7b22edc0c8ccee8f8449c6327f3c5a | [] | no_license | Darrell-Ha/KTLT20202 | 2f605c6280e06f06a2677acd8863df2f9b4ff27a | 8244d62239784f174f29ef2bb05353d00b1a4edb | refs/heads/master | 2023-04-23T21:51:34.739208 | 2021-05-04T04:33:39 | 2021-05-04T04:33:39 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 124 | cpp | #include <iostream>
using namespace std;
int main (){
cout<<"Chao ban, minh den voi the gioi lap trinh";
return 0;
} | [
"hatrongdat219@gmail.com"
] | hatrongdat219@gmail.com |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.