writeEventList;
-#endif
-
-#endif // APARAPI_LIST_H
-
diff --git a/com.amd.aparapi.jni/src/cpp/runKernel/ProfileInfo.cpp b/com.amd.aparapi.jni/src/cpp/runKernel/ProfileInfo.cpp
deleted file mode 100644
index 11c77eae..00000000
--- a/com.amd.aparapi.jni/src/cpp/runKernel/ProfileInfo.cpp
+++ /dev/null
@@ -1,61 +0,0 @@
-/*
- Copyright (c) 2010-2011, Advanced Micro Devices, Inc.
- All rights reserved.
-
- Redistribution and use in source and binary forms, with or without modification, are permitted provided that the
- following conditions are met:
-
- Redistributions of source code must retain the above copyright notice, this list of conditions and the following
- disclaimer.
-
- 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.
-
- Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products
- derived from this software without specific prior written permission.
-
- 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.
-
- If you use the software (in whole or in part), you shall adhere to all applicable U.S., European, and other export
- laws, including but not limited to the U.S. Export Administration Regulations ("EAR"), (15 C.F.R. Sections 730
- through 774), and E.U. Council Regulation (EC) No 1334/2000 of 22 June 2000. Further, pursuant to Section 740.6 of
- the EAR, you hereby certify that, except pursuant to a license granted by the United States Department of Commerce
- Bureau of Industry and Security or as otherwise permitted pursuant to a License Exception under the U.S. Export
- Administration Regulations ("EAR"), you will not (1) export, re-export or release to a national of a country in
- Country Groups D:1, E:1 or E:2 any restricted technology, software, or source code you receive hereunder, or (2)
- export to Country Groups D:1, E:1 or E:2 the direct product of such technology or software, if such foreign produced
- direct product is subject to national security controls as identified on the Commerce Control List (currently
- found in Supplement 1 to Part 774 of EAR). For the most current Country Group listings, or for additional
- information about the EAR or your obligations under those regulations, please refer to the U.S. Bureau of Industry
- and Security?s website at http://www.bis.doc.gov/.
- */
-#define PROFILEINFO_SOURCE
-#include "ProfileInfo.h"
-
-ProfileInfo::ProfileInfo():
- valid(false),
- type(-1), //-1 unknown, 0 write, 1 execute, 2 read
- name(NULL),
- queued((cl_ulong)0L),
- submit((cl_ulong)0L),
- start((cl_ulong)0L),
- end((cl_ulong)0L) {
-}
-
-jobject ProfileInfo::createProfileInfoInstance(JNIEnv *jenv){
- jobject profileInstance = JNIHelper::createInstance(jenv, ProfileInfoClass , ArgsVoidReturn(StringClassArg IntArg LongArg LongArg LongArg LongArg),
- ((jstring)(name==NULL?NULL:jenv->NewStringUTF(name))),
- ((jint)type),
- ((jlong)start),
- ((jlong)end),
- ((jlong)queued),
- ((jlong)submit));
- return(profileInstance);
-}
-
diff --git a/com.amd.aparapi.jni/src/cpp/runKernel/ProfileInfo.h b/com.amd.aparapi.jni/src/cpp/runKernel/ProfileInfo.h
deleted file mode 100644
index 7b58267f..00000000
--- a/com.amd.aparapi.jni/src/cpp/runKernel/ProfileInfo.h
+++ /dev/null
@@ -1,56 +0,0 @@
-/*
- Copyright (c) 2010-2011, Advanced Micro Devices, Inc.
- All rights reserved.
-
- Redistribution and use in source and binary forms, with or without modification, are permitted provided that the
- following conditions are met:
-
- Redistributions of source code must retain the above copyright notice, this list of conditions and the following
- disclaimer.
-
- 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.
-
- Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products
- derived from this software without specific prior written permission.
-
- 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.
-
- If you use the software (in whole or in part), you shall adhere to all applicable U.S., European, and other export
- laws, including but not limited to the U.S. Export Administration Regulations ("EAR"), (15 C.F.R. Sections 730
- through 774), and E.U. Council Regulation (EC) No 1334/2000 of 22 June 2000. Further, pursuant to Section 740.6 of
- the EAR, you hereby certify that, except pursuant to a license granted by the United States Department of Commerce
- Bureau of Industry and Security or as otherwise permitted pursuant to a License Exception under the U.S. Export
- Administration Regulations ("EAR"), you will not (1) export, re-export or release to a national of a country in
- Country Groups D:1, E:1 or E:2 any restricted technology, software, or source code you receive hereunder, or (2)
- export to Country Groups D:1, E:1 or E:2 the direct product of such technology or software, if such foreign produced
- direct product is subject to national security controls as identified on the Commerce Control List (currently
- found in Supplement 1 to Part 774 of EAR). For the most current Country Group listings, or for additional
- information about the EAR or your obligations under those regulations, please refer to the U.S. Bureau of Industry
- and Security?s website at http://www.bis.doc.gov/.
- */
-#ifndef PROFILEINFO_H
-#define PROFILEINFO_H
-#include "Common.h"
-#include "JNIHelper.h"
-
-class ProfileInfo{
- public:
- jboolean valid;
- jint type; //0 write, 1 execute, 2 read
- char *name;
- cl_ulong queued;
- cl_ulong submit;
- cl_ulong start;
- cl_ulong end;
- ProfileInfo();
- jobject createProfileInfoInstance(JNIEnv *jenv);
-};
-
-#endif
diff --git a/com.amd.aparapi.jni/src/cpp/runKernel/Range.cpp b/com.amd.aparapi.jni/src/cpp/runKernel/Range.cpp
deleted file mode 100644
index 24974fac..00000000
--- a/com.amd.aparapi.jni/src/cpp/runKernel/Range.cpp
+++ /dev/null
@@ -1,74 +0,0 @@
-
-#include "Range.h"
-
-jclass Range::rangeClazz = (jclass)0;
-jfieldID Range::globalSize_0_FieldID=0;
-jfieldID Range::globalSize_1_FieldID=0;
-jfieldID Range::globalSize_2_FieldID=0;
-jfieldID Range::localSize_0_FieldID=0;
-jfieldID Range::localSize_1_FieldID=0;
-jfieldID Range::localSize_2_FieldID=0;
-jfieldID Range::dimsFieldID=0;
-jfieldID Range::localIsDerivedFieldID=0;
-
-Range::Range(JNIEnv *jenv, jobject range):
- range(range),
- dims(0),
- offsets(NULL),
- globalDims(NULL),
- localDims(NULL){
- if (rangeClazz ==NULL){
- jclass rangeClazz = jenv->GetObjectClass(range);
- globalSize_0_FieldID = JNIHelper::GetFieldID(jenv, rangeClazz, "globalSize_0", "I");
- globalSize_1_FieldID = JNIHelper::GetFieldID(jenv, rangeClazz, "globalSize_1", "I");
- globalSize_2_FieldID = JNIHelper::GetFieldID(jenv, rangeClazz, "globalSize_2", "I");
- localSize_0_FieldID = JNIHelper::GetFieldID(jenv, rangeClazz, "localSize_0", "I");
- localSize_1_FieldID = JNIHelper::GetFieldID(jenv, rangeClazz, "localSize_1", "I");
- localSize_2_FieldID = JNIHelper::GetFieldID(jenv, rangeClazz, "localSize_2", "I");
- dimsFieldID = JNIHelper::GetFieldID(jenv, rangeClazz, "dims", "I");
- localIsDerivedFieldID = JNIHelper::GetFieldID(jenv, rangeClazz, "localIsDerived", "Z");
- }
- dims = jenv->GetIntField(range, dimsFieldID);
- localIsDerived = jenv->GetBooleanField(range, localIsDerivedFieldID);
- if (dims >0){
- //fprintf(stderr, "native range dims == %d\n", dims);
- offsets = new size_t[dims];
- globalDims = new size_t[dims];
- localDims = new size_t[dims];
- offsets[0]= 0;
- localDims[0]= jenv->GetIntField(range, localSize_0_FieldID);
- //fprintf(stderr, "native range localSize_0 == %d\n", localDims[0]);
- globalDims[0]= jenv->GetIntField(range, globalSize_0_FieldID);
- //fprintf(stderr, "native range globalSize_0 == %d\n", globalDims[0]);
- if (dims >1){
- offsets[1]= 0;
- localDims[1]= jenv->GetIntField(range, localSize_1_FieldID);
- //fprintf(stderr, "native range localSize_1 == %d\n", localDims[1]);
- globalDims[1]= jenv->GetIntField(range, globalSize_1_FieldID);
- //fprintf(stderr, "native range globalSize_1 == %d\n", globalDims[1]);
- if (dims >2){
- offsets[2]= 0;
- localDims[2]= jenv->GetIntField(range, localSize_2_FieldID);
- //fprintf(stderr, "native range localSize_2 == %d\n", localDims[2]);
- globalDims[2]= jenv->GetIntField(range, globalSize_2_FieldID);
- //fprintf(stderr, "native range globalSize_2 == %d\n", globalDims[2]);
- }
- }
-
- }
-}
-
-
-Range::~Range(){
- if (offsets!= NULL){
- delete offsets;
- }
- if (globalDims!= NULL){
- delete globalDims;
- }
- if (localDims!= NULL){
- delete localDims;
- }
-}
-
-
diff --git a/com.amd.aparapi.jni/src/cpp/runKernel/Range.h b/com.amd.aparapi.jni/src/cpp/runKernel/Range.h
deleted file mode 100644
index 548549b8..00000000
--- a/com.amd.aparapi.jni/src/cpp/runKernel/Range.h
+++ /dev/null
@@ -1,28 +0,0 @@
-#ifndef RANGE_H
-#define RANGE_H
-
-#include "Common.h"
-#include "JNIHelper.h"
-
-class Range{
- public:
- static jclass rangeClazz;
- static jfieldID globalSize_0_FieldID;
- static jfieldID globalSize_1_FieldID;
- static jfieldID globalSize_2_FieldID;
- static jfieldID localSize_0_FieldID;
- static jfieldID localSize_1_FieldID;
- static jfieldID localSize_2_FieldID;
- static jfieldID dimsFieldID;
- static jfieldID localIsDerivedFieldID;
- jobject range;
- cl_int dims;
- size_t *offsets;
- size_t *globalDims;
- size_t *localDims;
- jboolean localIsDerived;
- Range(JNIEnv *jenv, jobject range);
- ~Range();
-};
-
-#endif // RANGE_H
diff --git a/com.amd.aparapi/.classpath b/com.amd.aparapi/.classpath
deleted file mode 100644
index f8f3492a..00000000
--- a/com.amd.aparapi/.classpath
+++ /dev/null
@@ -1,7 +0,0 @@
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/.project b/com.amd.aparapi/.project
deleted file mode 100644
index 54ce0fda..00000000
--- a/com.amd.aparapi/.project
+++ /dev/null
@@ -1,17 +0,0 @@
-
-
- com.amd.aparapi
-
-
-
-
-
- org.eclipse.jdt.core.javabuilder
-
-
-
-
-
- org.eclipse.jdt.core.javanature
-
-
diff --git a/com.amd.aparapi/build.xml b/com.amd.aparapi/build.xml
deleted file mode 100644
index 6dad1277..00000000
--- a/com.amd.aparapi/build.xml
+++ /dev/null
@@ -1,126 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
- OS Name: ${os.name}
- OS Version: ${os.version}
- OS Arch: ${os.arch}
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/allclasses-frame.html b/com.amd.aparapi/doc/api/allclasses-frame.html
deleted file mode 100644
index f259c212..00000000
--- a/com.amd.aparapi/doc/api/allclasses-frame.html
+++ /dev/null
@@ -1,377 +0,0 @@
-
-
-
-
-
-All Classes
-
-
-
-
-All Classes
-
-
-
diff --git a/com.amd.aparapi/doc/api/allclasses-noframe.html b/com.amd.aparapi/doc/api/allclasses-noframe.html
deleted file mode 100644
index 25b7217f..00000000
--- a/com.amd.aparapi/doc/api/allclasses-noframe.html
+++ /dev/null
@@ -1,377 +0,0 @@
-
-
-
-
-
-All Classes
-
-
-
-
-All Classes
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/Config.InstructionListener.html b/com.amd.aparapi/doc/api/com/amd/aparapi/Config.InstructionListener.html
deleted file mode 100644
index b2e799ac..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/Config.InstructionListener.html
+++ /dev/null
@@ -1,218 +0,0 @@
-
-
-
-
-
-Config.InstructionListener
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-Summary:
-Nested |
-Field |
-Constr |
-Method
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Summary:
-Nested |
-Field |
-Constr |
-Method
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/Config.html b/com.amd.aparapi/doc/api/com/amd/aparapi/Config.html
deleted file mode 100644
index 0d74bfc8..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/Config.html
+++ /dev/null
@@ -1,660 +0,0 @@
-
-
-
-
-
-Config
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-public class Config
-extends ConfigJNI
-A central location for holding all runtime configurable properties as well as logging configuration.
-
- Ideally we will find all properties used by Aparapi here. Please consider updating this class if you wish
- to add new properties which control Aparapis behavior.
-Author:
- gfrost
-
-
-
-
-
-
-
-
-
-
-
-Nested Class Summary
-
-
-
-
-
-
-
-
-Field Summary
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-Constructors
-
-Constructor and Description
-
-
-Config ()
-
-
-
-
-
-
-
-
-
-Method Summary
-
-Methods
-
-Modifier and Type
-Method and Description
-
-
-static java.lang.String
-getLoggerName ()
-
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Field Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-enableExecutionModeReporting
-public static final boolean enableExecutionModeReporting
-Allows the user to request that the execution mode of each kernel invocation be reported to stdout.
-
- Usage -Dcom.amd.aparapi.enableExecutionModeReporting={true|false}
-
-
-
-
-
-
-
-enableShowGeneratedOpenCL
-public static final boolean enableShowGeneratedOpenCL
-Allows the user to request that generated OpenCL code is dumped to standard out.
-
- Usage -Dcom.amd.aparapi.enableShowGeneratedOpenCL={true|false}
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-Config
-public Config()
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/Kernel.Constant.html b/com.amd.aparapi/doc/api/com/amd/aparapi/Kernel.Constant.html
deleted file mode 100644
index 90401254..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/Kernel.Constant.html
+++ /dev/null
@@ -1,162 +0,0 @@
-
-
-
-
-
-Kernel.Constant
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-Summary:
-Required |
-Optional
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Summary:
-Required |
-Optional
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/Kernel.EXECUTION_MODE.html b/com.amd.aparapi/doc/api/com/amd/aparapi/Kernel.EXECUTION_MODE.html
deleted file mode 100644
index 1b008329..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/Kernel.EXECUTION_MODE.html
+++ /dev/null
@@ -1,436 +0,0 @@
-
-
-
-
-
-Kernel.EXECUTION_MODE
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Enum Constant Summary
-
-Enum Constants
-
-Enum Constant and Description
-
-
-CPU
-The value representing execution on a CPU device via OpenCL.
-
-
-
-GPU
-The value representing execution on a GPU device via OpenCL.
-
-
-
-JTP
-The value representing execution on a Java Thread Pool.
-
-
-
-NONE
-A dummy value to indicate an unknown state.
-
-
-
-SEQ
-The value representing execution sequentially in a single loop.
-
-
-
-
-
-
-
-
-
-
-Method Summary
-
-Methods
-
-Modifier and Type
-Method and Description
-
-
-boolean
-isOpenCL ()
-
-
-static Kernel.EXECUTION_MODE
-valueOf (java.lang.String name)
-Returns the enum constant of this type with the specified name.
-
-
-
-static Kernel.EXECUTION_MODE []
-values ()
-Returns an array containing the constants of this enum type, in
-the order they are declared.
-
-
-
-
-
-
-
-Methods inherited from class java.lang.Enum
-compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
-
-
-
-
-
-Methods inherited from class java.lang.Object
-getClass, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-
-
-
-
-valueOf
-public static Kernel.EXECUTION_MODE valueOf(java.lang.String name)
-Returns the enum constant of this type with the specified name.
-The string must match exactly an identifier used to declare an
-enum constant in this type. (Extraneous whitespace characters are
-not permitted.)
-Parameters: name - the name of the enum constant to be returned.
-Returns: the enum constant with the specified name
-Throws:
-java.lang.IllegalArgumentException - if this enum type has no constant
-with the specified name
-java.lang.NullPointerException - if the argument is null
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/Kernel.Entry.html b/com.amd.aparapi/doc/api/com/amd/aparapi/Kernel.Entry.html
deleted file mode 100644
index 84cee553..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/Kernel.Entry.html
+++ /dev/null
@@ -1,273 +0,0 @@
-
-
-
-
-
-Kernel.Entry
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-com.amd.aparapi.Kernel.Entry
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-Constructors
-
-Constructor and Description
-
-
-Kernel.Entry ()
-
-
-
-
-
-
-
-
-
-Method Summary
-
-Methods
-
-Modifier and Type
-Method and Description
-
-
-Kernel
-execute (Range _range)
-
-
-abstract void
-run ()
-
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-Kernel.Entry
-public Kernel.Entry()
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/Kernel.KernelState.html b/com.amd.aparapi/doc/api/com/amd/aparapi/Kernel.KernelState.html
deleted file mode 100644
index a895e035..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/Kernel.KernelState.html
+++ /dev/null
@@ -1,440 +0,0 @@
-
-
-
-
-
-Kernel.KernelState
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-Summary:
-Nested |
-Field |
-Constr |
-Method
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-com.amd.aparapi.Kernel.KernelState
-
-
-
-
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-getRange
-public Range getRange()
-Returns: the range
-
-
-
-
-
-
-
-
-
-
-
-getPassId
-public int getPassId()
-Returns: the passId
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Summary:
-Nested |
-Field |
-Constr |
-Method
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/Kernel.Local.html b/com.amd.aparapi/doc/api/com/amd/aparapi/Kernel.Local.html
deleted file mode 100644
index 4295835e..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/Kernel.Local.html
+++ /dev/null
@@ -1,162 +0,0 @@
-
-
-
-
-
-Kernel.Local
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-Summary:
-Required |
-Optional
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Summary:
-Required |
-Optional
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/Kernel.html b/com.amd.aparapi/doc/api/com/amd/aparapi/Kernel.html
deleted file mode 100644
index ca5f2dc8..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/Kernel.html
+++ /dev/null
@@ -1,1225 +0,0 @@
-
-
-
-
-
-Kernel
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-com.amd.aparapi.Kernel
-
-
-
-
-
-
-
-
-
-
-
-
-Nested Class Summary
-
-Nested Classes
-
-Modifier and Type
-Class and Description
-
-
-static interface
-Kernel.Constant
-We can use this Annotation to 'tag' intended constant buffers.
-
-
-
-class
-Kernel.Entry
-
-
-static class
-Kernel.EXECUTION_MODE
-The execution mode ENUM enumerates the possible modes of executing a kernel.
-
-
-
-class
-Kernel.KernelState
-This class is for internal Kernel state management
-
-
-
-static interface
-Kernel.Local
-We can use this Annotation to 'tag' intended local buffers.
-
-
-
-
-
-
-
-
-
-
-Field Summary
-
-Fields
-
-Modifier and Type
-Field and Description
-
-
-static java.lang.String
-CONSTANT_SUFFIX
-We can use this suffix to 'tag' intended constant buffers.
-
-
-
-static java.lang.String
-LOCAL_SUFFIX
-We can use this suffix to 'tag' intended local buffers.
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-Constructors
-
-Constructor and Description
-
-
-Kernel ()
-
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-Kernel
-public Kernel()
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-
-
-
-
-clone
-public Kernel clone()
-When using a Java Thread Pool Aparapi uses clone to copy the initial instance to each thread.
-
-
- If you choose to override clone() you are responsible for delegating to super.clone();
-
-Overrides:
-clone in class java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-dispose
-public void dispose()
-Release any resources associated with this Kernel.
-
- When the execution mode is CPU or GPU, Aparapi stores some OpenCL resources in a data structure associated with the kernel instance. The
- dispose() method must be called to release these resources.
-
- If execute(int _globalSize) is called after dispose() is called the results are undefined.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-addExecutionModes
-public void addExecutionModes(Kernel.EXECUTION_MODE ... platforms)
-set possible fallback path for execution modes.
- for example setExecutionFallbackPath(GPU,CPU,JTP) will try to use the GPU
- if it fails it will fall back to OpenCL CPU and finally it will try JTP.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/ProfileInfo.html b/com.amd.aparapi/doc/api/com/amd/aparapi/ProfileInfo.html
deleted file mode 100644
index 2ac96272..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/ProfileInfo.html
+++ /dev/null
@@ -1,352 +0,0 @@
-
-
-
-
-
-ProfileInfo
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-com.amd.aparapi.ProfileInfo
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-Constructors
-
-Constructor and Description
-
-
-ProfileInfo (java.lang.String _label,
- int _type,
- long _start,
- long _end,
- long _submit,
- long _queued)
-Minimal constructor
-
-
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-ProfileInfo
-public ProfileInfo(java.lang.String _label,
- int _type,
- long _start,
- long _end,
- long _submit,
- long _queued)
-Minimal constructor
-Parameters: _label - _type - _start - _end - _submit - _queued -
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-getStart
-public long getStart()
-
-
-
-
-
-
-
-getEnd
-public long getEnd()
-
-
-
-
-
-
-
-getSubmit
-public long getSubmit()
-
-
-
-
-
-
-
-getQueued
-public long getQueued()
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/Range.html b/com.amd.aparapi/doc/api/com/amd/aparapi/Range.html
deleted file mode 100644
index 28120aab..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/Range.html
+++ /dev/null
@@ -1,1052 +0,0 @@
-
-
-
-
-
-Range
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Field Summary
-
-
-
-
-
-
-
-
-Constructor Summary
-
-Constructors
-
-Constructor and Description
-
-
-Range (Device _device,
- int _dims)
-Minimal constructor
-
-
-
-
-
-
-
-
-
-
-Method Summary
-
-Methods
-
-Modifier and Type
-Method and Description
-
-
-static Range
-create (Device _device,
- int _globalWidth)
-Create a one dimensional range 0.._globalWidth with an undefined group size.
-
-
-
-static Range
-create (Device _device,
- int _globalWidth,
- int _localWidth)
-Create a one dimensional range 0.._globalWidth which is processed in groups of size _localWidth.
-
-
-
-static Range
-create (int _globalWidth)
-
-
-static Range
-create (int _globalWidth,
- int _localWidth)
-
-
-static Range
-create2D (Device _device,
- int _globalWidth,
- int _globalHeight)
-Create a two dimensional range 0.._globalWidth * 0.._globalHeight choosing suitable values for localWidth and localHeight.
-
-
-
-static Range
-create2D (Device _device,
- int _globalWidth,
- int _globalHeight,
- int _localWidth,
- int _localHeight)
-Create a two dimensional range 0.._globalWidth x 0.._globalHeight using a group which is _localWidth x _localHeight in size.
-
-
-
-static Range
-create2D (int _globalWidth,
- int _globalHeight)
-
-
-static Range
-create2D (int _globalWidth,
- int _globalHeight,
- int _localWidth,
- int _localHeight)
-
-
-static Range
-create3D (Device _device,
- int _globalWidth,
- int _globalHeight,
- int _globalDepth)
-Create a three dimensional range 0.._globalWidth * 0.._globalHeight *0../_globalDepth
- choosing suitable values for localWidth, localHeight and localDepth.
-
-
-
-static Range
-create3D (Device _device,
- int _globalWidth,
- int _globalHeight,
- int _globalDepth,
- int _localWidth,
- int _localHeight,
- int _localDepth)
-Create a two dimensional range 0.._globalWidth * 0.._globalHeight *0../_globalDepth
- in groups defined by localWidth * localHeight * localDepth.
-
-
-
-static Range
-create3D (int _globalWidth,
- int _globalHeight,
- int _globalDepth)
-
-
-static Range
-create3D (int _globalWidth,
- int _globalHeight,
- int _globalDepth,
- int _localWidth,
- int _localHeight,
- int _localDepth)
-
-
-Device
-getDevice ()
-
-
-int
-getDims ()
-Get the number of dims for this Range.
-
-
-
-int
-getGlobalSize_0 ()
-
-
-int
-getGlobalSize_1 ()
-
-
-int
-getGlobalSize_2 ()
-
-
-int
-getGlobalSize (int _dim)
-Get the globalSize (of the range) given the requested dimension
-
-
-
-int
-getLocalSize_0 ()
-
-
-int
-getLocalSize_1 ()
-
-
-int
-getLocalSize_2 ()
-
-
-int
-getLocalSize (int _dim)
-Get the localSize (of the group) given the requested dimension
-
-
-
-int
-getMaxWorkGroupSize ()
-
-
-int[]
-getMaxWorkItemSize ()
-
-
-int
-getNumGroups (int _dim)
-Get the number of groups for the given dimension.
-
-
-
-int
-getWorkGroupSize ()
-
-
-boolean
-isLocalIsDerived ()
-
-
-boolean
-isValid ()
-
-
-void
-setDims (int dims)
-
-
-void
-setGlobalSize_0 (int globalSize_0)
-
-
-void
-setGlobalSize_1 (int globalSize_1)
-
-
-void
-setGlobalSize_2 (int globalSize_2)
-
-
-void
-setLocalIsDerived (boolean localIsDerived)
-
-
-void
-setLocalSize_0 (int localSize_0)
-
-
-void
-setLocalSize_1 (int localSize_1)
-
-
-void
-setLocalSize_2 (int localSize_2)
-
-
-void
-setMaxWorkGroupSize (int maxWorkGroupSize)
-
-
-void
-setMaxWorkItemSize (int[] maxWorkItemSize)
-
-
-void
-setValid (boolean valid)
-
-
-java.lang.String
-toString ()
-
-
-
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-create
-public static Range create(Device _device,
- int _globalWidth,
- int _localWidth)
-Create a one dimensional range 0.._globalWidth which is processed in groups of size _localWidth.
-
- Note that for this range to be valid : _globalWidth > 0 && _localWidth > 0 && _localWidth < MAX_GROUP_SIZE && _globalWidth % _localWidth==0
-Parameters: _globalWidth - the overall range we wish to process_localWidth - the size of the group we wish to process.
-Returns: A new Range with the requested dimensions
-
-
-
-
-
-
-
-create
-public static Range create(Device _device,
- int _globalWidth)
-Create a one dimensional range 0.._globalWidth with an undefined group size.
-
- Note that for this range to be valid :- _globalWidth > 0
-
- The groupsize will be chosen such that _localWidth > 0 && _localWidth < MAX_GROUP_SIZE && _globalWidth % _localWidth==0 is true
-
- We extract the factors of _globalWidth and choose the highest value.
-Parameters: _globalWidth - the overall range we wish to process
-Returns: A new Range with the requested dimensions
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-create2D
-public static Range create2D(Device _device,
- int _globalWidth,
- int _globalHeight,
- int _localWidth,
- int _localHeight)
-Create a two dimensional range 0.._globalWidth x 0.._globalHeight using a group which is _localWidth x _localHeight in size.
-
- Note that for this range to be valid _globalWidth > 0 && _globalHeight >0 && _localWidth>0 && _localHeight>0 && _localWidth*_localHeight < MAX_GROUP_SIZE && _globalWidth%_localWidth==0 && _globalHeight%_localHeight==0.
-Parameters: _globalWidth - the overall range we wish to process
-Returns:
-
-
-
-
-
-
-
-
-
-
-
-create2D
-public static Range create2D(int _globalWidth,
- int _globalHeight,
- int _localWidth,
- int _localHeight)
-
-
-
-
-
-
-
-
-
-
-
-create3D
-public static Range create3D(Device _device,
- int _globalWidth,
- int _globalHeight,
- int _globalDepth,
- int _localWidth,
- int _localHeight,
- int _localDepth)
-Create a two dimensional range
0.._globalWidth * 0.._globalHeight *0../_globalDepth
- in groups defined by
localWidth *
localHeight *
localDepth.
-
- Note that for this range to be valid _globalWidth > 0 && _globalHeight >0 _globalDepth >0 && _localWidth>0 && _localHeight>0 && _localDepth>0 && _localWidth*_localHeight*_localDepth < MAX_GROUP_SIZE && _globalWidth%_localWidth==0 && _globalHeight%_localHeight==0 && _globalDepth%_localDepth==0.
-Parameters: _globalWidth - the width of the 3D grid we wish to process_globalHieght - the height of the 3D grid we wish to process_globalDepth - the depth of the 3D grid we wish to process_localWidth - the width of the 3D group we wish to process_localHieght - the height of the 3D group we wish to process_localDepth - the depth of the 3D group we wish to process
-Returns:
-
-
-
-
-
-
-
-create3D
-public static Range create3D(Device _device,
- int _globalWidth,
- int _globalHeight,
- int _globalDepth)
-Create a three dimensional range
0.._globalWidth * 0.._globalHeight *0../_globalDepth
- choosing suitable values for
localWidth,
localHeight and
localDepth.
-
- Note that for this range to be valid _globalWidth > 0 && _globalHeight >0 _globalDepth >0 && _localWidth>0 && _localHeight>0 && _localDepth>0 && _localWidth*_localHeight*_localDepth < MAX_GROUP_SIZE && _globalWidth%_localWidth==0 && _globalHeight%_localHeight==0 && _globalDepth%_localDepth==0.
-
-
- To determine suitable values for _localWidth,_localHeight and _lodalDepth we extract the factors for _globalWidth,_globalHeight and _globalDepth and then
- find the largest product ( <= MAX_GROUP_SIZE) with the lowest perimeter.
-
-
- For example for MAX_GROUP_SIZE of 64 we favor 4x4x4 over 1x16x16.
-Parameters: _globalWidth - the width of the 3D grid we wish to process_globalHieght - the height of the 3D grid we wish to process_globalDepth - the depth of the 3D grid we wish to process
-Returns:
-
-
-
-
-
-
-
-
-
-
-
-create3D
-public static Range create3D(int _globalWidth,
- int _globalHeight,
- int _globalDepth,
- int _localWidth,
- int _localHeight,
- int _localDepth)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-isValid
-public boolean isValid()
-Returns: the valid
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/annotation/Experimental.html b/com.amd.aparapi/doc/api/com/amd/aparapi/annotation/Experimental.html
deleted file mode 100644
index b8915808..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/annotation/Experimental.html
+++ /dev/null
@@ -1,155 +0,0 @@
-
-
-
-
-
-Experimental
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-Prev Class
-Next Class
-
-
-
-
-
-
-
-
-Summary:
-Required |
-Optional
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Prev Class
-Next Class
-
-
-
-
-
-
-
-
-Summary:
-Required |
-Optional
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/annotation/class-use/Experimental.html b/com.amd.aparapi/doc/api/com/amd/aparapi/annotation/class-use/Experimental.html
deleted file mode 100644
index cf1d3318..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/annotation/class-use/Experimental.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.annotation.Experimental
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.annotation.Experimental
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/annotation/package-frame.html b/com.amd.aparapi/doc/api/com/amd/aparapi/annotation/package-frame.html
deleted file mode 100644
index c34cc637..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/annotation/package-frame.html
+++ /dev/null
@@ -1,19 +0,0 @@
-
-
-
-
-
-com.amd.aparapi.annotation
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/annotation/package-summary.html b/com.amd.aparapi/doc/api/com/amd/aparapi/annotation/package-summary.html
deleted file mode 100644
index 810c2ad9..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/annotation/package-summary.html
+++ /dev/null
@@ -1,135 +0,0 @@
-
-
-
-
-
-com.amd.aparapi.annotation
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-Annotation Types Summary
-
-Annotation Type
-Description
-
-
-
-Experimental
-
-Used to tag experimental features (methods/fields)
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/annotation/package-tree.html b/com.amd.aparapi/doc/api/com/amd/aparapi/annotation/package-tree.html
deleted file mode 100644
index fbd61855..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/annotation/package-tree.html
+++ /dev/null
@@ -1,124 +0,0 @@
-
-
-
-
-
-com.amd.aparapi.annotation Class Hierarchy
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
Annotation Type Hierarchy
-
-com.amd.aparapi.annotation.Experimental (implements java.lang.annotation.Annotation)
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/annotation/package-use.html b/com.amd.aparapi/doc/api/com/amd/aparapi/annotation/package-use.html
deleted file mode 100644
index 3876c5f4..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/annotation/package-use.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Package com.amd.aparapi.annotation
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.annotation
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/class-use/Config.InstructionListener.html b/com.amd.aparapi/doc/api/com/amd/aparapi/class-use/Config.InstructionListener.html
deleted file mode 100644
index 67c84d97..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/class-use/Config.InstructionListener.html
+++ /dev/null
@@ -1,177 +0,0 @@
-
-
-
-
-
-Uses of Interface com.amd.aparapi.Config.InstructionListener
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/class-use/Config.html b/com.amd.aparapi/doc/api/com/amd/aparapi/class-use/Config.html
deleted file mode 100644
index f7074da1..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/class-use/Config.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.Config
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.Config
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/class-use/Kernel.Constant.html b/com.amd.aparapi/doc/api/com/amd/aparapi/class-use/Kernel.Constant.html
deleted file mode 100644
index fb3bb77b..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/class-use/Kernel.Constant.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.Kernel.Constant
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.Kernel.Constant
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/class-use/Kernel.EXECUTION_MODE.html b/com.amd.aparapi/doc/api/com/amd/aparapi/class-use/Kernel.EXECUTION_MODE.html
deleted file mode 100644
index dbf9fa19..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/class-use/Kernel.EXECUTION_MODE.html
+++ /dev/null
@@ -1,191 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.Kernel.EXECUTION_MODE
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/class-use/Kernel.Entry.html b/com.amd.aparapi/doc/api/com/amd/aparapi/class-use/Kernel.Entry.html
deleted file mode 100644
index d22865d9..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/class-use/Kernel.Entry.html
+++ /dev/null
@@ -1,182 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.Kernel.Entry
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/class-use/Kernel.KernelState.html b/com.amd.aparapi/doc/api/com/amd/aparapi/class-use/Kernel.KernelState.html
deleted file mode 100644
index f9056c86..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/class-use/Kernel.KernelState.html
+++ /dev/null
@@ -1,155 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.Kernel.KernelState
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/class-use/Kernel.Local.html b/com.amd.aparapi/doc/api/com/amd/aparapi/class-use/Kernel.Local.html
deleted file mode 100644
index ebff66a6..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/class-use/Kernel.Local.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.Kernel.Local
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.Kernel.Local
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/class-use/Kernel.html b/com.amd.aparapi/doc/api/com/amd/aparapi/class-use/Kernel.html
deleted file mode 100644
index 68c0ed2d..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/class-use/Kernel.html
+++ /dev/null
@@ -1,336 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.Kernel
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Methods in com.amd.aparapi that return Kernel
-
-Modifier and Type
-Method and Description
-
-
-
-Kernel
-Kernel. clone ()
-When using a Java Thread Pool Aparapi uses clone to copy the initial instance to each thread.
-
-
-
-Kernel
-Kernel. execute (int _range)
-Start execution of _range kernels.
-
-
-
-Kernel
-Kernel. execute (int _range,
- int _passes)
-Start execution of _passes iterations over the _range of kernels.
-
-
-
-Kernel
-Kernel. execute (Kernel.Entry _entry,
- Range _range)
-Start execution of globalSize kernels for the given entrypoint.
-
-
-
-Kernel
-Kernel. execute (Range _range)
-Start execution of _range kernels.
-
-
-
-Kernel
-Kernel.Entry. execute (Range _range)
-
-
-Kernel
-Kernel. execute (Range _range,
- int _passes)
-Start execution of _passes iterations of _range kernels.
-
-
-
-Kernel
-Kernel. execute (java.lang.String _entrypoint,
- Range _range)
-Start execution of globalSize kernels for the given entrypoint.
-
-
-
-Kernel
-Kernel. execute (java.lang.String _entrypoint,
- Range _range,
- int _passes)
-Start execution of globalSize kernels for the given entrypoint.
-
-
-
-Kernel
-Kernel. get (boolean[] array)
-Enqueue a request to return this buffer from the GPU.
-
-
-
-Kernel
-Kernel. get (byte[] array)
-Enqueue a request to return this buffer from the GPU.
-
-
-
-Kernel
-Kernel. get (char[] array)
-Enqueue a request to return this buffer from the GPU.
-
-
-
-Kernel
-Kernel. get (double[] array)
-Enqueue a request to return this buffer from the GPU.
-
-
-
-Kernel
-Kernel. get (float[] array)
-Enqueue a request to return this buffer from the GPU.
-
-
-
-Kernel
-Kernel. get (int[] array)
-Enqueue a request to return this buffer from the GPU.
-
-
-
-Kernel
-Kernel. get (long[] array)
-Enqueue a request to return this buffer from the GPU.
-
-
-
-Kernel
-Kernel. put (boolean[] array)
-Tag this array so that it is explicitly enqueued before the kernel is executed
-
-
-
-Kernel
-Kernel. put (byte[] array)
-Tag this array so that it is explicitly enqueued before the kernel is executed
-
-
-
-Kernel
-Kernel. put (char[] array)
-Tag this array so that it is explicitly enqueued before the kernel is executed
-
-
-
-Kernel
-Kernel. put (double[] array)
-Tag this array so that it is explicitly enqueued before the kernel is executed
-
-
-
-Kernel
-Kernel. put (float[] array)
-Tag this array so that it is explicitly enqueued before the kernel is executed
-
-
-
-Kernel
-Kernel. put (int[] array)
-Tag this array so that it is explicitly enqueued before the kernel is executed
-
-
-
-Kernel
-Kernel. put (long[] array)
-Tag this array so that it is explicitly enqueued before the kernel is executed
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/class-use/ProfileInfo.html b/com.amd.aparapi/doc/api/com/amd/aparapi/class-use/ProfileInfo.html
deleted file mode 100644
index 91f36d0d..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/class-use/ProfileInfo.html
+++ /dev/null
@@ -1,179 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.ProfileInfo
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Methods in com.amd.aparapi that return types with arguments of type ProfileInfo
-
-Modifier and Type
-Method and Description
-
-
-
-java.util.List<ProfileInfo >
-Kernel. getProfileInfo ()
-Get the profiling information from the last successful call to Kernel.execute().
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/class-use/Range.html b/com.amd.aparapi/doc/api/com/amd/aparapi/class-use/Range.html
deleted file mode 100644
index 38143631..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/class-use/Range.html
+++ /dev/null
@@ -1,383 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.Range
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Methods in com.amd.aparapi that return Range
-
-Modifier and Type
-Method and Description
-
-
-
-static Range
-Range. create (Device _device,
- int _globalWidth)
-Create a one dimensional range 0.._globalWidth with an undefined group size.
-
-
-
-static Range
-Range. create (Device _device,
- int _globalWidth,
- int _localWidth)
-Create a one dimensional range 0.._globalWidth which is processed in groups of size _localWidth.
-
-
-
-static Range
-Range. create (int _globalWidth)
-
-
-static Range
-Range. create (int _globalWidth,
- int _localWidth)
-
-
-static Range
-Range. create2D (Device _device,
- int _globalWidth,
- int _globalHeight)
-Create a two dimensional range 0.._globalWidth * 0.._globalHeight choosing suitable values for localWidth and localHeight.
-
-
-
-static Range
-Range. create2D (Device _device,
- int _globalWidth,
- int _globalHeight,
- int _localWidth,
- int _localHeight)
-Create a two dimensional range 0.._globalWidth x 0.._globalHeight using a group which is _localWidth x _localHeight in size.
-
-
-
-static Range
-Range. create2D (int _globalWidth,
- int _globalHeight)
-
-
-static Range
-Range. create2D (int _globalWidth,
- int _globalHeight,
- int _localWidth,
- int _localHeight)
-
-
-static Range
-Range. create3D (Device _device,
- int _globalWidth,
- int _globalHeight,
- int _globalDepth)
-Create a three dimensional range 0.._globalWidth * 0.._globalHeight *0../_globalDepth
- choosing suitable values for localWidth, localHeight and localDepth.
-
-
-
-static Range
-Range. create3D (Device _device,
- int _globalWidth,
- int _globalHeight,
- int _globalDepth,
- int _localWidth,
- int _localHeight,
- int _localDepth)
-Create a two dimensional range 0.._globalWidth * 0.._globalHeight *0../_globalDepth
- in groups defined by localWidth * localHeight * localDepth.
-
-
-
-static Range
-Range. create3D (int _globalWidth,
- int _globalHeight,
- int _globalDepth)
-
-
-static Range
-Range. create3D (int _globalWidth,
- int _globalHeight,
- int _globalDepth,
- int _localWidth,
- int _localHeight,
- int _localDepth)
-
-
-Range
-Kernel.KernelState. getRange ()
-
-
-
-
-Methods in com.amd.aparapi with parameters of type Range
-
-Modifier and Type
-Method and Description
-
-
-
-Kernel
-Kernel. execute (Kernel.Entry _entry,
- Range _range)
-Start execution of globalSize kernels for the given entrypoint.
-
-
-
-Kernel
-Kernel. execute (Range _range)
-Start execution of _range kernels.
-
-
-
-Kernel
-Kernel.Entry. execute (Range _range)
-
-
-Kernel
-Kernel. execute (Range _range,
- int _passes)
-Start execution of _passes iterations of _range kernels.
-
-
-
-Kernel
-Kernel. execute (java.lang.String _entrypoint,
- Range _range)
-Start execution of globalSize kernels for the given entrypoint.
-
-
-
-Kernel
-Kernel. execute (java.lang.String _entrypoint,
- Range _range,
- int _passes)
-Start execution of globalSize kernels for the given entrypoint.
-
-
-
-void
-Kernel.KernelState. setRange (Range range)
-
-
-
-
-
-
-
-
-
-Methods in com.amd.aparapi.device that return Range
-
-Modifier and Type
-Method and Description
-
-
-
-Range
-Device. createRange (int _globalWidth)
-
-
-Range
-Device. createRange (int _globalWidth,
- int _localWidth)
-
-
-Range
-Device. createRange2D (int _globalWidth,
- int _globalHeight)
-
-
-Range
-Device. createRange2D (int _globalWidth,
- int _globalHeight,
- int _localWidth,
- int _localHeight)
-
-
-Range
-Device. createRange3D (int _globalWidth,
- int _globalHeight,
- int _globalDepth)
-
-
-Range
-Device. createRange3D (int _globalWidth,
- int _globalHeight,
- int _globalDepth,
- int _localWidth,
- int _localHeight,
- int _localDepth)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/device/Device.TYPE.html b/com.amd.aparapi/doc/api/com/amd/aparapi/device/Device.TYPE.html
deleted file mode 100644
index 20c1d7bd..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/device/Device.TYPE.html
+++ /dev/null
@@ -1,361 +0,0 @@
-
-
-
-
-
-Device.TYPE
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-java.lang.Enum<Device.TYPE >
-
-
-com.amd.aparapi.device.Device.TYPE
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Enum Constant Summary
-
-Enum Constants
-
-Enum Constant and Description
-
-
-CPU
-
-
-GPU
-
-
-JTP
-
-
-SEQ
-
-
-UNKNOWN
-
-
-
-
-
-
-
-
-
-Method Summary
-
-Methods
-
-Modifier and Type
-Method and Description
-
-
-static Device.TYPE
-valueOf (java.lang.String name)
-Returns the enum constant of this type with the specified name.
-
-
-
-static Device.TYPE []
-values ()
-Returns an array containing the constants of this enum type, in
-the order they are declared.
-
-
-
-
-
-
-
-Methods inherited from class java.lang.Enum
-compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
-
-
-
-
-
-Methods inherited from class java.lang.Object
-getClass, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-
-
-
-
-valueOf
-public static Device.TYPE valueOf(java.lang.String name)
-Returns the enum constant of this type with the specified name.
-The string must match exactly an identifier used to declare an
-enum constant in this type. (Extraneous whitespace characters are
-not permitted.)
-Parameters: name - the name of the enum constant to be returned.
-Returns: the enum constant with the specified name
-Throws:
-java.lang.IllegalArgumentException - if this enum type has no constant
-with the specified name
-java.lang.NullPointerException - if the argument is null
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/device/Device.html b/com.amd.aparapi/doc/api/com/amd/aparapi/device/Device.html
deleted file mode 100644
index 3e886456..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/device/Device.html
+++ /dev/null
@@ -1,524 +0,0 @@
-
-
-
-
-
-Device
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-com.amd.aparapi.device.Device
-
-
-
-
-
-
-
-
-
-
-
-
-Nested Class Summary
-
-Nested Classes
-
-Modifier and Type
-Class and Description
-
-
-static class
-Device.TYPE
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-Constructors
-
-Constructor and Description
-
-
-Device ()
-
-
-
-
-
-
-
-
-
-Method Summary
-
-Methods
-
-Modifier and Type
-Method and Description
-
-
-static Device
-best ()
-
-
-Range
-createRange (int _globalWidth)
-
-
-Range
-createRange (int _globalWidth,
- int _localWidth)
-
-
-Range
-createRange2D (int _globalWidth,
- int _globalHeight)
-
-
-Range
-createRange2D (int _globalWidth,
- int _globalHeight,
- int _localWidth,
- int _localHeight)
-
-
-Range
-createRange3D (int _globalWidth,
- int _globalHeight,
- int _globalDepth)
-
-
-Range
-createRange3D (int _globalWidth,
- int _globalHeight,
- int _globalDepth,
- int _localWidth,
- int _localHeight,
- int _localDepth)
-
-
-static Device
-first (Device.TYPE _type)
-
-
-static Device
-firstCPU ()
-
-
-static Device
-firstGPU ()
-
-
-int
-getMaxWorkGroupSize ()
-
-
-int
-getMaxWorkItemDimensions ()
-
-
-int[]
-getMaxWorkItemSize ()
-
-
-Device.TYPE
-getType ()
-
-
-void
-setMaxWorkGroupSize (int _maxWorkGroupSize)
-
-
-void
-setMaxWorkItemDimensions (int _maxWorkItemDimensions)
-
-
-void
-setMaxWorkItemSize (int[] maxWorkItemSize)
-
-
-void
-setType (Device.TYPE type)
-
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-Device
-public Device()
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-createRange2D
-public Range createRange2D(int _globalWidth,
- int _globalHeight,
- int _localWidth,
- int _localHeight)
-
-
-
-
-
-
-
-
-
-
-
-createRange3D
-public Range createRange3D(int _globalWidth,
- int _globalHeight,
- int _globalDepth,
- int _localWidth,
- int _localHeight,
- int _localDepth)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/device/JavaDevice.html b/com.amd.aparapi/doc/api/com/amd/aparapi/device/JavaDevice.html
deleted file mode 100644
index c06c8d3b..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/device/JavaDevice.html
+++ /dev/null
@@ -1,255 +0,0 @@
-
-
-
-
-
-JavaDevice
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Nested Class Summary
-
-
-
-
-
-
-
-
-Constructor Summary
-
-Constructors
-
-Constructor and Description
-
-
-JavaDevice ()
-
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-Methods inherited from class com.amd.aparapi.device.Device
-best , createRange , createRange , createRange2D , createRange2D , createRange3D , createRange3D , first , firstCPU , firstGPU , getMaxWorkGroupSize , getMaxWorkItemDimensions , getMaxWorkItemSize , getType , setMaxWorkGroupSize , setMaxWorkItemDimensions , setMaxWorkItemSize , setType
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-JavaDevice
-public JavaDevice()
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/device/OpenCLDevice.DeviceComparitor.html b/com.amd.aparapi/doc/api/com/amd/aparapi/device/OpenCLDevice.DeviceComparitor.html
deleted file mode 100644
index 61badcf5..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/device/OpenCLDevice.DeviceComparitor.html
+++ /dev/null
@@ -1,212 +0,0 @@
-
-
-
-
-
-OpenCLDevice.DeviceComparitor
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-Summary:
-Nested |
-Field |
-Constr |
-Method
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Summary:
-Nested |
-Field |
-Constr |
-Method
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/device/OpenCLDevice.DeviceSelector.html b/com.amd.aparapi/doc/api/com/amd/aparapi/device/OpenCLDevice.DeviceSelector.html
deleted file mode 100644
index 655d10da..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/device/OpenCLDevice.DeviceSelector.html
+++ /dev/null
@@ -1,210 +0,0 @@
-
-
-
-
-
-OpenCLDevice.DeviceSelector
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-Summary:
-Nested |
-Field |
-Constr |
-Method
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Summary:
-Nested |
-Field |
-Constr |
-Method
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/device/OpenCLDevice.OpenCLInvocationHandler.html b/com.amd.aparapi/doc/api/com/amd/aparapi/device/OpenCLDevice.OpenCLInvocationHandler.html
deleted file mode 100644
index 89c79f2d..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/device/OpenCLDevice.OpenCLInvocationHandler.html
+++ /dev/null
@@ -1,277 +0,0 @@
-
-
-
-
-
-OpenCLDevice.OpenCLInvocationHandler
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-com.amd.aparapi.device.OpenCLDevice.OpenCLInvocationHandler<T>
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-Methods
-
-Modifier and Type
-Method and Description
-
-
-java.lang.Object
-invoke (java.lang.Object proxy,
- java.lang.reflect.Method method,
- java.lang.Object[] args)
-
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/device/OpenCLDevice.html b/com.amd.aparapi/doc/api/com/amd/aparapi/device/OpenCLDevice.html
deleted file mode 100644
index d2fd95ff..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/device/OpenCLDevice.html
+++ /dev/null
@@ -1,526 +0,0 @@
-
-
-
-
-
-OpenCLDevice
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Nested Class Summary
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.device.Device
-best , createRange , createRange , createRange2D , createRange2D , createRange3D , createRange3D , first , firstCPU , firstGPU , getMaxWorkGroupSize , getMaxWorkItemDimensions , getMaxWorkItemSize , getType , setMaxWorkGroupSize , setMaxWorkItemDimensions , setMaxWorkItemSize , setType
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/device/class-use/Device.TYPE.html b/com.amd.aparapi/doc/api/com/amd/aparapi/device/class-use/Device.TYPE.html
deleted file mode 100644
index c7413a0e..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/device/class-use/Device.TYPE.html
+++ /dev/null
@@ -1,200 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.device.Device.TYPE
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/device/class-use/Device.html b/com.amd.aparapi/doc/api/com/amd/aparapi/device/class-use/Device.html
deleted file mode 100644
index 080ffbc6..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/device/class-use/Device.html
+++ /dev/null
@@ -1,285 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.device.Device
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Methods in com.amd.aparapi with parameters of type Device
-
-Modifier and Type
-Method and Description
-
-
-
-static Range
-Range. create (Device _device,
- int _globalWidth)
-Create a one dimensional range 0.._globalWidth with an undefined group size.
-
-
-
-static Range
-Range. create (Device _device,
- int _globalWidth,
- int _localWidth)
-Create a one dimensional range 0.._globalWidth which is processed in groups of size _localWidth.
-
-
-
-static Range
-Range. create2D (Device _device,
- int _globalWidth,
- int _globalHeight)
-Create a two dimensional range 0.._globalWidth * 0.._globalHeight choosing suitable values for localWidth and localHeight.
-
-
-
-static Range
-Range. create2D (Device _device,
- int _globalWidth,
- int _globalHeight,
- int _localWidth,
- int _localHeight)
-Create a two dimensional range 0.._globalWidth x 0.._globalHeight using a group which is _localWidth x _localHeight in size.
-
-
-
-static Range
-Range. create3D (Device _device,
- int _globalWidth,
- int _globalHeight,
- int _globalDepth)
-Create a three dimensional range 0.._globalWidth * 0.._globalHeight *0../_globalDepth
- choosing suitable values for localWidth, localHeight and localDepth.
-
-
-
-static Range
-Range. create3D (Device _device,
- int _globalWidth,
- int _globalHeight,
- int _globalDepth,
- int _localWidth,
- int _localHeight,
- int _localDepth)
-Create a two dimensional range 0.._globalWidth * 0.._globalHeight *0../_globalDepth
- in groups defined by localWidth * localHeight * localDepth.
-
-
-
-
-
-Constructors in com.amd.aparapi with parameters of type Device
-
-Constructor and Description
-
-
-
-Range (Device _device,
- int _dims)
-Minimal constructor
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/device/class-use/JavaDevice.html b/com.amd.aparapi/doc/api/com/amd/aparapi/device/class-use/JavaDevice.html
deleted file mode 100644
index e20cc0b5..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/device/class-use/JavaDevice.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.device.JavaDevice
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.device.JavaDevice
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/device/class-use/OpenCLDevice.DeviceComparitor.html b/com.amd.aparapi/doc/api/com/amd/aparapi/device/class-use/OpenCLDevice.DeviceComparitor.html
deleted file mode 100644
index 96b14745..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/device/class-use/OpenCLDevice.DeviceComparitor.html
+++ /dev/null
@@ -1,155 +0,0 @@
-
-
-
-
-
-Uses of Interface com.amd.aparapi.device.OpenCLDevice.DeviceComparitor
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/device/class-use/OpenCLDevice.DeviceSelector.html b/com.amd.aparapi/doc/api/com/amd/aparapi/device/class-use/OpenCLDevice.DeviceSelector.html
deleted file mode 100644
index ae4966bb..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/device/class-use/OpenCLDevice.DeviceSelector.html
+++ /dev/null
@@ -1,155 +0,0 @@
-
-
-
-
-
-Uses of Interface com.amd.aparapi.device.OpenCLDevice.DeviceSelector
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/device/class-use/OpenCLDevice.OpenCLInvocationHandler.html b/com.amd.aparapi/doc/api/com/amd/aparapi/device/class-use/OpenCLDevice.OpenCLInvocationHandler.html
deleted file mode 100644
index a6040515..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/device/class-use/OpenCLDevice.OpenCLInvocationHandler.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.device.OpenCLDevice.OpenCLInvocationHandler
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.device.OpenCLDevice.OpenCLInvocationHandler
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/device/class-use/OpenCLDevice.html b/com.amd.aparapi/doc/api/com/amd/aparapi/device/class-use/OpenCLDevice.html
deleted file mode 100644
index 2075c37e..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/device/class-use/OpenCLDevice.html
+++ /dev/null
@@ -1,261 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.device.OpenCLDevice
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/device/package-frame.html b/com.amd.aparapi/doc/api/com/amd/aparapi/device/package-frame.html
deleted file mode 100644
index 5b1f143a..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/device/package-frame.html
+++ /dev/null
@@ -1,31 +0,0 @@
-
-
-
-
-
-com.amd.aparapi.device
-
-
-
-
-
-
-
Interfaces
-
-
Classes
-
-
Enums
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/device/package-summary.html b/com.amd.aparapi/doc/api/com/amd/aparapi/device/package-summary.html
deleted file mode 100644
index 9b971ac8..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/device/package-summary.html
+++ /dev/null
@@ -1,179 +0,0 @@
-
-
-
-
-
-com.amd.aparapi.device
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Enum Summary
-
-Enum
-Description
-
-
-
-Device.TYPE
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/device/package-tree.html b/com.amd.aparapi/doc/api/com/amd/aparapi/device/package-tree.html
deleted file mode 100644
index 450bd07a..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/device/package-tree.html
+++ /dev/null
@@ -1,151 +0,0 @@
-
-
-
-
-
-com.amd.aparapi.device Class Hierarchy
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
Class Hierarchy
-
-
Interface Hierarchy
-
-
Enum Hierarchy
-
-java.lang.Object
-
-java.lang.Enum<E> (implements java.lang.Comparable<T>, java.io.Serializable)
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/device/package-use.html b/com.amd.aparapi/doc/api/com/amd/aparapi/device/package-use.html
deleted file mode 100644
index 6914844e..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/device/package-use.html
+++ /dev/null
@@ -1,198 +0,0 @@
-
-
-
-
-
-Uses of Package com.amd.aparapi.device
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/exception/DeprecatedException.html b/com.amd.aparapi/doc/api/com/amd/aparapi/exception/DeprecatedException.html
deleted file mode 100644
index bd38abc6..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/exception/DeprecatedException.html
+++ /dev/null
@@ -1,255 +0,0 @@
-
-
-
-
-
-DeprecatedException
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-Prev Class
-Next Class
-
-
-
-
-
-
-
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-java.lang.Throwable
-
-
-java.lang.Exception
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-Constructors
-
-Constructor and Description
-
-
-DeprecatedException (java.lang.String msg)
-
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-Methods inherited from class java.lang.Throwable
-addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Prev Class
-Next Class
-
-
-
-
-
-
-
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/exception/class-use/DeprecatedException.html b/com.amd.aparapi/doc/api/com/amd/aparapi/exception/class-use/DeprecatedException.html
deleted file mode 100644
index 673348fe..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/exception/class-use/DeprecatedException.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.exception.DeprecatedException
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.exception.DeprecatedException
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/exception/package-frame.html b/com.amd.aparapi/doc/api/com/amd/aparapi/exception/package-frame.html
deleted file mode 100644
index 75fcb7d4..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/exception/package-frame.html
+++ /dev/null
@@ -1,19 +0,0 @@
-
-
-
-
-
-com.amd.aparapi.exception
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/exception/package-summary.html b/com.amd.aparapi/doc/api/com/amd/aparapi/exception/package-summary.html
deleted file mode 100644
index 8669461b..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/exception/package-summary.html
+++ /dev/null
@@ -1,133 +0,0 @@
-
-
-
-
-
-com.amd.aparapi.exception
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/exception/package-tree.html b/com.amd.aparapi/doc/api/com/amd/aparapi/exception/package-tree.html
deleted file mode 100644
index 59fe9c6c..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/exception/package-tree.html
+++ /dev/null
@@ -1,140 +0,0 @@
-
-
-
-
-
-com.amd.aparapi.exception Class Hierarchy
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
Class Hierarchy
-
-java.lang.Object
-
-java.lang.Throwable (implements java.io.Serializable)
-
-java.lang.Exception
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/exception/package-use.html b/com.amd.aparapi/doc/api/com/amd/aparapi/exception/package-use.html
deleted file mode 100644
index 1645c55a..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/exception/package-use.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Package com.amd.aparapi.exception
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.exception
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/annotation/DocMe.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/annotation/DocMe.html
deleted file mode 100644
index ea733808..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/annotation/DocMe.html
+++ /dev/null
@@ -1,153 +0,0 @@
-
-
-
-
-
-DocMe
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-Summary:
-Required |
-Optional
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Summary:
-Required |
-Optional
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/annotation/RemoveMe.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/annotation/RemoveMe.html
deleted file mode 100644
index 5a2e28c6..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/annotation/RemoveMe.html
+++ /dev/null
@@ -1,153 +0,0 @@
-
-
-
-
-
-RemoveMe
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-Summary:
-Required |
-Optional
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Summary:
-Required |
-Optional
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/annotation/Unused.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/annotation/Unused.html
deleted file mode 100644
index 55388e64..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/annotation/Unused.html
+++ /dev/null
@@ -1,155 +0,0 @@
-
-
-
-
-
-Unused
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-Summary:
-Required |
-Optional
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-public @interface Unused
-Used to tag unused features (methods/fields)
-
- Do not rely on anything tagged as unused, it will probably be retracted/refactored
-Author:
- gfrost
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Summary:
-Required |
-Optional
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/annotation/UsedByJNICode.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/annotation/UsedByJNICode.html
deleted file mode 100644
index 84d4a336..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/annotation/UsedByJNICode.html
+++ /dev/null
@@ -1,151 +0,0 @@
-
-
-
-
-
-UsedByJNICode
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-Summary:
-Required |
-Optional
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Summary:
-Required |
-Optional
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/annotation/class-use/DocMe.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/annotation/class-use/DocMe.html
deleted file mode 100644
index 5fdd71cf..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/annotation/class-use/DocMe.html
+++ /dev/null
@@ -1,155 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.annotation.DocMe
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/annotation/class-use/RemoveMe.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/annotation/class-use/RemoveMe.html
deleted file mode 100644
index 170fffce..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/annotation/class-use/RemoveMe.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.annotation.RemoveMe
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.annotation.RemoveMe
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/annotation/class-use/Unused.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/annotation/class-use/Unused.html
deleted file mode 100644
index 4f45de45..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/annotation/class-use/Unused.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.annotation.Unused
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.annotation.Unused
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/annotation/class-use/UsedByJNICode.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/annotation/class-use/UsedByJNICode.html
deleted file mode 100644
index af3184da..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/annotation/class-use/UsedByJNICode.html
+++ /dev/null
@@ -1,177 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.annotation.UsedByJNICode
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Fields in com.amd.aparapi.internal.jni with annotations of type UsedByJNICode
-
-Modifier and Type
-Field and Description
-
-
-
-static boolean
-ConfigJNI. enableProfiling
-Allows the user to turn on OpenCL profiling for the JNI/OpenCL layer.
-
-
-
-static boolean
-ConfigJNI. enableProfilingCSV
-Allows the user to turn on OpenCL profiling for the JNI/OpenCL layer, this information will be written to CSV file
-
- Usage -Dcom.amd.aparapi.enableProfiling={true|false}
-
-
-
-static boolean
-ConfigJNI. enableVerboseJNI
-Allows the user to request that verbose JNI messages be dumped to stderr.
-
-
-
-static boolean
-ConfigJNI. enableVerboseJNIOpenCLResourceTracking
-Allows the user to request tracking of opencl resources.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/annotation/package-frame.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/annotation/package-frame.html
deleted file mode 100644
index dcf77141..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/annotation/package-frame.html
+++ /dev/null
@@ -1,22 +0,0 @@
-
-
-
-
-
-com.amd.aparapi.internal.annotation
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/annotation/package-summary.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/annotation/package-summary.html
deleted file mode 100644
index 75d08419..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/annotation/package-summary.html
+++ /dev/null
@@ -1,153 +0,0 @@
-
-
-
-
-
-com.amd.aparapi.internal.annotation
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-Annotation Types Summary
-
-Annotation Type
-Description
-
-
-
-DocMe
-
-Use this annotation to tag stuff that needs Java Doc added
-
-
-
-RemoveMe
-
-Use this annotation to tag fields that we think need to be removed (method/field/var)
-
-
-
-Unused
-
-Used to tag unused features (methods/fields)
-
-
-
-UsedByJNICode
-
-Be careful changing the name/type of this field as it is referenced from JNI code.
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/annotation/package-tree.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/annotation/package-tree.html
deleted file mode 100644
index 6e236998..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/annotation/package-tree.html
+++ /dev/null
@@ -1,127 +0,0 @@
-
-
-
-
-
-com.amd.aparapi.internal.annotation Class Hierarchy
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
Annotation Type Hierarchy
-
-com.amd.aparapi.internal.annotation.UsedByJNICode (implements java.lang.annotation.Annotation)
-com.amd.aparapi.internal.annotation.Unused (implements java.lang.annotation.Annotation)
-com.amd.aparapi.internal.annotation.RemoveMe (implements java.lang.annotation.Annotation)
-com.amd.aparapi.internal.annotation.DocMe (implements java.lang.annotation.Annotation)
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/annotation/package-use.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/annotation/package-use.html
deleted file mode 100644
index 56f9c2ef..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/annotation/package-use.html
+++ /dev/null
@@ -1,171 +0,0 @@
-
-
-
-
-
-Uses of Package com.amd.aparapi.internal.annotation
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/exception/AparapiException.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/exception/AparapiException.html
deleted file mode 100644
index eff55549..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/exception/AparapiException.html
+++ /dev/null
@@ -1,275 +0,0 @@
-
-
-
-
-
-AparapiException
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-java.lang.Throwable
-
-
-java.lang.Exception
-
-
-com.amd.aparapi.internal.exception.AparapiException
-
-
-
-
-
-
-
-
-
-
-
-All Implemented Interfaces:
-java.io.Serializable
-
-
-Direct Known Subclasses:
-ClassParseException , CodeGenException , DeprecatedException , RangeException
-
-
-
-public class AparapiException
-extends java.lang.Exception
-We use AparapiException class and subclasses to wrap other
- Exception classes, mainly to allow differentiation between Aparapi specific issues at runtime.
-
- The class parser for example will throw a specific ClassParseException if any Aparapi unfriendly
- constructs are found. This allows us to fail fast during classfile parsing.
-Author:
- gfrost
-See Also: ClassParseException ,
-CodeGenException ,
-Serialized Form
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-Methods inherited from class java.lang.Throwable
-addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/exception/ClassParseException.TYPE.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/exception/ClassParseException.TYPE.html
deleted file mode 100644
index 4fd2a725..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/exception/ClassParseException.TYPE.html
+++ /dev/null
@@ -1,698 +0,0 @@
-
-
-
-
-
-ClassParseException.TYPE
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Enum Constant Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-Methods
-
-Modifier and Type
-Method and Description
-
-
-java.lang.String
-getDescription ()
-
-
-static ClassParseException.TYPE
-valueOf (java.lang.String name)
-Returns the enum constant of this type with the specified name.
-
-
-
-static ClassParseException.TYPE []
-values ()
-Returns an array containing the constants of this enum type, in
-the order they are declared.
-
-
-
-
-
-
-
-Methods inherited from class java.lang.Enum
-compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
-
-
-
-
-
-Methods inherited from class java.lang.Object
-getClass, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-
-
-
-
-valueOf
-public static ClassParseException.TYPE valueOf(java.lang.String name)
-Returns the enum constant of this type with the specified name.
-The string must match exactly an identifier used to declare an
-enum constant in this type. (Extraneous whitespace characters are
-not permitted.)
-Parameters: name - the name of the enum constant to be returned.
-Returns: the enum constant with the specified name
-Throws:
-java.lang.IllegalArgumentException - if this enum type has no constant
-with the specified name
-java.lang.NullPointerException - if the argument is null
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/exception/ClassParseException.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/exception/ClassParseException.html
deleted file mode 100644
index 7cadf31c..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/exception/ClassParseException.html
+++ /dev/null
@@ -1,360 +0,0 @@
-
-
-
-
-
-ClassParseException
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-java.lang.Throwable
-
-
-java.lang.Exception
-
-
-
-
-
-
-
-
-
-
-
-
-All Implemented Interfaces:
-java.io.Serializable
-
-
-
-public class ClassParseException
-extends AparapiException
-We throw ClassParseExceptions (derived from AparapiException) if we encounter any Aparapi unfriendly
- constructs. This allows us to fail fast .
-Author:
- gfrost
-See Also: AparapiException ,
-Serialized Form
-
-
-
-
-
-
-
-
-
-
-
-Nested Class Summary
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-
-Methods inherited from class java.lang.Throwable
-addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/exception/CodeGenException.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/exception/CodeGenException.html
deleted file mode 100644
index aad6c017..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/exception/CodeGenException.html
+++ /dev/null
@@ -1,267 +0,0 @@
-
-
-
-
-
-CodeGenException
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-java.lang.Throwable
-
-
-java.lang.Exception
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-Methods inherited from class java.lang.Throwable
-addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/exception/RangeException.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/exception/RangeException.html
deleted file mode 100644
index 5ab1bd78..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/exception/RangeException.html
+++ /dev/null
@@ -1,255 +0,0 @@
-
-
-
-
-
-RangeException
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-java.lang.Throwable
-
-
-java.lang.Exception
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-Constructors
-
-Constructor and Description
-
-
-RangeException (java.lang.String msg)
-
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-Methods inherited from class java.lang.Throwable
-addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/exception/class-use/AparapiException.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/exception/class-use/AparapiException.html
deleted file mode 100644
index 11abbbdb..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/exception/class-use/AparapiException.html
+++ /dev/null
@@ -1,280 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.exception.AparapiException
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/exception/class-use/ClassParseException.TYPE.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/exception/class-use/ClassParseException.TYPE.html
deleted file mode 100644
index 4ea9ac16..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/exception/class-use/ClassParseException.TYPE.html
+++ /dev/null
@@ -1,187 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.exception.ClassParseException.TYPE
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/exception/class-use/ClassParseException.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/exception/class-use/ClassParseException.html
deleted file mode 100644
index 2c7bbf1a..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/exception/class-use/ClassParseException.html
+++ /dev/null
@@ -1,207 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.exception.ClassParseException
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Methods in com.amd.aparapi.internal.model that throw ClassParseException
-
-Modifier and Type
-Method and Description
-
-
-
-java.util.Map<java.lang.Integer,Instruction >
-MethodModel. createListOfInstructions ()
-Create a linked list of instructions (from pcHead to pcTail).
-
-
-
-void
-ClassModel. parse (java.lang.Class<?> _class)
-We extract the class's classloader and name and delegate to private parse method.
-
-
-
-void
-MethodModel. txFormDups (ExpressionList _expressionList,
- Instruction _instruction)
-DUP family of instructions break our stack unwind model (whereby we treat instructions like the oeprands they create/consume).
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/exception/class-use/CodeGenException.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/exception/class-use/CodeGenException.html
deleted file mode 100644
index 0011e98a..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/exception/class-use/CodeGenException.html
+++ /dev/null
@@ -1,243 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.exception.CodeGenException
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/exception/class-use/RangeException.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/exception/class-use/RangeException.html
deleted file mode 100644
index 4d032ed0..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/exception/class-use/RangeException.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.exception.RangeException
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.exception.RangeException
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/exception/package-frame.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/exception/package-frame.html
deleted file mode 100644
index 95446924..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/exception/package-frame.html
+++ /dev/null
@@ -1,26 +0,0 @@
-
-
-
-
-
-com.amd.aparapi.internal.exception
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/exception/package-summary.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/exception/package-summary.html
deleted file mode 100644
index 0a81fb3e..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/exception/package-summary.html
+++ /dev/null
@@ -1,166 +0,0 @@
-
-
-
-
-
-com.amd.aparapi.internal.exception
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-Exception Summary
-
-Exception
-Description
-
-
-
-AparapiException
-
-We use AparapiException class and subclasses to wrap other
- Exception classes, mainly to allow differentiation between Aparapi specific issues at runtime.
-
-
-
-ClassParseException
-
-We throw ClassParseExceptions (derived from AparapiException) if we encounter any Aparapi unfriendly
- constructs.
-
-
-
-CodeGenException
-
-
-
-RangeException
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/exception/package-tree.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/exception/package-tree.html
deleted file mode 100644
index 75d5b3e2..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/exception/package-tree.html
+++ /dev/null
@@ -1,154 +0,0 @@
-
-
-
-
-
-com.amd.aparapi.internal.exception Class Hierarchy
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
Class Hierarchy
-
-java.lang.Object
-
-java.lang.Throwable (implements java.io.Serializable)
-
-java.lang.Exception
-
-
-
-
-
-
-
-
Enum Hierarchy
-
-java.lang.Object
-
-java.lang.Enum<E> (implements java.lang.Comparable<T>, java.io.Serializable)
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/exception/package-use.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/exception/package-use.html
deleted file mode 100644
index 270fe52d..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/exception/package-use.html
+++ /dev/null
@@ -1,270 +0,0 @@
-
-
-
-
-
-Uses of Package com.amd.aparapi.internal.exception
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/BranchSet.CompoundLogicalExpressionNode.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/BranchSet.CompoundLogicalExpressionNode.html
deleted file mode 100644
index 8c39e6a7..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/BranchSet.CompoundLogicalExpressionNode.html
+++ /dev/null
@@ -1,361 +0,0 @@
-
-
-
-
-
-BranchSet.CompoundLogicalExpressionNode
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-isAnd
-public boolean isAnd()
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/BranchSet.LogicalExpressionNode.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/BranchSet.LogicalExpressionNode.html
deleted file mode 100644
index b398d936..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/BranchSet.LogicalExpressionNode.html
+++ /dev/null
@@ -1,360 +0,0 @@
-
-
-
-
-
-BranchSet.LogicalExpressionNode
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-com.amd.aparapi.internal.instruction.BranchSet.LogicalExpressionNode
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/BranchSet.SimpleLogicalExpressionNode.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/BranchSet.SimpleLogicalExpressionNode.html
deleted file mode 100644
index c3eb0dd7..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/BranchSet.SimpleLogicalExpressionNode.html
+++ /dev/null
@@ -1,344 +0,0 @@
-
-
-
-
-
-BranchSet.SimpleLogicalExpressionNode
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/BranchSet.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/BranchSet.html
deleted file mode 100644
index 22faced8..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/BranchSet.html
+++ /dev/null
@@ -1,423 +0,0 @@
-
-
-
-
-
-BranchSet
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-com.amd.aparapi.internal.instruction.BranchSet
-
-
-
-
-
-
-
-
-
-
-
-
-Nested Class Summary
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-BranchSet
-public BranchSet(InstructionSet.Branch _branch)
-We construct a branch set with the 'last' branch. It is assumed that all nodes prior to _branch are folded.
-
- This will walk backwards until it finds a non-branch or until it finds a branch that does not below to this set.
-Parameters: _branch -
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/ExpressionList.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/ExpressionList.html
deleted file mode 100644
index ffb28832..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/ExpressionList.html
+++ /dev/null
@@ -1,581 +0,0 @@
-
-
-
-
-
-ExpressionList
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-com.amd.aparapi.internal.instruction.ExpressionList
-
-
-
-
-
-
-
-
-public class ExpressionList
-extends java.lang.Object
-Essentially a glorified linked list of Instructions plus some additional state to allow us to transform sequences.
-
- ExpressionLists do have the notion of a parent which allows us to clone an existing parent, allow transformations
- and then possibly commit or abort the transformations at will.
-Author:
- gfrost
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-doesNotContainContinueOrBreak
-public boolean doesNotContainContinueOrBreak(Instruction _start,
- Instruction _extent)
-Determine whether the sequence of instructions from _start to _extent is free of branches which extend beyond _extent.
-
- As a side effect, if we find a possible branch it is likely a break or continue so we mark the conditional as such.
-Parameters: _start - _extent -
-Returns:
-
-
-
-
-
-
-
-
-
-
-
-unwind
-public void unwind()
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-insertBetween
-public void insertBetween(Instruction _prev,
- Instruction _next,
- Instruction _newOne)
-Insert the given instruction (_newone) between the existing entries (_prev and _next).
-Parameters: _prev - _next - _newOne -
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/Instruction.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/Instruction.html
deleted file mode 100644
index 4bcc8a00..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/Instruction.html
+++ /dev/null
@@ -1,915 +0,0 @@
-
-
-
-
-
-Instruction
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-Summary:
-Nested |
-Field |
-Constr |
-Method
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-com.amd.aparapi.internal.instruction.Instruction
-
-
-
-
-
-
-
-Direct Known Subclasses:
-InstructionSet.ArrayAccess , InstructionSet.Branch , InstructionSet.BytecodeEncodedConstant , InstructionSet.CloneInstruction , InstructionSet.CompositeInstruction , InstructionSet.DUP , InstructionSet.FieldArrayElementAssign , InstructionSet.FieldArrayElementIncrement , InstructionSet.I_ACONST_NULL , InstructionSet.I_ARRAYLENGTH , InstructionSet.I_ATHROW , InstructionSet.I_DCMPG , InstructionSet.I_DCMPL , InstructionSet.I_END , InstructionSet.I_MONITORENTER , InstructionSet.I_MONITOREXIT , InstructionSet.I_NEWARRAY , InstructionSet.I_NOP , InstructionSet.I_POP , InstructionSet.I_POP2 , InstructionSet.I_SWAP , InstructionSet.I_WIDE , InstructionSet.ImmediateConstant , InstructionSet.IncrementInstruction , InstructionSet.Index , InstructionSet.InlineAssignInstruction , InstructionSet.MultiAssignInstruction , InstructionSet.OperatorInstruction , InstructionSet.Return
-
-
-
-public abstract class Instruction
-extends java.lang.Object
-Initially represents a single Java bytecode instruction.
-
- Instructions for each bytecode are created when the bytecode is first scanned.
-
- Each Instruction will contain a pc (program counter) offset from the beginning of the sequence of bytecode and the length will be determined by the information gleaned from InstructionSet.BYTECODE.
-Author:
- gfrost
-
-
-
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Summary:
-Nested |
-Field |
-Constr |
-Method
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionPattern.AssignableInstructionMatcher.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionPattern.AssignableInstructionMatcher.html
deleted file mode 100644
index ed84f407..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionPattern.AssignableInstructionMatcher.html
+++ /dev/null
@@ -1,272 +0,0 @@
-
-
-
-
-
-InstructionPattern.AssignableInstructionMatcher
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionPattern.InstructionMatch.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionPattern.InstructionMatch.html
deleted file mode 100644
index afb5c38c..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionPattern.InstructionMatch.html
+++ /dev/null
@@ -1,322 +0,0 @@
-
-
-
-
-
-InstructionPattern.InstructionMatch
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-com.amd.aparapi.internal.instruction.InstructionPattern.InstructionMatch
-
-
-
-
-
-
-
-
-
-
-
-
-Field Summary
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Field Detail
-
-
-
-
-
-ok
-public final boolean ok
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionPattern.InstructionMatcher.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionPattern.InstructionMatcher.html
deleted file mode 100644
index 91ef51c7..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionPattern.InstructionMatcher.html
+++ /dev/null
@@ -1,279 +0,0 @@
-
-
-
-
-
-InstructionPattern.InstructionMatcher
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-com.amd.aparapi.internal.instruction.InstructionPattern.InstructionMatcher
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionPattern.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionPattern.html
deleted file mode 100644
index f295ed4a..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionPattern.html
+++ /dev/null
@@ -1,525 +0,0 @@
-
-
-
-
-
-InstructionPattern
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-com.amd.aparapi.internal.instruction.InstructionPattern
-
-
-
-
-
-
-
-
-
-
-
-
-Nested Class Summary
-
-
-
-
-
-
-
-
-Field Summary
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.AccessArrayElement.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.AccessArrayElement.html
deleted file mode 100644
index 168f8184..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.AccessArrayElement.html
+++ /dev/null
@@ -1,220 +0,0 @@
-
-
-
-
-
-InstructionSet.AccessArrayElement
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-Summary:
-Nested |
-Field |
-Constr |
-Method
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Summary:
-Nested |
-Field |
-Constr |
-Method
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.AccessField.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.AccessField.html
deleted file mode 100644
index a13eef18..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.AccessField.html
+++ /dev/null
@@ -1,196 +0,0 @@
-
-
-
-
-
-InstructionSet.AccessField
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-Summary:
-Nested |
-Field |
-Constr |
-Method
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Summary:
-Nested |
-Field |
-Constr |
-Method
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.AccessInstanceField.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.AccessInstanceField.html
deleted file mode 100644
index 629f23bd..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.AccessInstanceField.html
+++ /dev/null
@@ -1,226 +0,0 @@
-
-
-
-
-
-InstructionSet.AccessInstanceField
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-Summary:
-Nested |
-Field |
-Constr |
-Method
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Summary:
-Nested |
-Field |
-Constr |
-Method
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.AccessLocalVariable.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.AccessLocalVariable.html
deleted file mode 100644
index 72575281..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.AccessLocalVariable.html
+++ /dev/null
@@ -1,192 +0,0 @@
-
-
-
-
-
-InstructionSet.AccessLocalVariable
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-Summary:
-Nested |
-Field |
-Constr |
-Method
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Summary:
-Nested |
-Field |
-Constr |
-Method
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.ArrayAccess.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.ArrayAccess.html
deleted file mode 100644
index edc3eb97..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.ArrayAccess.html
+++ /dev/null
@@ -1,295 +0,0 @@
-
-
-
-
-
-InstructionSet.ArrayAccess
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.AssignToArrayElement.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.AssignToArrayElement.html
deleted file mode 100644
index d546f7c6..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.AssignToArrayElement.html
+++ /dev/null
@@ -1,254 +0,0 @@
-
-
-
-
-
-InstructionSet.AssignToArrayElement
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-Summary:
-Nested |
-Field |
-Constr |
-Method
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Summary:
-Nested |
-Field |
-Constr |
-Method
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.AssignToField.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.AssignToField.html
deleted file mode 100644
index eea98da2..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.AssignToField.html
+++ /dev/null
@@ -1,230 +0,0 @@
-
-
-
-
-
-InstructionSet.AssignToField
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-Summary:
-Nested |
-Field |
-Constr |
-Method
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Summary:
-Nested |
-Field |
-Constr |
-Method
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.AssignToInstanceField.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.AssignToInstanceField.html
deleted file mode 100644
index 23c32ed5..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.AssignToInstanceField.html
+++ /dev/null
@@ -1,233 +0,0 @@
-
-
-
-
-
-InstructionSet.AssignToInstanceField
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-Summary:
-Nested |
-Field |
-Constr |
-Method
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Summary:
-Nested |
-Field |
-Constr |
-Method
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.AssignToLocalVariable.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.AssignToLocalVariable.html
deleted file mode 100644
index efa41ac3..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.AssignToLocalVariable.html
+++ /dev/null
@@ -1,226 +0,0 @@
-
-
-
-
-
-InstructionSet.AssignToLocalVariable
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-Summary:
-Nested |
-Field |
-Constr |
-Method
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Method Summary
-
-Methods
-
-Modifier and Type
-Method and Description
-
-
-boolean
-isDeclaration ()
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-isDeclaration
-boolean isDeclaration()
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Summary:
-Nested |
-Field |
-Constr |
-Method
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.Binary.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.Binary.html
deleted file mode 100644
index 12dabb15..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.Binary.html
+++ /dev/null
@@ -1,239 +0,0 @@
-
-
-
-
-
-InstructionSet.Binary
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-Summary:
-Nested |
-Field |
-Constr |
-Method
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Summary:
-Nested |
-Field |
-Constr |
-Method
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.BinaryOperator.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.BinaryOperator.html
deleted file mode 100644
index b2fd3621..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.BinaryOperator.html
+++ /dev/null
@@ -1,287 +0,0 @@
-
-
-
-
-
-InstructionSet.BinaryOperator
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-Summary:
-Nested |
-Field |
-Constr |
-Method
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Summary:
-Nested |
-Field |
-Constr |
-Method
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.Branch.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.Branch.html
deleted file mode 100644
index b7de9085..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.Branch.html
+++ /dev/null
@@ -1,480 +0,0 @@
-
-
-
-
-
-InstructionSet.Branch
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.Branch32.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.Branch32.html
deleted file mode 100644
index f4de09cb..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.Branch32.html
+++ /dev/null
@@ -1,271 +0,0 @@
-
-
-
-
-
-InstructionSet.Branch32
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.InstructionSet.Branch
-getAbsolute , getTarget , isBreakOrContinue , isConditional , isForward , isForwardConditional , isForwardUnconditional , isReverse , isReverseConditional , isReverseUnconditional , isUnconditional , retarget , setBreakOrContinue , setTarget , unhook
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.ByteCode.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.ByteCode.html
deleted file mode 100644
index 3fcf2948..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.ByteCode.html
+++ /dev/null
@@ -1,3701 +0,0 @@
-
-
-
-
-
-InstructionSet.ByteCode
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Enum Constant Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-
-Methods inherited from class java.lang.Enum
-compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
-
-
-
-
-
-Methods inherited from class java.lang.Object
-getClass, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-
-
-
-
-valueOf
-public static InstructionSet.ByteCode valueOf(java.lang.String name)
-Returns the enum constant of this type with the specified name.
-The string must match exactly an identifier used to declare an
-enum constant in this type. (Extraneous whitespace characters are
-not permitted.)
-Parameters: name - the name of the enum constant to be returned.
-Returns: the enum constant with the specified name
-Throws:
-java.lang.IllegalArgumentException - if this enum type has no constant
-with the specified name
-java.lang.NullPointerException - if the argument is null
-
-
-
-
-
-
-
-getCode
-public int getCode()
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.BytecodeEncodedConstant.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.BytecodeEncodedConstant.html
deleted file mode 100644
index 4b23b7f1..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.BytecodeEncodedConstant.html
+++ /dev/null
@@ -1,295 +0,0 @@
-
-
-
-
-
-InstructionSet.BytecodeEncodedConstant
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-Methods
-
-Modifier and Type
-Method and Description
-
-
-T
-getValue ()
-
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.CastOperator.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.CastOperator.html
deleted file mode 100644
index ab5c236f..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.CastOperator.html
+++ /dev/null
@@ -1,243 +0,0 @@
-
-
-
-
-
-InstructionSet.CastOperator
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-Summary:
-Nested |
-Field |
-Constr |
-Method
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Summary:
-Nested |
-Field |
-Constr |
-Method
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.CloneInstruction.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.CloneInstruction.html
deleted file mode 100644
index d7d67a66..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.CloneInstruction.html
+++ /dev/null
@@ -1,325 +0,0 @@
-
-
-
-
-
-InstructionSet.CloneInstruction
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackDelta , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.CompositeArbitraryScopeInstruction.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.CompositeArbitraryScopeInstruction.html
deleted file mode 100644
index 70c47d02..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.CompositeArbitraryScopeInstruction.html
+++ /dev/null
@@ -1,216 +0,0 @@
-
-
-
-
-
-InstructionSet.CompositeArbitraryScopeInstruction
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-Summary:
-Nested |
-Field |
-Constr |
-Method
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Summary:
-Nested |
-Field |
-Constr |
-Method
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.CompositeEmptyLoopInstruction.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.CompositeEmptyLoopInstruction.html
deleted file mode 100644
index b7a8f361..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.CompositeEmptyLoopInstruction.html
+++ /dev/null
@@ -1,262 +0,0 @@
-
-
-
-
-
-InstructionSet.CompositeEmptyLoopInstruction
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.CompositeForEclipseInstruction.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.CompositeForEclipseInstruction.html
deleted file mode 100644
index 71f3e24f..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.CompositeForEclipseInstruction.html
+++ /dev/null
@@ -1,216 +0,0 @@
-
-
-
-
-
-InstructionSet.CompositeForEclipseInstruction
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-Summary:
-Nested |
-Field |
-Constr |
-Method
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Summary:
-Nested |
-Field |
-Constr |
-Method
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.CompositeForSunInstruction.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.CompositeForSunInstruction.html
deleted file mode 100644
index 5c654945..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.CompositeForSunInstruction.html
+++ /dev/null
@@ -1,262 +0,0 @@
-
-
-
-
-
-InstructionSet.CompositeForSunInstruction
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.CompositeIfElseInstruction.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.CompositeIfElseInstruction.html
deleted file mode 100644
index 1605eeb8..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.CompositeIfElseInstruction.html
+++ /dev/null
@@ -1,262 +0,0 @@
-
-
-
-
-
-InstructionSet.CompositeIfElseInstruction
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.CompositeIfInstruction.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.CompositeIfInstruction.html
deleted file mode 100644
index c0de98dd..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.CompositeIfInstruction.html
+++ /dev/null
@@ -1,262 +0,0 @@
-
-
-
-
-
-InstructionSet.CompositeIfInstruction
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.CompositeInstruction.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.CompositeInstruction.html
deleted file mode 100644
index 0a1992b3..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.CompositeInstruction.html
+++ /dev/null
@@ -1,352 +0,0 @@
-
-
-
-
-
-InstructionSet.CompositeInstruction
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.CompositeWhileInstruction.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.CompositeWhileInstruction.html
deleted file mode 100644
index 97a337be..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.CompositeWhileInstruction.html
+++ /dev/null
@@ -1,262 +0,0 @@
-
-
-
-
-
-InstructionSet.CompositeWhileInstruction
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.ConditionalBranch.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.ConditionalBranch.html
deleted file mode 100644
index d5f9cea2..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.ConditionalBranch.html
+++ /dev/null
@@ -1,333 +0,0 @@
-
-
-
-
-
-InstructionSet.ConditionalBranch
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.InstructionSet.Branch
-getAbsolute , getTarget , isBreakOrContinue , isConditional , isForward , isForwardConditional , isForwardUnconditional , isReverse , isReverseConditional , isReverseUnconditional , isUnconditional , retarget , setBreakOrContinue , setTarget , unhook
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.ConditionalBranch16.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.ConditionalBranch16.html
deleted file mode 100644
index 32fe528e..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.ConditionalBranch16.html
+++ /dev/null
@@ -1,315 +0,0 @@
-
-
-
-
-
-InstructionSet.ConditionalBranch16
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.InstructionSet.Branch
-getAbsolute , getTarget , isBreakOrContinue , isConditional , isForward , isForwardConditional , isForwardUnconditional , isReverse , isReverseConditional , isReverseUnconditional , isUnconditional , retarget , setBreakOrContinue , setTarget , unhook
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.Constant.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.Constant.html
deleted file mode 100644
index 64af37f2..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.Constant.html
+++ /dev/null
@@ -1,218 +0,0 @@
-
-
-
-
-
-InstructionSet.Constant
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-Summary:
-Nested |
-Field |
-Constr |
-Method
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Method Summary
-
-Methods
-
-Modifier and Type
-Method and Description
-
-
-T
-getValue ()
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-getValue
-T getValue()
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Summary:
-Nested |
-Field |
-Constr |
-Method
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.ConstantPoolEntryConstant.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.ConstantPoolEntryConstant.html
deleted file mode 100644
index bab3ee3a..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.ConstantPoolEntryConstant.html
+++ /dev/null
@@ -1,239 +0,0 @@
-
-
-
-
-
-InstructionSet.ConstantPoolEntryConstant
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-Summary:
-Nested |
-Field |
-Constr |
-Method
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Summary:
-Nested |
-Field |
-Constr |
-Method
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.DUP.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.DUP.html
deleted file mode 100644
index 76f00936..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.DUP.html
+++ /dev/null
@@ -1,254 +0,0 @@
-
-
-
-
-
-InstructionSet.DUP
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.FakeGoto.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.FakeGoto.html
deleted file mode 100644
index 165ed350..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.FakeGoto.html
+++ /dev/null
@@ -1,291 +0,0 @@
-
-
-
-
-
-InstructionSet.FakeGoto
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-Methods
-
-Modifier and Type
-Method and Description
-
-
-java.lang.String
-getDescription ()
-
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.InstructionSet.Branch
-getAbsolute , getTarget , isBreakOrContinue , isConditional , isForward , isForwardConditional , isForwardUnconditional , isReverse , isReverseConditional , isReverseUnconditional , isUnconditional , retarget , setBreakOrContinue , setTarget , unhook
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.FieldArrayElementAssign.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.FieldArrayElementAssign.html
deleted file mode 100644
index f60f2fd5..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.FieldArrayElementAssign.html
+++ /dev/null
@@ -1,302 +0,0 @@
-
-
-
-
-
-InstructionSet.FieldArrayElementAssign
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.FieldArrayElementIncrement.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.FieldArrayElementIncrement.html
deleted file mode 100644
index b8cffe20..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.FieldArrayElementIncrement.html
+++ /dev/null
@@ -1,317 +0,0 @@
-
-
-
-
-
-InstructionSet.FieldArrayElementIncrement
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-isPre
-public boolean isPre()
-
-
-
-
-
-
-
-isInc
-public boolean isInc()
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.FieldReference.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.FieldReference.html
deleted file mode 100644
index f8aa2cfd..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.FieldReference.html
+++ /dev/null
@@ -1,231 +0,0 @@
-
-
-
-
-
-InstructionSet.FieldReference
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-Summary:
-Nested |
-Field |
-Constr |
-Method
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Summary:
-Nested |
-Field |
-Constr |
-Method
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.HasOperator.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.HasOperator.html
deleted file mode 100644
index 3b1afb99..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.HasOperator.html
+++ /dev/null
@@ -1,218 +0,0 @@
-
-
-
-
-
-InstructionSet.HasOperator
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-Summary:
-Nested |
-Field |
-Constr |
-Method
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Summary:
-Nested |
-Field |
-Constr |
-Method
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_AALOAD.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_AALOAD.html
deleted file mode 100644
index 70095ced..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_AALOAD.html
+++ /dev/null
@@ -1,293 +0,0 @@
-
-
-
-
-
-InstructionSet.I_AALOAD
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-Methods
-
-Modifier and Type
-Method and Description
-
-
-java.lang.String
-getDescription ()
-
-
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_AASTORE.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_AASTORE.html
deleted file mode 100644
index db01d8bc..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_AASTORE.html
+++ /dev/null
@@ -1,300 +0,0 @@
-
-
-
-
-
-InstructionSet.I_AASTORE
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-Methods
-
-Modifier and Type
-Method and Description
-
-
-java.lang.String
-getDescription ()
-
-
-
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_ACONST_NULL.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_ACONST_NULL.html
deleted file mode 100644
index 27c1c28d..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_ACONST_NULL.html
+++ /dev/null
@@ -1,298 +0,0 @@
-
-
-
-
-
-InstructionSet.I_ACONST_NULL
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-Methods
-
-Modifier and Type
-Method and Description
-
-
-java.lang.String
-getDescription ()
-
-
-java.lang.Object
-getValue ()
-
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_ALOAD.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_ALOAD.html
deleted file mode 100644
index 29c79276..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_ALOAD.html
+++ /dev/null
@@ -1,286 +0,0 @@
-
-
-
-
-
-InstructionSet.I_ALOAD
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_ALOAD_0.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_ALOAD_0.html
deleted file mode 100644
index ad0e1187..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_ALOAD_0.html
+++ /dev/null
@@ -1,286 +0,0 @@
-
-
-
-
-
-InstructionSet.I_ALOAD_0
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_ALOAD_1.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_ALOAD_1.html
deleted file mode 100644
index b32bdea8..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_ALOAD_1.html
+++ /dev/null
@@ -1,286 +0,0 @@
-
-
-
-
-
-InstructionSet.I_ALOAD_1
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_ALOAD_2.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_ALOAD_2.html
deleted file mode 100644
index 39dcc8cc..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_ALOAD_2.html
+++ /dev/null
@@ -1,286 +0,0 @@
-
-
-
-
-
-InstructionSet.I_ALOAD_2
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_ALOAD_3.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_ALOAD_3.html
deleted file mode 100644
index 5a4b8695..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_ALOAD_3.html
+++ /dev/null
@@ -1,286 +0,0 @@
-
-
-
-
-
-InstructionSet.I_ALOAD_3
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_ANEWARRAY.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_ANEWARRAY.html
deleted file mode 100644
index 527c4386..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_ANEWARRAY.html
+++ /dev/null
@@ -1,291 +0,0 @@
-
-
-
-
-
-InstructionSet.I_ANEWARRAY
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-Methods
-
-Modifier and Type
-Method and Description
-
-
-java.lang.String
-getDescription ()
-
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_ARETURN.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_ARETURN.html
deleted file mode 100644
index b8ca9dcc..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_ARETURN.html
+++ /dev/null
@@ -1,281 +0,0 @@
-
-
-
-
-
-InstructionSet.I_ARETURN
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-Methods
-
-Modifier and Type
-Method and Description
-
-
-java.lang.String
-getDescription ()
-
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_ARRAYLENGTH.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_ARRAYLENGTH.html
deleted file mode 100644
index a67f157f..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_ARRAYLENGTH.html
+++ /dev/null
@@ -1,276 +0,0 @@
-
-
-
-
-
-InstructionSet.I_ARRAYLENGTH
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-Methods
-
-Modifier and Type
-Method and Description
-
-
-java.lang.String
-getDescription ()
-
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_ASTORE.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_ASTORE.html
deleted file mode 100644
index 5b0df3a4..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_ASTORE.html
+++ /dev/null
@@ -1,293 +0,0 @@
-
-
-
-
-
-InstructionSet.I_ASTORE
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_ASTORE_0.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_ASTORE_0.html
deleted file mode 100644
index 7e11bfb0..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_ASTORE_0.html
+++ /dev/null
@@ -1,293 +0,0 @@
-
-
-
-
-
-InstructionSet.I_ASTORE_0
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_ASTORE_1.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_ASTORE_1.html
deleted file mode 100644
index 2b1a8c6f..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_ASTORE_1.html
+++ /dev/null
@@ -1,293 +0,0 @@
-
-
-
-
-
-InstructionSet.I_ASTORE_1
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_ASTORE_2.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_ASTORE_2.html
deleted file mode 100644
index c04470eb..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_ASTORE_2.html
+++ /dev/null
@@ -1,293 +0,0 @@
-
-
-
-
-
-InstructionSet.I_ASTORE_2
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_ASTORE_3.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_ASTORE_3.html
deleted file mode 100644
index 785e5dc6..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_ASTORE_3.html
+++ /dev/null
@@ -1,293 +0,0 @@
-
-
-
-
-
-InstructionSet.I_ASTORE_3
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_ATHROW.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_ATHROW.html
deleted file mode 100644
index 5c08d5c5..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_ATHROW.html
+++ /dev/null
@@ -1,276 +0,0 @@
-
-
-
-
-
-InstructionSet.I_ATHROW
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-Methods
-
-Modifier and Type
-Method and Description
-
-
-java.lang.String
-getDescription ()
-
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_BALOAD.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_BALOAD.html
deleted file mode 100644
index 02412925..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_BALOAD.html
+++ /dev/null
@@ -1,293 +0,0 @@
-
-
-
-
-
-InstructionSet.I_BALOAD
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-Methods
-
-Modifier and Type
-Method and Description
-
-
-java.lang.String
-getDescription ()
-
-
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_BASTORE.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_BASTORE.html
deleted file mode 100644
index 96729b0c..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_BASTORE.html
+++ /dev/null
@@ -1,300 +0,0 @@
-
-
-
-
-
-InstructionSet.I_BASTORE
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-Methods
-
-Modifier and Type
-Method and Description
-
-
-java.lang.String
-getDescription ()
-
-
-
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_BIPUSH.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_BIPUSH.html
deleted file mode 100644
index 4e104af9..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_BIPUSH.html
+++ /dev/null
@@ -1,304 +0,0 @@
-
-
-
-
-
-InstructionSet.I_BIPUSH
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-Methods
-
-Modifier and Type
-Method and Description
-
-
-java.lang.String
-getDescription ()
-
-
-java.lang.Integer
-getValue ()
-
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_CALOAD.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_CALOAD.html
deleted file mode 100644
index 94e16480..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_CALOAD.html
+++ /dev/null
@@ -1,293 +0,0 @@
-
-
-
-
-
-InstructionSet.I_CALOAD
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-Methods
-
-Modifier and Type
-Method and Description
-
-
-java.lang.String
-getDescription ()
-
-
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_CASTORE.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_CASTORE.html
deleted file mode 100644
index 14a4759a..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_CASTORE.html
+++ /dev/null
@@ -1,300 +0,0 @@
-
-
-
-
-
-InstructionSet.I_CASTORE
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-Methods
-
-Modifier and Type
-Method and Description
-
-
-java.lang.String
-getDescription ()
-
-
-
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_CHECKCAST.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_CHECKCAST.html
deleted file mode 100644
index 23627d94..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_CHECKCAST.html
+++ /dev/null
@@ -1,286 +0,0 @@
-
-
-
-
-
-InstructionSet.I_CHECKCAST
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-Methods
-
-Modifier and Type
-Method and Description
-
-
-java.lang.String
-getDescription ()
-
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_D2F.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_D2F.html
deleted file mode 100644
index fb102d13..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_D2F.html
+++ /dev/null
@@ -1,316 +0,0 @@
-
-
-
-
-
-InstructionSet.I_D2F
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-Methods
-
-Modifier and Type
-Method and Description
-
-
-java.lang.String
-getDescription ()
-
-
-
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_D2I.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_D2I.html
deleted file mode 100644
index 269d1e32..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_D2I.html
+++ /dev/null
@@ -1,316 +0,0 @@
-
-
-
-
-
-InstructionSet.I_D2I
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-Methods
-
-Modifier and Type
-Method and Description
-
-
-java.lang.String
-getDescription ()
-
-
-
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_D2L.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_D2L.html
deleted file mode 100644
index 5da10062..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_D2L.html
+++ /dev/null
@@ -1,316 +0,0 @@
-
-
-
-
-
-InstructionSet.I_D2L
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-Methods
-
-Modifier and Type
-Method and Description
-
-
-java.lang.String
-getDescription ()
-
-
-
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_DADD.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_DADD.html
deleted file mode 100644
index 60c7c6e7..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_DADD.html
+++ /dev/null
@@ -1,311 +0,0 @@
-
-
-
-
-
-InstructionSet.I_DADD
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-Methods
-
-Modifier and Type
-Method and Description
-
-
-java.lang.String
-getDescription ()
-
-
-
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_DALOAD.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_DALOAD.html
deleted file mode 100644
index 3c88fa7c..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_DALOAD.html
+++ /dev/null
@@ -1,293 +0,0 @@
-
-
-
-
-
-InstructionSet.I_DALOAD
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-Methods
-
-Modifier and Type
-Method and Description
-
-
-java.lang.String
-getDescription ()
-
-
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_DASTORE.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_DASTORE.html
deleted file mode 100644
index 391967eb..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_DASTORE.html
+++ /dev/null
@@ -1,300 +0,0 @@
-
-
-
-
-
-InstructionSet.I_DASTORE
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-Methods
-
-Modifier and Type
-Method and Description
-
-
-java.lang.String
-getDescription ()
-
-
-
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_DCMPG.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_DCMPG.html
deleted file mode 100644
index df064d81..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_DCMPG.html
+++ /dev/null
@@ -1,276 +0,0 @@
-
-
-
-
-
-InstructionSet.I_DCMPG
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-Methods
-
-Modifier and Type
-Method and Description
-
-
-java.lang.String
-getDescription ()
-
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_DCMPL.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_DCMPL.html
deleted file mode 100644
index 6fa5b4e3..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_DCMPL.html
+++ /dev/null
@@ -1,276 +0,0 @@
-
-
-
-
-
-InstructionSet.I_DCMPL
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-Methods
-
-Modifier and Type
-Method and Description
-
-
-java.lang.String
-getDescription ()
-
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_DCONST_0.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_DCONST_0.html
deleted file mode 100644
index 70eac57c..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_DCONST_0.html
+++ /dev/null
@@ -1,292 +0,0 @@
-
-
-
-
-
-InstructionSet.I_DCONST_0
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-Methods
-
-Modifier and Type
-Method and Description
-
-
-java.lang.String
-getDescription ()
-
-
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_DCONST_1.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_DCONST_1.html
deleted file mode 100644
index 07f286a7..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_DCONST_1.html
+++ /dev/null
@@ -1,292 +0,0 @@
-
-
-
-
-
-InstructionSet.I_DCONST_1
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-Methods
-
-Modifier and Type
-Method and Description
-
-
-java.lang.String
-getDescription ()
-
-
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_DDIV.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_DDIV.html
deleted file mode 100644
index df5d470e..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_DDIV.html
+++ /dev/null
@@ -1,311 +0,0 @@
-
-
-
-
-
-InstructionSet.I_DDIV
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-Methods
-
-Modifier and Type
-Method and Description
-
-
-java.lang.String
-getDescription ()
-
-
-
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_DLOAD.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_DLOAD.html
deleted file mode 100644
index b6dad776..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_DLOAD.html
+++ /dev/null
@@ -1,286 +0,0 @@
-
-
-
-
-
-InstructionSet.I_DLOAD
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_DLOAD_0.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_DLOAD_0.html
deleted file mode 100644
index adfac9d0..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_DLOAD_0.html
+++ /dev/null
@@ -1,286 +0,0 @@
-
-
-
-
-
-InstructionSet.I_DLOAD_0
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_DLOAD_1.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_DLOAD_1.html
deleted file mode 100644
index 25d73d9d..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_DLOAD_1.html
+++ /dev/null
@@ -1,286 +0,0 @@
-
-
-
-
-
-InstructionSet.I_DLOAD_1
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_DLOAD_2.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_DLOAD_2.html
deleted file mode 100644
index a993fcd8..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_DLOAD_2.html
+++ /dev/null
@@ -1,286 +0,0 @@
-
-
-
-
-
-InstructionSet.I_DLOAD_2
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_DLOAD_3.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_DLOAD_3.html
deleted file mode 100644
index 000c1c65..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_DLOAD_3.html
+++ /dev/null
@@ -1,286 +0,0 @@
-
-
-
-
-
-InstructionSet.I_DLOAD_3
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_DMUL.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_DMUL.html
deleted file mode 100644
index db522495..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_DMUL.html
+++ /dev/null
@@ -1,311 +0,0 @@
-
-
-
-
-
-InstructionSet.I_DMUL
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-Methods
-
-Modifier and Type
-Method and Description
-
-
-java.lang.String
-getDescription ()
-
-
-
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_DNEG.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_DNEG.html
deleted file mode 100644
index 2bc133c1..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_DNEG.html
+++ /dev/null
@@ -1,311 +0,0 @@
-
-
-
-
-
-InstructionSet.I_DNEG
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-Methods
-
-Modifier and Type
-Method and Description
-
-
-java.lang.String
-getDescription ()
-
-
-
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_DREM.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_DREM.html
deleted file mode 100644
index e5742e1a..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_DREM.html
+++ /dev/null
@@ -1,311 +0,0 @@
-
-
-
-
-
-InstructionSet.I_DREM
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-Methods
-
-Modifier and Type
-Method and Description
-
-
-java.lang.String
-getDescription ()
-
-
-
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_DRETURN.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_DRETURN.html
deleted file mode 100644
index 0ea7d843..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_DRETURN.html
+++ /dev/null
@@ -1,281 +0,0 @@
-
-
-
-
-
-InstructionSet.I_DRETURN
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-Methods
-
-Modifier and Type
-Method and Description
-
-
-java.lang.String
-getDescription ()
-
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_DSTORE.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_DSTORE.html
deleted file mode 100644
index 3c888568..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_DSTORE.html
+++ /dev/null
@@ -1,293 +0,0 @@
-
-
-
-
-
-InstructionSet.I_DSTORE
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_DSTORE_0.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_DSTORE_0.html
deleted file mode 100644
index 89baf1b1..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_DSTORE_0.html
+++ /dev/null
@@ -1,293 +0,0 @@
-
-
-
-
-
-InstructionSet.I_DSTORE_0
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_DSTORE_1.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_DSTORE_1.html
deleted file mode 100644
index a523345a..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_DSTORE_1.html
+++ /dev/null
@@ -1,293 +0,0 @@
-
-
-
-
-
-InstructionSet.I_DSTORE_1
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_DSTORE_2.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_DSTORE_2.html
deleted file mode 100644
index beb775ca..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_DSTORE_2.html
+++ /dev/null
@@ -1,293 +0,0 @@
-
-
-
-
-
-InstructionSet.I_DSTORE_2
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_DSTORE_3.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_DSTORE_3.html
deleted file mode 100644
index b88339b0..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_DSTORE_3.html
+++ /dev/null
@@ -1,293 +0,0 @@
-
-
-
-
-
-InstructionSet.I_DSTORE_3
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_DSUB.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_DSUB.html
deleted file mode 100644
index 0c16b5ad..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_DSUB.html
+++ /dev/null
@@ -1,311 +0,0 @@
-
-
-
-
-
-InstructionSet.I_DSUB
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-Methods
-
-Modifier and Type
-Method and Description
-
-
-java.lang.String
-getDescription ()
-
-
-
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_DUP.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_DUP.html
deleted file mode 100644
index 76770b54..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_DUP.html
+++ /dev/null
@@ -1,281 +0,0 @@
-
-
-
-
-
-InstructionSet.I_DUP
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-Methods
-
-Modifier and Type
-Method and Description
-
-
-java.lang.String
-getDescription ()
-
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_DUP2.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_DUP2.html
deleted file mode 100644
index 63486ca1..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_DUP2.html
+++ /dev/null
@@ -1,281 +0,0 @@
-
-
-
-
-
-InstructionSet.I_DUP2
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-Methods
-
-Modifier and Type
-Method and Description
-
-
-java.lang.String
-getDescription ()
-
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_DUP2_X1.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_DUP2_X1.html
deleted file mode 100644
index a74e9bcb..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_DUP2_X1.html
+++ /dev/null
@@ -1,281 +0,0 @@
-
-
-
-
-
-InstructionSet.I_DUP2_X1
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-Methods
-
-Modifier and Type
-Method and Description
-
-
-java.lang.String
-getDescription ()
-
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_DUP2_X2.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_DUP2_X2.html
deleted file mode 100644
index 5c277ae0..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_DUP2_X2.html
+++ /dev/null
@@ -1,281 +0,0 @@
-
-
-
-
-
-InstructionSet.I_DUP2_X2
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-Methods
-
-Modifier and Type
-Method and Description
-
-
-java.lang.String
-getDescription ()
-
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_DUP_X1.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_DUP_X1.html
deleted file mode 100644
index a247e945..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_DUP_X1.html
+++ /dev/null
@@ -1,281 +0,0 @@
-
-
-
-
-
-InstructionSet.I_DUP_X1
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-Methods
-
-Modifier and Type
-Method and Description
-
-
-java.lang.String
-getDescription ()
-
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_DUP_X2.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_DUP_X2.html
deleted file mode 100644
index bc4ca6e6..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_DUP_X2.html
+++ /dev/null
@@ -1,281 +0,0 @@
-
-
-
-
-
-InstructionSet.I_DUP_X2
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-Methods
-
-Modifier and Type
-Method and Description
-
-
-java.lang.String
-getDescription ()
-
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_END.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_END.html
deleted file mode 100644
index 5658c8db..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_END.html
+++ /dev/null
@@ -1,274 +0,0 @@
-
-
-
-
-
-InstructionSet.I_END
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-Methods
-
-Modifier and Type
-Method and Description
-
-
-java.lang.String
-getDescription ()
-
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_F2D.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_F2D.html
deleted file mode 100644
index 75b30605..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_F2D.html
+++ /dev/null
@@ -1,316 +0,0 @@
-
-
-
-
-
-InstructionSet.I_F2D
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-Methods
-
-Modifier and Type
-Method and Description
-
-
-java.lang.String
-getDescription ()
-
-
-
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_F2I.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_F2I.html
deleted file mode 100644
index 30612e06..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_F2I.html
+++ /dev/null
@@ -1,316 +0,0 @@
-
-
-
-
-
-InstructionSet.I_F2I
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-Methods
-
-Modifier and Type
-Method and Description
-
-
-java.lang.String
-getDescription ()
-
-
-
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_F2L.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_F2L.html
deleted file mode 100644
index fe30ef6c..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_F2L.html
+++ /dev/null
@@ -1,316 +0,0 @@
-
-
-
-
-
-InstructionSet.I_F2L
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-Methods
-
-Modifier and Type
-Method and Description
-
-
-java.lang.String
-getDescription ()
-
-
-
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_FADD.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_FADD.html
deleted file mode 100644
index 0b953eb2..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_FADD.html
+++ /dev/null
@@ -1,311 +0,0 @@
-
-
-
-
-
-InstructionSet.I_FADD
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-Methods
-
-Modifier and Type
-Method and Description
-
-
-java.lang.String
-getDescription ()
-
-
-
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_FALOAD.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_FALOAD.html
deleted file mode 100644
index f1a06f93..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_FALOAD.html
+++ /dev/null
@@ -1,293 +0,0 @@
-
-
-
-
-
-InstructionSet.I_FALOAD
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-Methods
-
-Modifier and Type
-Method and Description
-
-
-java.lang.String
-getDescription ()
-
-
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_FASTORE.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_FASTORE.html
deleted file mode 100644
index 4e197e1c..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_FASTORE.html
+++ /dev/null
@@ -1,300 +0,0 @@
-
-
-
-
-
-InstructionSet.I_FASTORE
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-Methods
-
-Modifier and Type
-Method and Description
-
-
-java.lang.String
-getDescription ()
-
-
-
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_FCMPG.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_FCMPG.html
deleted file mode 100644
index fead6b95..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_FCMPG.html
+++ /dev/null
@@ -1,311 +0,0 @@
-
-
-
-
-
-InstructionSet.I_FCMPG
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-Methods
-
-Modifier and Type
-Method and Description
-
-
-java.lang.String
-getDescription ()
-
-
-
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_FCMPL.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_FCMPL.html
deleted file mode 100644
index 5176997e..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_FCMPL.html
+++ /dev/null
@@ -1,311 +0,0 @@
-
-
-
-
-
-InstructionSet.I_FCMPL
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-Methods
-
-Modifier and Type
-Method and Description
-
-
-java.lang.String
-getDescription ()
-
-
-
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_FCONST_0.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_FCONST_0.html
deleted file mode 100644
index f4147f08..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_FCONST_0.html
+++ /dev/null
@@ -1,292 +0,0 @@
-
-
-
-
-
-InstructionSet.I_FCONST_0
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-Methods
-
-Modifier and Type
-Method and Description
-
-
-java.lang.String
-getDescription ()
-
-
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_FCONST_1.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_FCONST_1.html
deleted file mode 100644
index cde3c02c..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_FCONST_1.html
+++ /dev/null
@@ -1,292 +0,0 @@
-
-
-
-
-
-InstructionSet.I_FCONST_1
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-Methods
-
-Modifier and Type
-Method and Description
-
-
-java.lang.String
-getDescription ()
-
-
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_FCONST_2.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_FCONST_2.html
deleted file mode 100644
index e51b07c0..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_FCONST_2.html
+++ /dev/null
@@ -1,292 +0,0 @@
-
-
-
-
-
-InstructionSet.I_FCONST_2
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-Methods
-
-Modifier and Type
-Method and Description
-
-
-java.lang.String
-getDescription ()
-
-
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_FDIV.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_FDIV.html
deleted file mode 100644
index 7df033d2..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_FDIV.html
+++ /dev/null
@@ -1,311 +0,0 @@
-
-
-
-
-
-InstructionSet.I_FDIV
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-Methods
-
-Modifier and Type
-Method and Description
-
-
-java.lang.String
-getDescription ()
-
-
-
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_FLOAD.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_FLOAD.html
deleted file mode 100644
index 1a30c8e0..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_FLOAD.html
+++ /dev/null
@@ -1,286 +0,0 @@
-
-
-
-
-
-InstructionSet.I_FLOAD
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_FLOAD_0.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_FLOAD_0.html
deleted file mode 100644
index 2a8d240c..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_FLOAD_0.html
+++ /dev/null
@@ -1,286 +0,0 @@
-
-
-
-
-
-InstructionSet.I_FLOAD_0
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_FLOAD_1.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_FLOAD_1.html
deleted file mode 100644
index 1ceee6b3..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_FLOAD_1.html
+++ /dev/null
@@ -1,286 +0,0 @@
-
-
-
-
-
-InstructionSet.I_FLOAD_1
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_FLOAD_2.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_FLOAD_2.html
deleted file mode 100644
index 6d93ac6b..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_FLOAD_2.html
+++ /dev/null
@@ -1,286 +0,0 @@
-
-
-
-
-
-InstructionSet.I_FLOAD_2
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_FLOAD_3.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_FLOAD_3.html
deleted file mode 100644
index ca7e31c3..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_FLOAD_3.html
+++ /dev/null
@@ -1,286 +0,0 @@
-
-
-
-
-
-InstructionSet.I_FLOAD_3
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_FMUL.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_FMUL.html
deleted file mode 100644
index 0cf3c609..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_FMUL.html
+++ /dev/null
@@ -1,311 +0,0 @@
-
-
-
-
-
-InstructionSet.I_FMUL
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-Methods
-
-Modifier and Type
-Method and Description
-
-
-java.lang.String
-getDescription ()
-
-
-
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_FNEG.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_FNEG.html
deleted file mode 100644
index 79c90afb..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_FNEG.html
+++ /dev/null
@@ -1,311 +0,0 @@
-
-
-
-
-
-InstructionSet.I_FNEG
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-Methods
-
-Modifier and Type
-Method and Description
-
-
-java.lang.String
-getDescription ()
-
-
-
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_FREM.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_FREM.html
deleted file mode 100644
index 15736c3c..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_FREM.html
+++ /dev/null
@@ -1,311 +0,0 @@
-
-
-
-
-
-InstructionSet.I_FREM
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-Methods
-
-Modifier and Type
-Method and Description
-
-
-java.lang.String
-getDescription ()
-
-
-
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_FRETURN.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_FRETURN.html
deleted file mode 100644
index babdf63e..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_FRETURN.html
+++ /dev/null
@@ -1,281 +0,0 @@
-
-
-
-
-
-InstructionSet.I_FRETURN
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-Methods
-
-Modifier and Type
-Method and Description
-
-
-java.lang.String
-getDescription ()
-
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_FSTORE.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_FSTORE.html
deleted file mode 100644
index 3fd33e05..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_FSTORE.html
+++ /dev/null
@@ -1,293 +0,0 @@
-
-
-
-
-
-InstructionSet.I_FSTORE
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_FSTORE_0.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_FSTORE_0.html
deleted file mode 100644
index 3e776541..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_FSTORE_0.html
+++ /dev/null
@@ -1,293 +0,0 @@
-
-
-
-
-
-InstructionSet.I_FSTORE_0
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_FSTORE_1.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_FSTORE_1.html
deleted file mode 100644
index 3433f7cb..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_FSTORE_1.html
+++ /dev/null
@@ -1,293 +0,0 @@
-
-
-
-
-
-InstructionSet.I_FSTORE_1
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_FSTORE_2.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_FSTORE_2.html
deleted file mode 100644
index bdcd4832..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_FSTORE_2.html
+++ /dev/null
@@ -1,249 +0,0 @@
-
-
-
-
-
-InstructionSet.I_FSTORE_2
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-Summary:
-Nested |
-Field |
-Constr |
-Method
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Summary:
-Nested |
-Field |
-Constr |
-Method
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_FSTORE_3.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_FSTORE_3.html
deleted file mode 100644
index aa3b633b..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_FSTORE_3.html
+++ /dev/null
@@ -1,293 +0,0 @@
-
-
-
-
-
-InstructionSet.I_FSTORE_3
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_FSUB.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_FSUB.html
deleted file mode 100644
index b82d5da8..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_FSUB.html
+++ /dev/null
@@ -1,311 +0,0 @@
-
-
-
-
-
-InstructionSet.I_FSUB
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-Methods
-
-Modifier and Type
-Method and Description
-
-
-java.lang.String
-getDescription ()
-
-
-
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_GETFIELD.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_GETFIELD.html
deleted file mode 100644
index 68e5ebfc..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_GETFIELD.html
+++ /dev/null
@@ -1,376 +0,0 @@
-
-
-
-
-
-InstructionSet.I_GETFIELD
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackDelta , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_GETSTATIC.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_GETSTATIC.html
deleted file mode 100644
index f2a3b31b..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_GETSTATIC.html
+++ /dev/null
@@ -1,359 +0,0 @@
-
-
-
-
-
-InstructionSet.I_GETSTATIC
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackDelta , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_GOTO.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_GOTO.html
deleted file mode 100644
index b2a91f88..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_GOTO.html
+++ /dev/null
@@ -1,298 +0,0 @@
-
-
-
-
-
-InstructionSet.I_GOTO
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-Methods
-
-Modifier and Type
-Method and Description
-
-
-java.lang.String
-getDescription ()
-
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.InstructionSet.Branch
-getAbsolute , getTarget , isBreakOrContinue , isConditional , isForward , isForwardConditional , isForwardUnconditional , isReverse , isReverseConditional , isReverseUnconditional , isUnconditional , retarget , setBreakOrContinue , setTarget , unhook
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_GOTO_W.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_GOTO_W.html
deleted file mode 100644
index 978bb6c5..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_GOTO_W.html
+++ /dev/null
@@ -1,298 +0,0 @@
-
-
-
-
-
-InstructionSet.I_GOTO_W
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-Methods
-
-Modifier and Type
-Method and Description
-
-
-java.lang.String
-getDescription ()
-
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.InstructionSet.Branch
-getAbsolute , getTarget , isBreakOrContinue , isConditional , isForward , isForwardConditional , isForwardUnconditional , isReverse , isReverseConditional , isReverseUnconditional , isUnconditional , retarget , setBreakOrContinue , setTarget , unhook
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_I2B.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_I2B.html
deleted file mode 100644
index 9f37f1ac..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_I2B.html
+++ /dev/null
@@ -1,316 +0,0 @@
-
-
-
-
-
-InstructionSet.I_I2B
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-Methods
-
-Modifier and Type
-Method and Description
-
-
-java.lang.String
-getDescription ()
-
-
-
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_I2C.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_I2C.html
deleted file mode 100644
index 02699620..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_I2C.html
+++ /dev/null
@@ -1,316 +0,0 @@
-
-
-
-
-
-InstructionSet.I_I2C
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-Methods
-
-Modifier and Type
-Method and Description
-
-
-java.lang.String
-getDescription ()
-
-
-
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_I2D.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_I2D.html
deleted file mode 100644
index ed91f6d5..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_I2D.html
+++ /dev/null
@@ -1,316 +0,0 @@
-
-
-
-
-
-InstructionSet.I_I2D
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-Methods
-
-Modifier and Type
-Method and Description
-
-
-java.lang.String
-getDescription ()
-
-
-
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_I2F.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_I2F.html
deleted file mode 100644
index e6fc787a..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_I2F.html
+++ /dev/null
@@ -1,316 +0,0 @@
-
-
-
-
-
-InstructionSet.I_I2F
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-Methods
-
-Modifier and Type
-Method and Description
-
-
-java.lang.String
-getDescription ()
-
-
-
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_I2L.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_I2L.html
deleted file mode 100644
index 47a27944..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_I2L.html
+++ /dev/null
@@ -1,316 +0,0 @@
-
-
-
-
-
-InstructionSet.I_I2L
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-Methods
-
-Modifier and Type
-Method and Description
-
-
-java.lang.String
-getDescription ()
-
-
-
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_I2S.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_I2S.html
deleted file mode 100644
index e627c69c..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_I2S.html
+++ /dev/null
@@ -1,316 +0,0 @@
-
-
-
-
-
-InstructionSet.I_I2S
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-Methods
-
-Modifier and Type
-Method and Description
-
-
-java.lang.String
-getDescription ()
-
-
-
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_IADD.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_IADD.html
deleted file mode 100644
index eada5e32..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_IADD.html
+++ /dev/null
@@ -1,311 +0,0 @@
-
-
-
-
-
-InstructionSet.I_IADD
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-Methods
-
-Modifier and Type
-Method and Description
-
-
-java.lang.String
-getDescription ()
-
-
-
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_IALOAD.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_IALOAD.html
deleted file mode 100644
index 6b1eccae..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_IALOAD.html
+++ /dev/null
@@ -1,293 +0,0 @@
-
-
-
-
-
-InstructionSet.I_IALOAD
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-Methods
-
-Modifier and Type
-Method and Description
-
-
-java.lang.String
-getDescription ()
-
-
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_IAND.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_IAND.html
deleted file mode 100644
index c32d2867..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_IAND.html
+++ /dev/null
@@ -1,311 +0,0 @@
-
-
-
-
-
-InstructionSet.I_IAND
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-Methods
-
-Modifier and Type
-Method and Description
-
-
-java.lang.String
-getDescription ()
-
-
-
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_IASTORE.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_IASTORE.html
deleted file mode 100644
index a16bd128..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_IASTORE.html
+++ /dev/null
@@ -1,300 +0,0 @@
-
-
-
-
-
-InstructionSet.I_IASTORE
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-Methods
-
-Modifier and Type
-Method and Description
-
-
-java.lang.String
-getDescription ()
-
-
-
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_ICONST_0.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_ICONST_0.html
deleted file mode 100644
index 18c79b0e..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_ICONST_0.html
+++ /dev/null
@@ -1,292 +0,0 @@
-
-
-
-
-
-InstructionSet.I_ICONST_0
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-Methods
-
-Modifier and Type
-Method and Description
-
-
-java.lang.String
-getDescription ()
-
-
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_ICONST_1.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_ICONST_1.html
deleted file mode 100644
index 1329c40a..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_ICONST_1.html
+++ /dev/null
@@ -1,292 +0,0 @@
-
-
-
-
-
-InstructionSet.I_ICONST_1
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-Methods
-
-Modifier and Type
-Method and Description
-
-
-java.lang.String
-getDescription ()
-
-
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_ICONST_2.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_ICONST_2.html
deleted file mode 100644
index 916a4f61..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_ICONST_2.html
+++ /dev/null
@@ -1,292 +0,0 @@
-
-
-
-
-
-InstructionSet.I_ICONST_2
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-Methods
-
-Modifier and Type
-Method and Description
-
-
-java.lang.String
-getDescription ()
-
-
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_ICONST_3.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_ICONST_3.html
deleted file mode 100644
index 44407e6f..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_ICONST_3.html
+++ /dev/null
@@ -1,292 +0,0 @@
-
-
-
-
-
-InstructionSet.I_ICONST_3
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-Methods
-
-Modifier and Type
-Method and Description
-
-
-java.lang.String
-getDescription ()
-
-
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_ICONST_4.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_ICONST_4.html
deleted file mode 100644
index 9b096ed1..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_ICONST_4.html
+++ /dev/null
@@ -1,292 +0,0 @@
-
-
-
-
-
-InstructionSet.I_ICONST_4
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-Methods
-
-Modifier and Type
-Method and Description
-
-
-java.lang.String
-getDescription ()
-
-
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_ICONST_5.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_ICONST_5.html
deleted file mode 100644
index 67cb04dd..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_ICONST_5.html
+++ /dev/null
@@ -1,292 +0,0 @@
-
-
-
-
-
-InstructionSet.I_ICONST_5
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-Methods
-
-Modifier and Type
-Method and Description
-
-
-java.lang.String
-getDescription ()
-
-
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_ICONST_M1.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_ICONST_M1.html
deleted file mode 100644
index 2c2f5061..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_ICONST_M1.html
+++ /dev/null
@@ -1,292 +0,0 @@
-
-
-
-
-
-InstructionSet.I_ICONST_M1
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-Methods
-
-Modifier and Type
-Method and Description
-
-
-java.lang.String
-getDescription ()
-
-
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_IDIV.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_IDIV.html
deleted file mode 100644
index 9f0317e6..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_IDIV.html
+++ /dev/null
@@ -1,311 +0,0 @@
-
-
-
-
-
-InstructionSet.I_IDIV
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-Methods
-
-Modifier and Type
-Method and Description
-
-
-java.lang.String
-getDescription ()
-
-
-
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_IFEQ.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_IFEQ.html
deleted file mode 100644
index 77cbbbce..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_IFEQ.html
+++ /dev/null
@@ -1,335 +0,0 @@
-
-
-
-
-
-InstructionSet.I_IFEQ
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-Methods
-
-Modifier and Type
-Method and Description
-
-
-java.lang.String
-getDescription ()
-
-
-
-
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.InstructionSet.Branch
-getAbsolute , getTarget , isBreakOrContinue , isConditional , isForward , isForwardConditional , isForwardUnconditional , isReverse , isReverseConditional , isReverseUnconditional , isUnconditional , retarget , setBreakOrContinue , setTarget , unhook
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_IFGE.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_IFGE.html
deleted file mode 100644
index 0fa41542..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_IFGE.html
+++ /dev/null
@@ -1,335 +0,0 @@
-
-
-
-
-
-InstructionSet.I_IFGE
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-Methods
-
-Modifier and Type
-Method and Description
-
-
-java.lang.String
-getDescription ()
-
-
-
-
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.InstructionSet.Branch
-getAbsolute , getTarget , isBreakOrContinue , isConditional , isForward , isForwardConditional , isForwardUnconditional , isReverse , isReverseConditional , isReverseUnconditional , isUnconditional , retarget , setBreakOrContinue , setTarget , unhook
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_IFGT.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_IFGT.html
deleted file mode 100644
index cc246a92..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_IFGT.html
+++ /dev/null
@@ -1,335 +0,0 @@
-
-
-
-
-
-InstructionSet.I_IFGT
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-Methods
-
-Modifier and Type
-Method and Description
-
-
-java.lang.String
-getDescription ()
-
-
-
-
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.InstructionSet.Branch
-getAbsolute , getTarget , isBreakOrContinue , isConditional , isForward , isForwardConditional , isForwardUnconditional , isReverse , isReverseConditional , isReverseUnconditional , isUnconditional , retarget , setBreakOrContinue , setTarget , unhook
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_IFLE.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_IFLE.html
deleted file mode 100644
index a65cadc7..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_IFLE.html
+++ /dev/null
@@ -1,335 +0,0 @@
-
-
-
-
-
-InstructionSet.I_IFLE
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-Methods
-
-Modifier and Type
-Method and Description
-
-
-java.lang.String
-getDescription ()
-
-
-
-
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.InstructionSet.Branch
-getAbsolute , getTarget , isBreakOrContinue , isConditional , isForward , isForwardConditional , isForwardUnconditional , isReverse , isReverseConditional , isReverseUnconditional , isUnconditional , retarget , setBreakOrContinue , setTarget , unhook
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_IFLT.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_IFLT.html
deleted file mode 100644
index 4aa3e7ad..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_IFLT.html
+++ /dev/null
@@ -1,335 +0,0 @@
-
-
-
-
-
-InstructionSet.I_IFLT
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-Methods
-
-Modifier and Type
-Method and Description
-
-
-java.lang.String
-getDescription ()
-
-
-
-
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.InstructionSet.Branch
-getAbsolute , getTarget , isBreakOrContinue , isConditional , isForward , isForwardConditional , isForwardUnconditional , isReverse , isReverseConditional , isReverseUnconditional , isUnconditional , retarget , setBreakOrContinue , setTarget , unhook
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_IFNE.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_IFNE.html
deleted file mode 100644
index fb33e580..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_IFNE.html
+++ /dev/null
@@ -1,335 +0,0 @@
-
-
-
-
-
-InstructionSet.I_IFNE
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-Methods
-
-Modifier and Type
-Method and Description
-
-
-java.lang.String
-getDescription ()
-
-
-
-
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.InstructionSet.Branch
-getAbsolute , getTarget , isBreakOrContinue , isConditional , isForward , isForwardConditional , isForwardUnconditional , isReverse , isReverseConditional , isReverseUnconditional , isUnconditional , retarget , setBreakOrContinue , setTarget , unhook
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_IFNONNULL.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_IFNONNULL.html
deleted file mode 100644
index c64e61eb..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_IFNONNULL.html
+++ /dev/null
@@ -1,316 +0,0 @@
-
-
-
-
-
-InstructionSet.I_IFNONNULL
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-Methods
-
-Modifier and Type
-Method and Description
-
-
-java.lang.String
-getDescription ()
-
-
-
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.InstructionSet.Branch
-getAbsolute , getTarget , isBreakOrContinue , isConditional , isForward , isForwardConditional , isForwardUnconditional , isReverse , isReverseConditional , isReverseUnconditional , isUnconditional , retarget , setBreakOrContinue , setTarget , unhook
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_IFNULL.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_IFNULL.html
deleted file mode 100644
index 5dd00219..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_IFNULL.html
+++ /dev/null
@@ -1,316 +0,0 @@
-
-
-
-
-
-InstructionSet.I_IFNULL
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-Methods
-
-Modifier and Type
-Method and Description
-
-
-java.lang.String
-getDescription ()
-
-
-
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.InstructionSet.Branch
-getAbsolute , getTarget , isBreakOrContinue , isConditional , isForward , isForwardConditional , isForwardUnconditional , isReverse , isReverseConditional , isReverseUnconditional , isUnconditional , retarget , setBreakOrContinue , setTarget , unhook
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_IF_ACMPEQ.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_IF_ACMPEQ.html
deleted file mode 100644
index 8752588e..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_IF_ACMPEQ.html
+++ /dev/null
@@ -1,335 +0,0 @@
-
-
-
-
-
-InstructionSet.I_IF_ACMPEQ
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-Methods
-
-Modifier and Type
-Method and Description
-
-
-java.lang.String
-getDescription ()
-
-
-
-
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.InstructionSet.Branch
-getAbsolute , getTarget , isBreakOrContinue , isConditional , isForward , isForwardConditional , isForwardUnconditional , isReverse , isReverseConditional , isReverseUnconditional , isUnconditional , retarget , setBreakOrContinue , setTarget , unhook
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_IF_ACMPNE.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_IF_ACMPNE.html
deleted file mode 100644
index ea427b8b..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_IF_ACMPNE.html
+++ /dev/null
@@ -1,335 +0,0 @@
-
-
-
-
-
-InstructionSet.I_IF_ACMPNE
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-Methods
-
-Modifier and Type
-Method and Description
-
-
-java.lang.String
-getDescription ()
-
-
-
-
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.InstructionSet.Branch
-getAbsolute , getTarget , isBreakOrContinue , isConditional , isForward , isForwardConditional , isForwardUnconditional , isReverse , isReverseConditional , isReverseUnconditional , isUnconditional , retarget , setBreakOrContinue , setTarget , unhook
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_IF_ICMPEQ.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_IF_ICMPEQ.html
deleted file mode 100644
index b0e9b1d0..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_IF_ICMPEQ.html
+++ /dev/null
@@ -1,335 +0,0 @@
-
-
-
-
-
-InstructionSet.I_IF_ICMPEQ
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-Methods
-
-Modifier and Type
-Method and Description
-
-
-java.lang.String
-getDescription ()
-
-
-
-
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.InstructionSet.Branch
-getAbsolute , getTarget , isBreakOrContinue , isConditional , isForward , isForwardConditional , isForwardUnconditional , isReverse , isReverseConditional , isReverseUnconditional , isUnconditional , retarget , setBreakOrContinue , setTarget , unhook
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_IF_ICMPGE.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_IF_ICMPGE.html
deleted file mode 100644
index c4ad38a1..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_IF_ICMPGE.html
+++ /dev/null
@@ -1,335 +0,0 @@
-
-
-
-
-
-InstructionSet.I_IF_ICMPGE
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-Methods
-
-Modifier and Type
-Method and Description
-
-
-java.lang.String
-getDescription ()
-
-
-
-
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.InstructionSet.Branch
-getAbsolute , getTarget , isBreakOrContinue , isConditional , isForward , isForwardConditional , isForwardUnconditional , isReverse , isReverseConditional , isReverseUnconditional , isUnconditional , retarget , setBreakOrContinue , setTarget , unhook
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_IF_ICMPGT.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_IF_ICMPGT.html
deleted file mode 100644
index 00af629f..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_IF_ICMPGT.html
+++ /dev/null
@@ -1,335 +0,0 @@
-
-
-
-
-
-InstructionSet.I_IF_ICMPGT
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-Methods
-
-Modifier and Type
-Method and Description
-
-
-java.lang.String
-getDescription ()
-
-
-
-
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.InstructionSet.Branch
-getAbsolute , getTarget , isBreakOrContinue , isConditional , isForward , isForwardConditional , isForwardUnconditional , isReverse , isReverseConditional , isReverseUnconditional , isUnconditional , retarget , setBreakOrContinue , setTarget , unhook
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_IF_ICMPLE.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_IF_ICMPLE.html
deleted file mode 100644
index f7c3f5ea..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_IF_ICMPLE.html
+++ /dev/null
@@ -1,335 +0,0 @@
-
-
-
-
-
-InstructionSet.I_IF_ICMPLE
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-Methods
-
-Modifier and Type
-Method and Description
-
-
-java.lang.String
-getDescription ()
-
-
-
-
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.InstructionSet.Branch
-getAbsolute , getTarget , isBreakOrContinue , isConditional , isForward , isForwardConditional , isForwardUnconditional , isReverse , isReverseConditional , isReverseUnconditional , isUnconditional , retarget , setBreakOrContinue , setTarget , unhook
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_IF_ICMPLT.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_IF_ICMPLT.html
deleted file mode 100644
index 3013b300..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_IF_ICMPLT.html
+++ /dev/null
@@ -1,335 +0,0 @@
-
-
-
-
-
-InstructionSet.I_IF_ICMPLT
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-Methods
-
-Modifier and Type
-Method and Description
-
-
-java.lang.String
-getDescription ()
-
-
-
-
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.InstructionSet.Branch
-getAbsolute , getTarget , isBreakOrContinue , isConditional , isForward , isForwardConditional , isForwardUnconditional , isReverse , isReverseConditional , isReverseUnconditional , isUnconditional , retarget , setBreakOrContinue , setTarget , unhook
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_IF_ICMPNE.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_IF_ICMPNE.html
deleted file mode 100644
index 76f433b5..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_IF_ICMPNE.html
+++ /dev/null
@@ -1,335 +0,0 @@
-
-
-
-
-
-InstructionSet.I_IF_ICMPNE
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-Methods
-
-Modifier and Type
-Method and Description
-
-
-java.lang.String
-getDescription ()
-
-
-
-
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.InstructionSet.Branch
-getAbsolute , getTarget , isBreakOrContinue , isConditional , isForward , isForwardConditional , isForwardUnconditional , isReverse , isReverseConditional , isReverseUnconditional , isUnconditional , retarget , setBreakOrContinue , setTarget , unhook
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_IINC.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_IINC.html
deleted file mode 100644
index b8b6f1b6..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_IINC.html
+++ /dev/null
@@ -1,351 +0,0 @@
-
-
-
-
-
-InstructionSet.I_IINC
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-getDelta
-public int getDelta()
-
-
-
-
-
-
-
-isInc
-public boolean isInc()
-
-
-
-
-
-
-
-getAdjust
-public int getAdjust()
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_ILOAD.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_ILOAD.html
deleted file mode 100644
index 0b050af9..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_ILOAD.html
+++ /dev/null
@@ -1,286 +0,0 @@
-
-
-
-
-
-InstructionSet.I_ILOAD
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_ILOAD_0.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_ILOAD_0.html
deleted file mode 100644
index 190182b9..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_ILOAD_0.html
+++ /dev/null
@@ -1,286 +0,0 @@
-
-
-
-
-
-InstructionSet.I_ILOAD_0
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_ILOAD_1.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_ILOAD_1.html
deleted file mode 100644
index 0f05de4b..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_ILOAD_1.html
+++ /dev/null
@@ -1,286 +0,0 @@
-
-
-
-
-
-InstructionSet.I_ILOAD_1
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_ILOAD_2.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_ILOAD_2.html
deleted file mode 100644
index 0e4204f1..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_ILOAD_2.html
+++ /dev/null
@@ -1,286 +0,0 @@
-
-
-
-
-
-InstructionSet.I_ILOAD_2
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_ILOAD_3.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_ILOAD_3.html
deleted file mode 100644
index 7d0a58ee..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_ILOAD_3.html
+++ /dev/null
@@ -1,286 +0,0 @@
-
-
-
-
-
-InstructionSet.I_ILOAD_3
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_IMUL.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_IMUL.html
deleted file mode 100644
index d2210ce8..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_IMUL.html
+++ /dev/null
@@ -1,311 +0,0 @@
-
-
-
-
-
-InstructionSet.I_IMUL
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-Methods
-
-Modifier and Type
-Method and Description
-
-
-java.lang.String
-getDescription ()
-
-
-
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_INEG.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_INEG.html
deleted file mode 100644
index 7fbe1f6e..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_INEG.html
+++ /dev/null
@@ -1,311 +0,0 @@
-
-
-
-
-
-InstructionSet.I_INEG
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-Methods
-
-Modifier and Type
-Method and Description
-
-
-java.lang.String
-getDescription ()
-
-
-
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_INSTANCEOF.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_INSTANCEOF.html
deleted file mode 100644
index b26e9107..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_INSTANCEOF.html
+++ /dev/null
@@ -1,286 +0,0 @@
-
-
-
-
-
-InstructionSet.I_INSTANCEOF
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-Methods
-
-Modifier and Type
-Method and Description
-
-
-java.lang.String
-getDescription ()
-
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_INVOKEDYNAMIC.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_INVOKEDYNAMIC.html
deleted file mode 100644
index 290395ff..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_INVOKEDYNAMIC.html
+++ /dev/null
@@ -1,410 +0,0 @@
-
-
-
-
-
-InstructionSet.I_INVOKEDYNAMIC
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackDelta , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_INVOKEINTERFACE.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_INVOKEINTERFACE.html
deleted file mode 100644
index dcc09345..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_INVOKEINTERFACE.html
+++ /dev/null
@@ -1,410 +0,0 @@
-
-
-
-
-
-InstructionSet.I_INVOKEINTERFACE
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackDelta , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_INVOKESPECIAL.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_INVOKESPECIAL.html
deleted file mode 100644
index 916040e3..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_INVOKESPECIAL.html
+++ /dev/null
@@ -1,393 +0,0 @@
-
-
-
-
-
-InstructionSet.I_INVOKESPECIAL
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackDelta , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_INVOKESTATIC.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_INVOKESTATIC.html
deleted file mode 100644
index c1d95cd1..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_INVOKESTATIC.html
+++ /dev/null
@@ -1,376 +0,0 @@
-
-
-
-
-
-InstructionSet.I_INVOKESTATIC
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackDelta , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_INVOKEVIRTUAL.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_INVOKEVIRTUAL.html
deleted file mode 100644
index 5453ab6c..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_INVOKEVIRTUAL.html
+++ /dev/null
@@ -1,393 +0,0 @@
-
-
-
-
-
-InstructionSet.I_INVOKEVIRTUAL
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackDelta , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_IOR.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_IOR.html
deleted file mode 100644
index 28587299..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_IOR.html
+++ /dev/null
@@ -1,311 +0,0 @@
-
-
-
-
-
-InstructionSet.I_IOR
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-Methods
-
-Modifier and Type
-Method and Description
-
-
-java.lang.String
-getDescription ()
-
-
-
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_IREM.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_IREM.html
deleted file mode 100644
index bff20b54..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_IREM.html
+++ /dev/null
@@ -1,311 +0,0 @@
-
-
-
-
-
-InstructionSet.I_IREM
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-Methods
-
-Modifier and Type
-Method and Description
-
-
-java.lang.String
-getDescription ()
-
-
-
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_IRETURN.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_IRETURN.html
deleted file mode 100644
index d52f6be2..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_IRETURN.html
+++ /dev/null
@@ -1,281 +0,0 @@
-
-
-
-
-
-InstructionSet.I_IRETURN
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-Methods
-
-Modifier and Type
-Method and Description
-
-
-java.lang.String
-getDescription ()
-
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_ISHL.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_ISHL.html
deleted file mode 100644
index 3f569249..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_ISHL.html
+++ /dev/null
@@ -1,311 +0,0 @@
-
-
-
-
-
-InstructionSet.I_ISHL
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-Methods
-
-Modifier and Type
-Method and Description
-
-
-java.lang.String
-getDescription ()
-
-
-
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_ISHR.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_ISHR.html
deleted file mode 100644
index 3019ea8b..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_ISHR.html
+++ /dev/null
@@ -1,311 +0,0 @@
-
-
-
-
-
-InstructionSet.I_ISHR
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-Methods
-
-Modifier and Type
-Method and Description
-
-
-java.lang.String
-getDescription ()
-
-
-
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_ISTORE.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_ISTORE.html
deleted file mode 100644
index d0eca88d..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_ISTORE.html
+++ /dev/null
@@ -1,293 +0,0 @@
-
-
-
-
-
-InstructionSet.I_ISTORE
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_ISTORE_0.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_ISTORE_0.html
deleted file mode 100644
index cfbc75ba..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_ISTORE_0.html
+++ /dev/null
@@ -1,293 +0,0 @@
-
-
-
-
-
-InstructionSet.I_ISTORE_0
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_ISTORE_1.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_ISTORE_1.html
deleted file mode 100644
index 19fd491a..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_ISTORE_1.html
+++ /dev/null
@@ -1,293 +0,0 @@
-
-
-
-
-
-InstructionSet.I_ISTORE_1
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_ISTORE_2.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_ISTORE_2.html
deleted file mode 100644
index 03839e6b..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_ISTORE_2.html
+++ /dev/null
@@ -1,293 +0,0 @@
-
-
-
-
-
-InstructionSet.I_ISTORE_2
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_ISTORE_3.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_ISTORE_3.html
deleted file mode 100644
index 9dc3c77f..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_ISTORE_3.html
+++ /dev/null
@@ -1,293 +0,0 @@
-
-
-
-
-
-InstructionSet.I_ISTORE_3
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_ISUB.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_ISUB.html
deleted file mode 100644
index 96c154fa..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_ISUB.html
+++ /dev/null
@@ -1,311 +0,0 @@
-
-
-
-
-
-InstructionSet.I_ISUB
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-Methods
-
-Modifier and Type
-Method and Description
-
-
-java.lang.String
-getDescription ()
-
-
-
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_IUSHR.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_IUSHR.html
deleted file mode 100644
index 3aa7ce8f..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_IUSHR.html
+++ /dev/null
@@ -1,311 +0,0 @@
-
-
-
-
-
-InstructionSet.I_IUSHR
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-Methods
-
-Modifier and Type
-Method and Description
-
-
-java.lang.String
-getDescription ()
-
-
-
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_IXOR.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_IXOR.html
deleted file mode 100644
index f4482ddb..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_IXOR.html
+++ /dev/null
@@ -1,311 +0,0 @@
-
-
-
-
-
-InstructionSet.I_IXOR
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-Methods
-
-Modifier and Type
-Method and Description
-
-
-java.lang.String
-getDescription ()
-
-
-
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_JSR.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_JSR.html
deleted file mode 100644
index 1c023677..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_JSR.html
+++ /dev/null
@@ -1,298 +0,0 @@
-
-
-
-
-
-InstructionSet.I_JSR
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-Methods
-
-Modifier and Type
-Method and Description
-
-
-java.lang.String
-getDescription ()
-
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.InstructionSet.Branch
-getAbsolute , getTarget , isBreakOrContinue , isConditional , isForward , isForwardConditional , isForwardUnconditional , isReverse , isReverseConditional , isReverseUnconditional , isUnconditional , retarget , setBreakOrContinue , setTarget , unhook
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_JSR_W.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_JSR_W.html
deleted file mode 100644
index eed04da9..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_JSR_W.html
+++ /dev/null
@@ -1,298 +0,0 @@
-
-
-
-
-
-InstructionSet.I_JSR_W
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-Methods
-
-Modifier and Type
-Method and Description
-
-
-java.lang.String
-getDescription ()
-
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.InstructionSet.Branch
-getAbsolute , getTarget , isBreakOrContinue , isConditional , isForward , isForwardConditional , isForwardUnconditional , isReverse , isReverseConditional , isReverseUnconditional , isUnconditional , retarget , setBreakOrContinue , setTarget , unhook
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_L2D.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_L2D.html
deleted file mode 100644
index 4ef9ad72..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_L2D.html
+++ /dev/null
@@ -1,316 +0,0 @@
-
-
-
-
-
-InstructionSet.I_L2D
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-Methods
-
-Modifier and Type
-Method and Description
-
-
-java.lang.String
-getDescription ()
-
-
-
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_L2F.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_L2F.html
deleted file mode 100644
index 8d741a21..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_L2F.html
+++ /dev/null
@@ -1,316 +0,0 @@
-
-
-
-
-
-InstructionSet.I_L2F
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-Methods
-
-Modifier and Type
-Method and Description
-
-
-java.lang.String
-getDescription ()
-
-
-
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_L2I.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_L2I.html
deleted file mode 100644
index 76930799..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_L2I.html
+++ /dev/null
@@ -1,316 +0,0 @@
-
-
-
-
-
-InstructionSet.I_L2I
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-Methods
-
-Modifier and Type
-Method and Description
-
-
-java.lang.String
-getDescription ()
-
-
-
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_LADD.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_LADD.html
deleted file mode 100644
index dc597b85..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_LADD.html
+++ /dev/null
@@ -1,311 +0,0 @@
-
-
-
-
-
-InstructionSet.I_LADD
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-Methods
-
-Modifier and Type
-Method and Description
-
-
-java.lang.String
-getDescription ()
-
-
-
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_LALOAD.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_LALOAD.html
deleted file mode 100644
index 3efe3d8e..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_LALOAD.html
+++ /dev/null
@@ -1,293 +0,0 @@
-
-
-
-
-
-InstructionSet.I_LALOAD
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-Methods
-
-Modifier and Type
-Method and Description
-
-
-java.lang.String
-getDescription ()
-
-
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_LAND.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_LAND.html
deleted file mode 100644
index 69375803..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_LAND.html
+++ /dev/null
@@ -1,311 +0,0 @@
-
-
-
-
-
-InstructionSet.I_LAND
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-Methods
-
-Modifier and Type
-Method and Description
-
-
-java.lang.String
-getDescription ()
-
-
-
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_LASTORE.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_LASTORE.html
deleted file mode 100644
index e8b6370e..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_LASTORE.html
+++ /dev/null
@@ -1,300 +0,0 @@
-
-
-
-
-
-InstructionSet.I_LASTORE
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-Methods
-
-Modifier and Type
-Method and Description
-
-
-java.lang.String
-getDescription ()
-
-
-
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_LCMP.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_LCMP.html
deleted file mode 100644
index 8e0ad618..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_LCMP.html
+++ /dev/null
@@ -1,311 +0,0 @@
-
-
-
-
-
-InstructionSet.I_LCMP
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-Methods
-
-Modifier and Type
-Method and Description
-
-
-java.lang.String
-getDescription ()
-
-
-
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_LCONST_0.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_LCONST_0.html
deleted file mode 100644
index a8cb237e..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_LCONST_0.html
+++ /dev/null
@@ -1,292 +0,0 @@
-
-
-
-
-
-InstructionSet.I_LCONST_0
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-Methods
-
-Modifier and Type
-Method and Description
-
-
-java.lang.String
-getDescription ()
-
-
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_LCONST_1.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_LCONST_1.html
deleted file mode 100644
index 0ce989d5..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_LCONST_1.html
+++ /dev/null
@@ -1,292 +0,0 @@
-
-
-
-
-
-InstructionSet.I_LCONST_1
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-Methods
-
-Modifier and Type
-Method and Description
-
-
-java.lang.String
-getDescription ()
-
-
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_LDC.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_LDC.html
deleted file mode 100644
index 42122c0f..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_LDC.html
+++ /dev/null
@@ -1,342 +0,0 @@
-
-
-
-
-
-InstructionSet.I_LDC
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_LDC2_W.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_LDC2_W.html
deleted file mode 100644
index 2d5bd22a..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_LDC2_W.html
+++ /dev/null
@@ -1,342 +0,0 @@
-
-
-
-
-
-InstructionSet.I_LDC2_W
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_LDC_W.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_LDC_W.html
deleted file mode 100644
index 25852ca4..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_LDC_W.html
+++ /dev/null
@@ -1,342 +0,0 @@
-
-
-
-
-
-InstructionSet.I_LDC_W
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_LDIV.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_LDIV.html
deleted file mode 100644
index 723d62f7..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_LDIV.html
+++ /dev/null
@@ -1,311 +0,0 @@
-
-
-
-
-
-InstructionSet.I_LDIV
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-Methods
-
-Modifier and Type
-Method and Description
-
-
-java.lang.String
-getDescription ()
-
-
-
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_LLOAD.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_LLOAD.html
deleted file mode 100644
index 151fc8b3..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_LLOAD.html
+++ /dev/null
@@ -1,286 +0,0 @@
-
-
-
-
-
-InstructionSet.I_LLOAD
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_LLOAD_0.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_LLOAD_0.html
deleted file mode 100644
index 0425dd48..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_LLOAD_0.html
+++ /dev/null
@@ -1,286 +0,0 @@
-
-
-
-
-
-InstructionSet.I_LLOAD_0
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_LLOAD_1.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_LLOAD_1.html
deleted file mode 100644
index ae313d71..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_LLOAD_1.html
+++ /dev/null
@@ -1,286 +0,0 @@
-
-
-
-
-
-InstructionSet.I_LLOAD_1
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_LLOAD_2.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_LLOAD_2.html
deleted file mode 100644
index 3eb42766..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_LLOAD_2.html
+++ /dev/null
@@ -1,286 +0,0 @@
-
-
-
-
-
-InstructionSet.I_LLOAD_2
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_LLOAD_3.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_LLOAD_3.html
deleted file mode 100644
index 7f463c11..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_LLOAD_3.html
+++ /dev/null
@@ -1,286 +0,0 @@
-
-
-
-
-
-InstructionSet.I_LLOAD_3
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_LMUL.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_LMUL.html
deleted file mode 100644
index c4dbe901..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_LMUL.html
+++ /dev/null
@@ -1,311 +0,0 @@
-
-
-
-
-
-InstructionSet.I_LMUL
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-Methods
-
-Modifier and Type
-Method and Description
-
-
-java.lang.String
-getDescription ()
-
-
-
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_LNEG.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_LNEG.html
deleted file mode 100644
index 304aadea..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_LNEG.html
+++ /dev/null
@@ -1,311 +0,0 @@
-
-
-
-
-
-InstructionSet.I_LNEG
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-Methods
-
-Modifier and Type
-Method and Description
-
-
-java.lang.String
-getDescription ()
-
-
-
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_LOOKUPSWITCH.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_LOOKUPSWITCH.html
deleted file mode 100644
index 80f6e131..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_LOOKUPSWITCH.html
+++ /dev/null
@@ -1,326 +0,0 @@
-
-
-
-
-
-InstructionSet.I_LOOKUPSWITCH
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.InstructionSet.Branch
-getAbsolute , getTarget , isBreakOrContinue , isConditional , isForward , isForwardConditional , isForwardUnconditional , isReverse , isReverseConditional , isReverseUnconditional , isUnconditional , retarget , setBreakOrContinue , setTarget , unhook
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-getNpairs
-public int getNpairs()
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_LOR.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_LOR.html
deleted file mode 100644
index a125efec..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_LOR.html
+++ /dev/null
@@ -1,311 +0,0 @@
-
-
-
-
-
-InstructionSet.I_LOR
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-Methods
-
-Modifier and Type
-Method and Description
-
-
-java.lang.String
-getDescription ()
-
-
-
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_LREM.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_LREM.html
deleted file mode 100644
index 47839d59..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_LREM.html
+++ /dev/null
@@ -1,311 +0,0 @@
-
-
-
-
-
-InstructionSet.I_LREM
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-Methods
-
-Modifier and Type
-Method and Description
-
-
-java.lang.String
-getDescription ()
-
-
-
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_LRETURN.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_LRETURN.html
deleted file mode 100644
index 28494a28..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_LRETURN.html
+++ /dev/null
@@ -1,281 +0,0 @@
-
-
-
-
-
-InstructionSet.I_LRETURN
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-Methods
-
-Modifier and Type
-Method and Description
-
-
-java.lang.String
-getDescription ()
-
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_LSHL.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_LSHL.html
deleted file mode 100644
index c28fedba..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_LSHL.html
+++ /dev/null
@@ -1,311 +0,0 @@
-
-
-
-
-
-InstructionSet.I_LSHL
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-Methods
-
-Modifier and Type
-Method and Description
-
-
-java.lang.String
-getDescription ()
-
-
-
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_LSHR.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_LSHR.html
deleted file mode 100644
index 05fdc3e6..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_LSHR.html
+++ /dev/null
@@ -1,311 +0,0 @@
-
-
-
-
-
-InstructionSet.I_LSHR
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-Methods
-
-Modifier and Type
-Method and Description
-
-
-java.lang.String
-getDescription ()
-
-
-
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_LSTORE.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_LSTORE.html
deleted file mode 100644
index 54f475b9..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_LSTORE.html
+++ /dev/null
@@ -1,293 +0,0 @@
-
-
-
-
-
-InstructionSet.I_LSTORE
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_LSTORE_0.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_LSTORE_0.html
deleted file mode 100644
index 7cd63e48..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_LSTORE_0.html
+++ /dev/null
@@ -1,293 +0,0 @@
-
-
-
-
-
-InstructionSet.I_LSTORE_0
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_LSTORE_1.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_LSTORE_1.html
deleted file mode 100644
index e3714b00..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_LSTORE_1.html
+++ /dev/null
@@ -1,293 +0,0 @@
-
-
-
-
-
-InstructionSet.I_LSTORE_1
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_LSTORE_2.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_LSTORE_2.html
deleted file mode 100644
index e8b10c71..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_LSTORE_2.html
+++ /dev/null
@@ -1,293 +0,0 @@
-
-
-
-
-
-InstructionSet.I_LSTORE_2
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_LSTORE_3.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_LSTORE_3.html
deleted file mode 100644
index ca65ed00..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_LSTORE_3.html
+++ /dev/null
@@ -1,293 +0,0 @@
-
-
-
-
-
-InstructionSet.I_LSTORE_3
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_LSUB.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_LSUB.html
deleted file mode 100644
index 0385bf42..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_LSUB.html
+++ /dev/null
@@ -1,311 +0,0 @@
-
-
-
-
-
-InstructionSet.I_LSUB
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-Methods
-
-Modifier and Type
-Method and Description
-
-
-java.lang.String
-getDescription ()
-
-
-
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_LUSHR.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_LUSHR.html
deleted file mode 100644
index 5555ba63..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_LUSHR.html
+++ /dev/null
@@ -1,311 +0,0 @@
-
-
-
-
-
-InstructionSet.I_LUSHR
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-Methods
-
-Modifier and Type
-Method and Description
-
-
-java.lang.String
-getDescription ()
-
-
-
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_LXOR.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_LXOR.html
deleted file mode 100644
index f8189136..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_LXOR.html
+++ /dev/null
@@ -1,311 +0,0 @@
-
-
-
-
-
-InstructionSet.I_LXOR
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-Methods
-
-Modifier and Type
-Method and Description
-
-
-java.lang.String
-getDescription ()
-
-
-
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_MONITORENTER.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_MONITORENTER.html
deleted file mode 100644
index 7cb54bf4..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_MONITORENTER.html
+++ /dev/null
@@ -1,276 +0,0 @@
-
-
-
-
-
-InstructionSet.I_MONITORENTER
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-Methods
-
-Modifier and Type
-Method and Description
-
-
-java.lang.String
-getDescription ()
-
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_MONITOREXIT.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_MONITOREXIT.html
deleted file mode 100644
index 6ee1eebc..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_MONITOREXIT.html
+++ /dev/null
@@ -1,276 +0,0 @@
-
-
-
-
-
-InstructionSet.I_MONITOREXIT
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-Methods
-
-Modifier and Type
-Method and Description
-
-
-java.lang.String
-getDescription ()
-
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_MULTIANEWARRAY.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_MULTIANEWARRAY.html
deleted file mode 100644
index 90cfd82e..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_MULTIANEWARRAY.html
+++ /dev/null
@@ -1,304 +0,0 @@
-
-
-
-
-
-InstructionSet.I_MULTIANEWARRAY
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_NEW.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_NEW.html
deleted file mode 100644
index 605cb823..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_NEW.html
+++ /dev/null
@@ -1,291 +0,0 @@
-
-
-
-
-
-InstructionSet.I_NEW
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-Methods
-
-Modifier and Type
-Method and Description
-
-
-java.lang.String
-getDescription ()
-
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_NEWARRAY.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_NEWARRAY.html
deleted file mode 100644
index bf4c0b61..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_NEWARRAY.html
+++ /dev/null
@@ -1,294 +0,0 @@
-
-
-
-
-
-InstructionSet.I_NEWARRAY
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-Methods
-
-Modifier and Type
-Method and Description
-
-
-java.lang.String
-getDescription ()
-
-
-int
-getType ()
-
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-
-
-
-
-getType
-public int getType()
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_NOP.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_NOP.html
deleted file mode 100644
index 12c55a8c..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_NOP.html
+++ /dev/null
@@ -1,276 +0,0 @@
-
-
-
-
-
-InstructionSet.I_NOP
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-Methods
-
-Modifier and Type
-Method and Description
-
-
-java.lang.String
-getDescription ()
-
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_POP.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_POP.html
deleted file mode 100644
index 0c938f38..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_POP.html
+++ /dev/null
@@ -1,276 +0,0 @@
-
-
-
-
-
-InstructionSet.I_POP
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-Methods
-
-Modifier and Type
-Method and Description
-
-
-java.lang.String
-getDescription ()
-
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_POP2.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_POP2.html
deleted file mode 100644
index 50c03620..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_POP2.html
+++ /dev/null
@@ -1,276 +0,0 @@
-
-
-
-
-
-InstructionSet.I_POP2
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-Methods
-
-Modifier and Type
-Method and Description
-
-
-java.lang.String
-getDescription ()
-
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_PUTFIELD.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_PUTFIELD.html
deleted file mode 100644
index 8e614999..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_PUTFIELD.html
+++ /dev/null
@@ -1,393 +0,0 @@
-
-
-
-
-
-InstructionSet.I_PUTFIELD
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackDelta , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_PUTSTATIC.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_PUTSTATIC.html
deleted file mode 100644
index 0398693b..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_PUTSTATIC.html
+++ /dev/null
@@ -1,376 +0,0 @@
-
-
-
-
-
-InstructionSet.I_PUTSTATIC
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackDelta , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_RET.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_RET.html
deleted file mode 100644
index f97fa8e4..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_RET.html
+++ /dev/null
@@ -1,342 +0,0 @@
-
-
-
-
-
-InstructionSet.I_RET
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_RETURN.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_RETURN.html
deleted file mode 100644
index 1f369fef..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_RETURN.html
+++ /dev/null
@@ -1,281 +0,0 @@
-
-
-
-
-
-InstructionSet.I_RETURN
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-Methods
-
-Modifier and Type
-Method and Description
-
-
-java.lang.String
-getDescription ()
-
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_SALOAD.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_SALOAD.html
deleted file mode 100644
index cecabdca..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_SALOAD.html
+++ /dev/null
@@ -1,293 +0,0 @@
-
-
-
-
-
-InstructionSet.I_SALOAD
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-Methods
-
-Modifier and Type
-Method and Description
-
-
-java.lang.String
-getDescription ()
-
-
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_SASTORE.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_SASTORE.html
deleted file mode 100644
index af50da15..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_SASTORE.html
+++ /dev/null
@@ -1,300 +0,0 @@
-
-
-
-
-
-InstructionSet.I_SASTORE
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-Methods
-
-Modifier and Type
-Method and Description
-
-
-java.lang.String
-getDescription ()
-
-
-
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_SIPUSH.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_SIPUSH.html
deleted file mode 100644
index 91177d72..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_SIPUSH.html
+++ /dev/null
@@ -1,292 +0,0 @@
-
-
-
-
-
-InstructionSet.I_SIPUSH
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-Methods
-
-Modifier and Type
-Method and Description
-
-
-java.lang.String
-getDescription ()
-
-
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_SWAP.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_SWAP.html
deleted file mode 100644
index 4574165b..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_SWAP.html
+++ /dev/null
@@ -1,276 +0,0 @@
-
-
-
-
-
-InstructionSet.I_SWAP
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-Methods
-
-Modifier and Type
-Method and Description
-
-
-java.lang.String
-getDescription ()
-
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_TABLESWITCH.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_TABLESWITCH.html
deleted file mode 100644
index c3c3d9de..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_TABLESWITCH.html
+++ /dev/null
@@ -1,326 +0,0 @@
-
-
-
-
-
-InstructionSet.I_TABLESWITCH
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-Methods
-
-Modifier and Type
-Method and Description
-
-
-java.lang.String
-getDescription ()
-
-
-int
-getHigh ()
-
-
-int
-getLow ()
-
-
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.InstructionSet.Branch
-getAbsolute , getTarget , isBreakOrContinue , isConditional , isForward , isForwardConditional , isForwardUnconditional , isReverse , isReverseConditional , isReverseUnconditional , isUnconditional , retarget , setBreakOrContinue , setTarget , unhook
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-
-
-
-
-getHigh
-public int getHigh()
-
-
-
-
-
-
-
-getLow
-public int getLow()
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_WIDE.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_WIDE.html
deleted file mode 100644
index 791344a5..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.I_WIDE.html
+++ /dev/null
@@ -1,328 +0,0 @@
-
-
-
-
-
-InstructionSet.I_WIDE
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-getIndex
-public int getIndex()
-
-
-
-
-
-
-
-
-
-
-
-isiinc
-public boolean isiinc()
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.If.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.If.html
deleted file mode 100644
index 4133848d..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.If.html
+++ /dev/null
@@ -1,351 +0,0 @@
-
-
-
-
-
-InstructionSet.If
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.InstructionSet.Branch
-getAbsolute , getTarget , isBreakOrContinue , isConditional , isForward , isForwardConditional , isForwardUnconditional , isReverse , isReverseConditional , isReverseUnconditional , isUnconditional , retarget , setBreakOrContinue , setTarget , unhook
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.IfUnary.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.IfUnary.html
deleted file mode 100644
index 9ddeadd4..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.IfUnary.html
+++ /dev/null
@@ -1,334 +0,0 @@
-
-
-
-
-
-InstructionSet.IfUnary
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.InstructionSet.Branch
-getAbsolute , getTarget , isBreakOrContinue , isConditional , isForward , isForwardConditional , isForwardUnconditional , isReverse , isReverseConditional , isReverseUnconditional , isUnconditional , retarget , setBreakOrContinue , setTarget , unhook
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.ImmediateConstant.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.ImmediateConstant.html
deleted file mode 100644
index 59bbda6b..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.ImmediateConstant.html
+++ /dev/null
@@ -1,291 +0,0 @@
-
-
-
-
-
-InstructionSet.ImmediateConstant
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-Methods
-
-Modifier and Type
-Method and Description
-
-
-T
-getValue ()
-
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.ImmediateSpec.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.ImmediateSpec.html
deleted file mode 100644
index ba429204..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.ImmediateSpec.html
+++ /dev/null
@@ -1,507 +0,0 @@
-
-
-
-
-
-InstructionSet.ImmediateSpec
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Enum Constant Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-
-Methods inherited from class java.lang.Enum
-compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
-
-
-
-
-
-Methods inherited from class java.lang.Object
-getClass, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-
-
-
-
-valueOf
-public static InstructionSet.ImmediateSpec valueOf(java.lang.String name)
-Returns the enum constant of this type with the specified name.
-The string must match exactly an identifier used to declare an
-enum constant in this type. (Extraneous whitespace characters are
-not permitted.)
-Parameters: name - the name of the enum constant to be returned.
-Returns: the enum constant with the specified name
-Throws:
-java.lang.IllegalArgumentException - if this enum type has no constant
-with the specified name
-java.lang.NullPointerException - if the argument is null
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.IncrementInstruction.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.IncrementInstruction.html
deleted file mode 100644
index 3c0de583..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.IncrementInstruction.html
+++ /dev/null
@@ -1,334 +0,0 @@
-
-
-
-
-
-InstructionSet.IncrementInstruction
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-InstructionSet.IncrementInstruction
-public InstructionSet.IncrementInstruction(MethodModel method,
- Instruction _fieldOrVariable,
- boolean _isInc,
- boolean _isPre)
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-
-
-
-
-isPre
-public boolean isPre()
-
-
-
-
-
-
-
-
-
-
-
-isInc
-public boolean isInc()
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.Index.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.Index.html
deleted file mode 100644
index 4536e52c..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.Index.html
+++ /dev/null
@@ -1,254 +0,0 @@
-
-
-
-
-
-InstructionSet.Index
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.Index08.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.Index08.html
deleted file mode 100644
index 86c99a63..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.Index08.html
+++ /dev/null
@@ -1,259 +0,0 @@
-
-
-
-
-
-InstructionSet.Index08
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.Index16.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.Index16.html
deleted file mode 100644
index 957cf5d0..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.Index16.html
+++ /dev/null
@@ -1,259 +0,0 @@
-
-
-
-
-
-InstructionSet.Index16
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.IndexConst.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.IndexConst.html
deleted file mode 100644
index 2b63f1f9..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.IndexConst.html
+++ /dev/null
@@ -1,261 +0,0 @@
-
-
-
-
-
-InstructionSet.IndexConst
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.InlineAssignInstruction.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.InlineAssignInstruction.html
deleted file mode 100644
index 514b8712..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.InlineAssignInstruction.html
+++ /dev/null
@@ -1,302 +0,0 @@
-
-
-
-
-
-InstructionSet.InlineAssignInstruction
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.InterfaceConstantPoolMethodIndexAccessor.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.InterfaceConstantPoolMethodIndexAccessor.html
deleted file mode 100644
index 782a8704..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.InterfaceConstantPoolMethodIndexAccessor.html
+++ /dev/null
@@ -1,266 +0,0 @@
-
-
-
-
-
-InstructionSet.InterfaceConstantPoolMethodIndexAccessor
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-Summary:
-Nested |
-Field |
-Constr |
-Method
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-getArgs
-int getArgs()
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Summary:
-Nested |
-Field |
-Constr |
-Method
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.LocalVariableConstIndexAccessor.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.LocalVariableConstIndexAccessor.html
deleted file mode 100644
index 9e1eaf99..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.LocalVariableConstIndexAccessor.html
+++ /dev/null
@@ -1,320 +0,0 @@
-
-
-
-
-
-InstructionSet.LocalVariableConstIndexAccessor
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-InstructionSet.LocalVariableConstIndexAccessor
-public InstructionSet.LocalVariableConstIndexAccessor(MethodModel methodPoolEntry,
- InstructionSet.ByteCode byteCode,
- ByteReader byteReader,
- boolean _wide,
- int index)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.LocalVariableConstIndexLoad.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.LocalVariableConstIndexLoad.html
deleted file mode 100644
index d24973aa..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.LocalVariableConstIndexLoad.html
+++ /dev/null
@@ -1,310 +0,0 @@
-
-
-
-
-
-InstructionSet.LocalVariableConstIndexLoad
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-Methods
-
-Modifier and Type
-Method and Description
-
-
-java.lang.String
-getDescription ()
-
-
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-InstructionSet.LocalVariableConstIndexLoad
-public InstructionSet.LocalVariableConstIndexLoad(MethodModel methodPoolEntry,
- InstructionSet.ByteCode byteCode,
- ByteReader byteReader,
- boolean _wide,
- int index)
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.LocalVariableConstIndexStore.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.LocalVariableConstIndexStore.html
deleted file mode 100644
index 0b795758..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.LocalVariableConstIndexStore.html
+++ /dev/null
@@ -1,335 +0,0 @@
-
-
-
-
-
-InstructionSet.LocalVariableConstIndexStore
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-InstructionSet.LocalVariableConstIndexStore
-public InstructionSet.LocalVariableConstIndexStore(MethodModel methodPoolEntry,
- InstructionSet.ByteCode byteCode,
- ByteReader byteReader,
- boolean _wide,
- int index)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.LocalVariableIndex08Accessor.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.LocalVariableIndex08Accessor.html
deleted file mode 100644
index c2608da7..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.LocalVariableIndex08Accessor.html
+++ /dev/null
@@ -1,318 +0,0 @@
-
-
-
-
-
-InstructionSet.LocalVariableIndex08Accessor
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.LocalVariableIndex08Load.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.LocalVariableIndex08Load.html
deleted file mode 100644
index 265e807c..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.LocalVariableIndex08Load.html
+++ /dev/null
@@ -1,308 +0,0 @@
-
-
-
-
-
-InstructionSet.LocalVariableIndex08Load
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-Methods
-
-Modifier and Type
-Method and Description
-
-
-java.lang.String
-getDescription ()
-
-
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.LocalVariableIndex08Store.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.LocalVariableIndex08Store.html
deleted file mode 100644
index 9448e093..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.LocalVariableIndex08Store.html
+++ /dev/null
@@ -1,333 +0,0 @@
-
-
-
-
-
-InstructionSet.LocalVariableIndex08Store
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.LocalVariableTableIndexAccessor.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.LocalVariableTableIndexAccessor.html
deleted file mode 100644
index bd3198a1..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.LocalVariableTableIndexAccessor.html
+++ /dev/null
@@ -1,231 +0,0 @@
-
-
-
-
-
-InstructionSet.LocalVariableTableIndexAccessor
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-Summary:
-Nested |
-Field |
-Constr |
-Method
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Summary:
-Nested |
-Field |
-Constr |
-Method
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.MethodCall.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.MethodCall.html
deleted file mode 100644
index 6ab53bd4..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.MethodCall.html
+++ /dev/null
@@ -1,244 +0,0 @@
-
-
-
-
-
-InstructionSet.MethodCall
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-Summary:
-Nested |
-Field |
-Constr |
-Method
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Summary:
-Nested |
-Field |
-Constr |
-Method
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.MultiAssignInstruction.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.MultiAssignInstruction.html
deleted file mode 100644
index 39bd092c..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.MultiAssignInstruction.html
+++ /dev/null
@@ -1,317 +0,0 @@
-
-
-
-
-
-InstructionSet.MultiAssignInstruction
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.New.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.New.html
deleted file mode 100644
index 9cb864ee..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.New.html
+++ /dev/null
@@ -1,166 +0,0 @@
-
-
-
-
-
-InstructionSet.New
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-Summary:
-Nested |
-Field |
-Constr |
-Method
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Summary:
-Nested |
-Field |
-Constr |
-Method
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.Operator.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.Operator.html
deleted file mode 100644
index 42ebf8fd..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.Operator.html
+++ /dev/null
@@ -1,837 +0,0 @@
-
-
-
-
-
-InstructionSet.Operator
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Enum Constant Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-
-Methods inherited from class java.lang.Enum
-compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
-
-
-
-
-
-Methods inherited from class java.lang.Object
-getClass, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-
-
-
-
-valueOf
-public static InstructionSet.Operator valueOf(java.lang.String name)
-Returns the enum constant of this type with the specified name.
-The string must match exactly an identifier used to declare an
-enum constant in this type. (Extraneous whitespace characters are
-not permitted.)
-Parameters: name - the name of the enum constant to be returned.
-Returns: the enum constant with the specified name
-Throws:
-java.lang.IllegalArgumentException - if this enum type has no constant
-with the specified name
-java.lang.NullPointerException - if the argument is null
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-isUnary
-public boolean isUnary()
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.OperatorInstruction.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.OperatorInstruction.html
deleted file mode 100644
index 4bf93f5e..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.OperatorInstruction.html
+++ /dev/null
@@ -1,242 +0,0 @@
-
-
-
-
-
-InstructionSet.OperatorInstruction
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-Summary:
-Nested |
-Field |
-Constr |
-Method
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Summary:
-Nested |
-Field |
-Constr |
-Method
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.PopSpec.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.PopSpec.html
deleted file mode 100644
index 8c60293a..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.PopSpec.html
+++ /dev/null
@@ -1,662 +0,0 @@
-
-
-
-
-
-InstructionSet.PopSpec
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-java.lang.Enum<InstructionSet.PopSpec >
-
-
-com.amd.aparapi.internal.instruction.InstructionSet.PopSpec
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Enum Constant Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-Methods
-
-Modifier and Type
-Method and Description
-
-
-int
-getStackAdjust ()
-
-
-static InstructionSet.PopSpec
-valueOf (java.lang.String name)
-Returns the enum constant of this type with the specified name.
-
-
-
-static InstructionSet.PopSpec []
-values ()
-Returns an array containing the constants of this enum type, in
-the order they are declared.
-
-
-
-
-
-
-
-Methods inherited from class java.lang.Enum
-compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
-
-
-
-
-
-Methods inherited from class java.lang.Object
-getClass, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-
-
-
-
-valueOf
-public static InstructionSet.PopSpec valueOf(java.lang.String name)
-Returns the enum constant of this type with the specified name.
-The string must match exactly an identifier used to declare an
-enum constant in this type. (Extraneous whitespace characters are
-not permitted.)
-Parameters: name - the name of the enum constant to be returned.
-Returns: the enum constant with the specified name
-Throws:
-java.lang.IllegalArgumentException - if this enum type has no constant
-with the specified name
-java.lang.NullPointerException - if the argument is null
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.PushSpec.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.PushSpec.html
deleted file mode 100644
index f82d0709..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.PushSpec.html
+++ /dev/null
@@ -1,518 +0,0 @@
-
-
-
-
-
-InstructionSet.PushSpec
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Enum Constant Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-
-Methods inherited from class java.lang.Enum
-compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
-
-
-
-
-
-Methods inherited from class java.lang.Object
-getClass, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-
-
-
-
-valueOf
-public static InstructionSet.PushSpec valueOf(java.lang.String name)
-Returns the enum constant of this type with the specified name.
-The string must match exactly an identifier used to declare an
-enum constant in this type. (Extraneous whitespace characters are
-not permitted.)
-Parameters: name - the name of the enum constant to be returned.
-Returns: the enum constant with the specified name
-Throws:
-java.lang.IllegalArgumentException - if this enum type has no constant
-with the specified name
-java.lang.NullPointerException - if the argument is null
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.Return.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.Return.html
deleted file mode 100644
index 3753d963..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.Return.html
+++ /dev/null
@@ -1,254 +0,0 @@
-
-
-
-
-
-InstructionSet.Return
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.Switch.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.Switch.html
deleted file mode 100644
index e3820648..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.Switch.html
+++ /dev/null
@@ -1,361 +0,0 @@
-
-
-
-
-
-InstructionSet.Switch
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.InstructionSet.Branch
-getAbsolute , getTarget , isBreakOrContinue , isConditional , isForward , isForwardConditional , isForwardUnconditional , isReverse , isReverseConditional , isReverseUnconditional , isUnconditional , retarget , setBreakOrContinue , setTarget , unhook
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-getSize
-public int getSize()
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.TypeSpec.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.TypeSpec.html
deleted file mode 100644
index 903bf2b5..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.TypeSpec.html
+++ /dev/null
@@ -1,569 +0,0 @@
-
-
-
-
-
-InstructionSet.TypeSpec
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Enum Constant Summary
-
-Enum Constants
-
-Enum Constant and Description
-
-
-A
-
-
-ARGS
-
-
-B
-
-
-C
-
-
-D
-
-
-F
-
-
-I
-
-
-IorForS
-
-
-J
-
-
-L
-
-
-LorD
-
-
-N
-
-
-NONE
-
-
-O
-
-
-RA
-
-
-S
-
-
-UNKNOWN
-
-
-Z
-
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-
-Methods inherited from class java.lang.Enum
-compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
-
-
-
-
-
-Methods inherited from class java.lang.Object
-getClass, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-
-
-
-
-valueOf
-public static InstructionSet.TypeSpec valueOf(java.lang.String name)
-Returns the enum constant of this type with the specified name.
-The string must match exactly an identifier used to declare an
-enum constant in this type. (Extraneous whitespace characters are
-not permitted.)
-Parameters: name - the name of the enum constant to be returned.
-Returns: the enum constant with the specified name
-Throws:
-java.lang.IllegalArgumentException - if this enum type has no constant
-with the specified name
-java.lang.NullPointerException - if the argument is null
-
-
-
-
-
-
-
-getSize
-public int getSize()
-
-
-
-
-
-
-
-getSlots
-public int getSlots()
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.Unary.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.Unary.html
deleted file mode 100644
index b77ae7fc..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.Unary.html
+++ /dev/null
@@ -1,226 +0,0 @@
-
-
-
-
-
-InstructionSet.Unary
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-Summary:
-Nested |
-Field |
-Constr |
-Method
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Summary:
-Nested |
-Field |
-Constr |
-Method
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.UnaryOperator.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.UnaryOperator.html
deleted file mode 100644
index 6326ddb6..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.UnaryOperator.html
+++ /dev/null
@@ -1,270 +0,0 @@
-
-
-
-
-
-InstructionSet.UnaryOperator
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-Summary:
-Nested |
-Field |
-Constr |
-Method
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Summary:
-Nested |
-Field |
-Constr |
-Method
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.UnconditionalBranch.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.UnconditionalBranch.html
deleted file mode 100644
index 8a564e68..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.UnconditionalBranch.html
+++ /dev/null
@@ -1,282 +0,0 @@
-
-
-
-
-
-InstructionSet.UnconditionalBranch
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.InstructionSet.Branch
-getAbsolute , getTarget , isBreakOrContinue , isConditional , isForward , isForwardConditional , isForwardUnconditional , isReverse , isReverseConditional , isReverseUnconditional , isUnconditional , retarget , setBreakOrContinue , setTarget , unhook
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.UnconditionalBranch16.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.UnconditionalBranch16.html
deleted file mode 100644
index 6a3c76e2..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.UnconditionalBranch16.html
+++ /dev/null
@@ -1,271 +0,0 @@
-
-
-
-
-
-InstructionSet.UnconditionalBranch16
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.InstructionSet.Branch
-getAbsolute , getTarget , isBreakOrContinue , isConditional , isForward , isForwardConditional , isForwardUnconditional , isReverse , isReverseConditional , isReverseUnconditional , isUnconditional , retarget , setBreakOrContinue , setTarget , unhook
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.instruction.Instruction
-addBranchTarget , asBranch , compareTo , consumesStack , getByteCode , getFirstChild , getForwardConditionalBranches , getForwardUnconditionalBranches , getLastChild , getLength , getMethod , getNextExpr , getNextPC , getParentExpr , getPrevExpr , getPrevPC , getReal , getReverseConditionalBranches , getReverseUnconditionalBranches , getRootExpr , getStackConsumeCount , getStackDelta , getStackProduceCount , getStartInstruction , getStartPC , getThisPC , isAfter , isAfterOrEqual , isBefore , isBeforeOrEqual , isBranch , isBranchTarget , isConditionalBranchTarget , isForwardBranch , isForwardBranchTarget , isForwardConditionalBranchTarget , isForwardUnconditionalBranchTarget , isReverseBranchTarget , isReverseConditionalBranchTarget , isReverseUnconditionalBranchTarget , isUnconditionalBranchTarget , producesStack , removeBranchTarget , sameAs , setChildren , setLength , setNextExpr , setNextPC , setParentExpr , setPrevExpr , setPrevPC , toInstruction , toString
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.VirtualMethodCall.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.VirtualMethodCall.html
deleted file mode 100644
index d18d329c..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.VirtualMethodCall.html
+++ /dev/null
@@ -1,226 +0,0 @@
-
-
-
-
-
-InstructionSet.VirtualMethodCall
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-Summary:
-Nested |
-Field |
-Constr |
-Method
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Summary:
-Nested |
-Field |
-Constr |
-Method
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.html
deleted file mode 100644
index 9552fb87..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionSet.html
+++ /dev/null
@@ -1,1329 +0,0 @@
-
-
-
-
-
-InstructionSet
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-com.amd.aparapi.internal.instruction.InstructionSet
-
-
-
-
-
-
-
-
-
-
-
-
-Nested Class Summary
-
-
-
-
-
-
-
-
-Constructor Summary
-
-Constructors
-
-Constructor and Description
-
-
-InstructionSet ()
-
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-InstructionSet
-public InstructionSet()
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionTransformer.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionTransformer.html
deleted file mode 100644
index 4722dd65..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/InstructionTransformer.html
+++ /dev/null
@@ -1,271 +0,0 @@
-
-
-
-
-
-InstructionTransformer
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-com.amd.aparapi.internal.instruction.InstructionTransformer
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/BranchSet.CompoundLogicalExpressionNode.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/BranchSet.CompoundLogicalExpressionNode.html
deleted file mode 100644
index a5d56502..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/BranchSet.CompoundLogicalExpressionNode.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.BranchSet.CompoundLogicalExpressionNode
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.instruction.BranchSet.CompoundLogicalExpressionNode
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/BranchSet.LogicalExpressionNode.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/BranchSet.LogicalExpressionNode.html
deleted file mode 100644
index 4b8fd7fd..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/BranchSet.LogicalExpressionNode.html
+++ /dev/null
@@ -1,248 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.BranchSet.LogicalExpressionNode
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/BranchSet.SimpleLogicalExpressionNode.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/BranchSet.SimpleLogicalExpressionNode.html
deleted file mode 100644
index 5ec7f41c..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/BranchSet.SimpleLogicalExpressionNode.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.BranchSet.SimpleLogicalExpressionNode
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.instruction.BranchSet.SimpleLogicalExpressionNode
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/BranchSet.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/BranchSet.html
deleted file mode 100644
index d64baf82..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/BranchSet.html
+++ /dev/null
@@ -1,256 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.BranchSet
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructors in com.amd.aparapi.internal.instruction with parameters of type BranchSet
-
-Constructor and Description
-
-
-
-InstructionSet.CompositeEmptyLoopInstruction (MethodModel method,
- Instruction _firstChild,
- Instruction _lastChild,
- BranchSet _branchSet)
-
-
-InstructionSet.CompositeForSunInstruction (MethodModel method,
- Instruction _firstChild,
- Instruction _lastChild,
- BranchSet _branchSet)
-
-
-InstructionSet.CompositeIfElseInstruction (MethodModel method,
- Instruction _firstChild,
- Instruction _lastChild,
- BranchSet _branchSet)
-
-
-InstructionSet.CompositeIfInstruction (MethodModel method,
- Instruction _firstChild,
- Instruction _lastChild,
- BranchSet _branchSet)
-
-
-InstructionSet.CompositeInstruction (MethodModel method,
- InstructionSet.ByteCode _byteCode,
- Instruction _firstChild,
- Instruction _lastChild,
- BranchSet _branchSet)
-
-
-InstructionSet.CompositeWhileInstruction (MethodModel method,
- Instruction _firstChild,
- Instruction _lastChild,
- BranchSet _branchSet)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/ExpressionList.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/ExpressionList.html
deleted file mode 100644
index 5f0c25c0..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/ExpressionList.html
+++ /dev/null
@@ -1,181 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.ExpressionList
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/Instruction.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/Instruction.html
deleted file mode 100644
index 4cb2c7ef..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/Instruction.html
+++ /dev/null
@@ -1,1925 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.Instruction
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Methods in com.amd.aparapi.internal.instruction with parameters of type Instruction
-
-Modifier and Type
-Method and Description
-
-
-
-Instruction
-ExpressionList. add (Instruction _instruction)
-Add this instruction to the end of the list.
-
-
-
-int
-Instruction. compareTo (Instruction _other)
-
-
-static InstructionSet.CompositeInstruction
-InstructionSet.CompositeInstruction. create (InstructionSet.ByteCode _byteCode,
- MethodModel _methodModel,
- Instruction _firstChild,
- Instruction _lastChild,
- BranchSet _branchSet)
-
-
-Instruction
-ExpressionList. createList (Instruction _newTail)
-[1] [2] [3] [4]
-
- Note that passing null here essentially deletes the existing expression list and returns the expression
-
-
-
-boolean
-ExpressionList. doesNotContainCompositeOrBranch (Instruction _start,
- Instruction _exclusiveEnd)
-
-
-boolean
-ExpressionList. doesNotContainContinueOrBreak (Instruction _start,
- Instruction _extent)
-Determine whether the sequence of instructions from _start to _extent is free of branches which extend beyond _extent.
-
-
-
-java.lang.String
-ExpressionList. dumpDiagram (Instruction _instruction)
-Aids debugging.
-
-
-
-InstructionSet.ConditionalBranch
-InstructionSet.ConditionalBranch. findEndOfConditionalBranchSet (Instruction _extent)
-
-
-boolean
-ExpressionList. foldComposite (Instruction _instruction)
-Fold headTail.tail into valid composites
-
-
-
-void
-ExpressionList. insertBetween (Instruction _prev,
- Instruction _next,
- Instruction _newOne)
-Insert the given instruction (_newone) between the existing entries (_prev and _next).
-
-
-
-boolean
-Instruction. isAfter (Instruction _other)
-
-
-boolean
-Instruction. isAfterOrEqual (Instruction _other)
-
-
-boolean
-Instruction. isBefore (Instruction _other)
-
-
-boolean
-Instruction. isBeforeOrEqual (Instruction _other)
-
-
-InstructionPattern.InstructionMatch
-InstructionPattern.AssignableInstructionMatcher. matches (Instruction _instruction)
-
-
-InstructionPattern.InstructionMatch
-InstructionPattern.InstructionMatcher. matches (Instruction _instruction,
- InstructionPattern.InstructionMatcher _instructionMatcher)
-
-
-void
-ExpressionList. replaceInclusive (Instruction _head,
- Instruction _tail,
- Instruction _newOne)
-Inclusive replace between _head and _tail with _newOne.
-
-
-
-void
-InstructionSet.Branch. retarget (Instruction _newTarget)
-
-
-boolean
-Instruction. sameAs (Instruction _other)
-
-
-void
-Instruction. setChildren (Instruction _firstChild,
- Instruction _lastChild)
-
-
-void
-Instruction. setNextExpr (Instruction _nextExpr)
-
-
-void
-Instruction. setNextPC (Instruction _nextByPC)
-
-
-void
-Instruction. setParentExpr (Instruction _parentExpr)
-
-
-void
-Instruction. setPrevExpr (Instruction _prevExpr)
-
-
-void
-Instruction. setPrevPC (Instruction _prevByPC)
-
-
-void
-InstructionSet.Branch. setTarget (Instruction _target)
-
-
-void
-InstructionSet.Switch. setTarget (int _index,
- Instruction _instruction)
-
-
-abstract Instruction
-InstructionTransformer. transform (ExpressionList _expressionList,
- Instruction i)
-
-
-
-
-Constructors in com.amd.aparapi.internal.instruction with parameters of type Instruction
-
-Constructor and Description
-
-
-
-InstructionSet.Branch (MethodModel _methodPoolEntry,
- InstructionSet.ByteCode _byteCode,
- Instruction _target)
-
-
-InstructionSet.CloneInstruction (MethodModel method,
- Instruction _cloning)
-
-
-InstructionSet.CompositeEmptyLoopInstruction (MethodModel method,
- Instruction _firstChild,
- Instruction _lastChild,
- BranchSet _branchSet)
-
-
-InstructionSet.CompositeForSunInstruction (MethodModel method,
- Instruction _firstChild,
- Instruction _lastChild,
- BranchSet _branchSet)
-
-
-InstructionSet.CompositeIfElseInstruction (MethodModel method,
- Instruction _firstChild,
- Instruction _lastChild,
- BranchSet _branchSet)
-
-
-InstructionSet.CompositeIfInstruction (MethodModel method,
- Instruction _firstChild,
- Instruction _lastChild,
- BranchSet _branchSet)
-
-
-InstructionSet.CompositeInstruction (MethodModel method,
- InstructionSet.ByteCode _byteCode,
- Instruction _firstChild,
- Instruction _lastChild,
- BranchSet _branchSet)
-
-
-InstructionSet.CompositeWhileInstruction (MethodModel method,
- Instruction _firstChild,
- Instruction _lastChild,
- BranchSet _branchSet)
-
-
-InstructionSet.FakeGoto (MethodModel _methodPoolEntry,
- Instruction _target)
-
-
-InstructionSet.FieldArrayElementAssign (MethodModel method,
- InstructionSet.AssignToArrayElement _assignToArrayElement,
- Instruction _rhs)
-
-
-InstructionSet.IncrementInstruction (MethodModel method,
- Instruction _fieldOrVariable,
- boolean _isInc,
- boolean _isPre)
-
-
-InstructionSet.InlineAssignInstruction (MethodModel method,
- InstructionSet.AssignToLocalVariable _assignToLocalVariable,
- Instruction _rhs)
-
-
-InstructionSet.MultiAssignInstruction (MethodModel method,
- Instruction _common,
- Instruction _from,
- Instruction _to)
-
-
-InstructionSet.UnconditionalBranch (MethodModel _methodPoolEntry,
- InstructionSet.ByteCode _byteCode,
- Instruction _target)
-
-
-
-
-
-
-
-
-
-
-
-Methods in com.amd.aparapi.internal.model with parameters of type Instruction
-
-Modifier and Type
-Method and Description
-
-
-
-void
-MethodModel. setRequiredPragmas (Instruction instruction)
-Look at each instruction for use of long/double or byte writes which
- require pragmas to be used in the OpenCL source
-
-
-
-void
-MethodModel. txFormDups (ExpressionList _expressionList,
- Instruction _instruction)
-DUP family of instructions break our stack unwind model (whereby we treat instructions like the oeprands they create/consume).
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionPattern.AssignableInstructionMatcher.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionPattern.AssignableInstructionMatcher.html
deleted file mode 100644
index 45201ebb..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionPattern.AssignableInstructionMatcher.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionPattern.AssignableInstructionMatcher
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.instruction.InstructionPattern.AssignableInstructionMatcher
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionPattern.InstructionMatch.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionPattern.InstructionMatch.html
deleted file mode 100644
index 68c453b8..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionPattern.InstructionMatch.html
+++ /dev/null
@@ -1,181 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionPattern.InstructionMatch
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionPattern.InstructionMatcher.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionPattern.InstructionMatcher.html
deleted file mode 100644
index c56d9104..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionPattern.InstructionMatcher.html
+++ /dev/null
@@ -1,254 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionPattern.InstructionMatcher
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionPattern.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionPattern.html
deleted file mode 100644
index f8bcd443..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionPattern.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionPattern
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.instruction.InstructionPattern
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.AccessArrayElement.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.AccessArrayElement.html
deleted file mode 100644
index 9e259b33..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.AccessArrayElement.html
+++ /dev/null
@@ -1,183 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.AccessArrayElement
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.AccessField.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.AccessField.html
deleted file mode 100644
index c4d88ac1..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.AccessField.html
+++ /dev/null
@@ -1,172 +0,0 @@
-
-
-
-
-
-Uses of Interface com.amd.aparapi.internal.instruction.InstructionSet.AccessField
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.AccessInstanceField.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.AccessInstanceField.html
deleted file mode 100644
index c62e8681..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.AccessInstanceField.html
+++ /dev/null
@@ -1,155 +0,0 @@
-
-
-
-
-
-Uses of Interface com.amd.aparapi.internal.instruction.InstructionSet.AccessInstanceField
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.AccessLocalVariable.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.AccessLocalVariable.html
deleted file mode 100644
index a0107d61..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.AccessLocalVariable.html
+++ /dev/null
@@ -1,375 +0,0 @@
-
-
-
-
-
-Uses of Interface com.amd.aparapi.internal.instruction.InstructionSet.AccessLocalVariable
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.ArrayAccess.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.ArrayAccess.html
deleted file mode 100644
index de6d4b2b..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.ArrayAccess.html
+++ /dev/null
@@ -1,223 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.ArrayAccess
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.AssignToArrayElement.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.AssignToArrayElement.html
deleted file mode 100644
index ec52e7b5..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.AssignToArrayElement.html
+++ /dev/null
@@ -1,219 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.AssignToArrayElement
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.AssignToField.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.AssignToField.html
deleted file mode 100644
index d4f9d516..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.AssignToField.html
+++ /dev/null
@@ -1,172 +0,0 @@
-
-
-
-
-
-Uses of Interface com.amd.aparapi.internal.instruction.InstructionSet.AssignToField
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.AssignToInstanceField.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.AssignToInstanceField.html
deleted file mode 100644
index b45322eb..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.AssignToInstanceField.html
+++ /dev/null
@@ -1,155 +0,0 @@
-
-
-
-
-
-Uses of Interface com.amd.aparapi.internal.instruction.InstructionSet.AssignToInstanceField
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.AssignToLocalVariable.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.AssignToLocalVariable.html
deleted file mode 100644
index a2a5c541..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.AssignToLocalVariable.html
+++ /dev/null
@@ -1,289 +0,0 @@
-
-
-
-
-
-Uses of Interface com.amd.aparapi.internal.instruction.InstructionSet.AssignToLocalVariable
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.Binary.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.Binary.html
deleted file mode 100644
index b39b9e0a..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.Binary.html
+++ /dev/null
@@ -1,331 +0,0 @@
-
-
-
-
-
-Uses of Interface com.amd.aparapi.internal.instruction.InstructionSet.Binary
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.BinaryOperator.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.BinaryOperator.html
deleted file mode 100644
index 7488a06f..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.BinaryOperator.html
+++ /dev/null
@@ -1,291 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.BinaryOperator
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.Branch.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.Branch.html
deleted file mode 100644
index cd3dcb77..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.Branch.html
+++ /dev/null
@@ -1,343 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.Branch
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.Branch32.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.Branch32.html
deleted file mode 100644
index d31ea3c5..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.Branch32.html
+++ /dev/null
@@ -1,159 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.Branch32
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.ByteCode.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.ByteCode.html
deleted file mode 100644
index c78f476a..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.ByteCode.html
+++ /dev/null
@@ -1,363 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.ByteCode
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructors in com.amd.aparapi.internal.instruction with parameters of type InstructionSet.ByteCode
-
-Constructor and Description
-
-
-
-InstructionSet.ArrayAccess (MethodModel _methodPoolEntry,
- InstructionSet.ByteCode _byteCode,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.Branch (MethodModel _methodPoolEntry,
- InstructionSet.ByteCode _byteCode,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.Branch (MethodModel _methodPoolEntry,
- InstructionSet.ByteCode _byteCode,
- Instruction _target)
-
-
-InstructionSet.Branch32 (MethodModel _methodPoolEntry,
- InstructionSet.ByteCode _byteCode,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.BytecodeEncodedConstant (MethodModel _methodPoolEntry,
- InstructionSet.ByteCode _byteCode,
- ByteReader _byteReader,
- boolean _wide,
- T _value)
-
-
-InstructionSet.CompositeInstruction (MethodModel method,
- InstructionSet.ByteCode _byteCode,
- Instruction _firstChild,
- Instruction _lastChild,
- BranchSet _branchSet)
-
-
-InstructionSet.ConditionalBranch (MethodModel _methodPoolEntry,
- InstructionSet.ByteCode _byteCode,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.ConditionalBranch16 (MethodModel _methodPoolEntry,
- InstructionSet.ByteCode _byteCode,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.DUP (MethodModel _methodPoolEntry,
- InstructionSet.ByteCode _byteCode,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.If (MethodModel _methodPoolEntry,
- InstructionSet.ByteCode _byteCode,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.IfUnary (MethodModel _methodPoolEntry,
- InstructionSet.ByteCode _byteCode,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.ImmediateConstant (MethodModel _methodPoolEntry,
- InstructionSet.ByteCode _byteCode,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.Index (MethodModel _methodPoolEntry,
- InstructionSet.ByteCode _byteCode,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.Index08 (MethodModel _methodPoolEntry,
- InstructionSet.ByteCode _byteCode,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.Index16 (MethodModel _methodPoolEntry,
- InstructionSet.ByteCode _byteCode,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.IndexConst (MethodModel _methodPoolEntry,
- InstructionSet.ByteCode _byteCode,
- ByteReader _byteReader,
- boolean _wide,
- int _index)
-
-
-InstructionSet.LocalVariableConstIndexAccessor (MethodModel methodPoolEntry,
- InstructionSet.ByteCode byteCode,
- ByteReader byteReader,
- boolean _wide,
- int index)
-
-
-InstructionSet.LocalVariableConstIndexLoad (MethodModel methodPoolEntry,
- InstructionSet.ByteCode byteCode,
- ByteReader byteReader,
- boolean _wide,
- int index)
-
-
-InstructionSet.LocalVariableConstIndexStore (MethodModel methodPoolEntry,
- InstructionSet.ByteCode byteCode,
- ByteReader byteReader,
- boolean _wide,
- int index)
-
-
-InstructionSet.LocalVariableIndex08Accessor (MethodModel methodPoolEntry,
- InstructionSet.ByteCode byteCode,
- ByteReader byteReader,
- boolean _wide)
-
-
-InstructionSet.LocalVariableIndex08Load (MethodModel methodPoolEntry,
- InstructionSet.ByteCode byteCode,
- ByteReader byteReader,
- boolean _wide)
-
-
-InstructionSet.LocalVariableIndex08Store (MethodModel methodPoolEntry,
- InstructionSet.ByteCode byteCode,
- ByteReader byteReader,
- boolean _wide)
-
-
-InstructionSet.Return (MethodModel _methodPoolEntry,
- InstructionSet.ByteCode _byteCode,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.Switch (MethodModel _methodPoolEntry,
- InstructionSet.ByteCode _code,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.UnconditionalBranch (MethodModel _methodPoolEntry,
- InstructionSet.ByteCode _byteCode,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.UnconditionalBranch (MethodModel _methodPoolEntry,
- InstructionSet.ByteCode _byteCode,
- Instruction _target)
-
-
-InstructionSet.UnconditionalBranch16 (MethodModel _methodPoolEntry,
- InstructionSet.ByteCode _byteCode,
- ByteReader _byteReader,
- boolean _wide)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.BytecodeEncodedConstant.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.BytecodeEncodedConstant.html
deleted file mode 100644
index ce08feb5..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.BytecodeEncodedConstant.html
+++ /dev/null
@@ -1,207 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.BytecodeEncodedConstant
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.CastOperator.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.CastOperator.html
deleted file mode 100644
index d8c924d3..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.CastOperator.html
+++ /dev/null
@@ -1,211 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.CastOperator
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.CloneInstruction.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.CloneInstruction.html
deleted file mode 100644
index 95c3ffdf..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.CloneInstruction.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.CloneInstruction
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.instruction.InstructionSet.CloneInstruction
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.CompositeArbitraryScopeInstruction.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.CompositeArbitraryScopeInstruction.html
deleted file mode 100644
index 1c8c56df..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.CompositeArbitraryScopeInstruction.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.CompositeArbitraryScopeInstruction
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.instruction.InstructionSet.CompositeArbitraryScopeInstruction
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.CompositeEmptyLoopInstruction.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.CompositeEmptyLoopInstruction.html
deleted file mode 100644
index 27c180fc..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.CompositeEmptyLoopInstruction.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.CompositeEmptyLoopInstruction
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.instruction.InstructionSet.CompositeEmptyLoopInstruction
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.CompositeForEclipseInstruction.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.CompositeForEclipseInstruction.html
deleted file mode 100644
index 64223ba0..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.CompositeForEclipseInstruction.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.CompositeForEclipseInstruction
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.instruction.InstructionSet.CompositeForEclipseInstruction
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.CompositeForSunInstruction.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.CompositeForSunInstruction.html
deleted file mode 100644
index e5f95c4a..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.CompositeForSunInstruction.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.CompositeForSunInstruction
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.instruction.InstructionSet.CompositeForSunInstruction
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.CompositeIfElseInstruction.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.CompositeIfElseInstruction.html
deleted file mode 100644
index 2c1d6ef9..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.CompositeIfElseInstruction.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.CompositeIfElseInstruction
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.instruction.InstructionSet.CompositeIfElseInstruction
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.CompositeIfInstruction.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.CompositeIfInstruction.html
deleted file mode 100644
index c2089b03..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.CompositeIfInstruction.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.CompositeIfInstruction
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.instruction.InstructionSet.CompositeIfInstruction
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.CompositeInstruction.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.CompositeInstruction.html
deleted file mode 100644
index f48cdec5..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.CompositeInstruction.html
+++ /dev/null
@@ -1,218 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.CompositeInstruction
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.CompositeWhileInstruction.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.CompositeWhileInstruction.html
deleted file mode 100644
index cf14ca7f..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.CompositeWhileInstruction.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.CompositeWhileInstruction
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.instruction.InstructionSet.CompositeWhileInstruction
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.ConditionalBranch.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.ConditionalBranch.html
deleted file mode 100644
index 270990f5..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.ConditionalBranch.html
+++ /dev/null
@@ -1,276 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.ConditionalBranch
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.ConditionalBranch16.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.ConditionalBranch16.html
deleted file mode 100644
index 950b8bfb..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.ConditionalBranch16.html
+++ /dev/null
@@ -1,246 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.ConditionalBranch16
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.Constant.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.Constant.html
deleted file mode 100644
index c153061a..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.Constant.html
+++ /dev/null
@@ -1,252 +0,0 @@
-
-
-
-
-
-Uses of Interface com.amd.aparapi.internal.instruction.InstructionSet.Constant
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.ConstantPoolEntryConstant.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.ConstantPoolEntryConstant.html
deleted file mode 100644
index 783343d5..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.ConstantPoolEntryConstant.html
+++ /dev/null
@@ -1,163 +0,0 @@
-
-
-
-
-
-Uses of Interface com.amd.aparapi.internal.instruction.InstructionSet.ConstantPoolEntryConstant
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.DUP.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.DUP.html
deleted file mode 100644
index 9ec22a43..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.DUP.html
+++ /dev/null
@@ -1,175 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.DUP
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.FakeGoto.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.FakeGoto.html
deleted file mode 100644
index 4332ab9d..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.FakeGoto.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.FakeGoto
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.instruction.InstructionSet.FakeGoto
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.FieldArrayElementAssign.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.FieldArrayElementAssign.html
deleted file mode 100644
index 3a73ba94..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.FieldArrayElementAssign.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.FieldArrayElementAssign
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.instruction.InstructionSet.FieldArrayElementAssign
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.FieldArrayElementIncrement.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.FieldArrayElementIncrement.html
deleted file mode 100644
index 9eac13df..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.FieldArrayElementIncrement.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.FieldArrayElementIncrement
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.instruction.InstructionSet.FieldArrayElementIncrement
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.FieldReference.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.FieldReference.html
deleted file mode 100644
index 9506e857..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.FieldReference.html
+++ /dev/null
@@ -1,192 +0,0 @@
-
-
-
-
-
-Uses of Interface com.amd.aparapi.internal.instruction.InstructionSet.FieldReference
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.HasOperator.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.HasOperator.html
deleted file mode 100644
index ae802b12..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.HasOperator.html
+++ /dev/null
@@ -1,472 +0,0 @@
-
-
-
-
-
-Uses of Interface com.amd.aparapi.internal.instruction.InstructionSet.HasOperator
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_AALOAD.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_AALOAD.html
deleted file mode 100644
index 1f3047a3..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_AALOAD.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.I_AALOAD
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.instruction.InstructionSet.I_AALOAD
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_AASTORE.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_AASTORE.html
deleted file mode 100644
index c9948dfa..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_AASTORE.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.I_AASTORE
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.instruction.InstructionSet.I_AASTORE
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_ACONST_NULL.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_ACONST_NULL.html
deleted file mode 100644
index f5dec488..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_ACONST_NULL.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.I_ACONST_NULL
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.instruction.InstructionSet.I_ACONST_NULL
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_ALOAD.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_ALOAD.html
deleted file mode 100644
index 12589387..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_ALOAD.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.I_ALOAD
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.instruction.InstructionSet.I_ALOAD
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_ALOAD_0.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_ALOAD_0.html
deleted file mode 100644
index 289fb4ac..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_ALOAD_0.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.I_ALOAD_0
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.instruction.InstructionSet.I_ALOAD_0
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_ALOAD_1.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_ALOAD_1.html
deleted file mode 100644
index 8cd67b06..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_ALOAD_1.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.I_ALOAD_1
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.instruction.InstructionSet.I_ALOAD_1
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_ALOAD_2.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_ALOAD_2.html
deleted file mode 100644
index 77c4b633..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_ALOAD_2.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.I_ALOAD_2
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.instruction.InstructionSet.I_ALOAD_2
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_ALOAD_3.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_ALOAD_3.html
deleted file mode 100644
index b18704eb..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_ALOAD_3.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.I_ALOAD_3
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.instruction.InstructionSet.I_ALOAD_3
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_ANEWARRAY.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_ANEWARRAY.html
deleted file mode 100644
index 6640747c..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_ANEWARRAY.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.I_ANEWARRAY
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.instruction.InstructionSet.I_ANEWARRAY
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_ARETURN.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_ARETURN.html
deleted file mode 100644
index 69342694..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_ARETURN.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.I_ARETURN
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.instruction.InstructionSet.I_ARETURN
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_ARRAYLENGTH.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_ARRAYLENGTH.html
deleted file mode 100644
index 969223ab..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_ARRAYLENGTH.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.I_ARRAYLENGTH
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.instruction.InstructionSet.I_ARRAYLENGTH
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_ASTORE.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_ASTORE.html
deleted file mode 100644
index 0a05826e..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_ASTORE.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.I_ASTORE
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.instruction.InstructionSet.I_ASTORE
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_ASTORE_0.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_ASTORE_0.html
deleted file mode 100644
index bd2eadea..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_ASTORE_0.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.I_ASTORE_0
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.instruction.InstructionSet.I_ASTORE_0
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_ASTORE_1.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_ASTORE_1.html
deleted file mode 100644
index aaca2fc9..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_ASTORE_1.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.I_ASTORE_1
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.instruction.InstructionSet.I_ASTORE_1
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_ASTORE_2.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_ASTORE_2.html
deleted file mode 100644
index 7333555d..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_ASTORE_2.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.I_ASTORE_2
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.instruction.InstructionSet.I_ASTORE_2
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_ASTORE_3.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_ASTORE_3.html
deleted file mode 100644
index 99d35463..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_ASTORE_3.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.I_ASTORE_3
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.instruction.InstructionSet.I_ASTORE_3
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_ATHROW.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_ATHROW.html
deleted file mode 100644
index 1690b502..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_ATHROW.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.I_ATHROW
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.instruction.InstructionSet.I_ATHROW
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_BALOAD.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_BALOAD.html
deleted file mode 100644
index 80c7b3ad..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_BALOAD.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.I_BALOAD
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.instruction.InstructionSet.I_BALOAD
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_BASTORE.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_BASTORE.html
deleted file mode 100644
index 827bca4a..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_BASTORE.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.I_BASTORE
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.instruction.InstructionSet.I_BASTORE
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_BIPUSH.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_BIPUSH.html
deleted file mode 100644
index 8e814cce..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_BIPUSH.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.I_BIPUSH
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.instruction.InstructionSet.I_BIPUSH
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_CALOAD.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_CALOAD.html
deleted file mode 100644
index 1748cd96..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_CALOAD.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.I_CALOAD
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.instruction.InstructionSet.I_CALOAD
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_CASTORE.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_CASTORE.html
deleted file mode 100644
index 0835b04d..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_CASTORE.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.I_CASTORE
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.instruction.InstructionSet.I_CASTORE
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_CHECKCAST.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_CHECKCAST.html
deleted file mode 100644
index 398038e9..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_CHECKCAST.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.I_CHECKCAST
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.instruction.InstructionSet.I_CHECKCAST
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_D2F.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_D2F.html
deleted file mode 100644
index bb29c61d..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_D2F.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.I_D2F
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.instruction.InstructionSet.I_D2F
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_D2I.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_D2I.html
deleted file mode 100644
index e3e2293e..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_D2I.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.I_D2I
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.instruction.InstructionSet.I_D2I
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_D2L.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_D2L.html
deleted file mode 100644
index d892ba39..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_D2L.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.I_D2L
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.instruction.InstructionSet.I_D2L
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_DADD.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_DADD.html
deleted file mode 100644
index 62501486..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_DADD.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.I_DADD
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.instruction.InstructionSet.I_DADD
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_DALOAD.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_DALOAD.html
deleted file mode 100644
index d034fae5..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_DALOAD.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.I_DALOAD
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.instruction.InstructionSet.I_DALOAD
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_DASTORE.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_DASTORE.html
deleted file mode 100644
index de16e752..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_DASTORE.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.I_DASTORE
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.instruction.InstructionSet.I_DASTORE
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_DCMPG.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_DCMPG.html
deleted file mode 100644
index 1c879053..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_DCMPG.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.I_DCMPG
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.instruction.InstructionSet.I_DCMPG
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_DCMPL.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_DCMPL.html
deleted file mode 100644
index 9baa5be8..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_DCMPL.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.I_DCMPL
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.instruction.InstructionSet.I_DCMPL
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_DCONST_0.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_DCONST_0.html
deleted file mode 100644
index 52edcb25..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_DCONST_0.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.I_DCONST_0
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.instruction.InstructionSet.I_DCONST_0
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_DCONST_1.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_DCONST_1.html
deleted file mode 100644
index a12b226c..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_DCONST_1.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.I_DCONST_1
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.instruction.InstructionSet.I_DCONST_1
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_DDIV.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_DDIV.html
deleted file mode 100644
index f8858a5a..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_DDIV.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.I_DDIV
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.instruction.InstructionSet.I_DDIV
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_DLOAD.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_DLOAD.html
deleted file mode 100644
index 31d2d456..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_DLOAD.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.I_DLOAD
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.instruction.InstructionSet.I_DLOAD
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_DLOAD_0.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_DLOAD_0.html
deleted file mode 100644
index 4a59290e..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_DLOAD_0.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.I_DLOAD_0
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.instruction.InstructionSet.I_DLOAD_0
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_DLOAD_1.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_DLOAD_1.html
deleted file mode 100644
index a1362e26..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_DLOAD_1.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.I_DLOAD_1
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.instruction.InstructionSet.I_DLOAD_1
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_DLOAD_2.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_DLOAD_2.html
deleted file mode 100644
index 44dfc025..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_DLOAD_2.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.I_DLOAD_2
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.instruction.InstructionSet.I_DLOAD_2
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_DLOAD_3.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_DLOAD_3.html
deleted file mode 100644
index dc61070f..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_DLOAD_3.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.I_DLOAD_3
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.instruction.InstructionSet.I_DLOAD_3
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_DMUL.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_DMUL.html
deleted file mode 100644
index 485f5043..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_DMUL.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.I_DMUL
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.instruction.InstructionSet.I_DMUL
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_DNEG.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_DNEG.html
deleted file mode 100644
index 65c60e3f..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_DNEG.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.I_DNEG
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.instruction.InstructionSet.I_DNEG
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_DREM.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_DREM.html
deleted file mode 100644
index 89a8a042..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_DREM.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.I_DREM
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.instruction.InstructionSet.I_DREM
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_DRETURN.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_DRETURN.html
deleted file mode 100644
index 414dd2fc..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_DRETURN.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.I_DRETURN
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.instruction.InstructionSet.I_DRETURN
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_DSTORE.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_DSTORE.html
deleted file mode 100644
index df112319..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_DSTORE.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.I_DSTORE
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.instruction.InstructionSet.I_DSTORE
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_DSTORE_0.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_DSTORE_0.html
deleted file mode 100644
index efc13ab8..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_DSTORE_0.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.I_DSTORE_0
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.instruction.InstructionSet.I_DSTORE_0
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_DSTORE_1.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_DSTORE_1.html
deleted file mode 100644
index 43164720..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_DSTORE_1.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.I_DSTORE_1
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.instruction.InstructionSet.I_DSTORE_1
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_DSTORE_2.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_DSTORE_2.html
deleted file mode 100644
index 7927ac11..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_DSTORE_2.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.I_DSTORE_2
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.instruction.InstructionSet.I_DSTORE_2
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_DSTORE_3.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_DSTORE_3.html
deleted file mode 100644
index bd73e18b..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_DSTORE_3.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.I_DSTORE_3
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.instruction.InstructionSet.I_DSTORE_3
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_DSUB.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_DSUB.html
deleted file mode 100644
index 06d0d91e..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_DSUB.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.I_DSUB
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.instruction.InstructionSet.I_DSUB
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_DUP.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_DUP.html
deleted file mode 100644
index 85b112db..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_DUP.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.I_DUP
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.instruction.InstructionSet.I_DUP
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_DUP2.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_DUP2.html
deleted file mode 100644
index 1ba58a11..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_DUP2.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.I_DUP2
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.instruction.InstructionSet.I_DUP2
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_DUP2_X1.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_DUP2_X1.html
deleted file mode 100644
index d326da07..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_DUP2_X1.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.I_DUP2_X1
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.instruction.InstructionSet.I_DUP2_X1
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_DUP2_X2.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_DUP2_X2.html
deleted file mode 100644
index 249f4af6..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_DUP2_X2.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.I_DUP2_X2
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.instruction.InstructionSet.I_DUP2_X2
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_DUP_X1.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_DUP_X1.html
deleted file mode 100644
index 2b0c3797..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_DUP_X1.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.I_DUP_X1
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.instruction.InstructionSet.I_DUP_X1
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_DUP_X2.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_DUP_X2.html
deleted file mode 100644
index 29b0e29c..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_DUP_X2.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.I_DUP_X2
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.instruction.InstructionSet.I_DUP_X2
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_END.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_END.html
deleted file mode 100644
index 19c2ad5f..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_END.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.I_END
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.instruction.InstructionSet.I_END
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_F2D.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_F2D.html
deleted file mode 100644
index d8f64f0f..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_F2D.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.I_F2D
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.instruction.InstructionSet.I_F2D
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_F2I.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_F2I.html
deleted file mode 100644
index 01e11de3..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_F2I.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.I_F2I
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.instruction.InstructionSet.I_F2I
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_F2L.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_F2L.html
deleted file mode 100644
index a41bed62..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_F2L.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.I_F2L
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.instruction.InstructionSet.I_F2L
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_FADD.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_FADD.html
deleted file mode 100644
index df93d057..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_FADD.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.I_FADD
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.instruction.InstructionSet.I_FADD
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_FALOAD.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_FALOAD.html
deleted file mode 100644
index cd8efffc..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_FALOAD.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.I_FALOAD
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.instruction.InstructionSet.I_FALOAD
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_FASTORE.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_FASTORE.html
deleted file mode 100644
index ed863c5c..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_FASTORE.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.I_FASTORE
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.instruction.InstructionSet.I_FASTORE
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_FCMPG.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_FCMPG.html
deleted file mode 100644
index cabcbb32..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_FCMPG.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.I_FCMPG
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.instruction.InstructionSet.I_FCMPG
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_FCMPL.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_FCMPL.html
deleted file mode 100644
index f73ec349..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_FCMPL.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.I_FCMPL
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.instruction.InstructionSet.I_FCMPL
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_FCONST_0.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_FCONST_0.html
deleted file mode 100644
index d2a51de8..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_FCONST_0.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.I_FCONST_0
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.instruction.InstructionSet.I_FCONST_0
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_FCONST_1.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_FCONST_1.html
deleted file mode 100644
index 5e1ad47c..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_FCONST_1.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.I_FCONST_1
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.instruction.InstructionSet.I_FCONST_1
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_FCONST_2.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_FCONST_2.html
deleted file mode 100644
index 50316ea9..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_FCONST_2.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.I_FCONST_2
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.instruction.InstructionSet.I_FCONST_2
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_FDIV.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_FDIV.html
deleted file mode 100644
index 63e4414e..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_FDIV.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.I_FDIV
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.instruction.InstructionSet.I_FDIV
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_FLOAD.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_FLOAD.html
deleted file mode 100644
index 0a014dca..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_FLOAD.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.I_FLOAD
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.instruction.InstructionSet.I_FLOAD
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_FLOAD_0.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_FLOAD_0.html
deleted file mode 100644
index fc03f17f..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_FLOAD_0.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.I_FLOAD_0
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.instruction.InstructionSet.I_FLOAD_0
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_FLOAD_1.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_FLOAD_1.html
deleted file mode 100644
index ce05d2be..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_FLOAD_1.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.I_FLOAD_1
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.instruction.InstructionSet.I_FLOAD_1
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_FLOAD_2.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_FLOAD_2.html
deleted file mode 100644
index 43e13879..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_FLOAD_2.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.I_FLOAD_2
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.instruction.InstructionSet.I_FLOAD_2
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_FLOAD_3.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_FLOAD_3.html
deleted file mode 100644
index 8f3b47d6..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_FLOAD_3.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.I_FLOAD_3
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.instruction.InstructionSet.I_FLOAD_3
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_FMUL.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_FMUL.html
deleted file mode 100644
index 1675606d..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_FMUL.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.I_FMUL
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.instruction.InstructionSet.I_FMUL
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_FNEG.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_FNEG.html
deleted file mode 100644
index 6a2e503f..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_FNEG.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.I_FNEG
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.instruction.InstructionSet.I_FNEG
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_FREM.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_FREM.html
deleted file mode 100644
index 9ab941ad..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_FREM.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.I_FREM
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.instruction.InstructionSet.I_FREM
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_FRETURN.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_FRETURN.html
deleted file mode 100644
index 6df8a29e..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_FRETURN.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.I_FRETURN
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.instruction.InstructionSet.I_FRETURN
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_FSTORE.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_FSTORE.html
deleted file mode 100644
index bb3779bb..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_FSTORE.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.I_FSTORE
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.instruction.InstructionSet.I_FSTORE
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_FSTORE_0.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_FSTORE_0.html
deleted file mode 100644
index 6c437e28..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_FSTORE_0.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.I_FSTORE_0
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.instruction.InstructionSet.I_FSTORE_0
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_FSTORE_1.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_FSTORE_1.html
deleted file mode 100644
index 567099c6..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_FSTORE_1.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.I_FSTORE_1
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.instruction.InstructionSet.I_FSTORE_1
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_FSTORE_2.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_FSTORE_2.html
deleted file mode 100644
index 186bb707..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_FSTORE_2.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.I_FSTORE_2
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.instruction.InstructionSet.I_FSTORE_2
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_FSTORE_3.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_FSTORE_3.html
deleted file mode 100644
index 4a8f8af5..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_FSTORE_3.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.I_FSTORE_3
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.instruction.InstructionSet.I_FSTORE_3
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_FSUB.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_FSUB.html
deleted file mode 100644
index 14389784..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_FSUB.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.I_FSUB
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.instruction.InstructionSet.I_FSUB
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_GETFIELD.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_GETFIELD.html
deleted file mode 100644
index 93213d04..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_GETFIELD.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.I_GETFIELD
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.instruction.InstructionSet.I_GETFIELD
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_GETSTATIC.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_GETSTATIC.html
deleted file mode 100644
index e5332d2e..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_GETSTATIC.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.I_GETSTATIC
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.instruction.InstructionSet.I_GETSTATIC
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_GOTO.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_GOTO.html
deleted file mode 100644
index 0e8f07ff..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_GOTO.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.I_GOTO
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.instruction.InstructionSet.I_GOTO
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_GOTO_W.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_GOTO_W.html
deleted file mode 100644
index e3af36f9..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_GOTO_W.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.I_GOTO_W
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.instruction.InstructionSet.I_GOTO_W
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_I2B.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_I2B.html
deleted file mode 100644
index 25a51cf2..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_I2B.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.I_I2B
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.instruction.InstructionSet.I_I2B
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_I2C.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_I2C.html
deleted file mode 100644
index 5a09f0ba..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_I2C.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.I_I2C
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.instruction.InstructionSet.I_I2C
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_I2D.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_I2D.html
deleted file mode 100644
index 3b38e5a7..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_I2D.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.I_I2D
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.instruction.InstructionSet.I_I2D
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_I2F.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_I2F.html
deleted file mode 100644
index 3bf4be81..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_I2F.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.I_I2F
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.instruction.InstructionSet.I_I2F
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_I2L.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_I2L.html
deleted file mode 100644
index 9c046c53..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_I2L.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.I_I2L
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.instruction.InstructionSet.I_I2L
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_I2S.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_I2S.html
deleted file mode 100644
index b39519fe..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_I2S.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.I_I2S
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.instruction.InstructionSet.I_I2S
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_IADD.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_IADD.html
deleted file mode 100644
index 56450932..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_IADD.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.I_IADD
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.instruction.InstructionSet.I_IADD
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_IALOAD.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_IALOAD.html
deleted file mode 100644
index f9fa0908..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_IALOAD.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.I_IALOAD
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.instruction.InstructionSet.I_IALOAD
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_IAND.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_IAND.html
deleted file mode 100644
index 7cece329..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_IAND.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.I_IAND
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.instruction.InstructionSet.I_IAND
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_IASTORE.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_IASTORE.html
deleted file mode 100644
index 051d2729..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_IASTORE.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.I_IASTORE
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.instruction.InstructionSet.I_IASTORE
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_ICONST_0.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_ICONST_0.html
deleted file mode 100644
index 8373bcf1..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_ICONST_0.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.I_ICONST_0
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.instruction.InstructionSet.I_ICONST_0
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_ICONST_1.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_ICONST_1.html
deleted file mode 100644
index e77c3c6e..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_ICONST_1.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.I_ICONST_1
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.instruction.InstructionSet.I_ICONST_1
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_ICONST_2.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_ICONST_2.html
deleted file mode 100644
index d23fd076..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_ICONST_2.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.I_ICONST_2
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.instruction.InstructionSet.I_ICONST_2
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_ICONST_3.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_ICONST_3.html
deleted file mode 100644
index 64e42a79..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_ICONST_3.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.I_ICONST_3
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.instruction.InstructionSet.I_ICONST_3
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_ICONST_4.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_ICONST_4.html
deleted file mode 100644
index 24f952b6..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_ICONST_4.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.I_ICONST_4
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.instruction.InstructionSet.I_ICONST_4
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_ICONST_5.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_ICONST_5.html
deleted file mode 100644
index 2149f4d4..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_ICONST_5.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.I_ICONST_5
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.instruction.InstructionSet.I_ICONST_5
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_ICONST_M1.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_ICONST_M1.html
deleted file mode 100644
index c6bea3ef..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_ICONST_M1.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.I_ICONST_M1
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.instruction.InstructionSet.I_ICONST_M1
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_IDIV.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_IDIV.html
deleted file mode 100644
index 58564f2b..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_IDIV.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.I_IDIV
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.instruction.InstructionSet.I_IDIV
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_IFEQ.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_IFEQ.html
deleted file mode 100644
index 889f2168..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_IFEQ.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.I_IFEQ
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.instruction.InstructionSet.I_IFEQ
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_IFGE.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_IFGE.html
deleted file mode 100644
index 5a5b135e..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_IFGE.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.I_IFGE
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.instruction.InstructionSet.I_IFGE
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_IFGT.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_IFGT.html
deleted file mode 100644
index 35e275f6..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_IFGT.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.I_IFGT
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.instruction.InstructionSet.I_IFGT
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_IFLE.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_IFLE.html
deleted file mode 100644
index 4fea0c99..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_IFLE.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.I_IFLE
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.instruction.InstructionSet.I_IFLE
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_IFLT.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_IFLT.html
deleted file mode 100644
index dfdd7a03..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_IFLT.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.I_IFLT
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.instruction.InstructionSet.I_IFLT
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_IFNE.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_IFNE.html
deleted file mode 100644
index bd7ff558..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_IFNE.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.I_IFNE
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.instruction.InstructionSet.I_IFNE
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_IFNONNULL.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_IFNONNULL.html
deleted file mode 100644
index 09e6e3b2..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_IFNONNULL.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.I_IFNONNULL
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.instruction.InstructionSet.I_IFNONNULL
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_IFNULL.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_IFNULL.html
deleted file mode 100644
index 18a6f3fe..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_IFNULL.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.I_IFNULL
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.instruction.InstructionSet.I_IFNULL
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_IF_ACMPEQ.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_IF_ACMPEQ.html
deleted file mode 100644
index 04c2bce0..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_IF_ACMPEQ.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.I_IF_ACMPEQ
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.instruction.InstructionSet.I_IF_ACMPEQ
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_IF_ACMPNE.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_IF_ACMPNE.html
deleted file mode 100644
index 3fcac16d..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_IF_ACMPNE.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.I_IF_ACMPNE
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.instruction.InstructionSet.I_IF_ACMPNE
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_IF_ICMPEQ.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_IF_ICMPEQ.html
deleted file mode 100644
index 16ddb367..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_IF_ICMPEQ.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.I_IF_ICMPEQ
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.instruction.InstructionSet.I_IF_ICMPEQ
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_IF_ICMPGE.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_IF_ICMPGE.html
deleted file mode 100644
index 27d9c395..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_IF_ICMPGE.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.I_IF_ICMPGE
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.instruction.InstructionSet.I_IF_ICMPGE
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_IF_ICMPGT.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_IF_ICMPGT.html
deleted file mode 100644
index 40621002..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_IF_ICMPGT.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.I_IF_ICMPGT
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.instruction.InstructionSet.I_IF_ICMPGT
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_IF_ICMPLE.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_IF_ICMPLE.html
deleted file mode 100644
index 2882ad96..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_IF_ICMPLE.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.I_IF_ICMPLE
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.instruction.InstructionSet.I_IF_ICMPLE
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_IF_ICMPLT.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_IF_ICMPLT.html
deleted file mode 100644
index 56e23c2a..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_IF_ICMPLT.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.I_IF_ICMPLT
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.instruction.InstructionSet.I_IF_ICMPLT
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_IF_ICMPNE.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_IF_ICMPNE.html
deleted file mode 100644
index 7d1e1748..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_IF_ICMPNE.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.I_IF_ICMPNE
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.instruction.InstructionSet.I_IF_ICMPNE
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_IINC.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_IINC.html
deleted file mode 100644
index a0e85199..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_IINC.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.I_IINC
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.instruction.InstructionSet.I_IINC
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_ILOAD.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_ILOAD.html
deleted file mode 100644
index 9516617f..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_ILOAD.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.I_ILOAD
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.instruction.InstructionSet.I_ILOAD
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_ILOAD_0.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_ILOAD_0.html
deleted file mode 100644
index 2d8d067c..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_ILOAD_0.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.I_ILOAD_0
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.instruction.InstructionSet.I_ILOAD_0
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_ILOAD_1.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_ILOAD_1.html
deleted file mode 100644
index 37d06616..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_ILOAD_1.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.I_ILOAD_1
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.instruction.InstructionSet.I_ILOAD_1
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_ILOAD_2.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_ILOAD_2.html
deleted file mode 100644
index f86b5a2d..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_ILOAD_2.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.I_ILOAD_2
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.instruction.InstructionSet.I_ILOAD_2
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_ILOAD_3.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_ILOAD_3.html
deleted file mode 100644
index 76710371..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_ILOAD_3.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.I_ILOAD_3
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.instruction.InstructionSet.I_ILOAD_3
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_IMUL.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_IMUL.html
deleted file mode 100644
index fffaafef..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_IMUL.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.I_IMUL
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.instruction.InstructionSet.I_IMUL
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_INEG.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_INEG.html
deleted file mode 100644
index 4e658bcd..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_INEG.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.I_INEG
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.instruction.InstructionSet.I_INEG
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_INSTANCEOF.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_INSTANCEOF.html
deleted file mode 100644
index 71996ca3..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_INSTANCEOF.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.I_INSTANCEOF
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.instruction.InstructionSet.I_INSTANCEOF
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_INVOKEDYNAMIC.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_INVOKEDYNAMIC.html
deleted file mode 100644
index 30efa8ef..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_INVOKEDYNAMIC.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.I_INVOKEDYNAMIC
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.instruction.InstructionSet.I_INVOKEDYNAMIC
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_INVOKEINTERFACE.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_INVOKEINTERFACE.html
deleted file mode 100644
index fcc311ed..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_INVOKEINTERFACE.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.I_INVOKEINTERFACE
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.instruction.InstructionSet.I_INVOKEINTERFACE
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_INVOKESPECIAL.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_INVOKESPECIAL.html
deleted file mode 100644
index cbed08f2..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_INVOKESPECIAL.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.I_INVOKESPECIAL
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.instruction.InstructionSet.I_INVOKESPECIAL
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_INVOKESTATIC.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_INVOKESTATIC.html
deleted file mode 100644
index 69eaa01c..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_INVOKESTATIC.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.I_INVOKESTATIC
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.instruction.InstructionSet.I_INVOKESTATIC
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_INVOKEVIRTUAL.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_INVOKEVIRTUAL.html
deleted file mode 100644
index 5dd679a8..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_INVOKEVIRTUAL.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.I_INVOKEVIRTUAL
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.instruction.InstructionSet.I_INVOKEVIRTUAL
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_IOR.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_IOR.html
deleted file mode 100644
index de1cba3c..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_IOR.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.I_IOR
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.instruction.InstructionSet.I_IOR
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_IREM.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_IREM.html
deleted file mode 100644
index c547ffd2..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_IREM.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.I_IREM
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.instruction.InstructionSet.I_IREM
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_IRETURN.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_IRETURN.html
deleted file mode 100644
index dd01327a..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_IRETURN.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.I_IRETURN
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.instruction.InstructionSet.I_IRETURN
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_ISHL.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_ISHL.html
deleted file mode 100644
index 674462c5..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_ISHL.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.I_ISHL
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.instruction.InstructionSet.I_ISHL
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_ISHR.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_ISHR.html
deleted file mode 100644
index bab3106c..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_ISHR.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.I_ISHR
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.instruction.InstructionSet.I_ISHR
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_ISTORE.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_ISTORE.html
deleted file mode 100644
index 3b0a3570..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_ISTORE.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.I_ISTORE
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.instruction.InstructionSet.I_ISTORE
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_ISTORE_0.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_ISTORE_0.html
deleted file mode 100644
index dc2b7bbf..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_ISTORE_0.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.I_ISTORE_0
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.instruction.InstructionSet.I_ISTORE_0
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_ISTORE_1.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_ISTORE_1.html
deleted file mode 100644
index fd89d79b..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_ISTORE_1.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.I_ISTORE_1
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.instruction.InstructionSet.I_ISTORE_1
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_ISTORE_2.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_ISTORE_2.html
deleted file mode 100644
index d2355268..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_ISTORE_2.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.I_ISTORE_2
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.instruction.InstructionSet.I_ISTORE_2
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_ISTORE_3.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_ISTORE_3.html
deleted file mode 100644
index d8211947..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_ISTORE_3.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.I_ISTORE_3
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.instruction.InstructionSet.I_ISTORE_3
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_ISUB.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_ISUB.html
deleted file mode 100644
index cd6baa30..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_ISUB.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.I_ISUB
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.instruction.InstructionSet.I_ISUB
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_IUSHR.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_IUSHR.html
deleted file mode 100644
index 805eed52..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_IUSHR.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.I_IUSHR
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.instruction.InstructionSet.I_IUSHR
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_IXOR.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_IXOR.html
deleted file mode 100644
index 4e9b8668..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_IXOR.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.I_IXOR
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.instruction.InstructionSet.I_IXOR
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_JSR.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_JSR.html
deleted file mode 100644
index c313fdd9..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_JSR.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.I_JSR
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.instruction.InstructionSet.I_JSR
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_JSR_W.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_JSR_W.html
deleted file mode 100644
index 3f6f86d9..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_JSR_W.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.I_JSR_W
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.instruction.InstructionSet.I_JSR_W
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_L2D.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_L2D.html
deleted file mode 100644
index eb7b4dfa..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_L2D.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.I_L2D
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.instruction.InstructionSet.I_L2D
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_L2F.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_L2F.html
deleted file mode 100644
index 4cdcee72..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_L2F.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.I_L2F
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.instruction.InstructionSet.I_L2F
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_L2I.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_L2I.html
deleted file mode 100644
index 7503c500..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_L2I.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.I_L2I
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.instruction.InstructionSet.I_L2I
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_LADD.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_LADD.html
deleted file mode 100644
index f0d37348..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_LADD.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.I_LADD
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.instruction.InstructionSet.I_LADD
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_LALOAD.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_LALOAD.html
deleted file mode 100644
index aa488e55..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_LALOAD.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.I_LALOAD
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.instruction.InstructionSet.I_LALOAD
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_LAND.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_LAND.html
deleted file mode 100644
index a426d133..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_LAND.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.I_LAND
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.instruction.InstructionSet.I_LAND
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_LASTORE.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_LASTORE.html
deleted file mode 100644
index 664fd2fc..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_LASTORE.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.I_LASTORE
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.instruction.InstructionSet.I_LASTORE
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_LCMP.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_LCMP.html
deleted file mode 100644
index dc265bd8..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_LCMP.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.I_LCMP
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.instruction.InstructionSet.I_LCMP
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_LCONST_0.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_LCONST_0.html
deleted file mode 100644
index 6b75f588..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_LCONST_0.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.I_LCONST_0
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.instruction.InstructionSet.I_LCONST_0
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_LCONST_1.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_LCONST_1.html
deleted file mode 100644
index ac925544..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_LCONST_1.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.I_LCONST_1
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.instruction.InstructionSet.I_LCONST_1
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_LDC.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_LDC.html
deleted file mode 100644
index 50e1ad5a..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_LDC.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.I_LDC
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.instruction.InstructionSet.I_LDC
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_LDC2_W.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_LDC2_W.html
deleted file mode 100644
index 1be868ea..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_LDC2_W.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.I_LDC2_W
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.instruction.InstructionSet.I_LDC2_W
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_LDC_W.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_LDC_W.html
deleted file mode 100644
index 99e12057..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_LDC_W.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.I_LDC_W
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.instruction.InstructionSet.I_LDC_W
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_LDIV.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_LDIV.html
deleted file mode 100644
index 845c2b99..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_LDIV.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.I_LDIV
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.instruction.InstructionSet.I_LDIV
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_LLOAD.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_LLOAD.html
deleted file mode 100644
index aa709ae4..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_LLOAD.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.I_LLOAD
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.instruction.InstructionSet.I_LLOAD
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_LLOAD_0.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_LLOAD_0.html
deleted file mode 100644
index afd00e1f..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_LLOAD_0.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.I_LLOAD_0
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.instruction.InstructionSet.I_LLOAD_0
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_LLOAD_1.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_LLOAD_1.html
deleted file mode 100644
index 1e6d2a5c..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_LLOAD_1.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.I_LLOAD_1
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.instruction.InstructionSet.I_LLOAD_1
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_LLOAD_2.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_LLOAD_2.html
deleted file mode 100644
index 514a6c61..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_LLOAD_2.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.I_LLOAD_2
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.instruction.InstructionSet.I_LLOAD_2
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_LLOAD_3.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_LLOAD_3.html
deleted file mode 100644
index c7783186..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_LLOAD_3.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.I_LLOAD_3
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.instruction.InstructionSet.I_LLOAD_3
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_LMUL.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_LMUL.html
deleted file mode 100644
index add0901e..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_LMUL.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.I_LMUL
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.instruction.InstructionSet.I_LMUL
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_LNEG.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_LNEG.html
deleted file mode 100644
index 45f7ed8d..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_LNEG.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.I_LNEG
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.instruction.InstructionSet.I_LNEG
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_LOOKUPSWITCH.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_LOOKUPSWITCH.html
deleted file mode 100644
index 762d01fd..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_LOOKUPSWITCH.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.I_LOOKUPSWITCH
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.instruction.InstructionSet.I_LOOKUPSWITCH
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_LOR.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_LOR.html
deleted file mode 100644
index 7a273fe5..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_LOR.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.I_LOR
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.instruction.InstructionSet.I_LOR
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_LREM.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_LREM.html
deleted file mode 100644
index 3db9cbcc..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_LREM.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.I_LREM
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.instruction.InstructionSet.I_LREM
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_LRETURN.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_LRETURN.html
deleted file mode 100644
index d9b4d5cf..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_LRETURN.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.I_LRETURN
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.instruction.InstructionSet.I_LRETURN
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_LSHL.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_LSHL.html
deleted file mode 100644
index 1048a62a..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_LSHL.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.I_LSHL
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.instruction.InstructionSet.I_LSHL
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_LSHR.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_LSHR.html
deleted file mode 100644
index 97803512..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_LSHR.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.I_LSHR
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.instruction.InstructionSet.I_LSHR
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_LSTORE.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_LSTORE.html
deleted file mode 100644
index 3d25c1f1..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_LSTORE.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.I_LSTORE
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.instruction.InstructionSet.I_LSTORE
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_LSTORE_0.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_LSTORE_0.html
deleted file mode 100644
index 5223e209..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_LSTORE_0.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.I_LSTORE_0
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.instruction.InstructionSet.I_LSTORE_0
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_LSTORE_1.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_LSTORE_1.html
deleted file mode 100644
index 2a50c188..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_LSTORE_1.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.I_LSTORE_1
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.instruction.InstructionSet.I_LSTORE_1
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_LSTORE_2.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_LSTORE_2.html
deleted file mode 100644
index 117b5cec..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_LSTORE_2.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.I_LSTORE_2
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.instruction.InstructionSet.I_LSTORE_2
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_LSTORE_3.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_LSTORE_3.html
deleted file mode 100644
index a16267e6..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_LSTORE_3.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.I_LSTORE_3
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.instruction.InstructionSet.I_LSTORE_3
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_LSUB.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_LSUB.html
deleted file mode 100644
index c83bb606..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_LSUB.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.I_LSUB
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.instruction.InstructionSet.I_LSUB
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_LUSHR.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_LUSHR.html
deleted file mode 100644
index ec6ed78e..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_LUSHR.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.I_LUSHR
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.instruction.InstructionSet.I_LUSHR
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_LXOR.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_LXOR.html
deleted file mode 100644
index e737985e..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_LXOR.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.I_LXOR
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.instruction.InstructionSet.I_LXOR
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_MONITORENTER.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_MONITORENTER.html
deleted file mode 100644
index c3ceea42..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_MONITORENTER.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.I_MONITORENTER
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.instruction.InstructionSet.I_MONITORENTER
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_MONITOREXIT.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_MONITOREXIT.html
deleted file mode 100644
index 4d5bddb8..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_MONITOREXIT.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.I_MONITOREXIT
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.instruction.InstructionSet.I_MONITOREXIT
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_MULTIANEWARRAY.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_MULTIANEWARRAY.html
deleted file mode 100644
index 73ee7b67..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_MULTIANEWARRAY.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.I_MULTIANEWARRAY
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.instruction.InstructionSet.I_MULTIANEWARRAY
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_NEW.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_NEW.html
deleted file mode 100644
index 42f580a3..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_NEW.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.I_NEW
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.instruction.InstructionSet.I_NEW
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_NEWARRAY.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_NEWARRAY.html
deleted file mode 100644
index d7a79371..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_NEWARRAY.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.I_NEWARRAY
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.instruction.InstructionSet.I_NEWARRAY
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_NOP.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_NOP.html
deleted file mode 100644
index f1153632..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_NOP.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.I_NOP
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.instruction.InstructionSet.I_NOP
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_POP.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_POP.html
deleted file mode 100644
index 3870e956..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_POP.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.I_POP
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.instruction.InstructionSet.I_POP
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_POP2.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_POP2.html
deleted file mode 100644
index 1f5905e3..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_POP2.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.I_POP2
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.instruction.InstructionSet.I_POP2
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_PUTFIELD.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_PUTFIELD.html
deleted file mode 100644
index 4acdeed3..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_PUTFIELD.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.I_PUTFIELD
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.instruction.InstructionSet.I_PUTFIELD
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_PUTSTATIC.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_PUTSTATIC.html
deleted file mode 100644
index bf6e92f9..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_PUTSTATIC.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.I_PUTSTATIC
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.instruction.InstructionSet.I_PUTSTATIC
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_RET.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_RET.html
deleted file mode 100644
index 81a82ad2..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_RET.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.I_RET
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.instruction.InstructionSet.I_RET
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_RETURN.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_RETURN.html
deleted file mode 100644
index ffae05d3..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_RETURN.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.I_RETURN
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.instruction.InstructionSet.I_RETURN
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_SALOAD.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_SALOAD.html
deleted file mode 100644
index 6a3f2b06..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_SALOAD.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.I_SALOAD
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.instruction.InstructionSet.I_SALOAD
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_SASTORE.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_SASTORE.html
deleted file mode 100644
index 2345288c..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_SASTORE.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.I_SASTORE
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.instruction.InstructionSet.I_SASTORE
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_SIPUSH.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_SIPUSH.html
deleted file mode 100644
index 00335602..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_SIPUSH.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.I_SIPUSH
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.instruction.InstructionSet.I_SIPUSH
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_SWAP.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_SWAP.html
deleted file mode 100644
index fd999ce7..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_SWAP.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.I_SWAP
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.instruction.InstructionSet.I_SWAP
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_TABLESWITCH.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_TABLESWITCH.html
deleted file mode 100644
index ae79ae3d..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_TABLESWITCH.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.I_TABLESWITCH
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.instruction.InstructionSet.I_TABLESWITCH
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_WIDE.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_WIDE.html
deleted file mode 100644
index 63ac384b..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.I_WIDE.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.I_WIDE
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.instruction.InstructionSet.I_WIDE
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.If.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.If.html
deleted file mode 100644
index d92da8a7..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.If.html
+++ /dev/null
@@ -1,183 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.If
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.IfUnary.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.IfUnary.html
deleted file mode 100644
index 055d9acf..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.IfUnary.html
+++ /dev/null
@@ -1,175 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.IfUnary
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.ImmediateConstant.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.ImmediateConstant.html
deleted file mode 100644
index c57b77ec..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.ImmediateConstant.html
+++ /dev/null
@@ -1,159 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.ImmediateConstant
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.ImmediateSpec.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.ImmediateSpec.html
deleted file mode 100644
index 1c815281..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.ImmediateSpec.html
+++ /dev/null
@@ -1,168 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.ImmediateSpec
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.IncrementInstruction.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.IncrementInstruction.html
deleted file mode 100644
index 632e34cd..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.IncrementInstruction.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.IncrementInstruction
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.instruction.InstructionSet.IncrementInstruction
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.Index.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.Index.html
deleted file mode 100644
index 5beb21f1..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.Index.html
+++ /dev/null
@@ -1,463 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.Index
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.Index08.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.Index08.html
deleted file mode 100644
index 48eae38d..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.Index08.html
+++ /dev/null
@@ -1,215 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.Index08
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.Index16.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.Index16.html
deleted file mode 100644
index 09467fc4..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.Index16.html
+++ /dev/null
@@ -1,215 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.Index16
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.IndexConst.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.IndexConst.html
deleted file mode 100644
index d1daceaf..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.IndexConst.html
+++ /dev/null
@@ -1,323 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.IndexConst
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.InlineAssignInstruction.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.InlineAssignInstruction.html
deleted file mode 100644
index c88997f0..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.InlineAssignInstruction.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.InlineAssignInstruction
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.instruction.InstructionSet.InlineAssignInstruction
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.InterfaceConstantPoolMethodIndexAccessor.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.InterfaceConstantPoolMethodIndexAccessor.html
deleted file mode 100644
index 425deec8..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.InterfaceConstantPoolMethodIndexAccessor.html
+++ /dev/null
@@ -1,159 +0,0 @@
-
-
-
-
-
-Uses of Interface com.amd.aparapi.internal.instruction.InstructionSet.InterfaceConstantPoolMethodIndexAccessor
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.LocalVariableConstIndexAccessor.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.LocalVariableConstIndexAccessor.html
deleted file mode 100644
index eba07a71..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.LocalVariableConstIndexAccessor.html
+++ /dev/null
@@ -1,319 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.LocalVariableConstIndexAccessor
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.LocalVariableConstIndexLoad.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.LocalVariableConstIndexLoad.html
deleted file mode 100644
index 6d1ee607..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.LocalVariableConstIndexLoad.html
+++ /dev/null
@@ -1,231 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.LocalVariableConstIndexLoad
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.LocalVariableConstIndexStore.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.LocalVariableConstIndexStore.html
deleted file mode 100644
index 7c5db270..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.LocalVariableConstIndexStore.html
+++ /dev/null
@@ -1,231 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.LocalVariableConstIndexStore
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.LocalVariableIndex08Accessor.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.LocalVariableIndex08Accessor.html
deleted file mode 100644
index e3482db3..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.LocalVariableIndex08Accessor.html
+++ /dev/null
@@ -1,199 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.LocalVariableIndex08Accessor
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.LocalVariableIndex08Load.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.LocalVariableIndex08Load.html
deleted file mode 100644
index 022de7de..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.LocalVariableIndex08Load.html
+++ /dev/null
@@ -1,171 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.LocalVariableIndex08Load
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.LocalVariableIndex08Store.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.LocalVariableIndex08Store.html
deleted file mode 100644
index 08ab4a4c..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.LocalVariableIndex08Store.html
+++ /dev/null
@@ -1,171 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.LocalVariableIndex08Store
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.LocalVariableTableIndexAccessor.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.LocalVariableTableIndexAccessor.html
deleted file mode 100644
index 14c39c9f..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.LocalVariableTableIndexAccessor.html
+++ /dev/null
@@ -1,396 +0,0 @@
-
-
-
-
-
-Uses of Interface com.amd.aparapi.internal.instruction.InstructionSet.LocalVariableTableIndexAccessor
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.MethodCall.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.MethodCall.html
deleted file mode 100644
index 734712aa..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.MethodCall.html
+++ /dev/null
@@ -1,240 +0,0 @@
-
-
-
-
-
-Uses of Interface com.amd.aparapi.internal.instruction.InstructionSet.MethodCall
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.MultiAssignInstruction.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.MultiAssignInstruction.html
deleted file mode 100644
index 731744c9..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.MultiAssignInstruction.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.MultiAssignInstruction
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.instruction.InstructionSet.MultiAssignInstruction
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.New.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.New.html
deleted file mode 100644
index 373270c9..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.New.html
+++ /dev/null
@@ -1,167 +0,0 @@
-
-
-
-
-
-Uses of Interface com.amd.aparapi.internal.instruction.InstructionSet.New
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.Operator.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.Operator.html
deleted file mode 100644
index db9e9ece..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.Operator.html
+++ /dev/null
@@ -1,184 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.Operator
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.OperatorInstruction.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.OperatorInstruction.html
deleted file mode 100644
index 1c6b4597..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.OperatorInstruction.html
+++ /dev/null
@@ -1,379 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.OperatorInstruction
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.PopSpec.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.PopSpec.html
deleted file mode 100644
index 599858f5..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.PopSpec.html
+++ /dev/null
@@ -1,168 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.PopSpec
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.PushSpec.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.PushSpec.html
deleted file mode 100644
index 1af97681..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.PushSpec.html
+++ /dev/null
@@ -1,168 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.PushSpec
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.Return.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.Return.html
deleted file mode 100644
index b0529b56..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.Return.html
+++ /dev/null
@@ -1,175 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.Return
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.Switch.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.Switch.html
deleted file mode 100644
index 2c4f65c0..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.Switch.html
+++ /dev/null
@@ -1,159 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.Switch
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.TypeSpec.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.TypeSpec.html
deleted file mode 100644
index 50ca04c1..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.TypeSpec.html
+++ /dev/null
@@ -1,190 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.TypeSpec
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.Unary.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.Unary.html
deleted file mode 100644
index f433af0c..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.Unary.html
+++ /dev/null
@@ -1,263 +0,0 @@
-
-
-
-
-
-Uses of Interface com.amd.aparapi.internal.instruction.InstructionSet.Unary
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.UnaryOperator.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.UnaryOperator.html
deleted file mode 100644
index fe0f2a65..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.UnaryOperator.html
+++ /dev/null
@@ -1,231 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.UnaryOperator
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.UnconditionalBranch.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.UnconditionalBranch.html
deleted file mode 100644
index 838a9116..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.UnconditionalBranch.html
+++ /dev/null
@@ -1,179 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.UnconditionalBranch
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.UnconditionalBranch16.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.UnconditionalBranch16.html
deleted file mode 100644
index 0744953f..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.UnconditionalBranch16.html
+++ /dev/null
@@ -1,159 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet.UnconditionalBranch16
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.VirtualMethodCall.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.VirtualMethodCall.html
deleted file mode 100644
index 9614d044..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.VirtualMethodCall.html
+++ /dev/null
@@ -1,159 +0,0 @@
-
-
-
-
-
-Uses of Interface com.amd.aparapi.internal.instruction.InstructionSet.VirtualMethodCall
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.html
deleted file mode 100644
index c1b7be07..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionSet.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionSet
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.instruction.InstructionSet
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionTransformer.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionTransformer.html
deleted file mode 100644
index 255ee5ce..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/class-use/InstructionTransformer.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.instruction.InstructionTransformer
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.instruction.InstructionTransformer
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/package-frame.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/package-frame.html
deleted file mode 100644
index 61513257..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/package-frame.html
+++ /dev/null
@@ -1,306 +0,0 @@
-
-
-
-
-
-com.amd.aparapi.internal.instruction
-
-
-
-
-
-
-
Interfaces
-
-
Classes
-
-
Enums
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/package-summary.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/package-summary.html
deleted file mode 100644
index 2200c7f3..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/package-summary.html
+++ /dev/null
@@ -1,1293 +0,0 @@
-
-
-
-
-
-com.amd.aparapi.internal.instruction
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/package-tree.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/package-tree.html
deleted file mode 100644
index 7462c70c..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/package-tree.html
+++ /dev/null
@@ -1,547 +0,0 @@
-
-
-
-
-
-com.amd.aparapi.internal.instruction Class Hierarchy
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
Class Hierarchy
-
-
Interface Hierarchy
-
-
Enum Hierarchy
-
-java.lang.Object
-
-java.lang.Enum<E> (implements java.lang.Comparable<T>, java.io.Serializable)
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/package-use.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/package-use.html
deleted file mode 100644
index 5c127d9b..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/instruction/package-use.html
+++ /dev/null
@@ -1,470 +0,0 @@
-
-
-
-
-
-Uses of Package com.amd.aparapi.internal.instruction
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/jni/ConfigJNI.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/jni/ConfigJNI.html
deleted file mode 100644
index a47d656a..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/jni/ConfigJNI.html
+++ /dev/null
@@ -1,332 +0,0 @@
-
-
-
-
-
-ConfigJNI
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-com.amd.aparapi.internal.jni.ConfigJNI
-
-
-
-
-
-
-
-
-
-
-
-
-Field Summary
-
-Fields
-
-Modifier and Type
-Field and Description
-
-
-static boolean
-enableProfiling
-Allows the user to turn on OpenCL profiling for the JNI/OpenCL layer.
-
-
-
-static boolean
-enableProfilingCSV
-Allows the user to turn on OpenCL profiling for the JNI/OpenCL layer, this information will be written to CSV file
-
- Usage -Dcom.amd.aparapi.enableProfiling={true|false}
-
-
-
-static boolean
-enableVerboseJNI
-Allows the user to request that verbose JNI messages be dumped to stderr.
-
-
-
-static boolean
-enableVerboseJNIOpenCLResourceTracking
-Allows the user to request tracking of opencl resources.
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-Constructors
-
-Constructor and Description
-
-
-ConfigJNI ()
-
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Field Detail
-
-
-
-
-
-
-
-
-
-enableProfilingCSV
-public static final boolean enableProfilingCSV
-Allows the user to turn on OpenCL profiling for the JNI/OpenCL layer, this information will be written to CSV file
-
- Usage -Dcom.amd.aparapi.enableProfiling={true|false}
-
-
-
-
-
-
-
-
-
-
-
-enableVerboseJNIOpenCLResourceTracking
-public static final boolean enableVerboseJNIOpenCLResourceTracking
-Allows the user to request tracking of opencl resources.
-
- This is really a debugging option to help locate leaking OpenCL resources, this will be dumped to stderr.
-
- Usage -Dcom.amd.aparapi.enableOpenCLResourceTracking={true|false}
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-ConfigJNI
-public ConfigJNI()
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/jni/KernelArgJNI.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/jni/KernelArgJNI.html
deleted file mode 100644
index c055ef46..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/jni/KernelArgJNI.html
+++ /dev/null
@@ -1,233 +0,0 @@
-
-
-
-
-
-KernelArgJNI
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-com.amd.aparapi.internal.jni.KernelArgJNI
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-Constructors
-
-Constructor and Description
-
-
-KernelArgJNI ()
-
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-KernelArgJNI
-public KernelArgJNI()
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/jni/KernelRunnerJNI.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/jni/KernelRunnerJNI.html
deleted file mode 100644
index 62ffb939..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/jni/KernelRunnerJNI.html
+++ /dev/null
@@ -1,233 +0,0 @@
-
-
-
-
-
-KernelRunnerJNI
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-com.amd.aparapi.internal.jni.KernelRunnerJNI
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-KernelRunnerJNI
-public KernelRunnerJNI()
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/jni/OpenCLJNI.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/jni/OpenCLJNI.html
deleted file mode 100644
index be113b32..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/jni/OpenCLJNI.html
+++ /dev/null
@@ -1,233 +0,0 @@
-
-
-
-
-
-OpenCLJNI
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-com.amd.aparapi.internal.jni.OpenCLJNI
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-Constructors
-
-Constructor and Description
-
-
-OpenCLJNI ()
-
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-OpenCLJNI
-public OpenCLJNI()
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/jni/RangeJNI.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/jni/RangeJNI.html
deleted file mode 100644
index e5ecef41..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/jni/RangeJNI.html
+++ /dev/null
@@ -1,233 +0,0 @@
-
-
-
-
-
-RangeJNI
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-com.amd.aparapi.internal.jni.RangeJNI
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-Constructors
-
-Constructor and Description
-
-
-RangeJNI ()
-
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-RangeJNI
-public RangeJNI()
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/jni/class-use/ConfigJNI.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/jni/class-use/ConfigJNI.html
deleted file mode 100644
index 62103df6..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/jni/class-use/ConfigJNI.html
+++ /dev/null
@@ -1,157 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.jni.ConfigJNI
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Subclasses of ConfigJNI in com.amd.aparapi
-
-Modifier and Type
-Class and Description
-
-
-
-class
-Config
-A central location for holding all runtime configurable properties as well as logging configuration.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/jni/class-use/KernelArgJNI.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/jni/class-use/KernelArgJNI.html
deleted file mode 100644
index 408d3a17..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/jni/class-use/KernelArgJNI.html
+++ /dev/null
@@ -1,158 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.jni.KernelArgJNI
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Subclasses of KernelArgJNI in com.amd.aparapi.internal.kernel
-
-Modifier and Type
-Class and Description
-
-
-
-class
-KernelArg
-Each field (or captured field in the case of an anonymous inner class) referenced by any bytecode reachable from the users Kernel.run(), will
- need to be represented as a KernelArg.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/jni/class-use/KernelRunnerJNI.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/jni/class-use/KernelRunnerJNI.html
deleted file mode 100644
index 72ce068b..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/jni/class-use/KernelRunnerJNI.html
+++ /dev/null
@@ -1,157 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.jni.KernelRunnerJNI
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/jni/class-use/OpenCLJNI.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/jni/class-use/OpenCLJNI.html
deleted file mode 100644
index 5b1f9ef0..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/jni/class-use/OpenCLJNI.html
+++ /dev/null
@@ -1,169 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.jni.OpenCLJNI
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/jni/class-use/RangeJNI.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/jni/class-use/RangeJNI.html
deleted file mode 100644
index 25b4bc68..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/jni/class-use/RangeJNI.html
+++ /dev/null
@@ -1,157 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.jni.RangeJNI
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Subclasses of RangeJNI in com.amd.aparapi
-
-Modifier and Type
-Class and Description
-
-
-
-class
-Range
-A representation of 1, 2 or 3 dimensional range of execution.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/jni/package-frame.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/jni/package-frame.html
deleted file mode 100644
index d849553e..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/jni/package-frame.html
+++ /dev/null
@@ -1,23 +0,0 @@
-
-
-
-
-
-com.amd.aparapi.internal.jni
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/jni/package-summary.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/jni/package-summary.html
deleted file mode 100644
index c86b55ba..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/jni/package-summary.html
+++ /dev/null
@@ -1,159 +0,0 @@
-
-
-
-
-
-com.amd.aparapi.internal.jni
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-Class Summary
-
-Class
-Description
-
-
-
-ConfigJNI
-
-This class is intended to be used as a 'proxy' or 'facade' object for Java code to interact with JNI
-
-
-
-KernelArgJNI
-
-This class is intended to be used as a 'proxy' or 'facade' object for Java code to interact with JNI
-
-
-
-KernelRunnerJNI
-
-This class is intended to be used as a 'proxy' or 'facade' object for Java code to interact with JNI
-
-
-
-OpenCLJNI
-
-This class is intended to be used as a 'proxy' or 'facade' object for Java code to interact with JNI
-
-
-
-RangeJNI
-
-This class is intended to be used as a 'proxy' or 'facade' object for Java code to interact with JNI
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/jni/package-tree.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/jni/package-tree.html
deleted file mode 100644
index 276b4d0c..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/jni/package-tree.html
+++ /dev/null
@@ -1,132 +0,0 @@
-
-
-
-
-
-com.amd.aparapi.internal.jni Class Hierarchy
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/jni/package-use.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/jni/package-use.html
deleted file mode 100644
index eba38731..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/jni/package-use.html
+++ /dev/null
@@ -1,202 +0,0 @@
-
-
-
-
-
-Uses of Package com.amd.aparapi.internal.jni
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Classes in com.amd.aparapi.internal.jni used by com.amd.aparapi
-
-Class and Description
-
-
-
-ConfigJNI
-This class is intended to be used as a 'proxy' or 'facade' object for Java code to interact with JNI
-
-
-
-RangeJNI
-This class is intended to be used as a 'proxy' or 'facade' object for Java code to interact with JNI
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/kernel/KernelArg.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/kernel/KernelArg.html
deleted file mode 100644
index 8e55fedc..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/kernel/KernelArg.html
+++ /dev/null
@@ -1,198 +0,0 @@
-
-
-
-
-
-KernelArg
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-Summary:
-Nested |
-Field |
-Constr |
-Method
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-public class KernelArg
-extends KernelArgJNI
-Each field (or captured field in the case of an anonymous inner class) referenced by any bytecode reachable from the users Kernel.run(), will
- need to be represented as a KernelArg.
-Author:
- gfrost
-See Also: Kernel.execute(int _globalSize)
-
-
-
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Summary:
-Nested |
-Field |
-Constr |
-Method
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/kernel/KernelRunner.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/kernel/KernelRunner.html
deleted file mode 100644
index 8c82fd26..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/kernel/KernelRunner.html
+++ /dev/null
@@ -1,457 +0,0 @@
-
-
-
-
-
-KernelRunner
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-public class KernelRunner
-extends KernelRunnerJNI
-The class is responsible for executing Kernel implementations.
-
- The KernelRunner is the real workhorse for Aparapi. Each Kernel instance creates a single
- KernelRunner to encapsulate state and to help coordinate interactions between the Kernel
- and it's execution logic.
-
- The KernelRunner is created lazily as a result of calling Kernel.execute(). A this
- time the ExecutionMode is consulted to determine the default requested mode. This will dictate how
- the KernelRunner will attempt to execute the Kernel
-Author:
- gfrost
-See Also: Kernel.execute(int _globalSize)
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-Constructors
-
-Constructor and Description
-
-
-KernelRunner (Kernel _kernel)
-Create a KernelRunner for a specific Kernel instance.
-
-
-
-
-
-
-
-
-
-
-Method Summary
-
-Methods
-
-Modifier and Type
-Method and Description
-
-
-void
-dispose ()
-Kernel.dispose() delegates to KernelRunner.dispose() which delegates to disposeJNI() to actually close JNI data structures.
-
-
-
-Kernel
-execute (Kernel.Entry entry,
- Range _range,
- int _passes)
-
-
-Kernel
-execute (java.lang.String _entrypointName,
- Range _range,
- int _passes)
-
-
-void
-get (java.lang.Object array)
-Enqueue a request to return this array from the GPU.
-
-
-
-long
-getAccumulatedExecutionTime ()
-Determine the accumulated execution time of all previous Kernel.execute(range) calls.
-
-
-
-long
-getConversionTime ()
-Determine the time taken to convert bytecode to OpenCL for first Kernel.execute(range) call.
-
-
-
-long
-getExecutionTime ()
-Determine the execution time of the previous Kernel.execute(range) call.
-
-
-
-java.util.List<ProfileInfo >
-getProfileInfo ()
-
-
-boolean
-isExplicit ()
-
-
-void
-put (java.lang.Object array)
-Tag this array so that it is explicitly enqueued before the kernel is executed.
-
-
-
-void
-setExplicit (boolean _explicit)
-
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/kernel/class-use/KernelArg.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/kernel/class-use/KernelArg.html
deleted file mode 100644
index 21983c5b..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/kernel/class-use/KernelArg.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.kernel.KernelArg
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.kernel.KernelArg
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/kernel/class-use/KernelRunner.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/kernel/class-use/KernelRunner.html
deleted file mode 100644
index b4317798..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/kernel/class-use/KernelRunner.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.kernel.KernelRunner
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.kernel.KernelRunner
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/kernel/package-frame.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/kernel/package-frame.html
deleted file mode 100644
index 89c38d51..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/kernel/package-frame.html
+++ /dev/null
@@ -1,20 +0,0 @@
-
-
-
-
-
-com.amd.aparapi.internal.kernel
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/kernel/package-summary.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/kernel/package-summary.html
deleted file mode 100644
index b6bb24db..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/kernel/package-summary.html
+++ /dev/null
@@ -1,142 +0,0 @@
-
-
-
-
-
-com.amd.aparapi.internal.kernel
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-Class Summary
-
-Class
-Description
-
-
-
-KernelArg
-
-Each field (or captured field in the case of an anonymous inner class) referenced by any bytecode reachable from the users Kernel.run(), will
- need to be represented as a KernelArg.
-
-
-
-KernelRunner
-
-The class is responsible for executing Kernel implementations.
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/kernel/package-tree.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/kernel/package-tree.html
deleted file mode 100644
index daad6545..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/kernel/package-tree.html
+++ /dev/null
@@ -1,137 +0,0 @@
-
-
-
-
-
-com.amd.aparapi.internal.kernel Class Hierarchy
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/kernel/package-use.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/kernel/package-use.html
deleted file mode 100644
index 1ba55ea4..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/kernel/package-use.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Package com.amd.aparapi.internal.kernel
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.kernel
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/ClassModel.Access.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/ClassModel.Access.html
deleted file mode 100644
index 77f2d4f2..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/ClassModel.Access.html
+++ /dev/null
@@ -1,531 +0,0 @@
-
-
-
-
-
-ClassModel.Access
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-java.lang.Enum<ClassModel.Access >
-
-
-com.amd.aparapi.internal.model.ClassModel.Access
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Enum Constant Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-Methods
-
-Modifier and Type
-Method and Description
-
-
-boolean
-bitIsSet (int _accessFlags)
-
-
-java.lang.String
-convert (int _accessFlags)
-
-
-static ClassModel.Access
-valueOf (java.lang.String name)
-Returns the enum constant of this type with the specified name.
-
-
-
-static ClassModel.Access []
-values ()
-Returns an array containing the constants of this enum type, in
-the order they are declared.
-
-
-
-
-
-
-
-Methods inherited from class java.lang.Enum
-compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
-
-
-
-
-
-Methods inherited from class java.lang.Object
-getClass, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-
-
-
-
-valueOf
-public static ClassModel.Access valueOf(java.lang.String name)
-Returns the enum constant of this type with the specified name.
-The string must match exactly an identifier used to declare an
-enum constant in this type. (Extraneous whitespace characters are
-not permitted.)
-Parameters: name - the name of the enum constant to be returned.
-Returns: the enum constant with the specified name
-Throws:
-java.lang.IllegalArgumentException - if this enum type has no constant
-with the specified name
-java.lang.NullPointerException - if the argument is null
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/ClassModel.AttributePool.AttributePoolEntry.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/ClassModel.AttributePool.AttributePoolEntry.html
deleted file mode 100644
index 949c2fd3..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/ClassModel.AttributePool.AttributePoolEntry.html
+++ /dev/null
@@ -1,307 +0,0 @@
-
-
-
-
-
-ClassModel.AttributePool.AttributePoolEntry
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-com.amd.aparapi.internal.model.ClassModel.AttributePool.AttributePoolEntry
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-
-
-
-
-getLength
-public int getLength()
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/ClassModel.AttributePool.CodeEntry.ExceptionPoolEntry.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/ClassModel.AttributePool.CodeEntry.ExceptionPoolEntry.html
deleted file mode 100644
index 1f992816..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/ClassModel.AttributePool.CodeEntry.ExceptionPoolEntry.html
+++ /dev/null
@@ -1,312 +0,0 @@
-
-
-
-
-
-ClassModel.AttributePool.CodeEntry.ExceptionPoolEntry
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-com.amd.aparapi.internal.model.ClassModel.AttributePool.CodeEntry.ExceptionPoolEntry
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-getEnd
-public int getEnd()
-
-
-
-
-
-
-
-getHandler
-public int getHandler()
-
-
-
-
-
-
-
-getStart
-public int getStart()
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/ClassModel.AttributePool.CodeEntry.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/ClassModel.AttributePool.CodeEntry.html
deleted file mode 100644
index 17b35eeb..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/ClassModel.AttributePool.CodeEntry.html
+++ /dev/null
@@ -1,364 +0,0 @@
-
-
-
-
-
-ClassModel.AttributePool.CodeEntry
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Nested Class Summary
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-getMaxStack
-public int getMaxStack()
-
-
-
-
-
-
-
-getCode
-public byte[] getCode()
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/ClassModel.AttributePool.ConstantValueEntry.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/ClassModel.AttributePool.ConstantValueEntry.html
deleted file mode 100644
index def512d8..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/ClassModel.AttributePool.ConstantValueEntry.html
+++ /dev/null
@@ -1,276 +0,0 @@
-
-
-
-
-
-ClassModel.AttributePool.ConstantValueEntry
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-Methods
-
-Modifier and Type
-Method and Description
-
-
-int
-getIndex ()
-
-
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-getIndex
-public int getIndex()
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/ClassModel.AttributePool.DeprecatedEntry.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/ClassModel.AttributePool.DeprecatedEntry.html
deleted file mode 100644
index 68a90850..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/ClassModel.AttributePool.DeprecatedEntry.html
+++ /dev/null
@@ -1,248 +0,0 @@
-
-
-
-
-
-ClassModel.AttributePool.DeprecatedEntry
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/ClassModel.AttributePool.EnclosingMethodEntry.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/ClassModel.AttributePool.EnclosingMethodEntry.html
deleted file mode 100644
index 9512f822..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/ClassModel.AttributePool.EnclosingMethodEntry.html
+++ /dev/null
@@ -1,289 +0,0 @@
-
-
-
-
-
-ClassModel.AttributePool.EnclosingMethodEntry
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/ClassModel.AttributePool.ExceptionEntry.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/ClassModel.AttributePool.ExceptionEntry.html
deleted file mode 100644
index 02e92211..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/ClassModel.AttributePool.ExceptionEntry.html
+++ /dev/null
@@ -1,264 +0,0 @@
-
-
-
-
-
-ClassModel.AttributePool.ExceptionEntry
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/ClassModel.AttributePool.InnerClassesEntry.InnerClassInfo.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/ClassModel.AttributePool.InnerClassesEntry.InnerClassInfo.html
deleted file mode 100644
index 14f4282a..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/ClassModel.AttributePool.InnerClassesEntry.InnerClassInfo.html
+++ /dev/null
@@ -1,299 +0,0 @@
-
-
-
-
-
-ClassModel.AttributePool.InnerClassesEntry.InnerClassInfo
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-com.amd.aparapi.internal.model.ClassModel.AttributePool.InnerClassesEntry.InnerClassInfo
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/ClassModel.AttributePool.InnerClassesEntry.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/ClassModel.AttributePool.InnerClassesEntry.html
deleted file mode 100644
index 4c3349ce..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/ClassModel.AttributePool.InnerClassesEntry.html
+++ /dev/null
@@ -1,283 +0,0 @@
-
-
-
-
-
-ClassModel.AttributePool.InnerClassesEntry
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Nested Class Summary
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/ClassModel.AttributePool.LineNumberTableEntry.StartLineNumberPair.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/ClassModel.AttributePool.LineNumberTableEntry.StartLineNumberPair.html
deleted file mode 100644
index ec568c8b..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/ClassModel.AttributePool.LineNumberTableEntry.StartLineNumberPair.html
+++ /dev/null
@@ -1,273 +0,0 @@
-
-
-
-
-
-ClassModel.AttributePool.LineNumberTableEntry.StartLineNumberPair
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-com.amd.aparapi.internal.model.ClassModel.AttributePool.LineNumberTableEntry.StartLineNumberPair
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-
-
-
-
-getStart
-public int getStart()
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/ClassModel.AttributePool.LineNumberTableEntry.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/ClassModel.AttributePool.LineNumberTableEntry.html
deleted file mode 100644
index 029c56ad..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/ClassModel.AttributePool.LineNumberTableEntry.html
+++ /dev/null
@@ -1,313 +0,0 @@
-
-
-
-
-
-ClassModel.AttributePool.LineNumberTableEntry
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Nested Class Summary
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-Methods
-
-Modifier and Type
-Method and Description
-
-
-int
-getSourceLineNumber (int _start,
- boolean _exact)
-
-
-
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/ClassModel.AttributePool.LocalVariableTableEntry.LocalVariableInfo.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/ClassModel.AttributePool.LocalVariableTableEntry.LocalVariableInfo.html
deleted file mode 100644
index 1ff5d517..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/ClassModel.AttributePool.LocalVariableTableEntry.LocalVariableInfo.html
+++ /dev/null
@@ -1,351 +0,0 @@
-
-
-
-
-
-ClassModel.AttributePool.LocalVariableTableEntry.LocalVariableInfo
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-com.amd.aparapi.internal.model.ClassModel.AttributePool.LocalVariableTableEntry.LocalVariableInfo
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-
-
-
-
-getLength
-public int getLength()
-
-
-
-
-
-
-
-
-
-
-
-getStart
-public int getStart()
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-getEnd
-public int getEnd()
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/ClassModel.AttributePool.LocalVariableTableEntry.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/ClassModel.AttributePool.LocalVariableTableEntry.html
deleted file mode 100644
index efc7b654..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/ClassModel.AttributePool.LocalVariableTableEntry.html
+++ /dev/null
@@ -1,328 +0,0 @@
-
-
-
-
-
-ClassModel.AttributePool.LocalVariableTableEntry
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Nested Class Summary
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/ClassModel.AttributePool.OtherEntry.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/ClassModel.AttributePool.OtherEntry.html
deleted file mode 100644
index 64b2b766..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/ClassModel.AttributePool.OtherEntry.html
+++ /dev/null
@@ -1,293 +0,0 @@
-
-
-
-
-
-ClassModel.AttributePool.OtherEntry
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-Methods
-
-Modifier and Type
-Method and Description
-
-
-byte[]
-getBytes ()
-
-
-java.lang.String
-toString ()
-
-
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-getBytes
-public byte[] getBytes()
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/ClassModel.AttributePool.PoolEntry.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/ClassModel.AttributePool.PoolEntry.html
deleted file mode 100644
index 23669833..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/ClassModel.AttributePool.PoolEntry.html
+++ /dev/null
@@ -1,302 +0,0 @@
-
-
-
-
-
-ClassModel.AttributePool.PoolEntry
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-Methods
-
-Modifier and Type
-Method and Description
-
-
-java.util.List<T >
-getPool ()
-
-
-java.util.Iterator<T >
-iterator ()
-
-
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/ClassModel.AttributePool.RuntimeAnnotationsEntry.AnnotationInfo.ElementValuePair.AnnotationValue.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/ClassModel.AttributePool.RuntimeAnnotationsEntry.AnnotationInfo.ElementValuePair.AnnotationValue.html
deleted file mode 100644
index d7a02456..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/ClassModel.AttributePool.RuntimeAnnotationsEntry.AnnotationInfo.ElementValuePair.AnnotationValue.html
+++ /dev/null
@@ -1,192 +0,0 @@
-
-
-
-
-
-ClassModel.AttributePool.RuntimeAnnotationsEntry.AnnotationInfo.ElementValuePair.AnnotationValue
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-Summary:
-Nested |
-Field |
-Constr |
-Method
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-com.amd.aparapi.internal.model.ClassModel.AttributePool.RuntimeAnnotationsEntry.AnnotationInfo.ElementValuePair.AnnotationValue
-
-
-
-
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Summary:
-Nested |
-Field |
-Constr |
-Method
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/ClassModel.AttributePool.RuntimeAnnotationsEntry.AnnotationInfo.ElementValuePair.ArrayValue.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/ClassModel.AttributePool.RuntimeAnnotationsEntry.AnnotationInfo.ElementValuePair.ArrayValue.html
deleted file mode 100644
index affcd9c8..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/ClassModel.AttributePool.RuntimeAnnotationsEntry.AnnotationInfo.ElementValuePair.ArrayValue.html
+++ /dev/null
@@ -1,192 +0,0 @@
-
-
-
-
-
-ClassModel.AttributePool.RuntimeAnnotationsEntry.AnnotationInfo.ElementValuePair.ArrayValue
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-Summary:
-Nested |
-Field |
-Constr |
-Method
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-com.amd.aparapi.internal.model.ClassModel.AttributePool.RuntimeAnnotationsEntry.AnnotationInfo.ElementValuePair.ArrayValue
-
-
-
-
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Summary:
-Nested |
-Field |
-Constr |
-Method
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/ClassModel.AttributePool.RuntimeAnnotationsEntry.AnnotationInfo.ElementValuePair.ClassValue.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/ClassModel.AttributePool.RuntimeAnnotationsEntry.AnnotationInfo.ElementValuePair.ClassValue.html
deleted file mode 100644
index 1d7ee8df..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/ClassModel.AttributePool.RuntimeAnnotationsEntry.AnnotationInfo.ElementValuePair.ClassValue.html
+++ /dev/null
@@ -1,192 +0,0 @@
-
-
-
-
-
-ClassModel.AttributePool.RuntimeAnnotationsEntry.AnnotationInfo.ElementValuePair.ClassValue
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-Summary:
-Nested |
-Field |
-Constr |
-Method
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-com.amd.aparapi.internal.model.ClassModel.AttributePool.RuntimeAnnotationsEntry.AnnotationInfo.ElementValuePair.ClassValue
-
-
-
-
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Summary:
-Nested |
-Field |
-Constr |
-Method
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/ClassModel.AttributePool.RuntimeAnnotationsEntry.AnnotationInfo.ElementValuePair.EnumValue.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/ClassModel.AttributePool.RuntimeAnnotationsEntry.AnnotationInfo.ElementValuePair.EnumValue.html
deleted file mode 100644
index 3a726242..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/ClassModel.AttributePool.RuntimeAnnotationsEntry.AnnotationInfo.ElementValuePair.EnumValue.html
+++ /dev/null
@@ -1,192 +0,0 @@
-
-
-
-
-
-ClassModel.AttributePool.RuntimeAnnotationsEntry.AnnotationInfo.ElementValuePair.EnumValue
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-Summary:
-Nested |
-Field |
-Constr |
-Method
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-com.amd.aparapi.internal.model.ClassModel.AttributePool.RuntimeAnnotationsEntry.AnnotationInfo.ElementValuePair.EnumValue
-
-
-
-
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Summary:
-Nested |
-Field |
-Constr |
-Method
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/ClassModel.AttributePool.RuntimeAnnotationsEntry.AnnotationInfo.ElementValuePair.PrimitiveValue.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/ClassModel.AttributePool.RuntimeAnnotationsEntry.AnnotationInfo.ElementValuePair.PrimitiveValue.html
deleted file mode 100644
index fa2f6458..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/ClassModel.AttributePool.RuntimeAnnotationsEntry.AnnotationInfo.ElementValuePair.PrimitiveValue.html
+++ /dev/null
@@ -1,275 +0,0 @@
-
-
-
-
-
-ClassModel.AttributePool.RuntimeAnnotationsEntry.AnnotationInfo.ElementValuePair.PrimitiveValue
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-com.amd.aparapi.internal.model.ClassModel.AttributePool.RuntimeAnnotationsEntry.AnnotationInfo.ElementValuePair.PrimitiveValue
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/ClassModel.AttributePool.RuntimeAnnotationsEntry.AnnotationInfo.ElementValuePair.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/ClassModel.AttributePool.RuntimeAnnotationsEntry.AnnotationInfo.ElementValuePair.html
deleted file mode 100644
index 05b2d874..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/ClassModel.AttributePool.RuntimeAnnotationsEntry.AnnotationInfo.ElementValuePair.html
+++ /dev/null
@@ -1,267 +0,0 @@
-
-
-
-
-
-ClassModel.AttributePool.RuntimeAnnotationsEntry.AnnotationInfo.ElementValuePair
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-com.amd.aparapi.internal.model.ClassModel.AttributePool.RuntimeAnnotationsEntry.AnnotationInfo.ElementValuePair
-
-
-
-
-
-
-
-
-
-
-
-
-Nested Class Summary
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/ClassModel.AttributePool.RuntimeAnnotationsEntry.AnnotationInfo.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/ClassModel.AttributePool.RuntimeAnnotationsEntry.AnnotationInfo.html
deleted file mode 100644
index c68ff93d..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/ClassModel.AttributePool.RuntimeAnnotationsEntry.AnnotationInfo.html
+++ /dev/null
@@ -1,292 +0,0 @@
-
-
-
-
-
-ClassModel.AttributePool.RuntimeAnnotationsEntry.AnnotationInfo
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-com.amd.aparapi.internal.model.ClassModel.AttributePool.RuntimeAnnotationsEntry.AnnotationInfo
-
-
-
-
-
-
-
-
-
-
-
-
-Nested Class Summary
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/ClassModel.AttributePool.RuntimeAnnotationsEntry.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/ClassModel.AttributePool.RuntimeAnnotationsEntry.html
deleted file mode 100644
index 79dd9844..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/ClassModel.AttributePool.RuntimeAnnotationsEntry.html
+++ /dev/null
@@ -1,283 +0,0 @@
-
-
-
-
-
-ClassModel.AttributePool.RuntimeAnnotationsEntry
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Nested Class Summary
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/ClassModel.AttributePool.SignatureEntry.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/ClassModel.AttributePool.SignatureEntry.html
deleted file mode 100644
index b1b441d1..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/ClassModel.AttributePool.SignatureEntry.html
+++ /dev/null
@@ -1,248 +0,0 @@
-
-
-
-
-
-ClassModel.AttributePool.SignatureEntry
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/ClassModel.AttributePool.SourceFileEntry.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/ClassModel.AttributePool.SourceFileEntry.html
deleted file mode 100644
index 5916943b..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/ClassModel.AttributePool.SourceFileEntry.html
+++ /dev/null
@@ -1,289 +0,0 @@
-
-
-
-
-
-ClassModel.AttributePool.SourceFileEntry
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/ClassModel.AttributePool.SyntheticEntry.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/ClassModel.AttributePool.SyntheticEntry.html
deleted file mode 100644
index c8a4c438..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/ClassModel.AttributePool.SyntheticEntry.html
+++ /dev/null
@@ -1,248 +0,0 @@
-
-
-
-
-
-ClassModel.AttributePool.SyntheticEntry
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/ClassModel.AttributePool.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/ClassModel.AttributePool.html
deleted file mode 100644
index 0bafb0b8..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/ClassModel.AttributePool.html
+++ /dev/null
@@ -1,439 +0,0 @@
-
-
-
-
-
-ClassModel.AttributePool
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-com.amd.aparapi.internal.model.ClassModel.AttributePool
-
-
-
-
-
-
-
-
-
-
-
-
-Nested Class Summary
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/ClassModel.ClassModelField.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/ClassModel.ClassModelField.html
deleted file mode 100644
index 1f79640b..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/ClassModel.ClassModelField.html
+++ /dev/null
@@ -1,379 +0,0 @@
-
-
-
-
-
-ClassModel.ClassModelField
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-com.amd.aparapi.internal.model.ClassModel.ClassModelField
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/ClassModel.ClassModelInterface.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/ClassModel.ClassModelInterface.html
deleted file mode 100644
index fe57e67b..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/ClassModel.ClassModelInterface.html
+++ /dev/null
@@ -1,192 +0,0 @@
-
-
-
-
-
-ClassModel.ClassModelInterface
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-Summary:
-Nested |
-Field |
-Constr |
-Method
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-com.amd.aparapi.internal.model.ClassModel.ClassModelInterface
-
-
-
-
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Summary:
-Nested |
-Field |
-Constr |
-Method
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/ClassModel.ClassModelMethod.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/ClassModel.ClassModelMethod.html
deleted file mode 100644
index 487d8982..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/ClassModel.ClassModelMethod.html
+++ /dev/null
@@ -1,472 +0,0 @@
-
-
-
-
-
-ClassModel.ClassModelMethod
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-com.amd.aparapi.internal.model.ClassModel.ClassModelMethod
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/ClassModel.ConstantPool.ClassEntry.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/ClassModel.ConstantPool.ClassEntry.html
deleted file mode 100644
index 58a0a734..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/ClassModel.ConstantPool.ClassEntry.html
+++ /dev/null
@@ -1,287 +0,0 @@
-
-
-
-
-
-ClassModel.ConstantPool.ClassEntry
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/ClassModel.ConstantPool.DoubleEntry.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/ClassModel.ConstantPool.DoubleEntry.html
deleted file mode 100644
index fa765d8f..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/ClassModel.ConstantPool.DoubleEntry.html
+++ /dev/null
@@ -1,274 +0,0 @@
-
-
-
-
-
-ClassModel.ConstantPool.DoubleEntry
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-Methods
-
-Modifier and Type
-Method and Description
-
-
-double
-getDoubleValue ()
-
-
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/ClassModel.ConstantPool.EmptyEntry.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/ClassModel.ConstantPool.EmptyEntry.html
deleted file mode 100644
index dec1b48b..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/ClassModel.ConstantPool.EmptyEntry.html
+++ /dev/null
@@ -1,246 +0,0 @@
-
-
-
-
-
-ClassModel.ConstantPool.EmptyEntry
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/ClassModel.ConstantPool.Entry.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/ClassModel.ConstantPool.Entry.html
deleted file mode 100644
index ca90b654..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/ClassModel.ConstantPool.Entry.html
+++ /dev/null
@@ -1,281 +0,0 @@
-
-
-
-
-
-ClassModel.ConstantPool.Entry
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-com.amd.aparapi.internal.model.ClassModel.ConstantPool.Entry
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-
-
-
-
-getSlot
-public int getSlot()
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/ClassModel.ConstantPool.FieldEntry.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/ClassModel.ConstantPool.FieldEntry.html
deleted file mode 100644
index 995804b2..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/ClassModel.ConstantPool.FieldEntry.html
+++ /dev/null
@@ -1,273 +0,0 @@
-
-
-
-
-
-ClassModel.ConstantPool.FieldEntry
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Nested Class Summary
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/ClassModel.ConstantPool.FloatEntry.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/ClassModel.ConstantPool.FloatEntry.html
deleted file mode 100644
index 523bbb72..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/ClassModel.ConstantPool.FloatEntry.html
+++ /dev/null
@@ -1,274 +0,0 @@
-
-
-
-
-
-ClassModel.ConstantPool.FloatEntry
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-Methods
-
-Modifier and Type
-Method and Description
-
-
-float
-getFloatValue ()
-
-
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/ClassModel.ConstantPool.IntegerEntry.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/ClassModel.ConstantPool.IntegerEntry.html
deleted file mode 100644
index d1823813..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/ClassModel.ConstantPool.IntegerEntry.html
+++ /dev/null
@@ -1,274 +0,0 @@
-
-
-
-
-
-ClassModel.ConstantPool.IntegerEntry
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-Methods
-
-Modifier and Type
-Method and Description
-
-
-int
-getIntValue ()
-
-
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-getIntValue
-public int getIntValue()
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/ClassModel.ConstantPool.InterfaceMethodEntry.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/ClassModel.ConstantPool.InterfaceMethodEntry.html
deleted file mode 100644
index 07dc1ae6..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/ClassModel.ConstantPool.InterfaceMethodEntry.html
+++ /dev/null
@@ -1,250 +0,0 @@
-
-
-
-
-
-ClassModel.ConstantPool.InterfaceMethodEntry
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Nested Class Summary
-
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-
-
-
-Methods inherited from class java.lang.Object
-getClass, notify, notifyAll, toString, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/ClassModel.ConstantPool.LongEntry.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/ClassModel.ConstantPool.LongEntry.html
deleted file mode 100644
index be1f196f..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/ClassModel.ConstantPool.LongEntry.html
+++ /dev/null
@@ -1,274 +0,0 @@
-
-
-
-
-
-ClassModel.ConstantPool.LongEntry
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-Methods
-
-Modifier and Type
-Method and Description
-
-
-long
-getLongValue ()
-
-
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/ClassModel.ConstantPool.MethodEntry.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/ClassModel.ConstantPool.MethodEntry.html
deleted file mode 100644
index b29f4c57..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/ClassModel.ConstantPool.MethodEntry.html
+++ /dev/null
@@ -1,324 +0,0 @@
-
-
-
-
-
-ClassModel.ConstantPool.MethodEntry
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Nested Class Summary
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-Methods
-
-Modifier and Type
-Method and Description
-
-
-java.lang.String
-toString ()
-
-
-
-
-
-
-
-
-
-Methods inherited from class java.lang.Object
-getClass, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/ClassModel.ConstantPool.MethodReferenceEntry.Arg.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/ClassModel.ConstantPool.MethodReferenceEntry.Arg.html
deleted file mode 100644
index 7a15368f..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/ClassModel.ConstantPool.MethodReferenceEntry.Arg.html
+++ /dev/null
@@ -1,204 +0,0 @@
-
-
-
-
-
-ClassModel.ConstantPool.MethodReferenceEntry.Arg
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-Summary:
-Nested |
-Field |
-Constr |
-Method
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Summary:
-Nested |
-Field |
-Constr |
-Method
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/ClassModel.ConstantPool.MethodReferenceEntry.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/ClassModel.ConstantPool.MethodReferenceEntry.html
deleted file mode 100644
index e788d98e..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/ClassModel.ConstantPool.MethodReferenceEntry.html
+++ /dev/null
@@ -1,391 +0,0 @@
-
-
-
-
-
-ClassModel.ConstantPool.MethodReferenceEntry
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Nested Class Summary
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-
-
-
-Methods inherited from class java.lang.Object
-getClass, notify, notifyAll, toString, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-hashCode
-public int hashCode()
-
-Overrides:
-hashCode in class java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/ClassModel.ConstantPool.NameAndTypeEntry.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/ClassModel.ConstantPool.NameAndTypeEntry.html
deleted file mode 100644
index 36da3af9..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/ClassModel.ConstantPool.NameAndTypeEntry.html
+++ /dev/null
@@ -1,313 +0,0 @@
-
-
-
-
-
-ClassModel.ConstantPool.NameAndTypeEntry
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/ClassModel.ConstantPool.ReferenceEntry.Type.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/ClassModel.ConstantPool.ReferenceEntry.Type.html
deleted file mode 100644
index c105b954..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/ClassModel.ConstantPool.ReferenceEntry.Type.html
+++ /dev/null
@@ -1,303 +0,0 @@
-
-
-
-
-
-ClassModel.ConstantPool.ReferenceEntry.Type
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-com.amd.aparapi.internal.model.ClassModel.ConstantPool.ReferenceEntry.Type
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-
-
-
-
-isVoid
-public boolean isVoid()
-
-
-
-
-
-
-
-isArray
-public boolean isArray()
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/ClassModel.ConstantPool.ReferenceEntry.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/ClassModel.ConstantPool.ReferenceEntry.html
deleted file mode 100644
index 9e3633b8..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/ClassModel.ConstantPool.ReferenceEntry.html
+++ /dev/null
@@ -1,351 +0,0 @@
-
-
-
-
-
-ClassModel.ConstantPool.ReferenceEntry
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Nested Class Summary
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/ClassModel.ConstantPool.StringEntry.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/ClassModel.ConstantPool.StringEntry.html
deleted file mode 100644
index a341f2f5..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/ClassModel.ConstantPool.StringEntry.html
+++ /dev/null
@@ -1,287 +0,0 @@
-
-
-
-
-
-ClassModel.ConstantPool.StringEntry
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/ClassModel.ConstantPool.UTF8Entry.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/ClassModel.ConstantPool.UTF8Entry.html
deleted file mode 100644
index 62aed0c9..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/ClassModel.ConstantPool.UTF8Entry.html
+++ /dev/null
@@ -1,274 +0,0 @@
-
-
-
-
-
-ClassModel.ConstantPool.UTF8Entry
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-Methods
-
-Modifier and Type
-Method and Description
-
-
-java.lang.String
-getUTF8 ()
-
-
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/ClassModel.ConstantPool.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/ClassModel.ConstantPool.html
deleted file mode 100644
index 6fef644f..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/ClassModel.ConstantPool.html
+++ /dev/null
@@ -1,565 +0,0 @@
-
-
-
-
-
-ClassModel.ConstantPool
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-com.amd.aparapi.internal.model.ClassModel.ConstantPool
-
-
-
-
-
-
-
-
-
-
-
-
-Nested Class Summary
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/ClassModel.ConstantPoolType.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/ClassModel.ConstantPoolType.html
deleted file mode 100644
index 0572f324..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/ClassModel.ConstantPoolType.html
+++ /dev/null
@@ -1,457 +0,0 @@
-
-
-
-
-
-ClassModel.ConstantPoolType
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Enum Constant Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-Methods
-
-Modifier and Type
-Method and Description
-
-
-static ClassModel.ConstantPoolType
-valueOf (java.lang.String name)
-Returns the enum constant of this type with the specified name.
-
-
-
-static ClassModel.ConstantPoolType []
-values ()
-Returns an array containing the constants of this enum type, in
-the order they are declared.
-
-
-
-
-
-
-
-Methods inherited from class java.lang.Enum
-compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
-
-
-
-
-
-Methods inherited from class java.lang.Object
-getClass, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-
-
-
-
-valueOf
-public static ClassModel.ConstantPoolType valueOf(java.lang.String name)
-Returns the enum constant of this type with the specified name.
-The string must match exactly an identifier used to declare an
-enum constant in this type. (Extraneous whitespace characters are
-not permitted.)
-Parameters: name - the name of the enum constant to be returned.
-Returns: the enum constant with the specified name
-Throws:
-java.lang.IllegalArgumentException - if this enum type has no constant
-with the specified name
-java.lang.NullPointerException - if the argument is null
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/ClassModel.MethodDescription.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/ClassModel.MethodDescription.html
deleted file mode 100644
index 3c9d92b3..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/ClassModel.MethodDescription.html
+++ /dev/null
@@ -1,305 +0,0 @@
-
-
-
-
-
-ClassModel.MethodDescription
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-com.amd.aparapi.internal.model.ClassModel.MethodDescription
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-Constructors
-
-Constructor and Description
-
-
-ClassModel.MethodDescription (java.lang.String _className,
- java.lang.String _methodName,
- java.lang.String _type,
- java.lang.String[] _args)
-
-
-
-
-
-
-
-
-
-Method Summary
-
-Methods
-
-Modifier and Type
-Method and Description
-
-
-java.lang.String[]
-getArgs ()
-
-
-java.lang.String
-getClassName ()
-
-
-java.lang.String
-getMethodName ()
-
-
-java.lang.String
-getType ()
-
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-ClassModel.MethodDescription
-public ClassModel.MethodDescription(java.lang.String _className,
- java.lang.String _methodName,
- java.lang.String _type,
- java.lang.String[] _args)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/ClassModel.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/ClassModel.html
deleted file mode 100644
index 411e2f1d..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/ClassModel.html
+++ /dev/null
@@ -1,1018 +0,0 @@
-
-
-
-
-
-ClassModel
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-com.amd.aparapi.internal.model.ClassModel
-
-
-
-
-
-
-
-
-public class ClassModel
-extends java.lang.Object
-Class represents a ClassFile (MyClass.class).
-
- A ClassModel is constructed from an instance of a java.lang.Class.
-
- If the java class mode changes we may need to modify this to accommodate.
-Author:
- gfrost
-See Also: Java 5 Class File Format
-
-
-
-
-
-
-
-
-
-
-
-Nested Class Summary
-
-
-
-
-
-
-
-
-Field Summary
-
-
-
-
-
-
-
-
-Constructor Summary
-
-Constructors
-
-Constructor and Description
-
-
-ClassModel (java.lang.Class<?> _class)
-Create a ClassModel representing a given Class.
-
-
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-ClassModel
-public ClassModel(java.lang.Class<?> _class)
- throws ClassParseException
-Create a ClassModel representing a given Class.
-
- The class's classfile must be available from the class's classloader via getClassLoader().getResourceAsStream(name)).
- For dynamic languages creating classes on the fly we may need another approach.
-Parameters: _class - The class we will extract the model from
-Throws:
-ClassParseException
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/Entrypoint.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/Entrypoint.html
deleted file mode 100644
index 8f964e39..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/Entrypoint.html
+++ /dev/null
@@ -1,582 +0,0 @@
-
-
-
-
-
-Entrypoint
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-com.amd.aparapi.internal.model.Entrypoint
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/MethodModel.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/MethodModel.html
deleted file mode 100644
index ad103e94..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/MethodModel.html
+++ /dev/null
@@ -1,648 +0,0 @@
-
-
-
-
-
-MethodModel
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-Summary:
-Nested |
-Field |
-Constr |
-Method
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-com.amd.aparapi.internal.model.MethodModel
-
-
-
-
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-createListOfInstructions
-public java.util.Map<java.lang.Integer,Instruction > createListOfInstructions()
- throws ClassParseException
-Create a linked list of instructions (from pcHead to pcTail).
-
- Returns a map of int (pc) to Instruction which to allow us to quickly get from a bytecode offset to the appropriate instruction.
-
- Note that not all int values from 0 to code.length values will map to a valid instruction, if pcMap.get(n) == null then this implies
- that 'n' is not the start of an instruction
-
- So either pcMap.get(i)== null or pcMap.get(i).getThisPC()==i
-Returns: Map the returned pc to Instruction map
-Throws:
-ClassParseException
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Summary:
-Nested |
-Field |
-Constr |
-Method
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/class-use/ClassModel.Access.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/class-use/ClassModel.Access.html
deleted file mode 100644
index 2b22a47d..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/class-use/ClassModel.Access.html
+++ /dev/null
@@ -1,164 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.model.ClassModel.Access
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/class-use/ClassModel.AttributePool.AttributePoolEntry.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/class-use/ClassModel.AttributePool.AttributePoolEntry.html
deleted file mode 100644
index ffdb745a..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/class-use/ClassModel.AttributePool.AttributePoolEntry.html
+++ /dev/null
@@ -1,207 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.model.ClassModel.AttributePool.AttributePoolEntry
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/class-use/ClassModel.AttributePool.CodeEntry.ExceptionPoolEntry.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/class-use/ClassModel.AttributePool.CodeEntry.ExceptionPoolEntry.html
deleted file mode 100644
index 4dd03f88..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/class-use/ClassModel.AttributePool.CodeEntry.ExceptionPoolEntry.html
+++ /dev/null
@@ -1,155 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.model.ClassModel.AttributePool.CodeEntry.ExceptionPoolEntry
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/class-use/ClassModel.AttributePool.CodeEntry.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/class-use/ClassModel.AttributePool.CodeEntry.html
deleted file mode 100644
index 9bfa0889..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/class-use/ClassModel.AttributePool.CodeEntry.html
+++ /dev/null
@@ -1,159 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.model.ClassModel.AttributePool.CodeEntry
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/class-use/ClassModel.AttributePool.ConstantValueEntry.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/class-use/ClassModel.AttributePool.ConstantValueEntry.html
deleted file mode 100644
index d88181a3..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/class-use/ClassModel.AttributePool.ConstantValueEntry.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.model.ClassModel.AttributePool.ConstantValueEntry
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.model.ClassModel.AttributePool.ConstantValueEntry
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/class-use/ClassModel.AttributePool.DeprecatedEntry.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/class-use/ClassModel.AttributePool.DeprecatedEntry.html
deleted file mode 100644
index f3bc55c7..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/class-use/ClassModel.AttributePool.DeprecatedEntry.html
+++ /dev/null
@@ -1,155 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.model.ClassModel.AttributePool.DeprecatedEntry
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/class-use/ClassModel.AttributePool.EnclosingMethodEntry.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/class-use/ClassModel.AttributePool.EnclosingMethodEntry.html
deleted file mode 100644
index 6f469789..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/class-use/ClassModel.AttributePool.EnclosingMethodEntry.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.model.ClassModel.AttributePool.EnclosingMethodEntry
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.model.ClassModel.AttributePool.EnclosingMethodEntry
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/class-use/ClassModel.AttributePool.ExceptionEntry.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/class-use/ClassModel.AttributePool.ExceptionEntry.html
deleted file mode 100644
index d7d04de7..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/class-use/ClassModel.AttributePool.ExceptionEntry.html
+++ /dev/null
@@ -1,155 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.model.ClassModel.AttributePool.ExceptionEntry
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/class-use/ClassModel.AttributePool.InnerClassesEntry.InnerClassInfo.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/class-use/ClassModel.AttributePool.InnerClassesEntry.InnerClassInfo.html
deleted file mode 100644
index 420da4e2..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/class-use/ClassModel.AttributePool.InnerClassesEntry.InnerClassInfo.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.model.ClassModel.AttributePool.InnerClassesEntry.InnerClassInfo
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.model.ClassModel.AttributePool.InnerClassesEntry.InnerClassInfo
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/class-use/ClassModel.AttributePool.InnerClassesEntry.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/class-use/ClassModel.AttributePool.InnerClassesEntry.html
deleted file mode 100644
index 5aedad69..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/class-use/ClassModel.AttributePool.InnerClassesEntry.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.model.ClassModel.AttributePool.InnerClassesEntry
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.model.ClassModel.AttributePool.InnerClassesEntry
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/class-use/ClassModel.AttributePool.LineNumberTableEntry.StartLineNumberPair.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/class-use/ClassModel.AttributePool.LineNumberTableEntry.StartLineNumberPair.html
deleted file mode 100644
index ac2cd547..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/class-use/ClassModel.AttributePool.LineNumberTableEntry.StartLineNumberPair.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.model.ClassModel.AttributePool.LineNumberTableEntry.StartLineNumberPair
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.model.ClassModel.AttributePool.LineNumberTableEntry.StartLineNumberPair
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/class-use/ClassModel.AttributePool.LineNumberTableEntry.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/class-use/ClassModel.AttributePool.LineNumberTableEntry.html
deleted file mode 100644
index 05abf66e..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/class-use/ClassModel.AttributePool.LineNumberTableEntry.html
+++ /dev/null
@@ -1,163 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.model.ClassModel.AttributePool.LineNumberTableEntry
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/class-use/ClassModel.AttributePool.LocalVariableTableEntry.LocalVariableInfo.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/class-use/ClassModel.AttributePool.LocalVariableTableEntry.LocalVariableInfo.html
deleted file mode 100644
index 6a2733fd..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/class-use/ClassModel.AttributePool.LocalVariableTableEntry.LocalVariableInfo.html
+++ /dev/null
@@ -1,204 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.model.ClassModel.AttributePool.LocalVariableTableEntry.LocalVariableInfo
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/class-use/ClassModel.AttributePool.LocalVariableTableEntry.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/class-use/ClassModel.AttributePool.LocalVariableTableEntry.html
deleted file mode 100644
index 67b5cd13..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/class-use/ClassModel.AttributePool.LocalVariableTableEntry.html
+++ /dev/null
@@ -1,163 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.model.ClassModel.AttributePool.LocalVariableTableEntry
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/class-use/ClassModel.AttributePool.OtherEntry.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/class-use/ClassModel.AttributePool.OtherEntry.html
deleted file mode 100644
index e3369f49..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/class-use/ClassModel.AttributePool.OtherEntry.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.model.ClassModel.AttributePool.OtherEntry
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.model.ClassModel.AttributePool.OtherEntry
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/class-use/ClassModel.AttributePool.PoolEntry.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/class-use/ClassModel.AttributePool.PoolEntry.html
deleted file mode 100644
index 8e628eaf..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/class-use/ClassModel.AttributePool.PoolEntry.html
+++ /dev/null
@@ -1,171 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.model.ClassModel.AttributePool.PoolEntry
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/class-use/ClassModel.AttributePool.RuntimeAnnotationsEntry.AnnotationInfo.ElementValuePair.AnnotationValue.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/class-use/ClassModel.AttributePool.RuntimeAnnotationsEntry.AnnotationInfo.ElementValuePair.AnnotationValue.html
deleted file mode 100644
index d654e384..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/class-use/ClassModel.AttributePool.RuntimeAnnotationsEntry.AnnotationInfo.ElementValuePair.AnnotationValue.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.model.ClassModel.AttributePool.RuntimeAnnotationsEntry.AnnotationInfo.ElementValuePair.AnnotationValue
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.model.ClassModel.AttributePool.RuntimeAnnotationsEntry.AnnotationInfo.ElementValuePair.AnnotationValue
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/class-use/ClassModel.AttributePool.RuntimeAnnotationsEntry.AnnotationInfo.ElementValuePair.ArrayValue.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/class-use/ClassModel.AttributePool.RuntimeAnnotationsEntry.AnnotationInfo.ElementValuePair.ArrayValue.html
deleted file mode 100644
index 088bf8a1..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/class-use/ClassModel.AttributePool.RuntimeAnnotationsEntry.AnnotationInfo.ElementValuePair.ArrayValue.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.model.ClassModel.AttributePool.RuntimeAnnotationsEntry.AnnotationInfo.ElementValuePair.ArrayValue
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.model.ClassModel.AttributePool.RuntimeAnnotationsEntry.AnnotationInfo.ElementValuePair.ArrayValue
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/class-use/ClassModel.AttributePool.RuntimeAnnotationsEntry.AnnotationInfo.ElementValuePair.ClassValue.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/class-use/ClassModel.AttributePool.RuntimeAnnotationsEntry.AnnotationInfo.ElementValuePair.ClassValue.html
deleted file mode 100644
index 1b105834..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/class-use/ClassModel.AttributePool.RuntimeAnnotationsEntry.AnnotationInfo.ElementValuePair.ClassValue.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.model.ClassModel.AttributePool.RuntimeAnnotationsEntry.AnnotationInfo.ElementValuePair.ClassValue
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.model.ClassModel.AttributePool.RuntimeAnnotationsEntry.AnnotationInfo.ElementValuePair.ClassValue
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/class-use/ClassModel.AttributePool.RuntimeAnnotationsEntry.AnnotationInfo.ElementValuePair.EnumValue.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/class-use/ClassModel.AttributePool.RuntimeAnnotationsEntry.AnnotationInfo.ElementValuePair.EnumValue.html
deleted file mode 100644
index 9396a925..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/class-use/ClassModel.AttributePool.RuntimeAnnotationsEntry.AnnotationInfo.ElementValuePair.EnumValue.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.model.ClassModel.AttributePool.RuntimeAnnotationsEntry.AnnotationInfo.ElementValuePair.EnumValue
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.model.ClassModel.AttributePool.RuntimeAnnotationsEntry.AnnotationInfo.ElementValuePair.EnumValue
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/class-use/ClassModel.AttributePool.RuntimeAnnotationsEntry.AnnotationInfo.ElementValuePair.PrimitiveValue.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/class-use/ClassModel.AttributePool.RuntimeAnnotationsEntry.AnnotationInfo.ElementValuePair.PrimitiveValue.html
deleted file mode 100644
index cfacf255..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/class-use/ClassModel.AttributePool.RuntimeAnnotationsEntry.AnnotationInfo.ElementValuePair.PrimitiveValue.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.model.ClassModel.AttributePool.RuntimeAnnotationsEntry.AnnotationInfo.ElementValuePair.PrimitiveValue
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.model.ClassModel.AttributePool.RuntimeAnnotationsEntry.AnnotationInfo.ElementValuePair.PrimitiveValue
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/class-use/ClassModel.AttributePool.RuntimeAnnotationsEntry.AnnotationInfo.ElementValuePair.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/class-use/ClassModel.AttributePool.RuntimeAnnotationsEntry.AnnotationInfo.ElementValuePair.html
deleted file mode 100644
index 763f8fe6..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/class-use/ClassModel.AttributePool.RuntimeAnnotationsEntry.AnnotationInfo.ElementValuePair.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.model.ClassModel.AttributePool.RuntimeAnnotationsEntry.AnnotationInfo.ElementValuePair
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.model.ClassModel.AttributePool.RuntimeAnnotationsEntry.AnnotationInfo.ElementValuePair
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/class-use/ClassModel.AttributePool.RuntimeAnnotationsEntry.AnnotationInfo.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/class-use/ClassModel.AttributePool.RuntimeAnnotationsEntry.AnnotationInfo.html
deleted file mode 100644
index 4c3a1d9e..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/class-use/ClassModel.AttributePool.RuntimeAnnotationsEntry.AnnotationInfo.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.model.ClassModel.AttributePool.RuntimeAnnotationsEntry.AnnotationInfo
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.model.ClassModel.AttributePool.RuntimeAnnotationsEntry.AnnotationInfo
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/class-use/ClassModel.AttributePool.RuntimeAnnotationsEntry.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/class-use/ClassModel.AttributePool.RuntimeAnnotationsEntry.html
deleted file mode 100644
index ece31d8d..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/class-use/ClassModel.AttributePool.RuntimeAnnotationsEntry.html
+++ /dev/null
@@ -1,159 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.model.ClassModel.AttributePool.RuntimeAnnotationsEntry
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/class-use/ClassModel.AttributePool.SignatureEntry.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/class-use/ClassModel.AttributePool.SignatureEntry.html
deleted file mode 100644
index 68d42217..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/class-use/ClassModel.AttributePool.SignatureEntry.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.model.ClassModel.AttributePool.SignatureEntry
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.model.ClassModel.AttributePool.SignatureEntry
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/class-use/ClassModel.AttributePool.SourceFileEntry.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/class-use/ClassModel.AttributePool.SourceFileEntry.html
deleted file mode 100644
index f0536f2a..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/class-use/ClassModel.AttributePool.SourceFileEntry.html
+++ /dev/null
@@ -1,155 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.model.ClassModel.AttributePool.SourceFileEntry
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/class-use/ClassModel.AttributePool.SyntheticEntry.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/class-use/ClassModel.AttributePool.SyntheticEntry.html
deleted file mode 100644
index 1afb7a90..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/class-use/ClassModel.AttributePool.SyntheticEntry.html
+++ /dev/null
@@ -1,155 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.model.ClassModel.AttributePool.SyntheticEntry
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/class-use/ClassModel.AttributePool.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/class-use/ClassModel.AttributePool.html
deleted file mode 100644
index fd2506e8..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/class-use/ClassModel.AttributePool.html
+++ /dev/null
@@ -1,171 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.model.ClassModel.AttributePool
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/class-use/ClassModel.ClassModelField.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/class-use/ClassModel.ClassModelField.html
deleted file mode 100644
index ee63ac92..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/class-use/ClassModel.ClassModelField.html
+++ /dev/null
@@ -1,177 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.model.ClassModel.ClassModelField
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/class-use/ClassModel.ClassModelInterface.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/class-use/ClassModel.ClassModelInterface.html
deleted file mode 100644
index 5d192f51..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/class-use/ClassModel.ClassModelInterface.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.model.ClassModel.ClassModelInterface
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.model.ClassModel.ClassModelInterface
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/class-use/ClassModel.ClassModelMethod.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/class-use/ClassModel.ClassModelMethod.html
deleted file mode 100644
index e895b215..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/class-use/ClassModel.ClassModelMethod.html
+++ /dev/null
@@ -1,172 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.model.ClassModel.ClassModelMethod
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/class-use/ClassModel.ConstantPool.ClassEntry.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/class-use/ClassModel.ConstantPool.ClassEntry.html
deleted file mode 100644
index 3ae203a9..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/class-use/ClassModel.ConstantPool.ClassEntry.html
+++ /dev/null
@@ -1,163 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.model.ClassModel.ConstantPool.ClassEntry
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/class-use/ClassModel.ConstantPool.DoubleEntry.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/class-use/ClassModel.ConstantPool.DoubleEntry.html
deleted file mode 100644
index ce76cc29..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/class-use/ClassModel.ConstantPool.DoubleEntry.html
+++ /dev/null
@@ -1,155 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.model.ClassModel.ConstantPool.DoubleEntry
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/class-use/ClassModel.ConstantPool.EmptyEntry.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/class-use/ClassModel.ConstantPool.EmptyEntry.html
deleted file mode 100644
index 75eee184..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/class-use/ClassModel.ConstantPool.EmptyEntry.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.model.ClassModel.ConstantPool.EmptyEntry
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.model.ClassModel.ConstantPool.EmptyEntry
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/class-use/ClassModel.ConstantPool.Entry.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/class-use/ClassModel.ConstantPool.Entry.html
deleted file mode 100644
index e81fc11f..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/class-use/ClassModel.ConstantPool.Entry.html
+++ /dev/null
@@ -1,296 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.model.ClassModel.ConstantPool.Entry
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/class-use/ClassModel.ConstantPool.FieldEntry.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/class-use/ClassModel.ConstantPool.FieldEntry.html
deleted file mode 100644
index 2548503a..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/class-use/ClassModel.ConstantPool.FieldEntry.html
+++ /dev/null
@@ -1,224 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.model.ClassModel.ConstantPool.FieldEntry
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/class-use/ClassModel.ConstantPool.FloatEntry.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/class-use/ClassModel.ConstantPool.FloatEntry.html
deleted file mode 100644
index 17245fde..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/class-use/ClassModel.ConstantPool.FloatEntry.html
+++ /dev/null
@@ -1,155 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.model.ClassModel.ConstantPool.FloatEntry
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/class-use/ClassModel.ConstantPool.IntegerEntry.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/class-use/ClassModel.ConstantPool.IntegerEntry.html
deleted file mode 100644
index 9f786455..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/class-use/ClassModel.ConstantPool.IntegerEntry.html
+++ /dev/null
@@ -1,155 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.model.ClassModel.ConstantPool.IntegerEntry
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/class-use/ClassModel.ConstantPool.InterfaceMethodEntry.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/class-use/ClassModel.ConstantPool.InterfaceMethodEntry.html
deleted file mode 100644
index b2d15f7b..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/class-use/ClassModel.ConstantPool.InterfaceMethodEntry.html
+++ /dev/null
@@ -1,185 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.model.ClassModel.ConstantPool.InterfaceMethodEntry
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/class-use/ClassModel.ConstantPool.LongEntry.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/class-use/ClassModel.ConstantPool.LongEntry.html
deleted file mode 100644
index b0c8ce4d..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/class-use/ClassModel.ConstantPool.LongEntry.html
+++ /dev/null
@@ -1,155 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.model.ClassModel.ConstantPool.LongEntry
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/class-use/ClassModel.ConstantPool.MethodEntry.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/class-use/ClassModel.ConstantPool.MethodEntry.html
deleted file mode 100644
index 8c7c27f6..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/class-use/ClassModel.ConstantPool.MethodEntry.html
+++ /dev/null
@@ -1,243 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.model.ClassModel.ConstantPool.MethodEntry
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/class-use/ClassModel.ConstantPool.MethodReferenceEntry.Arg.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/class-use/ClassModel.ConstantPool.MethodReferenceEntry.Arg.html
deleted file mode 100644
index cd02a1fa..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/class-use/ClassModel.ConstantPool.MethodReferenceEntry.Arg.html
+++ /dev/null
@@ -1,155 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.model.ClassModel.ConstantPool.MethodReferenceEntry.Arg
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/class-use/ClassModel.ConstantPool.MethodReferenceEntry.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/class-use/ClassModel.ConstantPool.MethodReferenceEntry.html
deleted file mode 100644
index 0fe41bea..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/class-use/ClassModel.ConstantPool.MethodReferenceEntry.html
+++ /dev/null
@@ -1,197 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.model.ClassModel.ConstantPool.MethodReferenceEntry
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/class-use/ClassModel.ConstantPool.NameAndTypeEntry.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/class-use/ClassModel.ConstantPool.NameAndTypeEntry.html
deleted file mode 100644
index e0ec2922..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/class-use/ClassModel.ConstantPool.NameAndTypeEntry.html
+++ /dev/null
@@ -1,159 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.model.ClassModel.ConstantPool.NameAndTypeEntry
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/class-use/ClassModel.ConstantPool.ReferenceEntry.Type.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/class-use/ClassModel.ConstantPool.ReferenceEntry.Type.html
deleted file mode 100644
index 8bccd4d4..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/class-use/ClassModel.ConstantPool.ReferenceEntry.Type.html
+++ /dev/null
@@ -1,168 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.model.ClassModel.ConstantPool.ReferenceEntry.Type
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/class-use/ClassModel.ConstantPool.ReferenceEntry.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/class-use/ClassModel.ConstantPool.ReferenceEntry.html
deleted file mode 100644
index b6d67f95..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/class-use/ClassModel.ConstantPool.ReferenceEntry.html
+++ /dev/null
@@ -1,167 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.model.ClassModel.ConstantPool.ReferenceEntry
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/class-use/ClassModel.ConstantPool.StringEntry.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/class-use/ClassModel.ConstantPool.StringEntry.html
deleted file mode 100644
index aabcff5f..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/class-use/ClassModel.ConstantPool.StringEntry.html
+++ /dev/null
@@ -1,155 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.model.ClassModel.ConstantPool.StringEntry
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/class-use/ClassModel.ConstantPool.UTF8Entry.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/class-use/ClassModel.ConstantPool.UTF8Entry.html
deleted file mode 100644
index a6be8206..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/class-use/ClassModel.ConstantPool.UTF8Entry.html
+++ /dev/null
@@ -1,187 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.model.ClassModel.ConstantPool.UTF8Entry
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/class-use/ClassModel.ConstantPool.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/class-use/ClassModel.ConstantPool.html
deleted file mode 100644
index d89e4597..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/class-use/ClassModel.ConstantPool.html
+++ /dev/null
@@ -1,163 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.model.ClassModel.ConstantPool
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/class-use/ClassModel.ConstantPoolType.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/class-use/ClassModel.ConstantPoolType.html
deleted file mode 100644
index a7adcceb..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/class-use/ClassModel.ConstantPoolType.html
+++ /dev/null
@@ -1,191 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.model.ClassModel.ConstantPoolType
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/class-use/ClassModel.MethodDescription.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/class-use/ClassModel.MethodDescription.html
deleted file mode 100644
index a279b482..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/class-use/ClassModel.MethodDescription.html
+++ /dev/null
@@ -1,155 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.model.ClassModel.MethodDescription
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/class-use/ClassModel.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/class-use/ClassModel.html
deleted file mode 100644
index 802ba865..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/class-use/ClassModel.html
+++ /dev/null
@@ -1,208 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.model.ClassModel
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/class-use/Entrypoint.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/class-use/Entrypoint.html
deleted file mode 100644
index 26d6459b..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/class-use/Entrypoint.html
+++ /dev/null
@@ -1,212 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.model.Entrypoint
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/class-use/MethodModel.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/class-use/MethodModel.html
deleted file mode 100644
index 1bfeff12..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/class-use/MethodModel.html
+++ /dev/null
@@ -1,1560 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.model.MethodModel
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructors in com.amd.aparapi.internal.instruction with parameters of type MethodModel
-
-Constructor and Description
-
-
-
-ExpressionList (MethodModel _methodModel)
-
-
-InstructionSet.ArrayAccess (MethodModel _methodPoolEntry,
- InstructionSet.ByteCode _byteCode,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.Branch (MethodModel _methodPoolEntry,
- InstructionSet.ByteCode _byteCode,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.Branch (MethodModel _methodPoolEntry,
- InstructionSet.ByteCode _byteCode,
- Instruction _target)
-
-
-InstructionSet.Branch32 (MethodModel _methodPoolEntry,
- InstructionSet.ByteCode _byteCode,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.BytecodeEncodedConstant (MethodModel _methodPoolEntry,
- InstructionSet.ByteCode _byteCode,
- ByteReader _byteReader,
- boolean _wide,
- T _value)
-
-
-InstructionSet.CloneInstruction (MethodModel method,
- Instruction _cloning)
-
-
-InstructionSet.CompositeEmptyLoopInstruction (MethodModel method,
- Instruction _firstChild,
- Instruction _lastChild,
- BranchSet _branchSet)
-
-
-InstructionSet.CompositeForSunInstruction (MethodModel method,
- Instruction _firstChild,
- Instruction _lastChild,
- BranchSet _branchSet)
-
-
-InstructionSet.CompositeIfElseInstruction (MethodModel method,
- Instruction _firstChild,
- Instruction _lastChild,
- BranchSet _branchSet)
-
-
-InstructionSet.CompositeIfInstruction (MethodModel method,
- Instruction _firstChild,
- Instruction _lastChild,
- BranchSet _branchSet)
-
-
-InstructionSet.CompositeInstruction (MethodModel method,
- InstructionSet.ByteCode _byteCode,
- Instruction _firstChild,
- Instruction _lastChild,
- BranchSet _branchSet)
-
-
-InstructionSet.CompositeWhileInstruction (MethodModel method,
- Instruction _firstChild,
- Instruction _lastChild,
- BranchSet _branchSet)
-
-
-InstructionSet.ConditionalBranch (MethodModel _methodPoolEntry,
- InstructionSet.ByteCode _byteCode,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.ConditionalBranch16 (MethodModel _methodPoolEntry,
- InstructionSet.ByteCode _byteCode,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.DUP (MethodModel _methodPoolEntry,
- InstructionSet.ByteCode _byteCode,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.FakeGoto (MethodModel _methodPoolEntry,
- Instruction _target)
-
-
-InstructionSet.FieldArrayElementAssign (MethodModel method,
- InstructionSet.AssignToArrayElement _assignToArrayElement,
- Instruction _rhs)
-
-
-InstructionSet.FieldArrayElementIncrement (MethodModel method,
- InstructionSet.AssignToArrayElement _assignToArrayElement,
- boolean _isInc,
- boolean _isPre)
-
-
-InstructionSet.I_AALOAD (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_AASTORE (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_ACONST_NULL (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_ALOAD_0 (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_ALOAD_1 (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_ALOAD_2 (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_ALOAD_3 (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_ALOAD (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_ANEWARRAY (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_ARETURN (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_ARRAYLENGTH (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_ASTORE_0 (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_ASTORE_1 (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_ASTORE_2 (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_ASTORE_3 (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_ASTORE (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_ATHROW (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_BALOAD (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_BASTORE (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_BIPUSH (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_CALOAD (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_CASTORE (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_CHECKCAST (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_D2F (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_D2I (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_D2L (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_DADD (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_DALOAD (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_DASTORE (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_DCMPG (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_DCMPL (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_DCONST_0 (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_DCONST_1 (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_DDIV (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_DLOAD_0 (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_DLOAD_1 (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_DLOAD_2 (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_DLOAD_3 (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_DLOAD (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_DMUL (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_DNEG (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_DREM (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_DRETURN (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_DSTORE_0 (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_DSTORE_1 (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_DSTORE_2 (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_DSTORE_3 (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_DSTORE (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_DSUB (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_DUP_X1 (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_DUP_X2 (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_DUP (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_DUP2_X1 (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_DUP2_X2 (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_DUP2 (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_END (MethodModel method,
- int _pc)
-
-
-InstructionSet.I_F2D (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_F2I (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_F2L (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_FADD (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_FALOAD (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_FASTORE (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_FCMPG (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_FCMPL (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_FCONST_0 (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_FCONST_1 (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_FCONST_2 (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_FDIV (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_FLOAD_0 (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_FLOAD_1 (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_FLOAD_2 (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_FLOAD_3 (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_FLOAD (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_FMUL (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_FNEG (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_FREM (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_FRETURN (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_FSTORE_0 (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_FSTORE_1 (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_FSTORE_3 (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_FSTORE (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_FSUB (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_GETFIELD (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_GETSTATIC (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_GOTO_W (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_GOTO (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_I2B (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_I2C (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_I2D (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_I2F (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_I2L (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_I2S (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_IADD (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_IALOAD (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_IAND (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_IASTORE (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_ICONST_0 (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_ICONST_1 (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_ICONST_2 (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_ICONST_3 (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_ICONST_4 (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_ICONST_5 (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_ICONST_M1 (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_IDIV (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_IF_ACMPEQ (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_IF_ACMPNE (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_IF_ICMPEQ (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_IF_ICMPGE (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_IF_ICMPGT (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_IF_ICMPLE (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_IF_ICMPLT (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_IF_ICMPNE (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_IFEQ (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_IFGE (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_IFGT (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_IFLE (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_IFLT (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_IFNE (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_IFNONNULL (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_IFNULL (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_IINC (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_ILOAD_0 (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_ILOAD_1 (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_ILOAD_2 (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_ILOAD_3 (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_ILOAD (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_IMUL (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_INEG (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_INSTANCEOF (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_INVOKEDYNAMIC (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_INVOKEINTERFACE (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_INVOKESPECIAL (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_INVOKESTATIC (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_INVOKEVIRTUAL (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_IOR (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_IREM (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_IRETURN (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_ISHL (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_ISHR (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_ISTORE_0 (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_ISTORE_1 (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_ISTORE_2 (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_ISTORE_3 (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_ISTORE (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_ISUB (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_IUSHR (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_IXOR (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_JSR_W (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_JSR (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_L2D (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_L2F (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_L2I (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_LADD (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_LALOAD (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_LAND (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_LASTORE (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_LCMP (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_LCONST_0 (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_LCONST_1 (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_LDC_W (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_LDC (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_LDC2_W (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_LDIV (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_LLOAD_0 (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_LLOAD_1 (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_LLOAD_2 (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_LLOAD_3 (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_LLOAD (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_LMUL (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_LNEG (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_LOOKUPSWITCH (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_LOR (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_LREM (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_LRETURN (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_LSHL (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_LSHR (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_LSTORE_0 (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_LSTORE_1 (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_LSTORE_2 (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_LSTORE_3 (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_LSTORE (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_LSUB (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_LUSHR (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_LXOR (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_MONITORENTER (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_MONITOREXIT (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_MULTIANEWARRAY (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_NEW (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_NEWARRAY (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_NOP (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_POP (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_POP2 (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_PUTFIELD (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_PUTSTATIC (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_RET (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_RETURN (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_SALOAD (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_SASTORE (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_SIPUSH (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_SWAP (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_TABLESWITCH (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_WIDE (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.If (MethodModel _methodPoolEntry,
- InstructionSet.ByteCode _byteCode,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.IfUnary (MethodModel _methodPoolEntry,
- InstructionSet.ByteCode _byteCode,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.ImmediateConstant (MethodModel _methodPoolEntry,
- InstructionSet.ByteCode _byteCode,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.IncrementInstruction (MethodModel method,
- Instruction _fieldOrVariable,
- boolean _isInc,
- boolean _isPre)
-
-
-InstructionSet.Index (MethodModel _methodPoolEntry,
- InstructionSet.ByteCode _byteCode,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.Index08 (MethodModel _methodPoolEntry,
- InstructionSet.ByteCode _byteCode,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.Index16 (MethodModel _methodPoolEntry,
- InstructionSet.ByteCode _byteCode,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.IndexConst (MethodModel _methodPoolEntry,
- InstructionSet.ByteCode _byteCode,
- ByteReader _byteReader,
- boolean _wide,
- int _index)
-
-
-InstructionSet.InlineAssignInstruction (MethodModel method,
- InstructionSet.AssignToLocalVariable _assignToLocalVariable,
- Instruction _rhs)
-
-
-InstructionSet.LocalVariableConstIndexAccessor (MethodModel methodPoolEntry,
- InstructionSet.ByteCode byteCode,
- ByteReader byteReader,
- boolean _wide,
- int index)
-
-
-InstructionSet.LocalVariableConstIndexLoad (MethodModel methodPoolEntry,
- InstructionSet.ByteCode byteCode,
- ByteReader byteReader,
- boolean _wide,
- int index)
-
-
-InstructionSet.LocalVariableConstIndexStore (MethodModel methodPoolEntry,
- InstructionSet.ByteCode byteCode,
- ByteReader byteReader,
- boolean _wide,
- int index)
-
-
-InstructionSet.LocalVariableIndex08Accessor (MethodModel methodPoolEntry,
- InstructionSet.ByteCode byteCode,
- ByteReader byteReader,
- boolean _wide)
-
-
-InstructionSet.LocalVariableIndex08Load (MethodModel methodPoolEntry,
- InstructionSet.ByteCode byteCode,
- ByteReader byteReader,
- boolean _wide)
-
-
-InstructionSet.LocalVariableIndex08Store (MethodModel methodPoolEntry,
- InstructionSet.ByteCode byteCode,
- ByteReader byteReader,
- boolean _wide)
-
-
-InstructionSet.MultiAssignInstruction (MethodModel method,
- Instruction _common,
- Instruction _from,
- Instruction _to)
-
-
-InstructionSet.Return (MethodModel _methodPoolEntry,
- InstructionSet.ByteCode _byteCode,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.Switch (MethodModel _methodPoolEntry,
- InstructionSet.ByteCode _code,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.UnconditionalBranch (MethodModel _methodPoolEntry,
- InstructionSet.ByteCode _byteCode,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.UnconditionalBranch (MethodModel _methodPoolEntry,
- InstructionSet.ByteCode _byteCode,
- Instruction _target)
-
-
-InstructionSet.UnconditionalBranch16 (MethodModel _methodPoolEntry,
- InstructionSet.ByteCode _byteCode,
- ByteReader _byteReader,
- boolean _wide)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/package-frame.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/package-frame.html
deleted file mode 100644
index ac1d7e34..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/package-frame.html
+++ /dev/null
@@ -1,27 +0,0 @@
-
-
-
-
-
-com.amd.aparapi.internal.model
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/package-summary.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/package-summary.html
deleted file mode 100644
index 0fd3181a..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/package-summary.html
+++ /dev/null
@@ -1,166 +0,0 @@
-
-
-
-
-
-com.amd.aparapi.internal.model
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/package-tree.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/package-tree.html
deleted file mode 100644
index 1a68b8f9..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/package-tree.html
+++ /dev/null
@@ -1,210 +0,0 @@
-
-
-
-
-
-com.amd.aparapi.internal.model Class Hierarchy
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
Class Hierarchy
-
-
Enum Hierarchy
-
-java.lang.Object
-
-java.lang.Enum<E> (implements java.lang.Comparable<T>, java.io.Serializable)
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/package-use.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/package-use.html
deleted file mode 100644
index ddd500d5..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/model/package-use.html
+++ /dev/null
@@ -1,361 +0,0 @@
-
-
-
-
-
-Uses of Package com.amd.aparapi.internal.model
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/opencl/OpenCLArgDescriptor.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/opencl/OpenCLArgDescriptor.html
deleted file mode 100644
index e4a2fbbb..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/opencl/OpenCLArgDescriptor.html
+++ /dev/null
@@ -1,538 +0,0 @@
-
-
-
-
-
-OpenCLArgDescriptor
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-com.amd.aparapi.internal.opencl.OpenCLArgDescriptor
-
-
-
-
-
-
-
-
-
-
-
-
-Field Summary
-
-
-
-
-
-
-
-
-Constructor Summary
-
-Constructors
-
-Constructor and Description
-
-
-OpenCLArgDescriptor (java.lang.String _name,
- long _bits)
-Full constructor
-
-
-
-
-
-
-
-
-
-
-Method Summary
-
-Methods
-
-Modifier and Type
-Method and Description
-
-
-java.lang.String
-toString ()
-
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/opencl/OpenCLKernel.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/opencl/OpenCLKernel.html
deleted file mode 100644
index 90fb3ad8..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/opencl/OpenCLKernel.html
+++ /dev/null
@@ -1,295 +0,0 @@
-
-
-
-
-
-OpenCLKernel
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/opencl/OpenCLLoader.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/opencl/OpenCLLoader.html
deleted file mode 100644
index a8016794..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/opencl/OpenCLLoader.html
+++ /dev/null
@@ -1,266 +0,0 @@
-
-
-
-
-
-OpenCLLoader
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-Constructors
-
-Constructor and Description
-
-
-OpenCLLoader ()
-
-
-
-
-
-
-
-
-
-Method Summary
-
-Methods
-
-Modifier and Type
-Method and Description
-
-
-static boolean
-isOpenCLAvailable ()
-Retrieve the status of whether OpenCL was successfully loaded
-
-
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-OpenCLLoader
-public OpenCLLoader()
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/opencl/OpenCLMem.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/opencl/OpenCLMem.html
deleted file mode 100644
index ba0bfcbd..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/opencl/OpenCLMem.html
+++ /dev/null
@@ -1,293 +0,0 @@
-
-
-
-
-
-OpenCLMem
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-com.amd.aparapi.internal.opencl.OpenCLMem
-
-
-
-
-
-
-
-
-
-
-
-
-Field Summary
-
-
-
-
-
-
-
-
-Constructor Summary
-
-Constructors
-
-Constructor and Description
-
-
-OpenCLMem ()
-
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-OpenCLMem
-public OpenCLMem()
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/opencl/OpenCLPlatform.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/opencl/OpenCLPlatform.html
deleted file mode 100644
index ee1dcdfe..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/opencl/OpenCLPlatform.html
+++ /dev/null
@@ -1,368 +0,0 @@
-
-
-
-
-
-OpenCLPlatform
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-Constructors
-
-Constructor and Description
-
-
-OpenCLPlatform ()
-Default constructor
-
-
-
-OpenCLPlatform (long _platformId,
- java.lang.String _version,
- java.lang.String _vendor,
- java.lang.String _name)
-Full constructor
-
-
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-OpenCLPlatform
-public OpenCLPlatform()
-Default constructor
-
-
-
-
-
-
-
-OpenCLPlatform
-public OpenCLPlatform(long _platformId,
- java.lang.String _version,
- java.lang.String _vendor,
- java.lang.String _name)
-Full constructor
-Parameters: _platformId - _version - _vendor - _name -
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/opencl/OpenCLProgram.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/opencl/OpenCLProgram.html
deleted file mode 100644
index 807dae68..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/opencl/OpenCLProgram.html
+++ /dev/null
@@ -1,354 +0,0 @@
-
-
-
-
-
-OpenCLProgram
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-Constructors
-
-Constructor and Description
-
-
-OpenCLProgram (long _programId,
- long _queueId,
- long _contextId,
- OpenCLDevice _device,
- java.lang.String _source)
-Full constructor
-
-
-
-OpenCLProgram (OpenCLDevice _device,
- java.lang.String _source)
-Minimal constructor
-
-
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-OpenCLProgram
-public OpenCLProgram(long _programId,
- long _queueId,
- long _contextId,
- OpenCLDevice _device,
- java.lang.String _source)
-Full constructor
-Parameters: _programId - _queueId - _contextId - _device - _source -
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-remapped
-public void remapped(java.lang.Object _instance,
- long _address,
- OpenCLMem _mem,
- long _oldAddress)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/opencl/class-use/OpenCLArgDescriptor.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/opencl/class-use/OpenCLArgDescriptor.html
deleted file mode 100644
index d3a14954..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/opencl/class-use/OpenCLArgDescriptor.html
+++ /dev/null
@@ -1,179 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.opencl.OpenCLArgDescriptor
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/opencl/class-use/OpenCLKernel.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/opencl/class-use/OpenCLKernel.html
deleted file mode 100644
index 21cb6b5f..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/opencl/class-use/OpenCLKernel.html
+++ /dev/null
@@ -1,189 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.opencl.OpenCLKernel
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/opencl/class-use/OpenCLLoader.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/opencl/class-use/OpenCLLoader.html
deleted file mode 100644
index 64c89ac8..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/opencl/class-use/OpenCLLoader.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.opencl.OpenCLLoader
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.opencl.OpenCLLoader
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/opencl/class-use/OpenCLMem.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/opencl/class-use/OpenCLMem.html
deleted file mode 100644
index 806184ce..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/opencl/class-use/OpenCLMem.html
+++ /dev/null
@@ -1,191 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.opencl.OpenCLMem
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/opencl/class-use/OpenCLPlatform.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/opencl/class-use/OpenCLPlatform.html
deleted file mode 100644
index cf79aa3a..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/opencl/class-use/OpenCLPlatform.html
+++ /dev/null
@@ -1,216 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.opencl.OpenCLPlatform
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/opencl/class-use/OpenCLProgram.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/opencl/class-use/OpenCLProgram.html
deleted file mode 100644
index b24fe173..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/opencl/class-use/OpenCLProgram.html
+++ /dev/null
@@ -1,191 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.opencl.OpenCLProgram
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/opencl/package-frame.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/opencl/package-frame.html
deleted file mode 100644
index 2faafa18..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/opencl/package-frame.html
+++ /dev/null
@@ -1,24 +0,0 @@
-
-
-
-
-
-com.amd.aparapi.internal.opencl
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/opencl/package-summary.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/opencl/package-summary.html
deleted file mode 100644
index 1d42e304..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/opencl/package-summary.html
+++ /dev/null
@@ -1,155 +0,0 @@
-
-
-
-
-
-com.amd.aparapi.internal.opencl
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/opencl/package-tree.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/opencl/package-tree.html
deleted file mode 100644
index 2592da05..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/opencl/package-tree.html
+++ /dev/null
@@ -1,137 +0,0 @@
-
-
-
-
-
-com.amd.aparapi.internal.opencl Class Hierarchy
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/opencl/package-use.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/opencl/package-use.html
deleted file mode 100644
index 6b8934ed..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/opencl/package-use.html
+++ /dev/null
@@ -1,207 +0,0 @@
-
-
-
-
-
-Uses of Package com.amd.aparapi.internal.opencl
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/reader/ByteBuffer.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/reader/ByteBuffer.html
deleted file mode 100644
index 43a4737b..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/reader/ByteBuffer.html
+++ /dev/null
@@ -1,196 +0,0 @@
-
-
-
-
-
-ByteBuffer
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-Summary:
-Nested |
-Field |
-Constr |
-Method
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-com.amd.aparapi.internal.reader.ByteBuffer
-
-
-
-
-
-
-
-
-public class ByteBuffer
-extends java.lang.Object
-Used to parse ClassFile structure.
-
- Provides low level access to sequential bytes in a stream given a specific offset.
-
- Does not keep track of accesses. For this you will need a ByteReader
-Author:
- gfrost
-See Also: ByteReader
-
-
-
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Summary:
-Nested |
-Field |
-Constr |
-Method
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/reader/ByteReader.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/reader/ByteReader.html
deleted file mode 100644
index 63fce1ff..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/reader/ByteReader.html
+++ /dev/null
@@ -1,482 +0,0 @@
-
-
-
-
-
-ByteReader
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-com.amd.aparapi.internal.reader.ByteReader
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-Constructors
-
-Constructor and Description
-
-
-ByteReader (byte[] _bytes)
-Construct form an array of bytes.
-
-
-
-ByteReader (ByteBuffer _byteBuffer)
-Construct form a given ByteBuffer.
-
-
-
-ByteReader (java.io.InputStream _inputStream)
-Construct form an input stream (say a ClassFile).
-
-
-
-
-
-
-
-
-
-
-Method Summary
-
-Methods
-
-Modifier and Type
-Method and Description
-
-
-byte[]
-bytes (int _length)
-
-
-double
-d8 ()
-
-
-float
-f4 ()
-
-
-int
-getOffset ()
-
-
-boolean
-hasMore ()
-
-
-int
-peekU2 ()
-
-
-int
-s2 ()
-
-
-int
-s4 ()
-
-
-void
-setOffset (int _offset)
-
-
-void
-skip (int _length)
-
-
-int
-u1 ()
-
-
-int
-u2 ()
-
-
-int
-u4 ()
-
-
-long
-u8 ()
-
-
-java.lang.String
-utf8 ()
-
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-u1
-public int u1()
-
-
-
-
-
-
-
-u2
-public int u2()
-
-
-
-
-
-
-
-s2
-public int s2()
-
-
-
-
-
-
-
-peekU2
-public int peekU2()
-
-
-
-
-
-
-
-u4
-public int u4()
-
-
-
-
-
-
-
-s4
-public int s4()
-
-
-
-
-
-
-
-u8
-public long u8()
-
-
-
-
-
-
-
-f4
-public float f4()
-
-
-
-
-
-
-
-d8
-public double d8()
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-getOffset
-public int getOffset()
-
-
-
-
-
-
-
-
-
-
-
-hasMore
-public boolean hasMore()
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/reader/class-use/ByteBuffer.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/reader/class-use/ByteBuffer.html
deleted file mode 100644
index 023b6472..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/reader/class-use/ByteBuffer.html
+++ /dev/null
@@ -1,155 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.reader.ByteBuffer
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/reader/class-use/ByteReader.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/reader/class-use/ByteReader.html
deleted file mode 100644
index f9c3d8dd..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/reader/class-use/ByteReader.html
+++ /dev/null
@@ -1,1511 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.reader.ByteReader
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructors in com.amd.aparapi.internal.instruction with parameters of type ByteReader
-
-Constructor and Description
-
-
-
-InstructionSet.ArrayAccess (MethodModel _methodPoolEntry,
- InstructionSet.ByteCode _byteCode,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.Branch (MethodModel _methodPoolEntry,
- InstructionSet.ByteCode _byteCode,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.Branch32 (MethodModel _methodPoolEntry,
- InstructionSet.ByteCode _byteCode,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.BytecodeEncodedConstant (MethodModel _methodPoolEntry,
- InstructionSet.ByteCode _byteCode,
- ByteReader _byteReader,
- boolean _wide,
- T _value)
-
-
-InstructionSet.ConditionalBranch (MethodModel _methodPoolEntry,
- InstructionSet.ByteCode _byteCode,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.ConditionalBranch16 (MethodModel _methodPoolEntry,
- InstructionSet.ByteCode _byteCode,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.DUP (MethodModel _methodPoolEntry,
- InstructionSet.ByteCode _byteCode,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_AALOAD (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_AASTORE (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_ACONST_NULL (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_ALOAD_0 (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_ALOAD_1 (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_ALOAD_2 (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_ALOAD_3 (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_ALOAD (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_ANEWARRAY (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_ARETURN (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_ARRAYLENGTH (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_ASTORE_0 (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_ASTORE_1 (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_ASTORE_2 (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_ASTORE_3 (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_ASTORE (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_ATHROW (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_BALOAD (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_BASTORE (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_BIPUSH (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_CALOAD (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_CASTORE (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_CHECKCAST (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_D2F (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_D2I (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_D2L (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_DADD (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_DALOAD (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_DASTORE (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_DCMPG (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_DCMPL (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_DCONST_0 (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_DCONST_1 (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_DDIV (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_DLOAD_0 (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_DLOAD_1 (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_DLOAD_2 (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_DLOAD_3 (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_DLOAD (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_DMUL (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_DNEG (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_DREM (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_DRETURN (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_DSTORE_0 (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_DSTORE_1 (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_DSTORE_2 (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_DSTORE_3 (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_DSTORE (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_DSUB (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_DUP_X1 (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_DUP_X2 (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_DUP (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_DUP2_X1 (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_DUP2_X2 (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_DUP2 (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_F2D (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_F2I (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_F2L (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_FADD (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_FALOAD (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_FASTORE (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_FCMPG (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_FCMPL (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_FCONST_0 (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_FCONST_1 (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_FCONST_2 (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_FDIV (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_FLOAD_0 (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_FLOAD_1 (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_FLOAD_2 (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_FLOAD_3 (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_FLOAD (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_FMUL (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_FNEG (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_FREM (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_FRETURN (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_FSTORE_0 (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_FSTORE_1 (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_FSTORE_3 (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_FSTORE (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_FSUB (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_GETFIELD (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_GETSTATIC (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_GOTO_W (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_GOTO (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_I2B (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_I2C (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_I2D (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_I2F (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_I2L (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_I2S (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_IADD (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_IALOAD (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_IAND (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_IASTORE (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_ICONST_0 (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_ICONST_1 (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_ICONST_2 (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_ICONST_3 (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_ICONST_4 (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_ICONST_5 (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_ICONST_M1 (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_IDIV (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_IF_ACMPEQ (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_IF_ACMPNE (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_IF_ICMPEQ (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_IF_ICMPGE (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_IF_ICMPGT (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_IF_ICMPLE (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_IF_ICMPLT (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_IF_ICMPNE (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_IFEQ (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_IFGE (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_IFGT (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_IFLE (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_IFLT (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_IFNE (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_IFNONNULL (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_IFNULL (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_IINC (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_ILOAD_0 (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_ILOAD_1 (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_ILOAD_2 (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_ILOAD_3 (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_ILOAD (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_IMUL (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_INEG (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_INSTANCEOF (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_INVOKEDYNAMIC (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_INVOKEINTERFACE (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_INVOKESPECIAL (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_INVOKESTATIC (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_INVOKEVIRTUAL (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_IOR (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_IREM (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_IRETURN (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_ISHL (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_ISHR (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_ISTORE_0 (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_ISTORE_1 (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_ISTORE_2 (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_ISTORE_3 (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_ISTORE (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_ISUB (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_IUSHR (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_IXOR (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_JSR_W (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_JSR (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_L2D (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_L2F (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_L2I (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_LADD (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_LALOAD (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_LAND (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_LASTORE (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_LCMP (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_LCONST_0 (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_LCONST_1 (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_LDC_W (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_LDC (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_LDC2_W (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_LDIV (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_LLOAD_0 (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_LLOAD_1 (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_LLOAD_2 (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_LLOAD_3 (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_LLOAD (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_LMUL (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_LNEG (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_LOOKUPSWITCH (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_LOR (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_LREM (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_LRETURN (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_LSHL (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_LSHR (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_LSTORE_0 (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_LSTORE_1 (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_LSTORE_2 (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_LSTORE_3 (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_LSTORE (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_LSUB (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_LUSHR (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_LXOR (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_MONITORENTER (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_MONITOREXIT (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_MULTIANEWARRAY (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_NEW (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_NEWARRAY (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_NOP (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_POP (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_POP2 (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_PUTFIELD (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_PUTSTATIC (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_RET (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_RETURN (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_SALOAD (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_SASTORE (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_SIPUSH (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_SWAP (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_TABLESWITCH (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.I_WIDE (MethodModel _methodPoolEntry,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.If (MethodModel _methodPoolEntry,
- InstructionSet.ByteCode _byteCode,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.IfUnary (MethodModel _methodPoolEntry,
- InstructionSet.ByteCode _byteCode,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.ImmediateConstant (MethodModel _methodPoolEntry,
- InstructionSet.ByteCode _byteCode,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.Index (MethodModel _methodPoolEntry,
- InstructionSet.ByteCode _byteCode,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.Index08 (MethodModel _methodPoolEntry,
- InstructionSet.ByteCode _byteCode,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.Index16 (MethodModel _methodPoolEntry,
- InstructionSet.ByteCode _byteCode,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.IndexConst (MethodModel _methodPoolEntry,
- InstructionSet.ByteCode _byteCode,
- ByteReader _byteReader,
- boolean _wide,
- int _index)
-
-
-InstructionSet.LocalVariableConstIndexAccessor (MethodModel methodPoolEntry,
- InstructionSet.ByteCode byteCode,
- ByteReader byteReader,
- boolean _wide,
- int index)
-
-
-InstructionSet.LocalVariableConstIndexLoad (MethodModel methodPoolEntry,
- InstructionSet.ByteCode byteCode,
- ByteReader byteReader,
- boolean _wide,
- int index)
-
-
-InstructionSet.LocalVariableConstIndexStore (MethodModel methodPoolEntry,
- InstructionSet.ByteCode byteCode,
- ByteReader byteReader,
- boolean _wide,
- int index)
-
-
-InstructionSet.LocalVariableIndex08Accessor (MethodModel methodPoolEntry,
- InstructionSet.ByteCode byteCode,
- ByteReader byteReader,
- boolean _wide)
-
-
-InstructionSet.LocalVariableIndex08Load (MethodModel methodPoolEntry,
- InstructionSet.ByteCode byteCode,
- ByteReader byteReader,
- boolean _wide)
-
-
-InstructionSet.LocalVariableIndex08Store (MethodModel methodPoolEntry,
- InstructionSet.ByteCode byteCode,
- ByteReader byteReader,
- boolean _wide)
-
-
-InstructionSet.Return (MethodModel _methodPoolEntry,
- InstructionSet.ByteCode _byteCode,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.Switch (MethodModel _methodPoolEntry,
- InstructionSet.ByteCode _code,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.UnconditionalBranch (MethodModel _methodPoolEntry,
- InstructionSet.ByteCode _byteCode,
- ByteReader _byteReader,
- boolean _wide)
-
-
-InstructionSet.UnconditionalBranch16 (MethodModel _methodPoolEntry,
- InstructionSet.ByteCode _byteCode,
- ByteReader _byteReader,
- boolean _wide)
-
-
-
-
-
-
-
-
-
-Constructors in com.amd.aparapi.internal.model with parameters of type ByteReader
-
-Constructor and Description
-
-
-
-ClassModel.AttributePool.AttributePoolEntry (ByteReader _byteReader,
- int _nameIndex,
- int _length)
-
-
-ClassModel.AttributePool.CodeEntry.ExceptionPoolEntry (ByteReader _byteReader)
-
-
-ClassModel.AttributePool.CodeEntry (ByteReader _byteReader,
- int _nameIndex,
- int _length)
-
-
-ClassModel.AttributePool.ConstantValueEntry (ByteReader _byteReader,
- int _nameIndex,
- int _length)
-
-
-ClassModel.AttributePool.DeprecatedEntry (ByteReader _byteReader,
- int _nameIndex,
- int _length)
-
-
-ClassModel.AttributePool.EnclosingMethodEntry (ByteReader _byteReader,
- int _nameIndex,
- int _length)
-
-
-ClassModel.AttributePool.ExceptionEntry (ByteReader _byteReader,
- int _nameIndex,
- int _length)
-
-
-ClassModel.AttributePool.InnerClassesEntry.InnerClassInfo (ByteReader _byteReader)
-
-
-ClassModel.AttributePool.InnerClassesEntry (ByteReader _byteReader,
- int _nameIndex,
- int _length)
-
-
-ClassModel.AttributePool.LineNumberTableEntry.StartLineNumberPair (ByteReader _byteReader)
-
-
-ClassModel.AttributePool.LineNumberTableEntry (ByteReader _byteReader,
- int _nameIndex,
- int _length)
-
-
-ClassModel.AttributePool.LocalVariableTableEntry.LocalVariableInfo (ByteReader _byteReader)
-
-
-ClassModel.AttributePool.LocalVariableTableEntry (ByteReader _byteReader,
- int _nameIndex,
- int _length)
-
-
-ClassModel.AttributePool.OtherEntry (ByteReader _byteReader,
- int _nameIndex,
- int _length)
-
-
-ClassModel.AttributePool.PoolEntry (ByteReader _byteReader,
- int _nameIndex,
- int _length)
-
-
-ClassModel.AttributePool.RuntimeAnnotationsEntry.AnnotationInfo.ElementValuePair.PrimitiveValue (int _tag,
- ByteReader _byteReader)
-
-
-ClassModel.AttributePool.RuntimeAnnotationsEntry.AnnotationInfo.ElementValuePair (ByteReader _byteReader)
-
-
-ClassModel.AttributePool.RuntimeAnnotationsEntry.AnnotationInfo (ByteReader _byteReader)
-
-
-ClassModel.AttributePool.RuntimeAnnotationsEntry (ByteReader _byteReader,
- int _nameIndex,
- int _length)
-
-
-ClassModel.AttributePool.SignatureEntry (ByteReader _byteReader,
- int _nameIndex,
- int _length)
-
-
-ClassModel.AttributePool.SourceFileEntry (ByteReader _byteReader,
- int _nameIndex,
- int _length)
-
-
-ClassModel.AttributePool.SyntheticEntry (ByteReader _byteReader,
- int _nameIndex,
- int _length)
-
-
-ClassModel.AttributePool (ByteReader _byteReader)
-
-
-ClassModel.ClassModelField (ByteReader _byteReader,
- int _index)
-
-
-ClassModel.ClassModelMethod (ByteReader _byteReader,
- int _index)
-
-
-ClassModel.ConstantPool.ClassEntry (ByteReader _byteReader,
- int _slot)
-
-
-ClassModel.ConstantPool.DoubleEntry (ByteReader _byteReader,
- int _slot)
-
-
-ClassModel.ConstantPool.EmptyEntry (ByteReader _byteReader,
- int _slot)
-
-
-ClassModel.ConstantPool.Entry (ByteReader _byteReader,
- int _slot,
- ClassModel.ConstantPoolType _constantPoolType)
-
-
-ClassModel.ConstantPool.FieldEntry (ByteReader _byteReader,
- int _slot)
-
-
-ClassModel.ConstantPool.FloatEntry (ByteReader _byteReader,
- int _slot)
-
-
-ClassModel.ConstantPool.IntegerEntry (ByteReader _byteReader,
- int _slot)
-
-
-ClassModel.ConstantPool.LongEntry (ByteReader _byteReader,
- int _slot)
-
-
-ClassModel.ConstantPool.MethodEntry (ByteReader _byteReader,
- int _slot)
-
-
-ClassModel.ConstantPool.MethodReferenceEntry (ByteReader byteReader,
- int slot,
- ClassModel.ConstantPoolType constantPoolType)
-
-
-ClassModel.ConstantPool.NameAndTypeEntry (ByteReader _byteReader,
- int _slot)
-
-
-ClassModel.ConstantPool.ReferenceEntry (ByteReader _byteReader,
- int _slot,
- ClassModel.ConstantPoolType _constantPoolType)
-
-
-ClassModel.ConstantPool.StringEntry (ByteReader _byteReader,
- int _slot)
-
-
-ClassModel.ConstantPool.UTF8Entry (ByteReader _byteReader,
- int _slot)
-
-
-ClassModel.ConstantPool (ByteReader _byteReader)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/reader/package-frame.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/reader/package-frame.html
deleted file mode 100644
index de380f3f..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/reader/package-frame.html
+++ /dev/null
@@ -1,20 +0,0 @@
-
-
-
-
-
-com.amd.aparapi.internal.reader
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/reader/package-summary.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/reader/package-summary.html
deleted file mode 100644
index 7971d600..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/reader/package-summary.html
+++ /dev/null
@@ -1,141 +0,0 @@
-
-
-
-
-
-com.amd.aparapi.internal.reader
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-Class Summary
-
-Class
-Description
-
-
-
-ByteBuffer
-
-Used to parse ClassFile structure.
-
-
-
-ByteReader
-
-Primarily used to parse various ClassFile structures.
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/reader/package-tree.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/reader/package-tree.html
deleted file mode 100644
index b21af6c7..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/reader/package-tree.html
+++ /dev/null
@@ -1,129 +0,0 @@
-
-
-
-
-
-com.amd.aparapi.internal.reader Class Hierarchy
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/reader/package-use.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/reader/package-use.html
deleted file mode 100644
index 0a50c361..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/reader/package-use.html
+++ /dev/null
@@ -1,192 +0,0 @@
-
-
-
-
-
-Uses of Package com.amd.aparapi.internal.reader
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/tool/InstructionHelper.BranchVector.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/tool/InstructionHelper.BranchVector.html
deleted file mode 100644
index 40f73a79..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/tool/InstructionHelper.BranchVector.html
+++ /dev/null
@@ -1,565 +0,0 @@
-
-
-
-
-
-InstructionHelper.BranchVector
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-com.amd.aparapi.internal.tool.InstructionHelper.BranchVector
-
-
-
-
-
-
-
-
-
-
-
-
-Field Summary
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-
-Methods inherited from class java.lang.Object
-getClass, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-getStartPC
-public int getStartPC()
-
-
-
-
-
-
-
-getEndPC
-public int getEndPC()
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-hashCode
-public int hashCode()
-
-Overrides:
-hashCode in class java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/tool/InstructionHelper.StringWriter.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/tool/InstructionHelper.StringWriter.html
deleted file mode 100644
index 3db04ea7..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/tool/InstructionHelper.StringWriter.html
+++ /dev/null
@@ -1,385 +0,0 @@
-
-
-
-
-
-InstructionHelper.StringWriter
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Field Summary
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.writer.BlockWriter
-convertCast , convertType , in , newLine , out , write , writeBlock , writeComposite , writeConditional , writeConditional , writeConditionalBranch16 , writeInstruction , writeln , writeMethod , writeSequence , writeThisRef
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-clear
-public void clear()
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/tool/InstructionHelper.Table.Col.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/tool/InstructionHelper.Table.Col.html
deleted file mode 100644
index 9f9da578..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/tool/InstructionHelper.Table.Col.html
+++ /dev/null
@@ -1,326 +0,0 @@
-
-
-
-
-
-InstructionHelper.Table.Col
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-com.amd.aparapi.internal.tool.InstructionHelper.Table.Col
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-Methods
-
-Modifier and Type
-Method and Description
-
-
-void
-format (java.lang.Object... args)
-
-
-java.lang.String
-get (int _i)
-
-
-void
-header (java.lang.String _header)
-
-
-java.lang.String
-pad (java.lang.String _s,
- int _width)
-
-
-int
-size ()
-
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-
-
-
-
-size
-public int size()
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/tool/InstructionHelper.Table.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/tool/InstructionHelper.Table.html
deleted file mode 100644
index c82269bf..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/tool/InstructionHelper.Table.html
+++ /dev/null
@@ -1,309 +0,0 @@
-
-
-
-
-
-InstructionHelper.Table
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-com.amd.aparapi.internal.tool.InstructionHelper.Table
-
-
-
-
-
-
-
-
-
-
-
-
-Nested Class Summary
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-Methods
-
-Modifier and Type
-Method and Description
-
-
-void
-data (java.lang.Object... args)
-
-
-void
-header (java.lang.String... _headers)
-
-
-java.lang.String
-toString ()
-
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/tool/InstructionHelper.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/tool/InstructionHelper.html
deleted file mode 100644
index b1e2658c..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/tool/InstructionHelper.html
+++ /dev/null
@@ -1,289 +0,0 @@
-
-
-
-
-
-InstructionHelper
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-com.amd.aparapi.internal.tool.InstructionHelper
-
-
-
-
-
-
-
-
-
-
-
-
-Nested Class Summary
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-Methods
-
-Modifier and Type
-Method and Description
-
-
-static java.lang.String
-getLabel (Instruction instruction,
- boolean showNumber,
- boolean showExpressions,
- boolean verboseBytecodeLabels)
-
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-getLabel
-public static java.lang.String getLabel(Instruction instruction,
- boolean showNumber,
- boolean showExpressions,
- boolean verboseBytecodeLabels)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/tool/InstructionViewer.DoorBell.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/tool/InstructionViewer.DoorBell.html
deleted file mode 100644
index efe630be..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/tool/InstructionViewer.DoorBell.html
+++ /dev/null
@@ -1,273 +0,0 @@
-
-
-
-
-
-InstructionViewer.DoorBell
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-com.amd.aparapi.internal.tool.InstructionViewer.DoorBell
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-Methods
-
-Modifier and Type
-Method and Description
-
-
-void
-ring ()
-
-
-void
-snooze ()
-
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-snooze
-public void snooze()
-
-
-
-
-
-
-
-ring
-public void ring()
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/tool/InstructionViewer.Form.Check.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/tool/InstructionViewer.Form.Check.html
deleted file mode 100644
index b8bd1ebf..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/tool/InstructionViewer.Form.Check.html
+++ /dev/null
@@ -1,199 +0,0 @@
-
-
-
-
-
-InstructionViewer.Form.Check
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Required Element Summary
-
-Required Elements
-
-Modifier and Type
-Required Element and Description
-
-
-java.lang.String
-label
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Element Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/tool/InstructionViewer.Form.List.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/tool/InstructionViewer.Form.List.html
deleted file mode 100644
index ea792cf1..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/tool/InstructionViewer.Form.List.html
+++ /dev/null
@@ -1,199 +0,0 @@
-
-
-
-
-
-InstructionViewer.Form.List
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Required Element Summary
-
-Required Elements
-
-Modifier and Type
-Required Element and Description
-
-
-java.lang.Class<?>
-value
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Element Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/tool/InstructionViewer.Form.OneOf.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/tool/InstructionViewer.Form.OneOf.html
deleted file mode 100644
index e2436d0a..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/tool/InstructionViewer.Form.OneOf.html
+++ /dev/null
@@ -1,211 +0,0 @@
-
-
-
-
-
-InstructionViewer.Form.OneOf
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Required Element Summary
-
-Required Elements
-
-Modifier and Type
-Required Element and Description
-
-
-java.lang.String
-label
-
-
-java.lang.String[]
-options
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/tool/InstructionViewer.Form.Template.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/tool/InstructionViewer.Form.Template.html
deleted file mode 100644
index 9a5f90d6..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/tool/InstructionViewer.Form.Template.html
+++ /dev/null
@@ -1,166 +0,0 @@
-
-
-
-
-
-InstructionViewer.Form.Template
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-Summary:
-Nested |
-Field |
-Constr |
-Method
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Summary:
-Nested |
-Field |
-Constr |
-Method
-
-
-Detail:
-Field |
-Constr |
-Method
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/tool/InstructionViewer.Form.Toggle.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/tool/InstructionViewer.Form.Toggle.html
deleted file mode 100644
index 212130a4..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/tool/InstructionViewer.Form.Toggle.html
+++ /dev/null
@@ -1,225 +0,0 @@
-
-
-
-
-
-InstructionViewer.Form.Toggle
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Required Element Summary
-
-Required Elements
-
-Modifier and Type
-Required Element and Description
-
-
-java.lang.String
-label
-
-
-java.lang.String
-off
-
-
-java.lang.String
-on
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/tool/InstructionViewer.Form.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/tool/InstructionViewer.Form.html
deleted file mode 100644
index 30a3a53a..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/tool/InstructionViewer.Form.html
+++ /dev/null
@@ -1,347 +0,0 @@
-
-
-
-
-
-InstructionViewer.Form
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-com.amd.aparapi.internal.tool.InstructionViewer.Form<T>
-
-
-
-
-
-
-
-
-
-
-
-
-Nested Class Summary
-
-
-
-
-
-
-
-
-Field Summary
-
-Fields
-
-Modifier and Type
-Field and Description
-
-
-static int
-INSET
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-Methods
-
-Modifier and Type
-Method and Description
-
-
-java.awt.Component
-getPanel ()
-
-
-abstract void
-sync ()
-
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Field Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/tool/InstructionViewer.InstructionView.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/tool/InstructionViewer.InstructionView.html
deleted file mode 100644
index 1d078a53..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/tool/InstructionViewer.InstructionView.html
+++ /dev/null
@@ -1,307 +0,0 @@
-
-
-
-
-
-InstructionViewer.InstructionView
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-com.amd.aparapi.internal.tool.InstructionViewer.InstructionView
-
-
-
-
-
-
-
-
-
-
-
-
-Field Summary
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Field Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-dim
-public boolean dim
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/tool/InstructionViewer.Options.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/tool/InstructionViewer.Options.html
deleted file mode 100644
index f0902921..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/tool/InstructionViewer.Options.html
+++ /dev/null
@@ -1,351 +0,0 @@
-
-
-
-
-
-InstructionViewer.Options
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-com.amd.aparapi.internal.tool.InstructionViewer.Options
-
-
-
-
-
-
-
-
-
-
-
-
-Field Summary
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Field Detail
-
-
-
-
-
-fold
-public boolean fold
-
-
-
-
-
-
-
-edgeFan
-public boolean edgeFan
-
-
-
-
-
-
-
-edgeCurve
-public boolean edgeCurve
-
-
-
-
-
-
-
-showPc
-public boolean showPc
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/tool/InstructionViewer.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/tool/InstructionViewer.html
deleted file mode 100644
index 28d67a61..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/tool/InstructionViewer.html
+++ /dev/null
@@ -1,771 +0,0 @@
-
-
-
-
-
-InstructionViewer
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-com.amd.aparapi.internal.tool.InstructionViewer
-
-
-
-
-
-
-
-
-
-
-
-
-Nested Class Summary
-
-
-
-
-
-
-
-
-Field Summary
-
-
-
-
-
-
-
-
-Constructor Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-Methods
-
-Modifier and Type
-Method and Description
-
-
-void
-dirty ()
-
-
-void
-draw (java.awt.Graphics _g)
-
-
-void
-draw (java.awt.Graphics2D _g,
- java.awt.Shape _rectangle)
-
-
-void
-edge (java.awt.Graphics2D _g,
- java.awt.Color _color,
- InstructionViewer.InstructionView _branch,
- InstructionViewer.InstructionView _target,
- java.lang.String _endLabel,
- java.lang.String _startLabel)
-
-
-void
-fill (java.awt.Graphics2D _g,
- java.awt.Color _color,
- java.awt.Shape _rect)
-
-
-void
-fill (java.awt.Graphics2D _g,
- java.awt.Shape _rectangle)
-
-
-void
-fillStroke (java.awt.Graphics2D _g,
- java.awt.Color _fillColor,
- java.awt.Color _strokeColor,
- java.awt.Stroke _stroke,
- java.awt.Shape _rect)
-
-
-java.awt.Component
-getContainer ()
-
-
-void
-line (java.awt.Graphics2D _g,
- double _x1,
- double _y1,
- double _x2,
- double _y2)
-
-
-void
-line (java.awt.Graphics2D _g,
- java.awt.Stroke _stroke,
- double _x1,
- double _y1,
- double _x2,
- double _y2)
-
-
-static void
-main (java.lang.String[] _args)
-
-
-void
-render (java.awt.Graphics2D _g)
-
-
-boolean
-select (double _x,
- double _y)
-
-
-void
-showAndTell (java.lang.String message,
- Instruction head,
- Instruction _instruction)
-
-
-void
-stroke (java.awt.Graphics2D _g,
- java.awt.Stroke _stroke,
- java.awt.Shape _rect)
-
-
-void
-text (java.awt.Graphics2D _g,
- java.awt.Color _color,
- java.lang.String _text,
- double _x,
- double _y)
-
-
-void
-text (java.awt.Graphics2D _g,
- java.lang.String _text,
- double _x,
- double _y)
-
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-dirty
-public void dirty()
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-text
-public void text(java.awt.Graphics2D _g,
- java.awt.Color _color,
- java.lang.String _text,
- double _x,
- double _y)
-
-
-
-
-
-
-
-line
-public void line(java.awt.Graphics2D _g,
- java.awt.Stroke _stroke,
- double _x1,
- double _y1,
- double _x2,
- double _y2)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-fillStroke
-public void fillStroke(java.awt.Graphics2D _g,
- java.awt.Color _fillColor,
- java.awt.Color _strokeColor,
- java.awt.Stroke _stroke,
- java.awt.Shape _rect)
-
-
-
-
-
-
-
-line
-public void line(java.awt.Graphics2D _g,
- double _x1,
- double _y1,
- double _x2,
- double _y2)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-main
-public static void main(java.lang.String[] _args)
- throws java.lang.ClassNotFoundException,
- java.lang.InstantiationException,
- java.lang.IllegalAccessException,
- javax.swing.UnsupportedLookAndFeelException,
- AparapiException
-Throws:
-java.lang.ClassNotFoundException
-java.lang.InstantiationException
-java.lang.IllegalAccessException
-javax.swing.UnsupportedLookAndFeelException
-AparapiException
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/tool/class-use/InstructionHelper.BranchVector.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/tool/class-use/InstructionHelper.BranchVector.html
deleted file mode 100644
index 16d1e616..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/tool/class-use/InstructionHelper.BranchVector.html
+++ /dev/null
@@ -1,155 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.tool.InstructionHelper.BranchVector
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/tool/class-use/InstructionHelper.StringWriter.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/tool/class-use/InstructionHelper.StringWriter.html
deleted file mode 100644
index 38bc462c..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/tool/class-use/InstructionHelper.StringWriter.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.tool.InstructionHelper.StringWriter
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.tool.InstructionHelper.StringWriter
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/tool/class-use/InstructionHelper.Table.Col.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/tool/class-use/InstructionHelper.Table.Col.html
deleted file mode 100644
index 2be94490..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/tool/class-use/InstructionHelper.Table.Col.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.tool.InstructionHelper.Table.Col
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.tool.InstructionHelper.Table.Col
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/tool/class-use/InstructionHelper.Table.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/tool/class-use/InstructionHelper.Table.html
deleted file mode 100644
index 852ac7cc..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/tool/class-use/InstructionHelper.Table.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.tool.InstructionHelper.Table
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.tool.InstructionHelper.Table
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/tool/class-use/InstructionHelper.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/tool/class-use/InstructionHelper.html
deleted file mode 100644
index 414a1e67..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/tool/class-use/InstructionHelper.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.tool.InstructionHelper
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.tool.InstructionHelper
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/tool/class-use/InstructionViewer.DoorBell.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/tool/class-use/InstructionViewer.DoorBell.html
deleted file mode 100644
index e2d6388b..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/tool/class-use/InstructionViewer.DoorBell.html
+++ /dev/null
@@ -1,155 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.tool.InstructionViewer.DoorBell
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/tool/class-use/InstructionViewer.Form.Check.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/tool/class-use/InstructionViewer.Form.Check.html
deleted file mode 100644
index b3acefe1..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/tool/class-use/InstructionViewer.Form.Check.html
+++ /dev/null
@@ -1,171 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.tool.InstructionViewer.Form.Check
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/tool/class-use/InstructionViewer.Form.List.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/tool/class-use/InstructionViewer.Form.List.html
deleted file mode 100644
index 9f45fbdf..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/tool/class-use/InstructionViewer.Form.List.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.tool.InstructionViewer.Form.List
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.tool.InstructionViewer.Form.List
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/tool/class-use/InstructionViewer.Form.OneOf.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/tool/class-use/InstructionViewer.Form.OneOf.html
deleted file mode 100644
index e41c155a..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/tool/class-use/InstructionViewer.Form.OneOf.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.tool.InstructionViewer.Form.OneOf
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.tool.InstructionViewer.Form.OneOf
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/tool/class-use/InstructionViewer.Form.Template.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/tool/class-use/InstructionViewer.Form.Template.html
deleted file mode 100644
index 5afb6dba..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/tool/class-use/InstructionViewer.Form.Template.html
+++ /dev/null
@@ -1,168 +0,0 @@
-
-
-
-
-
-Uses of Interface com.amd.aparapi.internal.tool.InstructionViewer.Form.Template
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/tool/class-use/InstructionViewer.Form.Toggle.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/tool/class-use/InstructionViewer.Form.Toggle.html
deleted file mode 100644
index d6af868b..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/tool/class-use/InstructionViewer.Form.Toggle.html
+++ /dev/null
@@ -1,155 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.tool.InstructionViewer.Form.Toggle
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/tool/class-use/InstructionViewer.Form.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/tool/class-use/InstructionViewer.Form.html
deleted file mode 100644
index 35c455e8..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/tool/class-use/InstructionViewer.Form.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.tool.InstructionViewer.Form
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.tool.InstructionViewer.Form
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/tool/class-use/InstructionViewer.InstructionView.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/tool/class-use/InstructionViewer.InstructionView.html
deleted file mode 100644
index 3cc77bb2..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/tool/class-use/InstructionViewer.InstructionView.html
+++ /dev/null
@@ -1,160 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.tool.InstructionViewer.InstructionView
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/tool/class-use/InstructionViewer.Options.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/tool/class-use/InstructionViewer.Options.html
deleted file mode 100644
index 919f66a3..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/tool/class-use/InstructionViewer.Options.html
+++ /dev/null
@@ -1,155 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.tool.InstructionViewer.Options
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/tool/class-use/InstructionViewer.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/tool/class-use/InstructionViewer.html
deleted file mode 100644
index 5c8edc55..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/tool/class-use/InstructionViewer.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.tool.InstructionViewer
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.tool.InstructionViewer
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/tool/package-frame.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/tool/package-frame.html
deleted file mode 100644
index 4fc5a6b4..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/tool/package-frame.html
+++ /dev/null
@@ -1,38 +0,0 @@
-
-
-
-
-
-com.amd.aparapi.internal.tool
-
-
-
-
-
-
-
Interfaces
-
-
Classes
-
-
Annotation Types
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/tool/package-summary.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/tool/package-summary.html
deleted file mode 100644
index d9c320d3..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/tool/package-summary.html
+++ /dev/null
@@ -1,207 +0,0 @@
-
-
-
-
-
-com.amd.aparapi.internal.tool
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/tool/package-tree.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/tool/package-tree.html
deleted file mode 100644
index f514d669..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/tool/package-tree.html
+++ /dev/null
@@ -1,152 +0,0 @@
-
-
-
-
-
-com.amd.aparapi.internal.tool Class Hierarchy
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
Class Hierarchy
-
-
Interface Hierarchy
-
-
Annotation Type Hierarchy
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/tool/package-use.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/tool/package-use.html
deleted file mode 100644
index fbe49dee..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/tool/package-use.html
+++ /dev/null
@@ -1,166 +0,0 @@
-
-
-
-
-
-Uses of Package com.amd.aparapi.internal.tool
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/util/OpenCLUtil.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/util/OpenCLUtil.html
deleted file mode 100644
index c271eefe..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/util/OpenCLUtil.html
+++ /dev/null
@@ -1,261 +0,0 @@
-
-
-
-
-
-OpenCLUtil
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-com.amd.aparapi.internal.util.OpenCLUtil
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-Constructors
-
-Constructor and Description
-
-
-OpenCLUtil ()
-
-
-
-
-
-
-
-
-
-Method Summary
-
-Methods
-
-Modifier and Type
-Method and Description
-
-
-static java.util.List<OpenCLPlatform >
-getOpenCLPlatforms ()
-Retrieve a list of available OpenCL Platforms
-
-
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-OpenCLUtil
-public OpenCLUtil()
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/util/UnsafeWrapper.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/util/UnsafeWrapper.html
deleted file mode 100644
index e0580b11..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/util/UnsafeWrapper.html
+++ /dev/null
@@ -1,498 +0,0 @@
-
-
-
-
-
-UnsafeWrapper
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-com.amd.aparapi.internal.util.UnsafeWrapper
-
-
-
-
-
-
-
-
-public class UnsafeWrapper
-extends java.lang.Object
-A wrapper around sun.misc.Unsafe for handling atomic operations, copies from fields to arrays and vice versa.
-
- We avoid using sun.misc.Unsafe directly using reflection, mostly just to avoid getting 'unsafe' compiler errors.
-
- This might need to be changed if we start to see performance issues.
-Author:
- gfrost
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-Constructors
-
-Constructor and Description
-
-
-UnsafeWrapper ()
-
-
-
-
-
-
-
-
-
-Method Summary
-
-Methods
-
-Modifier and Type
-Method and Description
-
-
-static int
-arrayBaseOffset (java.lang.Class<?> _arrayClass)
-
-
-static int
-arrayIndexScale (java.lang.Class<?> _arrayClass)
-
-
-static int
-atomicAdd (int[] _arr,
- int _index,
- int _delta)
-
-
-static boolean
-getBoolean (java.lang.Object _object,
- long _offset)
-
-
-static byte
-getByte (java.lang.Object _object,
- long _offset)
-
-
-static float
-getFloat (java.lang.Object _object,
- long _offset)
-
-
-static int
-getInt (java.lang.Object _object,
- long _offset)
-
-
-static long
-getLong (java.lang.Object _object,
- long _offset)
-
-
-static java.lang.Object
-getObject (java.lang.Object _object,
- long _offset)
-
-
-static long
-objectFieldOffset (java.lang.reflect.Field _field)
-
-
-static void
-putBoolean (java.lang.Object _object,
- long _offset,
- boolean _boolean)
-
-
-static void
-putByte (java.lang.Object _object,
- long _offset,
- byte _byte)
-
-
-static void
-putDouble (java.lang.Object _object,
- long _offset,
- double _double)
-
-
-static void
-putFloat (java.lang.Object _object,
- long _offset,
- float _float)
-
-
-static void
-putInt (java.lang.Object _object,
- long _offset,
- int _int)
-
-
-static void
-putLong (java.lang.Object _object,
- long _offset,
- long _long)
-
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-UnsafeWrapper
-public UnsafeWrapper()
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/util/class-use/OpenCLUtil.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/util/class-use/OpenCLUtil.html
deleted file mode 100644
index 7fe0a7fa..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/util/class-use/OpenCLUtil.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.util.OpenCLUtil
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.util.OpenCLUtil
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/util/class-use/UnsafeWrapper.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/util/class-use/UnsafeWrapper.html
deleted file mode 100644
index d34e739a..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/util/class-use/UnsafeWrapper.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.util.UnsafeWrapper
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.util.UnsafeWrapper
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/util/package-frame.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/util/package-frame.html
deleted file mode 100644
index 5b403a86..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/util/package-frame.html
+++ /dev/null
@@ -1,20 +0,0 @@
-
-
-
-
-
-com.amd.aparapi.internal.util
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/util/package-summary.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/util/package-summary.html
deleted file mode 100644
index 302a8a22..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/util/package-summary.html
+++ /dev/null
@@ -1,141 +0,0 @@
-
-
-
-
-
-com.amd.aparapi.internal.util
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-Class Summary
-
-Class
-Description
-
-
-
-OpenCLUtil
-
-This utility class encapsulates the necessary actions required to query underlying OpenCL information
-
-
-
-UnsafeWrapper
-
-A wrapper around sun.misc.Unsafe for handling atomic operations, copies from fields to arrays and vice versa.
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/util/package-tree.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/util/package-tree.html
deleted file mode 100644
index 6430d9a1..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/util/package-tree.html
+++ /dev/null
@@ -1,129 +0,0 @@
-
-
-
-
-
-com.amd.aparapi.internal.util Class Hierarchy
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/util/package-use.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/util/package-use.html
deleted file mode 100644
index 16468106..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/util/package-use.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Package com.amd.aparapi.internal.util
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.util
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/writer/BlockWriter.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/writer/BlockWriter.html
deleted file mode 100644
index 48fc3cc0..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/writer/BlockWriter.html
+++ /dev/null
@@ -1,592 +0,0 @@
-
-
-
-
-
-BlockWriter
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-com.amd.aparapi.internal.writer.BlockWriter
-
-
-
-
-
-
-
-
-
-
-
-
-Field Summary
-
-
-
-
-
-
-
-
-Constructor Summary
-
-Constructors
-
-Constructor and Description
-
-
-BlockWriter ()
-
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Field Detail
-
-
-
-
-
-
-
-
-
-indent
-public int indent
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-BlockWriter
-public BlockWriter()
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/writer/KernelWriter.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/writer/KernelWriter.html
deleted file mode 100644
index 3619595a..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/writer/KernelWriter.html
+++ /dev/null
@@ -1,500 +0,0 @@
-
-
-
-
-
-KernelWriter
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-
-
-
-
-
-
-
-
-
-
-
-Field Summary
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-Constructors
-
-Constructor and Description
-
-
-KernelWriter ()
-
-
-
-
-
-
-
-
-
-Method Summary
-
-
-
-
-
-Methods inherited from class com.amd.aparapi.internal.writer.BlockWriter
-convertCast , in , newLine , out , write , write , writeBlock , writeComposite , writeConditional , writeConditional , writeConditionalBranch16 , writeln , writeMethodBody , writeSequence
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-KernelWriter
-public KernelWriter()
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-convertType
-public java.lang.String convertType(java.lang.String _typeDesc,
- boolean useClassModel)
-These three convert functions are here to perform
- any type conversion that may be required between
- Java and OpenCL.
-
-Overrides:
-convertType in class BlockWriter
-Parameters: _typeDesc - String in the Java JNI notation, [I, etc
-Returns: Suitably converted string, "char*", etc
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/writer/class-use/BlockWriter.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/writer/class-use/BlockWriter.html
deleted file mode 100644
index 4c1d1a98..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/writer/class-use/BlockWriter.html
+++ /dev/null
@@ -1,177 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.writer.BlockWriter
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/writer/class-use/KernelWriter.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/writer/class-use/KernelWriter.html
deleted file mode 100644
index 0ec9530a..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/writer/class-use/KernelWriter.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.internal.writer.KernelWriter
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.internal.writer.KernelWriter
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/writer/package-frame.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/writer/package-frame.html
deleted file mode 100644
index 21d4507f..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/writer/package-frame.html
+++ /dev/null
@@ -1,20 +0,0 @@
-
-
-
-
-
-com.amd.aparapi.internal.writer
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/writer/package-summary.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/writer/package-summary.html
deleted file mode 100644
index 466813b8..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/writer/package-summary.html
+++ /dev/null
@@ -1,139 +0,0 @@
-
-
-
-
-
-com.amd.aparapi.internal.writer
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-Class Summary
-
-Class
-Description
-
-
-
-BlockWriter
-
-Base abstract class for converting Aparapi IR to text.
-
-
-
-KernelWriter
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/writer/package-tree.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/writer/package-tree.html
deleted file mode 100644
index 1250df27..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/writer/package-tree.html
+++ /dev/null
@@ -1,132 +0,0 @@
-
-
-
-
-
-com.amd.aparapi.internal.writer Class Hierarchy
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/writer/package-use.html b/com.amd.aparapi/doc/api/com/amd/aparapi/internal/writer/package-use.html
deleted file mode 100644
index 799be95f..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/internal/writer/package-use.html
+++ /dev/null
@@ -1,171 +0,0 @@
-
-
-
-
-
-Uses of Package com.amd.aparapi.internal.writer
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/opencl/OpenCL.Arg.html b/com.amd.aparapi/doc/api/com/amd/aparapi/opencl/OpenCL.Arg.html
deleted file mode 100644
index e7ad0a0a..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/opencl/OpenCL.Arg.html
+++ /dev/null
@@ -1,200 +0,0 @@
-
-
-
-
-
-OpenCL.Arg
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Required Element Summary
-
-Required Elements
-
-Modifier and Type
-Required Element and Description
-
-
-java.lang.String
-value
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Element Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/opencl/OpenCL.Constant.html b/com.amd.aparapi/doc/api/com/amd/aparapi/opencl/OpenCL.Constant.html
deleted file mode 100644
index d41b0d4b..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/opencl/OpenCL.Constant.html
+++ /dev/null
@@ -1,200 +0,0 @@
-
-
-
-
-
-OpenCL.Constant
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Required Element Summary
-
-Required Elements
-
-Modifier and Type
-Required Element and Description
-
-
-java.lang.String
-value
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Element Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/opencl/OpenCL.Get.html b/com.amd.aparapi/doc/api/com/amd/aparapi/opencl/OpenCL.Get.html
deleted file mode 100644
index 4696b83c..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/opencl/OpenCL.Get.html
+++ /dev/null
@@ -1,152 +0,0 @@
-
-
-
-
-
-OpenCL.Get
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-Summary:
-Required |
-Optional
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Summary:
-Required |
-Optional
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/opencl/OpenCL.GlobalReadOnly.html b/com.amd.aparapi/doc/api/com/amd/aparapi/opencl/OpenCL.GlobalReadOnly.html
deleted file mode 100644
index d4d961e8..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/opencl/OpenCL.GlobalReadOnly.html
+++ /dev/null
@@ -1,200 +0,0 @@
-
-
-
-
-
-OpenCL.GlobalReadOnly
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Required Element Summary
-
-Required Elements
-
-Modifier and Type
-Required Element and Description
-
-
-java.lang.String
-value
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Element Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/opencl/OpenCL.GlobalReadWrite.html b/com.amd.aparapi/doc/api/com/amd/aparapi/opencl/OpenCL.GlobalReadWrite.html
deleted file mode 100644
index bbfc4949..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/opencl/OpenCL.GlobalReadWrite.html
+++ /dev/null
@@ -1,200 +0,0 @@
-
-
-
-
-
-OpenCL.GlobalReadWrite
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Required Element Summary
-
-Required Elements
-
-Modifier and Type
-Required Element and Description
-
-
-java.lang.String
-value
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Element Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/opencl/OpenCL.GlobalWriteOnly.html b/com.amd.aparapi/doc/api/com/amd/aparapi/opencl/OpenCL.GlobalWriteOnly.html
deleted file mode 100644
index 874938f8..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/opencl/OpenCL.GlobalWriteOnly.html
+++ /dev/null
@@ -1,200 +0,0 @@
-
-
-
-
-
-OpenCL.GlobalWriteOnly
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Required Element Summary
-
-Required Elements
-
-Modifier and Type
-Required Element and Description
-
-
-java.lang.String
-value
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Element Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/opencl/OpenCL.Kernel.html b/com.amd.aparapi/doc/api/com/amd/aparapi/opencl/OpenCL.Kernel.html
deleted file mode 100644
index 2b2ce491..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/opencl/OpenCL.Kernel.html
+++ /dev/null
@@ -1,200 +0,0 @@
-
-
-
-
-
-OpenCL.Kernel
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Required Element Summary
-
-Required Elements
-
-Modifier and Type
-Required Element and Description
-
-
-java.lang.String
-value
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Element Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/opencl/OpenCL.Local.html b/com.amd.aparapi/doc/api/com/amd/aparapi/opencl/OpenCL.Local.html
deleted file mode 100644
index 15cf6ab2..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/opencl/OpenCL.Local.html
+++ /dev/null
@@ -1,200 +0,0 @@
-
-
-
-
-
-OpenCL.Local
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Required Element Summary
-
-Required Elements
-
-Modifier and Type
-Required Element and Description
-
-
-java.lang.String
-value
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Element Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/opencl/OpenCL.Put.html b/com.amd.aparapi/doc/api/com/amd/aparapi/opencl/OpenCL.Put.html
deleted file mode 100644
index 5655c872..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/opencl/OpenCL.Put.html
+++ /dev/null
@@ -1,152 +0,0 @@
-
-
-
-
-
-OpenCL.Put
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-Summary:
-Required |
-Optional
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Summary:
-Required |
-Optional
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/opencl/OpenCL.Resource.html b/com.amd.aparapi/doc/api/com/amd/aparapi/opencl/OpenCL.Resource.html
deleted file mode 100644
index efe36985..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/opencl/OpenCL.Resource.html
+++ /dev/null
@@ -1,200 +0,0 @@
-
-
-
-
-
-OpenCL.Resource
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Required Element Summary
-
-Required Elements
-
-Modifier and Type
-Required Element and Description
-
-
-java.lang.String
-value
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Element Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/opencl/OpenCL.Source.html b/com.amd.aparapi/doc/api/com/amd/aparapi/opencl/OpenCL.Source.html
deleted file mode 100644
index d12125c4..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/opencl/OpenCL.Source.html
+++ /dev/null
@@ -1,200 +0,0 @@
-
-
-
-
-
-OpenCL.Source
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Required Element Summary
-
-Required Elements
-
-Modifier and Type
-Required Element and Description
-
-
-java.lang.String
-value
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Element Detail
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/opencl/OpenCL.html b/com.amd.aparapi/doc/api/com/amd/aparapi/opencl/OpenCL.html
deleted file mode 100644
index 4473cbf2..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/opencl/OpenCL.html
+++ /dev/null
@@ -1,655 +0,0 @@
-
-
-
-
-
-OpenCL
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Nested Class Summary
-
-
-
-
-
-
-
-
-Field Summary
-
-
-
-
-
-
-
-
-Method Summary
-
-Methods
-
-Modifier and Type
-Method and Description
-
-
-T
-begin ()
-
-
-T
-end ()
-
-
-T
-get (boolean[] array)
-
-
-T
-get (byte[] array)
-
-
-T
-get (char[] array)
-
-
-T
-get (double[] array)
-
-
-T
-get (float[] array)
-
-
-T
-get (int[] array)
-
-
-T
-get (short[] array)
-
-
-T
-put (boolean[] array)
-
-
-T
-put (byte[] array)
-
-
-T
-put (char[] array)
-
-
-T
-put (double[] array)
-
-
-T
-put (float[] array)
-
-
-T
-put (int[] array)
-
-
-T
-put (short[] array)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Method Detail
-
-
-
-
-
-put
-T put(float[] array)
-
-
-
-
-
-
-
-put
-T put(int[] array)
-
-
-
-
-
-
-
-put
-T put(short[] array)
-
-
-
-
-
-
-
-put
-T put(byte[] array)
-
-
-
-
-
-
-
-put
-T put(char[] array)
-
-
-
-
-
-
-
-put
-T put(boolean[] array)
-
-
-
-
-
-
-
-put
-T put(double[] array)
-
-
-
-
-
-
-
-get
-T get(float[] array)
-
-
-
-
-
-
-
-get
-T get(int[] array)
-
-
-
-
-
-
-
-get
-T get(short[] array)
-
-
-
-
-
-
-
-get
-T get(char[] array)
-
-
-
-
-
-
-
-get
-T get(boolean[] array)
-
-
-
-
-
-
-
-get
-T get(double[] array)
-
-
-
-
-
-
-
-get
-T get(byte[] array)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/opencl/OpenCLAdapter.html b/com.amd.aparapi/doc/api/com/amd/aparapi/opencl/OpenCLAdapter.html
deleted file mode 100644
index 437b1651..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/opencl/OpenCLAdapter.html
+++ /dev/null
@@ -1,550 +0,0 @@
-
-
-
-
-
-OpenCLAdapter
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-java.lang.Object
-
-
-com.amd.aparapi.opencl.OpenCLAdapter<T>
-
-
-
-
-
-
-
-
-
-
-
-
-Nested Class Summary
-
-
-
-
-Nested classes/interfaces inherited from interface com.amd.aparapi.opencl.OpenCL
-OpenCL.Arg , OpenCL.Constant , OpenCL.Get , OpenCL.GlobalReadOnly , OpenCL.GlobalReadWrite , OpenCL.GlobalWriteOnly , OpenCL.Kernel , OpenCL.Local , OpenCL.Put , OpenCL.Resource , OpenCL.Source
-
-
-
-
-
-
-
-
-Field Summary
-
-
-
-
-Fields inherited from interface com.amd.aparapi.opencl.OpenCL
-CL_KHR_3D_IMAGE_WRITES , CL_KHR_BYTE_ADDRESSABLE_SUPPORT , CL_KHR_FP16 , CL_KHR_FP64 , CL_KHR_GL_SHARING , CL_KHR_GLOBAL_INT32_BASE_ATOMICS , CL_KHR_GLOBAL_INT32_EXTENDED_ATOMICS , CL_KHR_INT64_BASE_ATOMICS , CL_KHR_INT64_EXTENDED_ATOMICS , CL_KHR_LOCAL_INT32_BASE_ATOMICS , CL_KHR_LOCAL_INT32_EXTENDED_ATOMICS , CL_KHR_SELECT_FPROUNDING_MODE
-
-
-
-
-
-
-
-
-Constructor Summary
-
-Constructors
-
-Constructor and Description
-
-
-OpenCLAdapter ()
-
-
-
-
-
-
-
-
-
-Method Summary
-
-Methods
-
-Modifier and Type
-Method and Description
-
-
-T
-begin ()
-
-
-T
-end ()
-
-
-T
-get (boolean[] array)
-
-
-T
-get (byte[] array)
-
-
-T
-get (char[] array)
-
-
-T
-get (double[] array)
-
-
-T
-get (float[] array)
-
-
-T
-get (int[] array)
-
-
-T
-get (short[] array)
-
-
-T
-put (boolean[] array)
-
-
-T
-put (byte[] array)
-
-
-T
-put (char[] array)
-
-
-T
-put (double[] array)
-
-
-T
-put (float[] array)
-
-
-T
-put (int[] array)
-
-
-T
-put (short[] array)
-
-
-
-
-
-
-Methods inherited from class java.lang.Object
-equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Detail
-
-
-
-
-
-OpenCLAdapter
-public OpenCLAdapter()
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/opencl/class-use/OpenCL.Arg.html b/com.amd.aparapi/doc/api/com/amd/aparapi/opencl/class-use/OpenCL.Arg.html
deleted file mode 100644
index bf48b836..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/opencl/class-use/OpenCL.Arg.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.opencl.OpenCL.Arg
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.opencl.OpenCL.Arg
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/opencl/class-use/OpenCL.Constant.html b/com.amd.aparapi/doc/api/com/amd/aparapi/opencl/class-use/OpenCL.Constant.html
deleted file mode 100644
index b66666f0..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/opencl/class-use/OpenCL.Constant.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.opencl.OpenCL.Constant
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.opencl.OpenCL.Constant
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/opencl/class-use/OpenCL.Get.html b/com.amd.aparapi/doc/api/com/amd/aparapi/opencl/class-use/OpenCL.Get.html
deleted file mode 100644
index 47732080..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/opencl/class-use/OpenCL.Get.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.opencl.OpenCL.Get
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.opencl.OpenCL.Get
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/opencl/class-use/OpenCL.GlobalReadOnly.html b/com.amd.aparapi/doc/api/com/amd/aparapi/opencl/class-use/OpenCL.GlobalReadOnly.html
deleted file mode 100644
index 47ddef45..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/opencl/class-use/OpenCL.GlobalReadOnly.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.opencl.OpenCL.GlobalReadOnly
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.opencl.OpenCL.GlobalReadOnly
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/opencl/class-use/OpenCL.GlobalReadWrite.html b/com.amd.aparapi/doc/api/com/amd/aparapi/opencl/class-use/OpenCL.GlobalReadWrite.html
deleted file mode 100644
index e5d87212..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/opencl/class-use/OpenCL.GlobalReadWrite.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.opencl.OpenCL.GlobalReadWrite
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.opencl.OpenCL.GlobalReadWrite
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/opencl/class-use/OpenCL.GlobalWriteOnly.html b/com.amd.aparapi/doc/api/com/amd/aparapi/opencl/class-use/OpenCL.GlobalWriteOnly.html
deleted file mode 100644
index 60bfa619..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/opencl/class-use/OpenCL.GlobalWriteOnly.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.opencl.OpenCL.GlobalWriteOnly
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.opencl.OpenCL.GlobalWriteOnly
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/opencl/class-use/OpenCL.Kernel.html b/com.amd.aparapi/doc/api/com/amd/aparapi/opencl/class-use/OpenCL.Kernel.html
deleted file mode 100644
index b7ed7975..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/opencl/class-use/OpenCL.Kernel.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.opencl.OpenCL.Kernel
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.opencl.OpenCL.Kernel
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/opencl/class-use/OpenCL.Local.html b/com.amd.aparapi/doc/api/com/amd/aparapi/opencl/class-use/OpenCL.Local.html
deleted file mode 100644
index 886dd232..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/opencl/class-use/OpenCL.Local.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.opencl.OpenCL.Local
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.opencl.OpenCL.Local
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/opencl/class-use/OpenCL.Put.html b/com.amd.aparapi/doc/api/com/amd/aparapi/opencl/class-use/OpenCL.Put.html
deleted file mode 100644
index a9daf23d..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/opencl/class-use/OpenCL.Put.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.opencl.OpenCL.Put
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.opencl.OpenCL.Put
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/opencl/class-use/OpenCL.Resource.html b/com.amd.aparapi/doc/api/com/amd/aparapi/opencl/class-use/OpenCL.Resource.html
deleted file mode 100644
index 01b1b8d4..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/opencl/class-use/OpenCL.Resource.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.opencl.OpenCL.Resource
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.opencl.OpenCL.Resource
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/opencl/class-use/OpenCL.Source.html b/com.amd.aparapi/doc/api/com/amd/aparapi/opencl/class-use/OpenCL.Source.html
deleted file mode 100644
index a8f7c497..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/opencl/class-use/OpenCL.Source.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.opencl.OpenCL.Source
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.opencl.OpenCL.Source
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/opencl/class-use/OpenCL.html b/com.amd.aparapi/doc/api/com/amd/aparapi/opencl/class-use/OpenCL.html
deleted file mode 100644
index 29915c35..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/opencl/class-use/OpenCL.html
+++ /dev/null
@@ -1,200 +0,0 @@
-
-
-
-
-
-Uses of Interface com.amd.aparapi.opencl.OpenCL
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Methods in com.amd.aparapi.device with type parameters of type OpenCL
-
-Modifier and Type
-Method and Description
-
-
-
-<T extends OpenCL <T>> T
-OpenCLDevice. bind (java.lang.Class<T> _interface)
-
-
-<T extends OpenCL <T>> T
-OpenCLDevice. bind (java.lang.Class<T> _interface,
- java.io.InputStream _inputStream)
-
-
-<T extends OpenCL <T>> T
-OpenCLDevice. bind (java.lang.Class<T> _interface,
- java.lang.String _source)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/opencl/class-use/OpenCLAdapter.html b/com.amd.aparapi/doc/api/com/amd/aparapi/opencl/class-use/OpenCLAdapter.html
deleted file mode 100644
index 1148d693..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/opencl/class-use/OpenCLAdapter.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Uses of Class com.amd.aparapi.opencl.OpenCLAdapter
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-No usage of com.amd.aparapi.opencl.OpenCLAdapter
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/opencl/package-frame.html b/com.amd.aparapi/doc/api/com/amd/aparapi/opencl/package-frame.html
deleted file mode 100644
index 3e65fb41..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/opencl/package-frame.html
+++ /dev/null
@@ -1,37 +0,0 @@
-
-
-
-
-
-com.amd.aparapi.opencl
-
-
-
-
-
-
-
Interfaces
-
-
Classes
-
-
Annotation Types
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/opencl/package-summary.html b/com.amd.aparapi/doc/api/com/amd/aparapi/opencl/package-summary.html
deleted file mode 100644
index 7d30e0dc..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/opencl/package-summary.html
+++ /dev/null
@@ -1,203 +0,0 @@
-
-
-
-
-
-com.amd.aparapi.opencl
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-Interface Summary
-
-Interface
-Description
-
-
-
-OpenCL <T>
-
-
-
-
-
-
-
-Class Summary
-
-Class
-Description
-
-
-
-OpenCLAdapter <T>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/opencl/package-tree.html b/com.amd.aparapi/doc/api/com/amd/aparapi/opencl/package-tree.html
deleted file mode 100644
index a09669e1..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/opencl/package-tree.html
+++ /dev/null
@@ -1,146 +0,0 @@
-
-
-
-
-
-com.amd.aparapi.opencl Class Hierarchy
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
Class Hierarchy
-
-
Interface Hierarchy
-
-com.amd.aparapi.opencl.OpenCL <T>
-
-
Annotation Type Hierarchy
-
-com.amd.aparapi.opencl.OpenCL.Put (implements java.lang.annotation.Annotation)
-com.amd.aparapi.opencl.OpenCL.Get (implements java.lang.annotation.Annotation)
-com.amd.aparapi.opencl.OpenCL.Source (implements java.lang.annotation.Annotation)
-com.amd.aparapi.opencl.OpenCL.Resource (implements java.lang.annotation.Annotation)
-com.amd.aparapi.opencl.OpenCL.Kernel (implements java.lang.annotation.Annotation)
-com.amd.aparapi.opencl.OpenCL.Arg (implements java.lang.annotation.Annotation)
-com.amd.aparapi.opencl.OpenCL.GlobalReadWrite (implements java.lang.annotation.Annotation)
-com.amd.aparapi.opencl.OpenCL.GlobalReadOnly (implements java.lang.annotation.Annotation)
-com.amd.aparapi.opencl.OpenCL.GlobalWriteOnly (implements java.lang.annotation.Annotation)
-com.amd.aparapi.opencl.OpenCL.Local (implements java.lang.annotation.Annotation)
-com.amd.aparapi.opencl.OpenCL.Constant (implements java.lang.annotation.Annotation)
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/opencl/package-use.html b/com.amd.aparapi/doc/api/com/amd/aparapi/opencl/package-use.html
deleted file mode 100644
index 06a0cfd2..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/opencl/package-use.html
+++ /dev/null
@@ -1,167 +0,0 @@
-
-
-
-
-
-Uses of Package com.amd.aparapi.opencl
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/package-frame.html b/com.amd.aparapi/doc/api/com/amd/aparapi/package-frame.html
deleted file mode 100644
index d8bab545..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/package-frame.html
+++ /dev/null
@@ -1,35 +0,0 @@
-
-
-
-
-
-com.amd.aparapi
-
-
-
-
-
-
-
Interfaces
-
-
Classes
-
-
Enums
-
-
Annotation Types
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/package-summary.html b/com.amd.aparapi/doc/api/com/amd/aparapi/package-summary.html
deleted file mode 100644
index 00f0c793..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/package-summary.html
+++ /dev/null
@@ -1,207 +0,0 @@
-
-
-
-
-
-com.amd.aparapi
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
-Class Summary
-
-Class
-Description
-
-
-
-Config
-
-A central location for holding all runtime configurable properties as well as logging configuration.
-
-
-
-Kernel
-
-A kernel encapsulates a data parallel algorithm that will execute either on a GPU
- (through conversion to OpenCL) or on a CPU via a Java Thread Pool.
-
-
-
-ProfileInfo
-
-
-
-Range
-
-A representation of 1, 2 or 3 dimensional range of execution.
-
-
-
-
-
-
-
-Enum Summary
-
-Enum
-Description
-
-
-
-Kernel.EXECUTION_MODE
-
-The execution mode ENUM enumerates the possible modes of executing a kernel.
-
-
-
-
-
-
-
-Annotation Types Summary
-
-Annotation Type
-Description
-
-
-
-Kernel.Constant
-
-We can use this Annotation to 'tag' intended constant buffers.
-
-
-
-Kernel.Local
-
-We can use this Annotation to 'tag' intended local buffers.
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/package-tree.html b/com.amd.aparapi/doc/api/com/amd/aparapi/package-tree.html
deleted file mode 100644
index 771fb782..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/package-tree.html
+++ /dev/null
@@ -1,162 +0,0 @@
-
-
-
-
-
-com.amd.aparapi Class Hierarchy
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
Class Hierarchy
-
-
Interface Hierarchy
-
-
Annotation Type Hierarchy
-
-com.amd.aparapi.Kernel.Local (implements java.lang.annotation.Annotation)
-com.amd.aparapi.Kernel.Constant (implements java.lang.annotation.Annotation)
-
-
Enum Hierarchy
-
-java.lang.Object
-
-java.lang.Enum<E> (implements java.lang.Comparable<T>, java.io.Serializable)
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/com/amd/aparapi/package-use.html b/com.amd.aparapi/doc/api/com/amd/aparapi/package-use.html
deleted file mode 100644
index 07b28d63..00000000
--- a/com.amd.aparapi/doc/api/com/amd/aparapi/package-use.html
+++ /dev/null
@@ -1,248 +0,0 @@
-
-
-
-
-
-Uses of Package com.amd.aparapi
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/constant-values.html b/com.amd.aparapi/doc/api/constant-values.html
deleted file mode 100644
index 1106eaed..00000000
--- a/com.amd.aparapi/doc/api/constant-values.html
+++ /dev/null
@@ -1,743 +0,0 @@
-
-
-
-
-
-Constant Field Values
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
com.amd.*
-
-
-
-com.amd.aparapi.Kernel
-
-Modifier and Type
-Constant Field
-Value
-
-
-
-
-
- public static final java.lang.String
-CONSTANT_SUFFIX
-"_$constant$"
-
-
-
-
- public static final java.lang.String
-LOCAL_SUFFIX
-"_$local$"
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-com.amd.aparapi.internal.writer.BlockWriter
-
-Modifier and Type
-Constant Field
-Value
-
-
-
-
-
- public static final java.lang.String
-arrayLengthMangleSuffix
-"__javaArrayLength"
-
-
-
-
-
-
-com.amd.aparapi.internal.writer.KernelWriter
-
-Modifier and Type
-Constant Field
-Value
-
-
-
-
-
- public static final java.lang.String
-__constant
-"__constant"
-
-
-
-
- public static final java.lang.String
-__global
-"__global"
-
-
-
-
- public static final java.lang.String
-__local
-"__local"
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/deprecated-list.html b/com.amd.aparapi/doc/api/deprecated-list.html
deleted file mode 100644
index af7b2872..00000000
--- a/com.amd.aparapi/doc/api/deprecated-list.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-Deprecated List
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/help-doc.html b/com.amd.aparapi/doc/api/help-doc.html
deleted file mode 100644
index cee59017..00000000
--- a/com.amd.aparapi/doc/api/help-doc.html
+++ /dev/null
@@ -1,220 +0,0 @@
-
-
-
-
-
-API Help
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-Overview
-The Overview page is the front page of this API document and provides a list of all packages with a summary for each. This page can also contain an overall description of the set of packages.
-
-
-Package
-Each package has a page that contains a list of its classes and interfaces, with a summary for each. This page can contain six categories:
-
-Interfaces (italic)
-Classes
-Enums
-Exceptions
-Errors
-Annotation Types
-
-
-
-Class/Interface
-Each class, interface, nested class and nested interface has its own separate page. Each of these pages has three sections consisting of a class/interface description, summary tables, and detailed member descriptions:
-
-Class inheritance diagram
-Direct Subclasses
-All Known Subinterfaces
-All Known Implementing Classes
-Class/interface declaration
-Class/interface description
-
-
-Nested Class Summary
-Field Summary
-Constructor Summary
-Method Summary
-
-
-Field Detail
-Constructor Detail
-Method Detail
-
-Each summary entry contains the first sentence from the detailed description for that item. The summary entries are alphabetical, while the detailed descriptions are in the order they appear in the source code. This preserves the logical groupings established by the programmer.
-
-
-Annotation Type
-Each annotation type has its own separate page with the following sections:
-
-Annotation Type declaration
-Annotation Type description
-Required Element Summary
-Optional Element Summary
-Element Detail
-
-
-
-Enum
-Each enum has its own separate page with the following sections:
-
-Enum declaration
-Enum description
-Enum Constant Summary
-Enum Constant Detail
-
-
-
-Use
-Each documented package, class and interface has its own Use page. This page describes what packages, classes, methods, constructors and fields use any part of the given class or package. Given a class or interface A, its Use page includes subclasses of A, fields declared as A, methods that return A, and methods and constructors with parameters of type A. You can access this page by first going to the package, class or interface, then clicking on the "Use" link in the navigation bar.
-
-
-Tree (Class Hierarchy)
-There is a Class Hierarchy page for all packages, plus a hierarchy for each package. Each hierarchy page contains a list of classes and a list of interfaces. The classes are organized by inheritance structure starting with java.lang.Object. The interfaces do not inherit from java.lang.Object.
-
-When viewing the Overview page, clicking on "Tree" displays the hierarchy for all packages.
-When viewing a particular package, class or interface page, clicking "Tree" displays the hierarchy for only that package.
-
-
-
-Deprecated API
-The Deprecated API page lists all of the API that have been deprecated. A deprecated API is not recommended for use, generally due to improvements, and a replacement API is usually given. Deprecated APIs may be removed in future implementations.
-
-
-Index
-The Index contains an alphabetic list of all classes, interfaces, constructors, methods, and fields.
-
-
-Prev/Next
-These links take you to the next or previous class, interface, package, or related page.
-
-
-Frames/No Frames
-These links show and hide the HTML frames. All pages are available with or without frames.
-
-
-All Classes
-The All Classes link shows all classes and interfaces except non-static nested types.
-
-
-Serialized Form
-Each serializable or externalizable class has a description of its serialization fields and methods. This information is of interest to re-implementors, not to developers using the API. While there is no link in the navigation bar, you can get to this information by going to any serialized class and clicking "Serialized Form" in the "See also" section of the class description.
-
-
-Constant Field Values
-The Constant Field Values page lists the static final fields and their values.
-
-
-
This help file applies to API documentation generated using the standard doclet.
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/index-files/index-1.html b/com.amd.aparapi/doc/api/index-files/index-1.html
deleted file mode 100644
index d300308a..00000000
--- a/com.amd.aparapi/doc/api/index-files/index-1.html
+++ /dev/null
@@ -1,197 +0,0 @@
-
-
-
-
-
-A-Index
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-A B C D E F G H I J K L M N O P R S T U V W _
-
-
-
A
-
-accessInstanceField - Static variable in class com.amd.aparapi.internal.instruction.InstructionPattern
-
-accessLocalVariable - Static variable in class com.amd.aparapi.internal.instruction.InstructionPattern
-
-add(Instruction) - Method in class com.amd.aparapi.internal.instruction.ExpressionList
-
-Add this instruction to the end of the list.
-
-add(ClassModel.ConstantPool.Entry) - Method in class com.amd.aparapi.internal.model.ClassModel.ConstantPool
-
-add(Object, long, OpenCLMem) - Method in class com.amd.aparapi.internal.opencl.OpenCLProgram
-
-addBranchTarget(InstructionSet.Branch) - Method in class com.amd.aparapi.internal.instruction.Instruction
-
-addExecutionModes(Kernel.EXECUTION_MODE...) - Method in class com.amd.aparapi.Kernel
-
-set possible fallback path for execution modes.
-
-addOpenCLDevice(OpenCLDevice) - Method in class com.amd.aparapi.internal.opencl.OpenCLPlatform
-
-AparapiException - Exception in com.amd.aparapi.internal.exception
-
-We use AparapiException class and subclasses to wrap other
- Exception classes, mainly to allow differentiation between Aparapi specific issues at runtime.
-
-AparapiException(String) - Constructor for exception com.amd.aparapi.internal.exception.AparapiException
-
-AparapiException(Throwable) - Constructor for exception com.amd.aparapi.internal.exception.AparapiException
-
-ARG_ARRAY_BIT - Static variable in class com.amd.aparapi.internal.opencl.OpenCLArgDescriptor
-
-ARG_BYTE_BIT - Static variable in class com.amd.aparapi.internal.opencl.OpenCLArgDescriptor
-
-ARG_CONST_BIT - Static variable in class com.amd.aparapi.internal.opencl.OpenCLArgDescriptor
-
-ARG_DOUBLE_BIT - Static variable in class com.amd.aparapi.internal.opencl.OpenCLArgDescriptor
-
-ARG_FLOAT_BIT - Static variable in class com.amd.aparapi.internal.opencl.OpenCLArgDescriptor
-
-ARG_GLOBAL_BIT - Static variable in class com.amd.aparapi.internal.opencl.OpenCLArgDescriptor
-
-ARG_INT_BIT - Static variable in class com.amd.aparapi.internal.opencl.OpenCLArgDescriptor
-
-ARG_ISARG_BIT - Static variable in class com.amd.aparapi.internal.opencl.OpenCLArgDescriptor
-
-ARG_LOCAL_BIT - Static variable in class com.amd.aparapi.internal.opencl.OpenCLArgDescriptor
-
-ARG_LONG_BIT - Static variable in class com.amd.aparapi.internal.opencl.OpenCLArgDescriptor
-
-ARG_PRIMITIVE_BIT - Static variable in class com.amd.aparapi.internal.opencl.OpenCLArgDescriptor
-
-ARG_READONLY_BIT - Static variable in class com.amd.aparapi.internal.opencl.OpenCLArgDescriptor
-
-ARG_READWRITE_BIT - Static variable in class com.amd.aparapi.internal.opencl.OpenCLArgDescriptor
-
-ARG_SHORT_BIT - Static variable in class com.amd.aparapi.internal.opencl.OpenCLArgDescriptor
-
-ARG_WRITEONLY_BIT - Static variable in class com.amd.aparapi.internal.opencl.OpenCLArgDescriptor
-
-arrayBaseOffset(Class<?>) - Static method in class com.amd.aparapi.internal.util.UnsafeWrapper
-
-arrayIndexScale(Class<?>) - Static method in class com.amd.aparapi.internal.util.UnsafeWrapper
-
-arrayLengthMangleSuffix - Static variable in class com.amd.aparapi.internal.writer.BlockWriter
-
-ARROWGAP - Static variable in class com.amd.aparapi.internal.tool.InstructionViewer
-
-arrowHeadOut - Variable in class com.amd.aparapi.internal.tool.InstructionViewer
-
-asBranch() - Method in class com.amd.aparapi.internal.instruction.Instruction
-
-assignToArrayElement - Static variable in class com.amd.aparapi.internal.instruction.InstructionPattern
-
-assignToInstanceField - Static variable in class com.amd.aparapi.internal.instruction.InstructionPattern
-
-assignToLocalVariable - Static variable in class com.amd.aparapi.internal.instruction.InstructionPattern
-
-atomicAdd(int[], int, int) - Static method in class com.amd.aparapi.internal.util.UnsafeWrapper
-
-
-
A B C D E F G H I J K L M N O P R S T U V W _
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/index-files/index-10.html b/com.amd.aparapi/doc/api/index-files/index-10.html
deleted file mode 100644
index 369aa871..00000000
--- a/com.amd.aparapi/doc/api/index-files/index-10.html
+++ /dev/null
@@ -1,124 +0,0 @@
-
-
-
-
-
-J-Index
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-A B C D E F G H I J K L M N O P R S T U V W _
-
-
-
J
-
-JavaDevice - Class in com.amd.aparapi.device
-
-JavaDevice() - Constructor for class com.amd.aparapi.device.JavaDevice
-
-javaToCLIdentifierMap - Static variable in class com.amd.aparapi.internal.writer.KernelWriter
-
-
-
A B C D E F G H I J K L M N O P R S T U V W _
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/index-files/index-11.html b/com.amd.aparapi/doc/api/index-files/index-11.html
deleted file mode 100644
index ae0b3acd..00000000
--- a/com.amd.aparapi/doc/api/index-files/index-11.html
+++ /dev/null
@@ -1,176 +0,0 @@
-
-
-
-
-
-K-Index
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-A B C D E F G H I J K L M N O P R S T U V W _
-
-
-
K
-
-kernel - Variable in class com.amd.aparapi.internal.opencl.OpenCLArgDescriptor
-
-Kernel - Class in com.amd.aparapi
-
-A kernel encapsulates a data parallel algorithm that will execute either on a GPU
- (through conversion to OpenCL) or on a CPU via a Java Thread Pool.
-
-Kernel() - Constructor for class com.amd.aparapi.Kernel
-
-Kernel.Constant - Annotation Type in com.amd.aparapi
-
-We can use this Annotation to 'tag' intended constant buffers.
-
-Kernel.Entry - Class in com.amd.aparapi
-
-Kernel.Entry() - Constructor for class com.amd.aparapi.Kernel.Entry
-
-Kernel.EXECUTION_MODE - Enum in com.amd.aparapi
-
-The execution mode ENUM enumerates the possible modes of executing a kernel.
-
-Kernel.KernelState - Class in com.amd.aparapi
-
-This class is for internal Kernel state management
-
-Kernel.Local - Annotation Type in com.amd.aparapi
-
-We can use this Annotation to 'tag' intended local buffers.
-
-KernelArg - Class in com.amd.aparapi.internal.kernel
-
-Each field (or captured field in the case of an anonymous inner class) referenced by any bytecode reachable from the users Kernel.run(), will
- need to be represented as a KernelArg.
-
-KernelArgJNI - Class in com.amd.aparapi.internal.jni
-
-This class is intended to be used as a 'proxy' or 'facade' object for Java code to interact with JNI
-
-KernelArgJNI() - Constructor for class com.amd.aparapi.internal.jni.KernelArgJNI
-
-KernelRunner - Class in com.amd.aparapi.internal.kernel
-
-The class is responsible for executing Kernel implementations.
-
-KernelRunner(Kernel) - Constructor for class com.amd.aparapi.internal.kernel.KernelRunner
-
-Create a KernelRunner for a specific Kernel instance.
-
-KernelRunnerJNI - Class in com.amd.aparapi.internal.jni
-
-This class is intended to be used as a 'proxy' or 'facade' object for Java code to interact with JNI
-
-KernelRunnerJNI() - Constructor for class com.amd.aparapi.internal.jni.KernelRunnerJNI
-
-KernelWriter - Class in com.amd.aparapi.internal.writer
-
-KernelWriter() - Constructor for class com.amd.aparapi.internal.writer.KernelWriter
-
-
-
A B C D E F G H I J K L M N O P R S T U V W _
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/index-files/index-12.html b/com.amd.aparapi/doc/api/index-files/index-12.html
deleted file mode 100644
index c825b2a7..00000000
--- a/com.amd.aparapi/doc/api/index-files/index-12.html
+++ /dev/null
@@ -1,138 +0,0 @@
-
-
-
-
-
-L-Index
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-A B C D E F G H I J K L M N O P R S T U V W _
-
-
-
L
-
-label - Variable in class com.amd.aparapi.internal.tool.InstructionViewer.InstructionView
-
-line(Graphics2D, Stroke, double, double, double, double) - Method in class com.amd.aparapi.internal.tool.InstructionViewer
-
-line(Graphics2D, double, double, double, double) - Method in class com.amd.aparapi.internal.tool.InstructionViewer
-
-LOCAL_ANNOTATION_NAME - Static variable in class com.amd.aparapi.internal.writer.KernelWriter
-
-LOCAL_SUFFIX - Static variable in class com.amd.aparapi.Kernel
-
-We can use this suffix to 'tag' intended local buffers.
-
-longHandDecLocalVariable - Static variable in class com.amd.aparapi.internal.instruction.InstructionPattern
-
-longHandFieldArrayElementDecrement - Static variable in class com.amd.aparapi.internal.instruction.InstructionPattern
-
-longHandFieldArrayElementIncrement - Static variable in class com.amd.aparapi.internal.instruction.InstructionPattern
-
-longHandIncLocalVariable - Static variable in class com.amd.aparapi.internal.instruction.InstructionPattern
-
-
-
A B C D E F G H I J K L M N O P R S T U V W _
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/index-files/index-13.html b/com.amd.aparapi/doc/api/index-files/index-13.html
deleted file mode 100644
index 7184ef66..00000000
--- a/com.amd.aparapi/doc/api/index-files/index-13.html
+++ /dev/null
@@ -1,142 +0,0 @@
-
-
-
-
-
-M-Index
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-A B C D E F G H I J K L M N O P R S T U V W _
-
-
-
M
-
-main(String[]) - Static method in class com.amd.aparapi.internal.tool.InstructionViewer
-
-matches(Instruction) - Method in class com.amd.aparapi.internal.instruction.InstructionPattern.AssignableInstructionMatcher
-
-matches(Instruction, InstructionPattern.InstructionMatcher) - Method in class com.amd.aparapi.internal.instruction.InstructionPattern.InstructionMatcher
-
-MAX_GROUP_SIZE - Static variable in class com.amd.aparapi.Range
-
-MAX_OPENCL_GROUP_SIZE - Static variable in class com.amd.aparapi.Range
-
-MEM_COPY_BIT - Static variable in class com.amd.aparapi.internal.opencl.OpenCLMem
-
-MEM_DIRTY_BIT - Static variable in class com.amd.aparapi.internal.opencl.OpenCLMem
-
-MEM_ENQUEUED_BIT - Static variable in class com.amd.aparapi.internal.opencl.OpenCLMem
-
-memVal - Variable in class com.amd.aparapi.internal.opencl.OpenCLArgDescriptor
-
-methodCall - Static variable in class com.amd.aparapi.internal.instruction.InstructionPattern
-
-MethodModel - Class in com.amd.aparapi.internal.model
-
-methodUsesPutfield() - Method in class com.amd.aparapi.internal.model.MethodModel
-
-
-
A B C D E F G H I J K L M N O P R S T U V W _
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/index-files/index-14.html b/com.amd.aparapi/doc/api/index-files/index-14.html
deleted file mode 100644
index 6eb8af1c..00000000
--- a/com.amd.aparapi/doc/api/index-files/index-14.html
+++ /dev/null
@@ -1,124 +0,0 @@
-
-
-
-
-
-N-Index
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-A B C D E F G H I J K L M N O P R S T U V W _
-
-
-
N
-
-newInstruction(MethodModel, ByteReader, boolean) - Method in enum com.amd.aparapi.internal.instruction.InstructionSet.ByteCode
-
-newLine() - Method in class com.amd.aparapi.internal.writer.BlockWriter
-
-NONE - Static variable in class com.amd.aparapi.internal.tool.InstructionHelper.BranchVector
-
-
-
A B C D E F G H I J K L M N O P R S T U V W _
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/index-files/index-15.html b/com.amd.aparapi/doc/api/index-files/index-15.html
deleted file mode 100644
index 8732daba..00000000
--- a/com.amd.aparapi/doc/api/index-files/index-15.html
+++ /dev/null
@@ -1,222 +0,0 @@
-
-
-
-
-
-O-Index
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-A B C D E F G H I J K L M N O P R S T U V W _
-
-
-
O
-
-objectFieldOffset(Field) - Static method in class com.amd.aparapi.internal.util.UnsafeWrapper
-
-ok - Variable in class com.amd.aparapi.internal.instruction.InstructionPattern.InstructionMatch
-
-OpenCL <T > - Interface in com.amd.aparapi.opencl
-
-OpenCL.Arg - Annotation Type in com.amd.aparapi.opencl
-
-OpenCL.Constant - Annotation Type in com.amd.aparapi.opencl
-
-OpenCL.Get - Annotation Type in com.amd.aparapi.opencl
-
-OpenCL.GlobalReadOnly - Annotation Type in com.amd.aparapi.opencl
-
-OpenCL.GlobalReadWrite - Annotation Type in com.amd.aparapi.opencl
-
-OpenCL.GlobalWriteOnly - Annotation Type in com.amd.aparapi.opencl
-
-OpenCL.Kernel - Annotation Type in com.amd.aparapi.opencl
-
-OpenCL.Local - Annotation Type in com.amd.aparapi.opencl
-
-OpenCL.Put - Annotation Type in com.amd.aparapi.opencl
-
-OpenCL.Resource - Annotation Type in com.amd.aparapi.opencl
-
-OpenCL.Source - Annotation Type in com.amd.aparapi.opencl
-
-OpenCLAdapter <T > - Class in com.amd.aparapi.opencl
-
-OpenCLAdapter() - Constructor for class com.amd.aparapi.opencl.OpenCLAdapter
-
-OpenCLArgDescriptor - Class in com.amd.aparapi.internal.opencl
-
-OpenCLArgDescriptor(String, long) - Constructor for class com.amd.aparapi.internal.opencl.OpenCLArgDescriptor
-
-Full constructor
-
-OpenCLDevice - Class in com.amd.aparapi.device
-
-OpenCLDevice(OpenCLPlatform, long, Device.TYPE) - Constructor for class com.amd.aparapi.device.OpenCLDevice
-
-Minimal constructor
-
-OpenCLDevice.DeviceComparitor - Interface in com.amd.aparapi.device
-
-OpenCLDevice.DeviceSelector - Interface in com.amd.aparapi.device
-
-OpenCLDevice.OpenCLInvocationHandler <T extends OpenCL <T >> - Class in com.amd.aparapi.device
-
-OpenCLDevice.OpenCLInvocationHandler(OpenCLProgram, Map<String, OpenCLKernel>) - Constructor for class com.amd.aparapi.device.OpenCLDevice.OpenCLInvocationHandler
-
-OpenCLJNI - Class in com.amd.aparapi.internal.jni
-
-This class is intended to be used as a 'proxy' or 'facade' object for Java code to interact with JNI
-
-OpenCLJNI() - Constructor for class com.amd.aparapi.internal.jni.OpenCLJNI
-
-OpenCLKernel - Class in com.amd.aparapi.internal.opencl
-
-OpenCLKernel(OpenCLProgram, String, List<OpenCLArgDescriptor>) - Constructor for class com.amd.aparapi.internal.opencl.OpenCLKernel
-
-Minimal constructor
-
-OpenCLLoader - Class in com.amd.aparapi.internal.opencl
-
-This class is intended to be a singleton which determines if OpenCL is available upon startup of Aparapi
-
-OpenCLLoader() - Constructor for class com.amd.aparapi.internal.opencl.OpenCLLoader
-
-OpenCLMem - Class in com.amd.aparapi.internal.opencl
-
-OpenCLMem() - Constructor for class com.amd.aparapi.internal.opencl.OpenCLMem
-
-OpenCLPlatform - Class in com.amd.aparapi.internal.opencl
-
-OpenCLPlatform() - Constructor for class com.amd.aparapi.internal.opencl.OpenCLPlatform
-
-Default constructor
-
-OpenCLPlatform(long, String, String, String) - Constructor for class com.amd.aparapi.internal.opencl.OpenCLPlatform
-
-Full constructor
-
-OpenCLProgram - Class in com.amd.aparapi.internal.opencl
-
-OpenCLProgram(OpenCLDevice, String) - Constructor for class com.amd.aparapi.internal.opencl.OpenCLProgram
-
-Minimal constructor
-
-OpenCLProgram(long, long, long, OpenCLDevice, String) - Constructor for class com.amd.aparapi.internal.opencl.OpenCLProgram
-
-Full constructor
-
-OpenCLUtil - Class in com.amd.aparapi.internal.util
-
-This utility class encapsulates the necessary actions required to query underlying OpenCL information
-
-OpenCLUtil() - Constructor for class com.amd.aparapi.internal.util.OpenCLUtil
-
-out() - Method in class com.amd.aparapi.internal.writer.BlockWriter
-
-overlaps(InstructionHelper.BranchVector) - Method in class com.amd.aparapi.internal.tool.InstructionHelper.BranchVector
-
-
-
A B C D E F G H I J K L M N O P R S T U V W _
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/index-files/index-16.html b/com.amd.aparapi/doc/api/index-files/index-16.html
deleted file mode 100644
index 5c6e7187..00000000
--- a/com.amd.aparapi/doc/api/index-files/index-16.html
+++ /dev/null
@@ -1,206 +0,0 @@
-
-
-
-
-
-P-Index
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-A B C D E F G H I J K L M N O P R S T U V W _
-
-
-
P
-
-pad(String, int) - Method in class com.amd.aparapi.internal.tool.InstructionHelper.Table.Col
-
-parse(Class<?>) - Method in class com.amd.aparapi.internal.model.ClassModel
-
-We extract the class's classloader and name and delegate to private parse method.
-
-peekU2() - Method in class com.amd.aparapi.internal.reader.ByteReader
-
-producesStack() - Method in class com.amd.aparapi.internal.instruction.Instruction
-
-ProfileInfo - Class in com.amd.aparapi
-
-ProfileInfo(String, int, long, long, long, long) - Constructor for class com.amd.aparapi.ProfileInfo
-
-Minimal constructor
-
-put(Object) - Method in class com.amd.aparapi.internal.kernel.KernelRunner
-
-Tag this array so that it is explicitly enqueued before the kernel is executed.
-
-put(long[]) - Method in class com.amd.aparapi.Kernel
-
-Tag this array so that it is explicitly enqueued before the kernel is executed
-
-put(double[]) - Method in class com.amd.aparapi.Kernel
-
-Tag this array so that it is explicitly enqueued before the kernel is executed
-
-put(float[]) - Method in class com.amd.aparapi.Kernel
-
-Tag this array so that it is explicitly enqueued before the kernel is executed
-
-put(int[]) - Method in class com.amd.aparapi.Kernel
-
-Tag this array so that it is explicitly enqueued before the kernel is executed
-
-put(byte[]) - Method in class com.amd.aparapi.Kernel
-
-Tag this array so that it is explicitly enqueued before the kernel is executed
-
-put(char[]) - Method in class com.amd.aparapi.Kernel
-
-Tag this array so that it is explicitly enqueued before the kernel is executed
-
-put(boolean[]) - Method in class com.amd.aparapi.Kernel
-
-Tag this array so that it is explicitly enqueued before the kernel is executed
-
-put(float[]) - Method in interface com.amd.aparapi.opencl.OpenCL
-
-put(int[]) - Method in interface com.amd.aparapi.opencl.OpenCL
-
-put(short[]) - Method in interface com.amd.aparapi.opencl.OpenCL
-
-put(byte[]) - Method in interface com.amd.aparapi.opencl.OpenCL
-
-put(char[]) - Method in interface com.amd.aparapi.opencl.OpenCL
-
-put(boolean[]) - Method in interface com.amd.aparapi.opencl.OpenCL
-
-put(double[]) - Method in interface com.amd.aparapi.opencl.OpenCL
-
-put(byte[]) - Method in class com.amd.aparapi.opencl.OpenCLAdapter
-
-put(float[]) - Method in class com.amd.aparapi.opencl.OpenCLAdapter
-
-put(int[]) - Method in class com.amd.aparapi.opencl.OpenCLAdapter
-
-put(short[]) - Method in class com.amd.aparapi.opencl.OpenCLAdapter
-
-put(char[]) - Method in class com.amd.aparapi.opencl.OpenCLAdapter
-
-put(boolean[]) - Method in class com.amd.aparapi.opencl.OpenCLAdapter
-
-put(double[]) - Method in class com.amd.aparapi.opencl.OpenCLAdapter
-
-putBoolean(Object, long, boolean) - Static method in class com.amd.aparapi.internal.util.UnsafeWrapper
-
-putByte(Object, long, byte) - Static method in class com.amd.aparapi.internal.util.UnsafeWrapper
-
-putDouble(Object, long, double) - Static method in class com.amd.aparapi.internal.util.UnsafeWrapper
-
-putFloat(Object, long, float) - Static method in class com.amd.aparapi.internal.util.UnsafeWrapper
-
-putInt(Object, long, int) - Static method in class com.amd.aparapi.internal.util.UnsafeWrapper
-
-putLong(Object, long, long) - Static method in class com.amd.aparapi.internal.util.UnsafeWrapper
-
-
-
A B C D E F G H I J K L M N O P R S T U V W _
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/index-files/index-17.html b/com.amd.aparapi/doc/api/index-files/index-17.html
deleted file mode 100644
index f094cfa9..00000000
--- a/com.amd.aparapi/doc/api/index-files/index-17.html
+++ /dev/null
@@ -1,180 +0,0 @@
-
-
-
-
-
-R-Index
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-A B C D E F G H I J K L M N O P R S T U V W _
-
-
-
R
-
-Range - Class in com.amd.aparapi
-
-A representation of 1, 2 or 3 dimensional range of execution.
-
-Range(Device, int) - Constructor for class com.amd.aparapi.Range
-
-Minimal constructor
-
-RangeException - Exception in com.amd.aparapi.internal.exception
-
-RangeException(String) - Constructor for exception com.amd.aparapi.internal.exception.RangeException
-
-RangeJNI - Class in com.amd.aparapi.internal.jni
-
-This class is intended to be used as a 'proxy' or 'facade' object for Java code to interact with JNI
-
-RangeJNI() - Constructor for class com.amd.aparapi.internal.jni.RangeJNI
-
-remapped(Object, long, OpenCLMem, long) - Method in class com.amd.aparapi.internal.opencl.OpenCLProgram
-
-removeBranchTarget(InstructionSet.Branch) - Method in class com.amd.aparapi.internal.instruction.Instruction
-
-RemoveMe - Annotation Type in com.amd.aparapi.internal.annotation
-
-Use this annotation to tag fields that we think need to be removed (method/field/var)
-
-render(int) - Method in class com.amd.aparapi.internal.tool.InstructionHelper.BranchVector
-
-render(int, int) - Method in class com.amd.aparapi.internal.tool.InstructionHelper.BranchVector
-
-render(Graphics2D) - Method in class com.amd.aparapi.internal.tool.InstructionViewer
-
-replaceInclusive(Instruction, Instruction, Instruction) - Method in class com.amd.aparapi.internal.instruction.ExpressionList
-
-Inclusive replace between _head and _tail with _newOne.
-
-replaceSuperClazz(ClassModel) - Method in class com.amd.aparapi.internal.model.ClassModel
-
-requiresAtomic32Pragma() - Method in class com.amd.aparapi.internal.model.Entrypoint
-
-requiresAtomic64Pragma() - Method in class com.amd.aparapi.internal.model.Entrypoint
-
-requiresByteAddressableStorePragma() - Method in class com.amd.aparapi.internal.model.Entrypoint
-
-requiresByteAddressableStorePragma() - Method in class com.amd.aparapi.internal.model.MethodModel
-
-requiresDoublePragma() - Method in class com.amd.aparapi.internal.model.Entrypoint
-
-requiresDoublePragma() - Method in class com.amd.aparapi.internal.model.MethodModel
-
-resolveAccessorCandidate(InstructionSet.MethodCall, ClassModel.ConstantPool.MethodEntry) - Method in class com.amd.aparapi.internal.model.Entrypoint
-
-retarget(Instruction) - Method in class com.amd.aparapi.internal.instruction.InstructionSet.Branch
-
-ring() - Method in class com.amd.aparapi.internal.tool.InstructionViewer.DoorBell
-
-run() - Method in class com.amd.aparapi.Kernel.Entry
-
-run() - Method in class com.amd.aparapi.Kernel
-
-The entry point of a kernel.
-
-
-
A B C D E F G H I J K L M N O P R S T U V W _
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/index-files/index-18.html b/com.amd.aparapi/doc/api/index-files/index-18.html
deleted file mode 100644
index 674b3122..00000000
--- a/com.amd.aparapi/doc/api/index-files/index-18.html
+++ /dev/null
@@ -1,301 +0,0 @@
-
-
-
-
-
-S-Index
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-A B C D E F G H I J K L M N O P R S T U V W _
-
-
-
S
-
-s2() - Method in class com.amd.aparapi.internal.reader.ByteReader
-
-s4() - Method in class com.amd.aparapi.internal.reader.ByteReader
-
-same(ClassModel.ConstantPool.Entry) - Method in class com.amd.aparapi.internal.model.ClassModel.ConstantPool.ReferenceEntry
-
-sameAs(Instruction) - Method in class com.amd.aparapi.internal.instruction.Instruction
-
-select(OpenCLDevice, OpenCLDevice) - Method in interface com.amd.aparapi.device.OpenCLDevice.DeviceComparitor
-
-select(OpenCLDevice) - Method in interface com.amd.aparapi.device.OpenCLDevice.DeviceSelector
-
-select(OpenCLDevice.DeviceSelector) - Static method in class com.amd.aparapi.device.OpenCLDevice
-
-select(OpenCLDevice.DeviceComparitor) - Static method in class com.amd.aparapi.device.OpenCLDevice
-
-select(double, double) - Method in class com.amd.aparapi.internal.tool.InstructionViewer
-
-setBranchSet(BranchSet) - Method in class com.amd.aparapi.internal.instruction.InstructionSet.ConditionalBranch
-
-setBreakOrContinue(boolean) - Method in class com.amd.aparapi.internal.instruction.InstructionSet.Branch
-
-setChildren(Instruction, Instruction) - Method in class com.amd.aparapi.internal.instruction.Instruction
-
-setDims(int) - Method in class com.amd.aparapi.Range
-
-setExecutionMode(Kernel.EXECUTION_MODE) - Method in class com.amd.aparapi.Kernel
-
-Set the execution mode.
-
-setExplicit(boolean) - Method in class com.amd.aparapi.internal.kernel.KernelRunner
-
-setExplicit(boolean) - Method in class com.amd.aparapi.Kernel
-
-For dev purposes (we should remove this for production) allow us to define that this Kernel uses explicit memory management
-
-setFallbackExecutionMode() - Method in class com.amd.aparapi.Kernel
-
-setGlobalId(int, int) - Method in class com.amd.aparapi.Kernel.KernelState
-
-Set a specific index value
-
-setGlobalIds(int[]) - Method in class com.amd.aparapi.Kernel.KernelState
-
-setGlobalMemSize(long) - Method in class com.amd.aparapi.device.OpenCLDevice
-
-setGlobalSize_0(int) - Method in class com.amd.aparapi.Range
-
-setGlobalSize_1(int) - Method in class com.amd.aparapi.Range
-
-setGlobalSize_2(int) - Method in class com.amd.aparapi.Range
-
-setGroupId(int, int) - Method in class com.amd.aparapi.Kernel.KernelState
-
-Set a specific index value
-
-setGroupIds(int[]) - Method in class com.amd.aparapi.Kernel.KernelState
-
-setKernelInstance(Object) - Method in class com.amd.aparapi.internal.model.Entrypoint
-
-setLength(int) - Method in class com.amd.aparapi.internal.instruction.Instruction
-
-setLocalBarrier(CyclicBarrier) - Method in class com.amd.aparapi.Kernel.KernelState
-
-setLocalId(int, int) - Method in class com.amd.aparapi.Kernel.KernelState
-
-Set a specific index value
-
-setLocalIds(int[]) - Method in class com.amd.aparapi.Kernel.KernelState
-
-setLocalIsDerived(boolean) - Method in class com.amd.aparapi.Range
-
-setLocalMemSize(long) - Method in class com.amd.aparapi.device.OpenCLDevice
-
-setLocalSize_0(int) - Method in class com.amd.aparapi.Range
-
-setLocalSize_1(int) - Method in class com.amd.aparapi.Range
-
-setLocalSize_2(int) - Method in class com.amd.aparapi.Range
-
-setMaxComputeUnits(int) - Method in class com.amd.aparapi.device.OpenCLDevice
-
-setMaxMemAllocSize(long) - Method in class com.amd.aparapi.device.OpenCLDevice
-
-setMaxWorkGroupSize(int) - Method in class com.amd.aparapi.device.Device
-
-setMaxWorkGroupSize(int) - Method in class com.amd.aparapi.Range
-
-setMaxWorkItemDimensions(int) - Method in class com.amd.aparapi.device.Device
-
-setMaxWorkItemSize(int[]) - Method in class com.amd.aparapi.device.Device
-
-setMaxWorkItemSize(int[]) - Method in class com.amd.aparapi.Range
-
-setNext(BranchSet.LogicalExpressionNode) - Method in class com.amd.aparapi.internal.instruction.BranchSet.LogicalExpressionNode
-
-setNextExpr(Instruction) - Method in class com.amd.aparapi.internal.instruction.Instruction
-
-setNextPC(Instruction) - Method in class com.amd.aparapi.internal.instruction.Instruction
-
-setOffset(int) - Method in class com.amd.aparapi.internal.reader.ByteReader
-
-setParent(BranchSet.LogicalExpressionNode) - Method in class com.amd.aparapi.internal.instruction.BranchSet.LogicalExpressionNode
-
-setParentExpr(Instruction) - Method in class com.amd.aparapi.internal.instruction.Instruction
-
-setPassId(int) - Method in class com.amd.aparapi.Kernel.KernelState
-
-setPrevExpr(Instruction) - Method in class com.amd.aparapi.internal.instruction.Instruction
-
-setPrevPC(Instruction) - Method in class com.amd.aparapi.internal.instruction.Instruction
-
-setRange(Range) - Method in class com.amd.aparapi.Kernel.KernelState
-
-setRequiredPragmas(Instruction) - Method in class com.amd.aparapi.internal.model.MethodModel
-
-Look at each instruction for use of long/double or byte writes which
- require pragmas to be used in the OpenCL source
-
-setRequiresAtomics32Pragma(boolean) - Method in class com.amd.aparapi.internal.model.Entrypoint
-
-setRequiresAtomics64Pragma(boolean) - Method in class com.amd.aparapi.internal.model.Entrypoint
-
-setTarget(Instruction) - Method in class com.amd.aparapi.internal.instruction.InstructionSet.Branch
-
-setTarget(int, Instruction) - Method in class com.amd.aparapi.internal.instruction.InstructionSet.Switch
-
-setTotalStructSize(int) - Method in class com.amd.aparapi.internal.model.ClassModel
-
-setType(Device.TYPE) - Method in class com.amd.aparapi.device.Device
-
-setValid(boolean) - Method in class com.amd.aparapi.Range
-
-shouldFallback() - Method in class com.amd.aparapi.internal.model.Entrypoint
-
-showAndTell(String, Instruction, Instruction) - Method in interface com.amd.aparapi.Config.InstructionListener
-
-showAndTell(String, Instruction, Instruction) - Method in class com.amd.aparapi.internal.tool.InstructionViewer
-
-showExpressions - Variable in class com.amd.aparapi.internal.tool.InstructionViewer.Options
-
-showPc - Variable in class com.amd.aparapi.internal.tool.InstructionViewer.Options
-
-SIGC_ARRAY - Static variable in class com.amd.aparapi.internal.model.ClassModel
-
-SIGC_BOOLEAN - Static variable in class com.amd.aparapi.internal.model.ClassModel
-
-SIGC_BYTE - Static variable in class com.amd.aparapi.internal.model.ClassModel
-
-SIGC_CHAR - Static variable in class com.amd.aparapi.internal.model.ClassModel
-
-SIGC_CLASS - Static variable in class com.amd.aparapi.internal.model.ClassModel
-
-SIGC_DOUBLE - Static variable in class com.amd.aparapi.internal.model.ClassModel
-
-SIGC_END_CLASS - Static variable in class com.amd.aparapi.internal.model.ClassModel
-
-SIGC_END_METHOD - Static variable in class com.amd.aparapi.internal.model.ClassModel
-
-SIGC_FLOAT - Static variable in class com.amd.aparapi.internal.model.ClassModel
-
-SIGC_INT - Static variable in class com.amd.aparapi.internal.model.ClassModel
-
-SIGC_LONG - Static variable in class com.amd.aparapi.internal.model.ClassModel
-
-SIGC_PACKAGE - Static variable in class com.amd.aparapi.internal.model.ClassModel
-
-SIGC_SHORT - Static variable in class com.amd.aparapi.internal.model.ClassModel
-
-SIGC_START_METHOD - Static variable in class com.amd.aparapi.internal.model.ClassModel
-
-SIGC_VOID - Static variable in class com.amd.aparapi.internal.model.ClassModel
-
-size() - Method in class com.amd.aparapi.internal.tool.InstructionHelper.Table.Col
-
-skip(int) - Method in class com.amd.aparapi.internal.reader.ByteReader
-
-snooze() - Method in class com.amd.aparapi.internal.tool.InstructionViewer.DoorBell
-
-stroke(Graphics2D, Stroke, Shape) - Method in class com.amd.aparapi.internal.tool.InstructionViewer
-
-sync() - Method in class com.amd.aparapi.internal.tool.InstructionViewer.Form
-
-
-
A B C D E F G H I J K L M N O P R S T U V W _
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/index-files/index-19.html b/com.amd.aparapi/doc/api/index-files/index-19.html
deleted file mode 100644
index 842d47aa..00000000
--- a/com.amd.aparapi/doc/api/index-files/index-19.html
+++ /dev/null
@@ -1,172 +0,0 @@
-
-
-
-
-
-T-Index
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-A B C D E F G H I J K L M N O P R S T U V W _
-
-
-
T
-
-test(boolean) - Static method in class com.amd.aparapi.internal.instruction.InstructionPattern.InstructionMatch
-
-text(Graphics2D, String, double, double) - Method in class com.amd.aparapi.internal.tool.InstructionViewer
-
-text(Graphics2D, Color, String, double, double) - Method in class com.amd.aparapi.internal.tool.InstructionViewer
-
-THREADS_PER_CORE - Static variable in class com.amd.aparapi.Range
-
-THROUGH - Static variable in class com.amd.aparapi.internal.tool.InstructionHelper.BranchVector
-
-toInstruction() - Method in class com.amd.aparapi.internal.instruction.Instruction
-
-TOP_ARROW - Static variable in class com.amd.aparapi.internal.tool.InstructionHelper.BranchVector
-
-toString() - Method in class com.amd.aparapi.device.OpenCLDevice
-
-toString() - Method in class com.amd.aparapi.internal.instruction.Instruction
-
-toString() - Method in class com.amd.aparapi.internal.model.ClassModel.AttributePool.OtherEntry
-
-toString() - Method in class com.amd.aparapi.internal.model.ClassModel.ConstantPool.MethodEntry
-
-toString() - Method in class com.amd.aparapi.internal.opencl.OpenCLArgDescriptor
-
-toString() - Method in class com.amd.aparapi.internal.opencl.OpenCLPlatform
-
-toString() - Method in class com.amd.aparapi.internal.tool.InstructionHelper.BranchVector
-
-toString() - Method in class com.amd.aparapi.internal.tool.InstructionHelper.StringWriter
-
-toString() - Method in class com.amd.aparapi.internal.tool.InstructionHelper.Table
-
-toString() - Method in class com.amd.aparapi.ProfileInfo
-
-toString() - Method in class com.amd.aparapi.Range
-
-
-
-transform(ExpressionList, Instruction) - Method in class com.amd.aparapi.internal.instruction.InstructionTransformer
-
-TRUE - Static variable in class com.amd.aparapi.internal.instruction.InstructionPattern.InstructionMatch
-
-tryNextExecutionMode() - Method in class com.amd.aparapi.Kernel
-
-try the next execution path in the list if there aren't any more than give up
-
-txFormDups(ExpressionList, Instruction) - Method in class com.amd.aparapi.internal.model.MethodModel
-
-DUP family of instructions break our stack unwind model (whereby we treat instructions like the oeprands they create/consume).
-
-typeName(char) - Static method in class com.amd.aparapi.internal.model.ClassModel
-
-Convert a given JNI character type (say 'I') to its type name ('int').
-
-
-
A B C D E F G H I J K L M N O P R S T U V W _
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/index-files/index-2.html b/com.amd.aparapi/doc/api/index-files/index-2.html
deleted file mode 100644
index 52c0aef8..00000000
--- a/com.amd.aparapi/doc/api/index-files/index-2.html
+++ /dev/null
@@ -1,196 +0,0 @@
-
-
-
-
-
-B-Index
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-A B C D E F G H I J K L M N O P R S T U V W _
-
-
-
B
-
-begin() - Method in interface com.amd.aparapi.opencl.OpenCL
-
-begin() - Method in class com.amd.aparapi.opencl.OpenCLAdapter
-
-best() - Static method in class com.amd.aparapi.device.Device
-
-bind(Class<T>, InputStream) - Method in class com.amd.aparapi.device.OpenCLDevice
-
-bind(Class<T>) - Method in class com.amd.aparapi.device.OpenCLDevice
-
-bind(Class<T>, String) - Method in class com.amd.aparapi.device.OpenCLDevice
-
-bitIsSet(int) - Method in enum com.amd.aparapi.internal.model.ClassModel.Access
-
-bits - Variable in class com.amd.aparapi.internal.opencl.OpenCLArgDescriptor
-
-BlockWriter - Class in com.amd.aparapi.internal.writer
-
-Base abstract class for converting Aparapi IR to text.
-
-BlockWriter() - Constructor for class com.amd.aparapi.internal.writer.BlockWriter
-
-BOTTOM_ARROW - Static variable in class com.amd.aparapi.internal.tool.InstructionHelper.BranchVector
-
-BranchSet - Class in com.amd.aparapi.internal.instruction
-
-Deals with the issue of recognizing that a sequence of bytecode branch instructions actually represent a single if/while with a logical expression.
-
-BranchSet(InstructionSet.Branch) - Constructor for class com.amd.aparapi.internal.instruction.BranchSet
-
-We construct a branch set with the 'last' branch.
-
-BranchSet.CompoundLogicalExpressionNode - Class in com.amd.aparapi.internal.instruction
-
-A node in the expression tree representing a simple logical expression.
-
-BranchSet.CompoundLogicalExpressionNode(boolean, BranchSet.LogicalExpressionNode, BranchSet.LogicalExpressionNode) - Constructor for class com.amd.aparapi.internal.instruction.BranchSet.CompoundLogicalExpressionNode
-
-BranchSet.LogicalExpressionNode - Class in com.amd.aparapi.internal.instruction
-
-Base abstract class used to hold information used to construct node tree for logical expressions.
-
-BranchSet.LogicalExpressionNode() - Constructor for class com.amd.aparapi.internal.instruction.BranchSet.LogicalExpressionNode
-
-BranchSet.SimpleLogicalExpressionNode - Class in com.amd.aparapi.internal.instruction
-
-A node in the expression tree representing a simple logical expression.
-
-BranchSet.SimpleLogicalExpressionNode(InstructionSet.ConditionalBranch) - Constructor for class com.amd.aparapi.internal.instruction.BranchSet.SimpleLogicalExpressionNode
-
-branchTarget - Variable in class com.amd.aparapi.internal.tool.InstructionViewer.InstructionView
-
-buildBranchGraphs(Map<Integer, Instruction>) - Method in class com.amd.aparapi.internal.model.MethodModel
-
-Here we connect the branch nodes to the instruction that they branch to.
-
-ByteBuffer - Class in com.amd.aparapi.internal.reader
-
-Used to parse ClassFile structure.
-
-ByteReader - Class in com.amd.aparapi.internal.reader
-
-Primarily used to parse various ClassFile structures.
-
-ByteReader(ByteBuffer) - Constructor for class com.amd.aparapi.internal.reader.ByteReader
-
-Construct form a given ByteBuffer.
-
-ByteReader(byte[]) - Constructor for class com.amd.aparapi.internal.reader.ByteReader
-
-Construct form an array of bytes.
-
-ByteReader(InputStream) - Constructor for class com.amd.aparapi.internal.reader.ByteReader
-
-Construct form an input stream (say a ClassFile).
-
-bytes(int) - Method in class com.amd.aparapi.internal.reader.ByteReader
-
-
-
A B C D E F G H I J K L M N O P R S T U V W _
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/index-files/index-20.html b/com.amd.aparapi/doc/api/index-files/index-20.html
deleted file mode 100644
index 10b11f78..00000000
--- a/com.amd.aparapi/doc/api/index-files/index-20.html
+++ /dev/null
@@ -1,158 +0,0 @@
-
-
-
-
-
-U-Index
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-A B C D E F G H I J K L M N O P R S T U V W _
-
-
-
U
-
-u1() - Method in class com.amd.aparapi.internal.reader.ByteReader
-
-u2() - Method in class com.amd.aparapi.internal.reader.ByteReader
-
-u4() - Method in class com.amd.aparapi.internal.reader.ByteReader
-
-u8() - Method in class com.amd.aparapi.internal.reader.ByteReader
-
-UNCONDITIONAL_START - Static variable in class com.amd.aparapi.internal.tool.InstructionHelper.BranchVector
-
-unhook() - Method in class com.amd.aparapi.internal.instruction.BranchSet
-
-unhook() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.Branch
-
-UnsafeWrapper - Class in com.amd.aparapi.internal.util
-
-A wrapper around sun.misc.Unsafe for handling atomic operations, copies from fields to arrays and vice versa.
-
-UnsafeWrapper() - Constructor for class com.amd.aparapi.internal.util.UnsafeWrapper
-
-Unused - Annotation Type in com.amd.aparapi.internal.annotation
-
-Used to tag unused features (methods/fields)
-
-unwind() - Method in class com.amd.aparapi.internal.instruction.ExpressionList
-
-updateObjectMemberFieldAccesses(String, ClassModel.ConstantPool.FieldEntry) - Method in class com.amd.aparapi.internal.model.Entrypoint
-
-UsedByJNICode - Annotation Type in com.amd.aparapi.internal.annotation
-
-Be careful changing the name/type of this field as it is referenced from JNI code.
-
-usesAtomic32(ClassModel.ConstantPool.MethodReferenceEntry) - Static method in class com.amd.aparapi.Kernel
-
-usesAtomic64(ClassModel.ConstantPool.MethodReferenceEntry) - Static method in class com.amd.aparapi.Kernel
-
-usesDouble() - Method in enum com.amd.aparapi.internal.instruction.InstructionSet.ByteCode
-
-utf8() - Method in class com.amd.aparapi.internal.reader.ByteReader
-
-
-
A B C D E F G H I J K L M N O P R S T U V W _
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/index-files/index-21.html b/com.amd.aparapi/doc/api/index-files/index-21.html
deleted file mode 100644
index 9b6756ac..00000000
--- a/com.amd.aparapi/doc/api/index-files/index-21.html
+++ /dev/null
@@ -1,225 +0,0 @@
-
-
-
-
-
-V-Index
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-A B C D E F G H I J K L M N O P R S T U V W _
-
-
-
V
-
-valueOf(String) - Static method in enum com.amd.aparapi.device.Device.TYPE
-
-Returns the enum constant of this type with the specified name.
-
-valueOf(String) - Static method in enum com.amd.aparapi.internal.exception.ClassParseException.TYPE
-
-Returns the enum constant of this type with the specified name.
-
-valueOf(String) - Static method in enum com.amd.aparapi.internal.instruction.InstructionSet.ByteCode
-
-Returns the enum constant of this type with the specified name.
-
-valueOf(String) - Static method in enum com.amd.aparapi.internal.instruction.InstructionSet.ImmediateSpec
-
-Returns the enum constant of this type with the specified name.
-
-valueOf(String) - Static method in enum com.amd.aparapi.internal.instruction.InstructionSet.Operator
-
-Returns the enum constant of this type with the specified name.
-
-valueOf(String) - Static method in enum com.amd.aparapi.internal.instruction.InstructionSet.PopSpec
-
-Returns the enum constant of this type with the specified name.
-
-valueOf(String) - Static method in enum com.amd.aparapi.internal.instruction.InstructionSet.PushSpec
-
-Returns the enum constant of this type with the specified name.
-
-valueOf(String) - Static method in enum com.amd.aparapi.internal.instruction.InstructionSet.TypeSpec
-
-Returns the enum constant of this type with the specified name.
-
-valueOf(String) - Static method in enum com.amd.aparapi.internal.model.ClassModel.Access
-
-Returns the enum constant of this type with the specified name.
-
-valueOf(String) - Static method in enum com.amd.aparapi.internal.model.ClassModel.ConstantPoolType
-
-Returns the enum constant of this type with the specified name.
-
-valueOf(String) - Static method in enum com.amd.aparapi.Kernel.EXECUTION_MODE
-
-Returns the enum constant of this type with the specified name.
-
-values() - Static method in enum com.amd.aparapi.device.Device.TYPE
-
-Returns an array containing the constants of this enum type, in
-the order they are declared.
-
-values() - Static method in enum com.amd.aparapi.internal.exception.ClassParseException.TYPE
-
-Returns an array containing the constants of this enum type, in
-the order they are declared.
-
-values() - Static method in enum com.amd.aparapi.internal.instruction.InstructionSet.ByteCode
-
-Returns an array containing the constants of this enum type, in
-the order they are declared.
-
-values() - Static method in enum com.amd.aparapi.internal.instruction.InstructionSet.ImmediateSpec
-
-Returns an array containing the constants of this enum type, in
-the order they are declared.
-
-values() - Static method in enum com.amd.aparapi.internal.instruction.InstructionSet.Operator
-
-Returns an array containing the constants of this enum type, in
-the order they are declared.
-
-values() - Static method in enum com.amd.aparapi.internal.instruction.InstructionSet.PopSpec
-
-Returns an array containing the constants of this enum type, in
-the order they are declared.
-
-values() - Static method in enum com.amd.aparapi.internal.instruction.InstructionSet.PushSpec
-
-Returns an array containing the constants of this enum type, in
-the order they are declared.
-
-values() - Static method in enum com.amd.aparapi.internal.instruction.InstructionSet.TypeSpec
-
-Returns an array containing the constants of this enum type, in
-the order they are declared.
-
-values() - Static method in enum com.amd.aparapi.internal.model.ClassModel.Access
-
-Returns an array containing the constants of this enum type, in
-the order they are declared.
-
-values() - Static method in enum com.amd.aparapi.internal.model.ClassModel.ConstantPoolType
-
-Returns an array containing the constants of this enum type, in
-the order they are declared.
-
-values() - Static method in enum com.amd.aparapi.Kernel.EXECUTION_MODE
-
-Returns an array containing the constants of this enum type, in
-the order they are declared.
-
-verboseBytecodeLabels - Variable in class com.amd.aparapi.internal.tool.InstructionViewer.Options
-
-verboseComparitor - Static variable in class com.amd.aparapi.Config
-
-VGAP - Static variable in class com.amd.aparapi.internal.tool.InstructionViewer
-
-VMARGIN - Static variable in class com.amd.aparapi.internal.tool.InstructionViewer
-
-
-
A B C D E F G H I J K L M N O P R S T U V W _
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/index-files/index-22.html b/com.amd.aparapi/doc/api/index-files/index-22.html
deleted file mode 100644
index 2480adc1..00000000
--- a/com.amd.aparapi/doc/api/index-files/index-22.html
+++ /dev/null
@@ -1,166 +0,0 @@
-
-
-
-
-
-W-Index
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-A B C D E F G H I J K L M N O P R S T U V W _
-
-
-
W
-
-write(String) - Method in class com.amd.aparapi.internal.tool.InstructionHelper.StringWriter
-
-write(MethodModel) - Static method in class com.amd.aparapi.internal.tool.InstructionHelper.StringWriter
-
-write(Entrypoint) - Method in class com.amd.aparapi.internal.tool.InstructionHelper.StringWriter
-
-write(String) - Method in class com.amd.aparapi.internal.writer.BlockWriter
-
-write(BranchSet.LogicalExpressionNode) - Method in class com.amd.aparapi.internal.writer.BlockWriter
-
-write(Entrypoint) - Method in class com.amd.aparapi.internal.writer.BlockWriter
-
-write(Entrypoint) - Method in class com.amd.aparapi.internal.writer.KernelWriter
-
-writeBlock(Instruction, Instruction) - Method in class com.amd.aparapi.internal.writer.BlockWriter
-
-writeComposite(InstructionSet.CompositeInstruction) - Method in class com.amd.aparapi.internal.writer.BlockWriter
-
-writeConditional(BranchSet) - Method in class com.amd.aparapi.internal.writer.BlockWriter
-
-writeConditional(BranchSet, boolean) - Method in class com.amd.aparapi.internal.writer.BlockWriter
-
-writeConditionalBranch16(InstructionSet.ConditionalBranch16, boolean) - Method in class com.amd.aparapi.internal.writer.BlockWriter
-
-writeInstruction(Instruction) - Method in class com.amd.aparapi.internal.writer.BlockWriter
-
-writeInstruction(Instruction) - Method in class com.amd.aparapi.internal.writer.KernelWriter
-
-writeln(String) - Method in class com.amd.aparapi.internal.writer.BlockWriter
-
-writeMethod(InstructionSet.MethodCall, ClassModel.ConstantPool.MethodEntry) - Method in class com.amd.aparapi.internal.writer.BlockWriter
-
-writeMethod(InstructionSet.MethodCall, ClassModel.ConstantPool.MethodEntry) - Method in class com.amd.aparapi.internal.writer.KernelWriter
-
-writeMethodBody(MethodModel) - Method in class com.amd.aparapi.internal.tool.InstructionHelper.StringWriter
-
-writeMethodBody(MethodModel) - Method in class com.amd.aparapi.internal.writer.BlockWriter
-
-writePragma(String, boolean) - Method in class com.amd.aparapi.internal.writer.KernelWriter
-
-writeSequence(Instruction, Instruction) - Method in class com.amd.aparapi.internal.writer.BlockWriter
-
-writeThisRef() - Method in class com.amd.aparapi.internal.writer.BlockWriter
-
-writeThisRef() - Method in class com.amd.aparapi.internal.writer.KernelWriter
-
-writeToString(Entrypoint) - Static method in class com.amd.aparapi.internal.writer.KernelWriter
-
-
-
A B C D E F G H I J K L M N O P R S T U V W _
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/index-files/index-23.html b/com.amd.aparapi/doc/api/index-files/index-23.html
deleted file mode 100644
index b0f728f8..00000000
--- a/com.amd.aparapi/doc/api/index-files/index-23.html
+++ /dev/null
@@ -1,124 +0,0 @@
-
-
-
-
-
-_-Index
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-A B C D E F G H I J K L M N O P R S T U V W _
-
-
-
_
-
-__constant - Static variable in class com.amd.aparapi.internal.writer.KernelWriter
-
-__global - Static variable in class com.amd.aparapi.internal.writer.KernelWriter
-
-__local - Static variable in class com.amd.aparapi.internal.writer.KernelWriter
-
-
-
A B C D E F G H I J K L M N O P R S T U V W _
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/index-files/index-3.html b/com.amd.aparapi/doc/api/index-files/index-3.html
deleted file mode 100644
index d738a38e..00000000
--- a/com.amd.aparapi/doc/api/index-files/index-3.html
+++ /dev/null
@@ -1,521 +0,0 @@
-
-
-
-
-
-C-Index
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-A B C D E F G H I J K L M N O P R S T U V W _
-
-
-
C
-
-cast - Static variable in class com.amd.aparapi.internal.instruction.InstructionPattern
-
-checkForRecursion(Set<MethodModel>) - Method in class com.amd.aparapi.internal.model.MethodModel
-
-CL_KHR_3D_IMAGE_WRITES - Static variable in interface com.amd.aparapi.opencl.OpenCL
-
-CL_KHR_BYTE_ADDRESSABLE_SUPPORT - Static variable in interface com.amd.aparapi.opencl.OpenCL
-
-CL_KHR_FP16 - Static variable in interface com.amd.aparapi.opencl.OpenCL
-
-CL_KHR_FP64 - Static variable in interface com.amd.aparapi.opencl.OpenCL
-
-CL_KHR_GL_SHARING - Static variable in interface com.amd.aparapi.opencl.OpenCL
-
-CL_KHR_GLOBAL_INT32_BASE_ATOMICS - Static variable in interface com.amd.aparapi.opencl.OpenCL
-
-CL_KHR_GLOBAL_INT32_EXTENDED_ATOMICS - Static variable in interface com.amd.aparapi.opencl.OpenCL
-
-CL_KHR_INT64_BASE_ATOMICS - Static variable in interface com.amd.aparapi.opencl.OpenCL
-
-CL_KHR_INT64_EXTENDED_ATOMICS - Static variable in interface com.amd.aparapi.opencl.OpenCL
-
-CL_KHR_LOCAL_INT32_BASE_ATOMICS - Static variable in interface com.amd.aparapi.opencl.OpenCL
-
-CL_KHR_LOCAL_INT32_EXTENDED_ATOMICS - Static variable in interface com.amd.aparapi.opencl.OpenCL
-
-CL_KHR_SELECT_FPROUNDING_MODE - Static variable in interface com.amd.aparapi.opencl.OpenCL
-
-ClassModel - Class in com.amd.aparapi.internal.model
-
-Class represents a ClassFile (MyClass.class).
-
-ClassModel(Class<?>) - Constructor for class com.amd.aparapi.internal.model.ClassModel
-
-Create a ClassModel representing a given Class.
-
-ClassModel.Access - Enum in com.amd.aparapi.internal.model
-
-ClassModel.AttributePool - Class in com.amd.aparapi.internal.model
-
-ClassModel.AttributePool(ByteReader) - Constructor for class com.amd.aparapi.internal.model.ClassModel.AttributePool
-
-ClassModel.AttributePool.AttributePoolEntry - Class in com.amd.aparapi.internal.model
-
-ClassModel.AttributePool.AttributePoolEntry(ByteReader, int, int) - Constructor for class com.amd.aparapi.internal.model.ClassModel.AttributePool.AttributePoolEntry
-
-ClassModel.AttributePool.CodeEntry - Class in com.amd.aparapi.internal.model
-
-ClassModel.AttributePool.CodeEntry(ByteReader, int, int) - Constructor for class com.amd.aparapi.internal.model.ClassModel.AttributePool.CodeEntry
-
-ClassModel.AttributePool.CodeEntry.ExceptionPoolEntry - Class in com.amd.aparapi.internal.model
-
-ClassModel.AttributePool.CodeEntry.ExceptionPoolEntry(ByteReader) - Constructor for class com.amd.aparapi.internal.model.ClassModel.AttributePool.CodeEntry.ExceptionPoolEntry
-
-ClassModel.AttributePool.ConstantValueEntry - Class in com.amd.aparapi.internal.model
-
-ClassModel.AttributePool.ConstantValueEntry(ByteReader, int, int) - Constructor for class com.amd.aparapi.internal.model.ClassModel.AttributePool.ConstantValueEntry
-
-ClassModel.AttributePool.DeprecatedEntry - Class in com.amd.aparapi.internal.model
-
-ClassModel.AttributePool.DeprecatedEntry(ByteReader, int, int) - Constructor for class com.amd.aparapi.internal.model.ClassModel.AttributePool.DeprecatedEntry
-
-ClassModel.AttributePool.EnclosingMethodEntry - Class in com.amd.aparapi.internal.model
-
-ClassModel.AttributePool.EnclosingMethodEntry(ByteReader, int, int) - Constructor for class com.amd.aparapi.internal.model.ClassModel.AttributePool.EnclosingMethodEntry
-
-ClassModel.AttributePool.ExceptionEntry - Class in com.amd.aparapi.internal.model
-
-ClassModel.AttributePool.ExceptionEntry(ByteReader, int, int) - Constructor for class com.amd.aparapi.internal.model.ClassModel.AttributePool.ExceptionEntry
-
-ClassModel.AttributePool.InnerClassesEntry - Class in com.amd.aparapi.internal.model
-
-ClassModel.AttributePool.InnerClassesEntry(ByteReader, int, int) - Constructor for class com.amd.aparapi.internal.model.ClassModel.AttributePool.InnerClassesEntry
-
-ClassModel.AttributePool.InnerClassesEntry.InnerClassInfo - Class in com.amd.aparapi.internal.model
-
-ClassModel.AttributePool.InnerClassesEntry.InnerClassInfo(ByteReader) - Constructor for class com.amd.aparapi.internal.model.ClassModel.AttributePool.InnerClassesEntry.InnerClassInfo
-
-ClassModel.AttributePool.LineNumberTableEntry - Class in com.amd.aparapi.internal.model
-
-ClassModel.AttributePool.LineNumberTableEntry(ByteReader, int, int) - Constructor for class com.amd.aparapi.internal.model.ClassModel.AttributePool.LineNumberTableEntry
-
-ClassModel.AttributePool.LineNumberTableEntry.StartLineNumberPair - Class in com.amd.aparapi.internal.model
-
-ClassModel.AttributePool.LineNumberTableEntry.StartLineNumberPair(ByteReader) - Constructor for class com.amd.aparapi.internal.model.ClassModel.AttributePool.LineNumberTableEntry.StartLineNumberPair
-
-ClassModel.AttributePool.LocalVariableTableEntry - Class in com.amd.aparapi.internal.model
-
-ClassModel.AttributePool.LocalVariableTableEntry(ByteReader, int, int) - Constructor for class com.amd.aparapi.internal.model.ClassModel.AttributePool.LocalVariableTableEntry
-
-ClassModel.AttributePool.LocalVariableTableEntry.LocalVariableInfo - Class in com.amd.aparapi.internal.model
-
-ClassModel.AttributePool.LocalVariableTableEntry.LocalVariableInfo(ByteReader) - Constructor for class com.amd.aparapi.internal.model.ClassModel.AttributePool.LocalVariableTableEntry.LocalVariableInfo
-
-ClassModel.AttributePool.OtherEntry - Class in com.amd.aparapi.internal.model
-
-ClassModel.AttributePool.OtherEntry(ByteReader, int, int) - Constructor for class com.amd.aparapi.internal.model.ClassModel.AttributePool.OtherEntry
-
-ClassModel.AttributePool.PoolEntry <T > - Class in com.amd.aparapi.internal.model
-
-ClassModel.AttributePool.PoolEntry(ByteReader, int, int) - Constructor for class com.amd.aparapi.internal.model.ClassModel.AttributePool.PoolEntry
-
-ClassModel.AttributePool.RuntimeAnnotationsEntry - Class in com.amd.aparapi.internal.model
-
-ClassModel.AttributePool.RuntimeAnnotationsEntry(ByteReader, int, int) - Constructor for class com.amd.aparapi.internal.model.ClassModel.AttributePool.RuntimeAnnotationsEntry
-
-ClassModel.AttributePool.RuntimeAnnotationsEntry.AnnotationInfo - Class in com.amd.aparapi.internal.model
-
-ClassModel.AttributePool.RuntimeAnnotationsEntry.AnnotationInfo(ByteReader) - Constructor for class com.amd.aparapi.internal.model.ClassModel.AttributePool.RuntimeAnnotationsEntry.AnnotationInfo
-
-ClassModel.AttributePool.RuntimeAnnotationsEntry.AnnotationInfo.ElementValuePair - Class in com.amd.aparapi.internal.model
-
-ClassModel.AttributePool.RuntimeAnnotationsEntry.AnnotationInfo.ElementValuePair(ByteReader) - Constructor for class com.amd.aparapi.internal.model.ClassModel.AttributePool.RuntimeAnnotationsEntry.AnnotationInfo.ElementValuePair
-
-ClassModel.AttributePool.RuntimeAnnotationsEntry.AnnotationInfo.ElementValuePair.AnnotationValue - Class in com.amd.aparapi.internal.model
-
-ClassModel.AttributePool.RuntimeAnnotationsEntry.AnnotationInfo.ElementValuePair.ArrayValue - Class in com.amd.aparapi.internal.model
-
-ClassModel.AttributePool.RuntimeAnnotationsEntry.AnnotationInfo.ElementValuePair.ClassValue - Class in com.amd.aparapi.internal.model
-
-ClassModel.AttributePool.RuntimeAnnotationsEntry.AnnotationInfo.ElementValuePair.EnumValue - Class in com.amd.aparapi.internal.model
-
-ClassModel.AttributePool.RuntimeAnnotationsEntry.AnnotationInfo.ElementValuePair.PrimitiveValue - Class in com.amd.aparapi.internal.model
-
-ClassModel.AttributePool.RuntimeAnnotationsEntry.AnnotationInfo.ElementValuePair.PrimitiveValue(int, ByteReader) - Constructor for class com.amd.aparapi.internal.model.ClassModel.AttributePool.RuntimeAnnotationsEntry.AnnotationInfo.ElementValuePair.PrimitiveValue
-
-ClassModel.AttributePool.SignatureEntry - Class in com.amd.aparapi.internal.model
-
-ClassModel.AttributePool.SignatureEntry(ByteReader, int, int) - Constructor for class com.amd.aparapi.internal.model.ClassModel.AttributePool.SignatureEntry
-
-ClassModel.AttributePool.SourceFileEntry - Class in com.amd.aparapi.internal.model
-
-ClassModel.AttributePool.SourceFileEntry(ByteReader, int, int) - Constructor for class com.amd.aparapi.internal.model.ClassModel.AttributePool.SourceFileEntry
-
-ClassModel.AttributePool.SyntheticEntry - Class in com.amd.aparapi.internal.model
-
-ClassModel.AttributePool.SyntheticEntry(ByteReader, int, int) - Constructor for class com.amd.aparapi.internal.model.ClassModel.AttributePool.SyntheticEntry
-
-ClassModel.ClassModelField - Class in com.amd.aparapi.internal.model
-
-ClassModel.ClassModelField(ByteReader, int) - Constructor for class com.amd.aparapi.internal.model.ClassModel.ClassModelField
-
-ClassModel.ClassModelInterface - Class in com.amd.aparapi.internal.model
-
-ClassModel.ClassModelMethod - Class in com.amd.aparapi.internal.model
-
-ClassModel.ClassModelMethod(ByteReader, int) - Constructor for class com.amd.aparapi.internal.model.ClassModel.ClassModelMethod
-
-ClassModel.ConstantPool - Class in com.amd.aparapi.internal.model
-
-ClassModel.ConstantPool(ByteReader) - Constructor for class com.amd.aparapi.internal.model.ClassModel.ConstantPool
-
-ClassModel.ConstantPool.ClassEntry - Class in com.amd.aparapi.internal.model
-
-ClassModel.ConstantPool.ClassEntry(ByteReader, int) - Constructor for class com.amd.aparapi.internal.model.ClassModel.ConstantPool.ClassEntry
-
-ClassModel.ConstantPool.DoubleEntry - Class in com.amd.aparapi.internal.model
-
-ClassModel.ConstantPool.DoubleEntry(ByteReader, int) - Constructor for class com.amd.aparapi.internal.model.ClassModel.ConstantPool.DoubleEntry
-
-ClassModel.ConstantPool.EmptyEntry - Class in com.amd.aparapi.internal.model
-
-ClassModel.ConstantPool.EmptyEntry(ByteReader, int) - Constructor for class com.amd.aparapi.internal.model.ClassModel.ConstantPool.EmptyEntry
-
-ClassModel.ConstantPool.Entry - Class in com.amd.aparapi.internal.model
-
-ClassModel.ConstantPool.Entry(ByteReader, int, ClassModel.ConstantPoolType) - Constructor for class com.amd.aparapi.internal.model.ClassModel.ConstantPool.Entry
-
-ClassModel.ConstantPool.FieldEntry - Class in com.amd.aparapi.internal.model
-
-ClassModel.ConstantPool.FieldEntry(ByteReader, int) - Constructor for class com.amd.aparapi.internal.model.ClassModel.ConstantPool.FieldEntry
-
-ClassModel.ConstantPool.FloatEntry - Class in com.amd.aparapi.internal.model
-
-ClassModel.ConstantPool.FloatEntry(ByteReader, int) - Constructor for class com.amd.aparapi.internal.model.ClassModel.ConstantPool.FloatEntry
-
-ClassModel.ConstantPool.IntegerEntry - Class in com.amd.aparapi.internal.model
-
-ClassModel.ConstantPool.IntegerEntry(ByteReader, int) - Constructor for class com.amd.aparapi.internal.model.ClassModel.ConstantPool.IntegerEntry
-
-ClassModel.ConstantPool.InterfaceMethodEntry - Class in com.amd.aparapi.internal.model
-
-ClassModel.ConstantPool.LongEntry - Class in com.amd.aparapi.internal.model
-
-ClassModel.ConstantPool.LongEntry(ByteReader, int) - Constructor for class com.amd.aparapi.internal.model.ClassModel.ConstantPool.LongEntry
-
-ClassModel.ConstantPool.MethodEntry - Class in com.amd.aparapi.internal.model
-
-ClassModel.ConstantPool.MethodEntry(ByteReader, int) - Constructor for class com.amd.aparapi.internal.model.ClassModel.ConstantPool.MethodEntry
-
-ClassModel.ConstantPool.MethodReferenceEntry - Class in com.amd.aparapi.internal.model
-
-ClassModel.ConstantPool.MethodReferenceEntry(ByteReader, int, ClassModel.ConstantPoolType) - Constructor for class com.amd.aparapi.internal.model.ClassModel.ConstantPool.MethodReferenceEntry
-
-ClassModel.ConstantPool.MethodReferenceEntry.Arg - Class in com.amd.aparapi.internal.model
-
-ClassModel.ConstantPool.NameAndTypeEntry - Class in com.amd.aparapi.internal.model
-
-ClassModel.ConstantPool.NameAndTypeEntry(ByteReader, int) - Constructor for class com.amd.aparapi.internal.model.ClassModel.ConstantPool.NameAndTypeEntry
-
-ClassModel.ConstantPool.ReferenceEntry - Class in com.amd.aparapi.internal.model
-
-ClassModel.ConstantPool.ReferenceEntry(ByteReader, int, ClassModel.ConstantPoolType) - Constructor for class com.amd.aparapi.internal.model.ClassModel.ConstantPool.ReferenceEntry
-
-ClassModel.ConstantPool.ReferenceEntry.Type - Class in com.amd.aparapi.internal.model
-
-ClassModel.ConstantPool.ReferenceEntry.Type(String) - Constructor for class com.amd.aparapi.internal.model.ClassModel.ConstantPool.ReferenceEntry.Type
-
-ClassModel.ConstantPool.StringEntry - Class in com.amd.aparapi.internal.model
-
-ClassModel.ConstantPool.StringEntry(ByteReader, int) - Constructor for class com.amd.aparapi.internal.model.ClassModel.ConstantPool.StringEntry
-
-ClassModel.ConstantPool.UTF8Entry - Class in com.amd.aparapi.internal.model
-
-ClassModel.ConstantPool.UTF8Entry(ByteReader, int) - Constructor for class com.amd.aparapi.internal.model.ClassModel.ConstantPool.UTF8Entry
-
-ClassModel.ConstantPoolType - Enum in com.amd.aparapi.internal.model
-
-ClassModel.MethodDescription - Class in com.amd.aparapi.internal.model
-
-ClassModel.MethodDescription(String, String, String, String[]) - Constructor for class com.amd.aparapi.internal.model.ClassModel.MethodDescription
-
-ClassParseException - Exception in com.amd.aparapi.internal.exception
-
-We throw ClassParseExceptions (derived from AparapiException) if we encounter any Aparapi unfriendly
- constructs.
-
-ClassParseException(ClassParseException.TYPE) - Constructor for exception com.amd.aparapi.internal.exception.ClassParseException
-
-ClassParseException(Instruction, ClassParseException.TYPE) - Constructor for exception com.amd.aparapi.internal.exception.ClassParseException
-
-ClassParseException(ClassParseException.TYPE, String) - Constructor for exception com.amd.aparapi.internal.exception.ClassParseException
-
-ClassParseException(Throwable) - Constructor for exception com.amd.aparapi.internal.exception.ClassParseException
-
-ClassParseException.TYPE - Enum in com.amd.aparapi.internal.exception
-
-clear() - Method in class com.amd.aparapi.internal.tool.InstructionHelper.StringWriter
-
-clone() - Method in class com.amd.aparapi.Kernel
-
-When using a Java Thread Pool Aparapi uses clone to copy the initial instance to each thread.
-
-CodeGenException - Exception in com.amd.aparapi.internal.exception
-
-CodeGenException(String) - Constructor for exception com.amd.aparapi.internal.exception.CodeGenException
-
-CodeGenException(Throwable) - Constructor for exception com.amd.aparapi.internal.exception.CodeGenException
-
-collapseAll - Variable in class com.amd.aparapi.internal.tool.InstructionViewer.Options
-
-collapsedBranchTarget - Variable in class com.amd.aparapi.internal.tool.InstructionViewer.InstructionView
-
-com.amd.aparapi - package com.amd.aparapi
-
-com.amd.aparapi.annotation - package com.amd.aparapi.annotation
-
-com.amd.aparapi.device - package com.amd.aparapi.device
-
-com.amd.aparapi.exception - package com.amd.aparapi.exception
-
-com.amd.aparapi.internal.annotation - package com.amd.aparapi.internal.annotation
-
-com.amd.aparapi.internal.exception - package com.amd.aparapi.internal.exception
-
-com.amd.aparapi.internal.instruction - package com.amd.aparapi.internal.instruction
-
-com.amd.aparapi.internal.jni - package com.amd.aparapi.internal.jni
-
-com.amd.aparapi.internal.kernel - package com.amd.aparapi.internal.kernel
-
-com.amd.aparapi.internal.model - package com.amd.aparapi.internal.model
-
-com.amd.aparapi.internal.opencl - package com.amd.aparapi.internal.opencl
-
-com.amd.aparapi.internal.reader - package com.amd.aparapi.internal.reader
-
-com.amd.aparapi.internal.tool - package com.amd.aparapi.internal.tool
-
-com.amd.aparapi.internal.util - package com.amd.aparapi.internal.util
-
-com.amd.aparapi.internal.writer - package com.amd.aparapi.internal.writer
-
-com.amd.aparapi.opencl - package com.amd.aparapi.opencl
-
-compareTo(Instruction) - Method in class com.amd.aparapi.internal.instruction.Instruction
-
-CONDITIONAL_START - Static variable in class com.amd.aparapi.internal.tool.InstructionHelper.BranchVector
-
-Config - Class in com.amd.aparapi
-
-A central location for holding all runtime configurable properties as well as logging configuration.
-
-Config() - Constructor for class com.amd.aparapi.Config
-
-config - Variable in class com.amd.aparapi.internal.tool.InstructionViewer
-
-Config.InstructionListener - Interface in com.amd.aparapi
-
-ConfigJNI - Class in com.amd.aparapi.internal.jni
-
-This class is intended to be used as a 'proxy' or 'facade' object for Java code to interact with JNI
-
-ConfigJNI() - Constructor for class com.amd.aparapi.internal.jni.ConfigJNI
-
-constant - Static variable in class com.amd.aparapi.internal.instruction.InstructionPattern
-
-CONSTANT_ANNOTATION_NAME - Static variable in class com.amd.aparapi.internal.writer.KernelWriter
-
-CONSTANT_SUFFIX - Static variable in class com.amd.aparapi.Kernel
-
-We can use this suffix to 'tag' intended constant buffers.
-
-consumesStack() - Method in class com.amd.aparapi.internal.instruction.Instruction
-
-convert(int) - Method in enum com.amd.aparapi.internal.model.ClassModel.Access
-
-convert(String) - Static method in class com.amd.aparapi.internal.model.ClassModel
-
-convert(String, String) - Static method in class com.amd.aparapi.internal.model.ClassModel
-
-convert(String, String, boolean) - Static method in class com.amd.aparapi.internal.model.ClassModel
-
-convertCast(String) - Method in class com.amd.aparapi.internal.writer.BlockWriter
-
-convertType(String, boolean) - Method in class com.amd.aparapi.internal.writer.BlockWriter
-
-convertType(String, boolean) - Method in class com.amd.aparapi.internal.writer.KernelWriter
-
-These three convert functions are here to perform
- any type conversion that may be required between
- Java and OpenCL.
-
-create(MethodModel, ByteReader) - Static method in enum com.amd.aparapi.internal.instruction.InstructionSet.ByteCode
-
-create(InstructionSet.ByteCode, MethodModel, Instruction, Instruction, BranchSet) - Static method in class com.amd.aparapi.internal.instruction.InstructionSet.CompositeInstruction
-
-create(Device, int, int) - Static method in class com.amd.aparapi.Range
-
-Create a one dimensional range 0.._globalWidth which is processed in groups of size _localWidth.
-
-create(Device, int) - Static method in class com.amd.aparapi.Range
-
-Create a one dimensional range 0.._globalWidth with an undefined group size.
-
-create(int, int) - Static method in class com.amd.aparapi.Range
-
-create(int) - Static method in class com.amd.aparapi.Range
-
-create2D(Device, int, int, int, int) - Static method in class com.amd.aparapi.Range
-
-Create a two dimensional range 0.._globalWidth x 0.._globalHeight using a group which is _localWidth x _localHeight in size.
-
-create2D(Device, int, int) - Static method in class com.amd.aparapi.Range
-
-Create a two dimensional range 0.._globalWidth * 0.._globalHeight choosing suitable values for localWidth and localHeight.
-
-create2D(int, int, int, int) - Static method in class com.amd.aparapi.Range
-
-create2D(int, int) - Static method in class com.amd.aparapi.Range
-
-create3D(Device, int, int, int, int, int, int) - Static method in class com.amd.aparapi.Range
-
-Create a two dimensional range 0.._globalWidth * 0.._globalHeight *0../_globalDepth
- in groups defined by localWidth * localHeight * localDepth.
-
-create3D(Device, int, int, int) - Static method in class com.amd.aparapi.Range
-
-Create a three dimensional range 0.._globalWidth * 0.._globalHeight *0../_globalDepth
- choosing suitable values for localWidth, localHeight and localDepth.
-
-create3D(int, int, int) - Static method in class com.amd.aparapi.Range
-
-create3D(int, int, int, int, int, int) - Static method in class com.amd.aparapi.Range
-
-createKernel() - Method in class com.amd.aparapi.internal.opencl.OpenCLKernel
-
-createList(Instruction) - Method in class com.amd.aparapi.internal.instruction.ExpressionList
-
-[1] [2] [3] [4]
-
- Note that passing null here essentially deletes the existing expression list and returns the expression
-
-createListOfInstructions() - Method in class com.amd.aparapi.internal.model.MethodModel
-
-Create a linked list of instructions (from pcHead to pcTail).
-
-createProgram(OpenCLDevice) - Method in class com.amd.aparapi.internal.opencl.OpenCLProgram
-
-createRange(int) - Method in class com.amd.aparapi.device.Device
-
-createRange(int, int) - Method in class com.amd.aparapi.device.Device
-
-createRange2D(int, int) - Method in class com.amd.aparapi.device.Device
-
-createRange2D(int, int, int, int) - Method in class com.amd.aparapi.device.Device
-
-createRange3D(int, int, int) - Method in class com.amd.aparapi.device.Device
-
-createRange3D(int, int, int, int, int, int) - Method in class com.amd.aparapi.device.Device
-
-CURVEBOW - Static variable in class com.amd.aparapi.internal.tool.InstructionViewer
-
-
-
A B C D E F G H I J K L M N O P R S T U V W _
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/index-files/index-4.html b/com.amd.aparapi/doc/api/index-files/index-4.html
deleted file mode 100644
index 95172b73..00000000
--- a/com.amd.aparapi/doc/api/index-files/index-4.html
+++ /dev/null
@@ -1,174 +0,0 @@
-
-
-
-
-
-D-Index
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-A B C D E F G H I J K L M N O P R S T U V W _
-
-
-
D
-
-d8() - Method in class com.amd.aparapi.internal.reader.ByteReader
-
-data(Object...) - Method in class com.amd.aparapi.internal.tool.InstructionHelper.Table
-
-deoptimizeReverseBranches() - Method in class com.amd.aparapi.internal.model.MethodModel
-
-Javac optimizes some branches to avoid goto->goto, branch->goto etc.
-
-DeprecatedException - Exception in com.amd.aparapi.exception
-
-DeprecatedException(String) - Constructor for exception com.amd.aparapi.exception.DeprecatedException
-
-Device - Class in com.amd.aparapi.device
-
-Device() - Constructor for class com.amd.aparapi.device.Device
-
-Device.TYPE - Enum in com.amd.aparapi.device
-
-dim - Variable in class com.amd.aparapi.internal.tool.InstructionViewer.InstructionView
-
-dirty() - Method in class com.amd.aparapi.internal.tool.InstructionViewer
-
-disableUnsafe - Static variable in class com.amd.aparapi.Config
-
-Disable Unsafe
-
-dispose() - Method in class com.amd.aparapi.internal.kernel.KernelRunner
-
-Kernel.dispose() delegates to KernelRunner.dispose() which delegates to disposeJNI() to actually close JNI data structures.
-
-dispose() - Method in class com.amd.aparapi.Kernel
-
-Release any resources associated with this Kernel.
-
-DocMe - Annotation Type in com.amd.aparapi.internal.annotation
-
-Use this annotation to tag stuff that needs Java Doc added
-
-doesNotContainCompositeOrBranch(Instruction, Instruction) - Method in class com.amd.aparapi.internal.instruction.ExpressionList
-
-doesNotContainContinueOrBreak(Instruction, Instruction) - Method in class com.amd.aparapi.internal.instruction.ExpressionList
-
-Determine whether the sequence of instructions from _start to _extent is free of branches which extend beyond _extent.
-
-doorbell - Static variable in class com.amd.aparapi.internal.tool.InstructionViewer
-
-draw(Graphics) - Method in class com.amd.aparapi.internal.tool.InstructionViewer
-
-draw(Graphics2D, Shape) - Method in class com.amd.aparapi.internal.tool.InstructionViewer
-
-dumpDiagram(Instruction) - Method in class com.amd.aparapi.internal.instruction.ExpressionList
-
-Aids debugging.
-
-dumpFlags - Static variable in class com.amd.aparapi.Config
-
-
-
A B C D E F G H I J K L M N O P R S T U V W _
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/index-files/index-5.html b/com.amd.aparapi/doc/api/index-files/index-5.html
deleted file mode 100644
index f586cdbb..00000000
--- a/com.amd.aparapi/doc/api/index-files/index-5.html
+++ /dev/null
@@ -1,246 +0,0 @@
-
-
-
-
-
-E-Index
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-A B C D E F G H I J K L M N O P R S T U V W _
-
-
-
E
-
-edge(Graphics2D, Color, InstructionViewer.InstructionView, InstructionViewer.InstructionView, String, String) - Method in class com.amd.aparapi.internal.tool.InstructionViewer
-
-edgeCurve - Variable in class com.amd.aparapi.internal.tool.InstructionViewer.Options
-
-edgeFan - Variable in class com.amd.aparapi.internal.tool.InstructionViewer.Options
-
-EDGEGAP - Static variable in class com.amd.aparapi.internal.tool.InstructionViewer
-
-enableARETURN - Static variable in class com.amd.aparapi.Config
-
-enableARRAYLENGTH - Static variable in class com.amd.aparapi.Config
-
-enableATHROW - Static variable in class com.amd.aparapi.Config
-
-enableAtomic32 - Static variable in class com.amd.aparapi.Config
-
-enableAtomic64 - Static variable in class com.amd.aparapi.Config
-
-enableByteWrites - Static variable in class com.amd.aparapi.Config
-
-enableDoubles - Static variable in class com.amd.aparapi.Config
-
-enableExecutionModeReporting - Static variable in class com.amd.aparapi.Config
-
-Allows the user to request that the execution mode of each kernel invocation be reported to stdout.
-
-enableGETSTATIC - Static variable in class com.amd.aparapi.Config
-
-enableInstructionDecodeViewer - Static variable in class com.amd.aparapi.Config
-
-enableINVOKEINTERFACE - Static variable in class com.amd.aparapi.Config
-
-enableMETHODARRAYPASSING - Static variable in class com.amd.aparapi.Config
-
-enableMONITOR - Static variable in class com.amd.aparapi.Config
-
-enableNEW - Static variable in class com.amd.aparapi.Config
-
-enableProfiling - Static variable in class com.amd.aparapi.internal.jni.ConfigJNI
-
-Allows the user to turn on OpenCL profiling for the JNI/OpenCL layer.
-
-enableProfilingCSV - Static variable in class com.amd.aparapi.internal.jni.ConfigJNI
-
-Allows the user to turn on OpenCL profiling for the JNI/OpenCL layer, this information will be written to CSV file
-
- Usage -Dcom.amd.aparapi.enableProfiling={true|false}
-
-enablePUTFIELD - Static variable in class com.amd.aparapi.Config
-
-enablePUTSTATIC - Static variable in class com.amd.aparapi.Config
-
-enableShowFakeLocalVariableTable - Static variable in class com.amd.aparapi.Config
-
-enableShowGeneratedOpenCL - Static variable in class com.amd.aparapi.Config
-
-Allows the user to request that generated OpenCL code is dumped to standard out.
-
-enableSWITCH - Static variable in class com.amd.aparapi.Config
-
-enableVerboseJNI - Static variable in class com.amd.aparapi.internal.jni.ConfigJNI
-
-Allows the user to request that verbose JNI messages be dumped to stderr.
-
-enableVerboseJNIOpenCLResourceTracking - Static variable in class com.amd.aparapi.internal.jni.ConfigJNI
-
-Allows the user to request tracking of opencl resources.
-
-end() - Method in interface com.amd.aparapi.opencl.OpenCL
-
-end() - Method in class com.amd.aparapi.opencl.OpenCLAdapter
-
-Entrypoint - Class in com.amd.aparapi.internal.model
-
-Entrypoint(ClassModel, MethodModel, Object) - Constructor for class com.amd.aparapi.internal.model.Entrypoint
-
-equals(Object) - Method in class com.amd.aparapi.internal.model.ClassModel.ConstantPool.MethodReferenceEntry
-
-equals(Object) - Method in class com.amd.aparapi.internal.tool.InstructionHelper.BranchVector
-
-execute(Kernel.Entry, Range, int) - Method in class com.amd.aparapi.internal.kernel.KernelRunner
-
-execute(String, Range, int) - Method in class com.amd.aparapi.internal.kernel.KernelRunner
-
-execute(Range) - Method in class com.amd.aparapi.Kernel.Entry
-
-execute(Range) - Method in class com.amd.aparapi.Kernel
-
-Start execution of _range kernels.
-
-execute(int) - Method in class com.amd.aparapi.Kernel
-
-Start execution of _range kernels.
-
-execute(Range, int) - Method in class com.amd.aparapi.Kernel
-
-Start execution of _passes iterations of _range kernels.
-
-execute(int, int) - Method in class com.amd.aparapi.Kernel
-
-Start execution of _passes iterations over the _range of kernels.
-
-execute(Kernel.Entry, Range) - Method in class com.amd.aparapi.Kernel
-
-Start execution of globalSize kernels for the given entrypoint.
-
-execute(String, Range) - Method in class com.amd.aparapi.Kernel
-
-Start execution of globalSize kernels for the given entrypoint.
-
-execute(String, Range, int) - Method in class com.amd.aparapi.Kernel
-
-Start execution of globalSize kernels for the given entrypoint.
-
-executionMode - Static variable in class com.amd.aparapi.Config
-
-Allows the user to request a specific Kernel.EXECUTION_MODE enum value for all Kernels.
-
-Experimental - Annotation Type in com.amd.aparapi.annotation
-
-Used to tag experimental features (methods/fields)
-
-ExpressionList - Class in com.amd.aparapi.internal.instruction
-
-Essentially a glorified linked list of Instructions plus some additional state to allow us to transform sequences.
-
-ExpressionList(MethodModel) - Constructor for class com.amd.aparapi.internal.instruction.ExpressionList
-
-
-
A B C D E F G H I J K L M N O P R S T U V W _
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/index-files/index-6.html b/com.amd.aparapi/doc/api/index-files/index-6.html
deleted file mode 100644
index 10cd37d7..00000000
--- a/com.amd.aparapi/doc/api/index-files/index-6.html
+++ /dev/null
@@ -1,154 +0,0 @@
-
-
-
-
-
-F-Index
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-A B C D E F G H I J K L M N O P R S T U V W _
-
-
-
F
-
-f4() - Method in class com.amd.aparapi.internal.reader.ByteReader
-
-FALSE - Static variable in class com.amd.aparapi.internal.instruction.InstructionPattern.InstructionMatch
-
-fieldArrayElementAccess - Static variable in class com.amd.aparapi.internal.instruction.InstructionPattern
-
-fieldArrayElementMinusOne - Static variable in class com.amd.aparapi.internal.instruction.InstructionPattern
-
-fieldArrayElementPlusOne - Static variable in class com.amd.aparapi.internal.instruction.InstructionPattern
-
-fieldMinusOne - Static variable in class com.amd.aparapi.internal.instruction.InstructionPattern
-
-fieldPlusOne - Static variable in class com.amd.aparapi.internal.instruction.InstructionPattern
-
-fill(Graphics2D, Color, Shape) - Method in class com.amd.aparapi.internal.tool.InstructionViewer
-
-fill(Graphics2D, Shape) - Method in class com.amd.aparapi.internal.tool.InstructionViewer
-
-fillStroke(Graphics2D, Color, Color, Stroke, Shape) - Method in class com.amd.aparapi.internal.tool.InstructionViewer
-
-findEndOfConditionalBranchSet(Instruction) - Method in class com.amd.aparapi.internal.instruction.InstructionSet.ConditionalBranch
-
-first(Device.TYPE) - Static method in class com.amd.aparapi.device.Device
-
-firstCPU() - Static method in class com.amd.aparapi.device.Device
-
-firstGPU() - Static method in class com.amd.aparapi.device.Device
-
-fold - Variable in class com.amd.aparapi.internal.tool.InstructionViewer.Options
-
-foldComposite(Instruction) - Method in class com.amd.aparapi.internal.instruction.ExpressionList
-
-Fold headTail.tail into valid composites
-
-format(Object...) - Method in class com.amd.aparapi.internal.tool.InstructionHelper.Table.Col
-
-
-
A B C D E F G H I J K L M N O P R S T U V W _
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/index-files/index-7.html b/com.amd.aparapi/doc/api/index-files/index-7.html
deleted file mode 100644
index 5f897bcf..00000000
--- a/com.amd.aparapi/doc/api/index-files/index-7.html
+++ /dev/null
@@ -1,1448 +0,0 @@
-
-
-
-
-
-G-Index
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-A B C D E F G H I J K L M N O P R S T U V W _
-
-
-
G
-
-get(int) - Static method in enum com.amd.aparapi.internal.instruction.InstructionSet.ByteCode
-
-get(Object) - Method in class com.amd.aparapi.internal.kernel.KernelRunner
-
-Enqueue a request to return this array from the GPU.
-
-get(int) - Method in class com.amd.aparapi.internal.model.ClassModel.ConstantPool
-
-get(int) - Method in class com.amd.aparapi.internal.tool.InstructionHelper.Table.Col
-
-get(long[]) - Method in class com.amd.aparapi.Kernel
-
-Enqueue a request to return this buffer from the GPU.
-
-get(double[]) - Method in class com.amd.aparapi.Kernel
-
-Enqueue a request to return this buffer from the GPU.
-
-get(float[]) - Method in class com.amd.aparapi.Kernel
-
-Enqueue a request to return this buffer from the GPU.
-
-get(int[]) - Method in class com.amd.aparapi.Kernel
-
-Enqueue a request to return this buffer from the GPU.
-
-get(byte[]) - Method in class com.amd.aparapi.Kernel
-
-Enqueue a request to return this buffer from the GPU.
-
-get(char[]) - Method in class com.amd.aparapi.Kernel
-
-Enqueue a request to return this buffer from the GPU.
-
-get(boolean[]) - Method in class com.amd.aparapi.Kernel
-
-Enqueue a request to return this buffer from the GPU.
-
-get(float[]) - Method in interface com.amd.aparapi.opencl.OpenCL
-
-get(int[]) - Method in interface com.amd.aparapi.opencl.OpenCL
-
-get(short[]) - Method in interface com.amd.aparapi.opencl.OpenCL
-
-get(char[]) - Method in interface com.amd.aparapi.opencl.OpenCL
-
-get(boolean[]) - Method in interface com.amd.aparapi.opencl.OpenCL
-
-get(double[]) - Method in interface com.amd.aparapi.opencl.OpenCL
-
-get(byte[]) - Method in interface com.amd.aparapi.opencl.OpenCL
-
-get(byte[]) - Method in class com.amd.aparapi.opencl.OpenCLAdapter
-
-get(float[]) - Method in class com.amd.aparapi.opencl.OpenCLAdapter
-
-get(int[]) - Method in class com.amd.aparapi.opencl.OpenCLAdapter
-
-get(short[]) - Method in class com.amd.aparapi.opencl.OpenCLAdapter
-
-get(char[]) - Method in class com.amd.aparapi.opencl.OpenCLAdapter
-
-get(boolean[]) - Method in class com.amd.aparapi.opencl.OpenCLAdapter
-
-get(double[]) - Method in class com.amd.aparapi.opencl.OpenCLAdapter
-
-getAbsolute() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.Branch
-
-getAbsolute(int) - Method in class com.amd.aparapi.internal.instruction.InstructionSet.Switch
-
-getAccessFlags() - Method in class com.amd.aparapi.internal.model.ClassModel.ClassModelField
-
-getAccessFlags() - Method in class com.amd.aparapi.internal.model.ClassModel.ClassModelMethod
-
-getAccessFlags() - Method in class com.amd.aparapi.internal.model.ClassModel
-
-getAccessorVariableFieldEntry() - Method in class com.amd.aparapi.internal.model.MethodModel
-
-getAccumulatedExecutionTime() - Method in class com.amd.aparapi.internal.kernel.KernelRunner
-
-Determine the accumulated execution time of all previous Kernel.execute(range) calls.
-
-getAccumulatedExecutionTime() - Method in class com.amd.aparapi.Kernel
-
-Determine the total execution time of all previous Kernel.execute(range) calls.
-
-getAdjust() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_IINC
-
-getArg(int) - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_INVOKEDYNAMIC
-
-getArg(int) - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_INVOKEINTERFACE
-
-getArg(int) - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_INVOKESPECIAL
-
-getArg(int) - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_INVOKESTATIC
-
-getArg(int) - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_INVOKEVIRTUAL
-
-getArg(int) - Method in interface com.amd.aparapi.internal.instruction.InstructionSet.InterfaceConstantPoolMethodIndexAccessor
-
-getArg(int) - Method in interface com.amd.aparapi.internal.instruction.InstructionSet.MethodCall
-
-getArgs(Method) - Method in class com.amd.aparapi.device.OpenCLDevice
-
-getArgs() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_INVOKEDYNAMIC
-
-getArgs() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_INVOKEINTERFACE
-
-getArgs() - Method in interface com.amd.aparapi.internal.instruction.InstructionSet.InterfaceConstantPoolMethodIndexAccessor
-
-getArgs() - Method in class com.amd.aparapi.internal.model.ClassModel.ConstantPool.MethodReferenceEntry
-
-getArgs() - Method in class com.amd.aparapi.internal.model.ClassModel.MethodDescription
-
-getArrayDimensions() - Method in class com.amd.aparapi.internal.model.ClassModel.ConstantPool.ReferenceEntry.Type
-
-getArrayFieldAccesses() - Method in class com.amd.aparapi.internal.model.Entrypoint
-
-getArrayFieldArrayLengthUsed() - Method in class com.amd.aparapi.internal.model.Entrypoint
-
-getArrayFieldAssignments() - Method in class com.amd.aparapi.internal.model.Entrypoint
-
-getArrayIndex() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.ArrayAccess
-
-getArrayRef() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.ArrayAccess
-
-getAssignToArrayElement() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.FieldArrayElementAssign
-
-getAssignToArrayElement() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.FieldArrayElementIncrement
-
-getAssignToLocalVariable() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.InlineAssignInstruction
-
-getAttributePool() - Method in class com.amd.aparapi.internal.model.ClassModel.AttributePool.AttributePoolEntry
-
-getAttributePool() - Method in class com.amd.aparapi.internal.model.ClassModel.AttributePool.CodeEntry
-
-getAttributePool() - Method in class com.amd.aparapi.internal.model.ClassModel.ClassModelField
-
-getAttributePool() - Method in class com.amd.aparapi.internal.model.ClassModel.ClassModelMethod
-
-getAttributePool() - Method in class com.amd.aparapi.internal.model.ClassModel
-
-getBoolean(Object, long) - Static method in class com.amd.aparapi.internal.util.UnsafeWrapper
-
-getBranch() - Method in class com.amd.aparapi.internal.instruction.BranchSet.SimpleLogicalExpressionNode
-
-getBranches() - Method in class com.amd.aparapi.internal.instruction.BranchSet
-
-getBranchSet() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.CompositeInstruction
-
-getBranchSet() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.ConditionalBranch
-
-getByte(Object, long) - Static method in class com.amd.aparapi.internal.util.UnsafeWrapper
-
-getByteCode() - Method in class com.amd.aparapi.internal.instruction.Instruction
-
-getBytes() - Method in class com.amd.aparapi.internal.model.ClassModel.AttributePool.OtherEntry
-
-getCalledMethods() - Method in class com.amd.aparapi.internal.model.Entrypoint
-
-getCalledMethods() - Method in class com.amd.aparapi.internal.model.MethodModel
-
-getCallTarget(ClassModel.ConstantPool.MethodEntry, boolean) - Method in class com.amd.aparapi.internal.model.Entrypoint
-
-getClassEntry() - Method in class com.amd.aparapi.internal.model.ClassModel.AttributePool.CodeEntry.ExceptionPoolEntry
-
-getClassEntry(int) - Method in class com.amd.aparapi.internal.model.ClassModel.ConstantPool
-
-getClassEntry() - Method in class com.amd.aparapi.internal.model.ClassModel.ConstantPool.ReferenceEntry
-
-getClassIndex() - Method in class com.amd.aparapi.internal.model.ClassModel.AttributePool.CodeEntry.ExceptionPoolEntry
-
-getClassIndex() - Method in class com.amd.aparapi.internal.model.ClassModel.AttributePool.EnclosingMethodEntry
-
-getClassIndex() - Method in class com.amd.aparapi.internal.model.ClassModel.ConstantPool.ReferenceEntry
-
-getClassModel() - Method in class com.amd.aparapi.internal.model.ClassModel.ClassModelMethod
-
-getClassModel() - Method in class com.amd.aparapi.internal.model.Entrypoint
-
-getClassName() - Method in class com.amd.aparapi.internal.model.ClassModel.MethodDescription
-
-getClassWeAreModelling() - Method in class com.amd.aparapi.internal.model.ClassModel
-
-getCode() - Method in enum com.amd.aparapi.internal.instruction.InstructionSet.ByteCode
-
-getCode() - Method in class com.amd.aparapi.internal.model.ClassModel.AttributePool.CodeEntry
-
-getCode() - Method in class com.amd.aparapi.internal.model.ClassModel.ClassModelMethod
-
-getCodeEntry() - Method in class com.amd.aparapi.internal.model.ClassModel.AttributePool
-
-getCodeEntry() - Method in class com.amd.aparapi.internal.model.ClassModel.ClassModelMethod
-
-getCommon() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.MultiAssignInstruction
-
-getCompliment() - Method in enum com.amd.aparapi.internal.instruction.InstructionSet.Operator
-
-getConstantEntry(int) - Method in class com.amd.aparapi.internal.model.ClassModel.ConstantPool
-
-getConstantPool() - Method in class com.amd.aparapi.internal.model.ClassModel.ClassModelMethod
-
-getConstantPool() - Method in class com.amd.aparapi.internal.model.ClassModel
-
-getConstantPool() - Method in class com.amd.aparapi.internal.model.MethodModel
-
-getConstantPoolEntry() - Method in interface com.amd.aparapi.internal.instruction.InstructionSet.ConstantPoolEntryConstant
-
-getConstantPoolEntry() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_LDC
-
-getConstantPoolEntry() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_LDC2_W
-
-getConstantPoolEntry() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_LDC_W
-
-getConstantPoolFieldEntry() - Method in interface com.amd.aparapi.internal.instruction.InstructionSet.FieldReference
-
-getConstantPoolFieldEntry() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_GETFIELD
-
-getConstantPoolFieldEntry() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_GETSTATIC
-
-getConstantPoolFieldEntry() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_PUTFIELD
-
-getConstantPoolFieldEntry() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_PUTSTATIC
-
-getConstantPoolFieldIndex() - Method in interface com.amd.aparapi.internal.instruction.InstructionSet.FieldReference
-
-getConstantPoolFieldIndex() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_GETFIELD
-
-getConstantPoolFieldIndex() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_GETSTATIC
-
-getConstantPoolFieldIndex() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_PUTFIELD
-
-getConstantPoolFieldIndex() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_PUTSTATIC
-
-getConstantPoolIndex() - Method in interface com.amd.aparapi.internal.instruction.InstructionSet.ConstantPoolEntryConstant
-
-getConstantPoolIndex() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_LDC
-
-getConstantPoolIndex() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_LDC2_W
-
-getConstantPoolIndex() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_LDC_W
-
-getConstantPoolInterfaceMethodEntry() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_INVOKEDYNAMIC
-
-getConstantPoolInterfaceMethodEntry() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_INVOKEINTERFACE
-
-getConstantPoolInterfaceMethodEntry() - Method in interface com.amd.aparapi.internal.instruction.InstructionSet.InterfaceConstantPoolMethodIndexAccessor
-
-getConstantPoolInterfaceMethodIndex() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_INVOKEDYNAMIC
-
-getConstantPoolInterfaceMethodIndex() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_INVOKEINTERFACE
-
-getConstantPoolInterfaceMethodIndex() - Method in interface com.amd.aparapi.internal.instruction.InstructionSet.InterfaceConstantPoolMethodIndexAccessor
-
-getConstantPoolMethodEntry() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_INVOKESPECIAL
-
-getConstantPoolMethodEntry() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_INVOKESTATIC
-
-getConstantPoolMethodEntry() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_INVOKEVIRTUAL
-
-getConstantPoolMethodEntry() - Method in interface com.amd.aparapi.internal.instruction.InstructionSet.MethodCall
-
-getConstantPoolMethodIndex() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_INVOKESPECIAL
-
-getConstantPoolMethodIndex() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_INVOKESTATIC
-
-getConstantPoolMethodIndex() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_INVOKEVIRTUAL
-
-getConstantPoolMethodIndex() - Method in interface com.amd.aparapi.internal.instruction.InstructionSet.MethodCall
-
-getConstantPoolReferences(ClassModel.ConstantPool.Entry) - Method in class com.amd.aparapi.internal.model.ClassModel.ConstantPool
-
-getConstantPoolType() - Method in class com.amd.aparapi.internal.model.ClassModel.ConstantPool.Entry
-
-getConstNameIndex() - Method in class com.amd.aparapi.internal.model.ClassModel.AttributePool.RuntimeAnnotationsEntry.AnnotationInfo.ElementValuePair.PrimitiveValue
-
-getContainer() - Method in class com.amd.aparapi.internal.tool.InstructionViewer
-
-getConversionTime() - Method in class com.amd.aparapi.internal.kernel.KernelRunner
-
-Determine the time taken to convert bytecode to OpenCL for first Kernel.execute(range) call.
-
-getConversionTime() - Method in class com.amd.aparapi.Kernel
-
-Determine the time taken to convert bytecode to OpenCL for first Kernel.execute(range) call.
-
-getDeclaringClass() - Method in class com.amd.aparapi.internal.model.ClassModel.ClassModelField
-
-getDelta() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_IINC
-
-getDeprecatedEntry() - Method in class com.amd.aparapi.internal.model.ClassModel.AttributePool
-
-getDescription() - Method in enum com.amd.aparapi.internal.exception.ClassParseException.TYPE
-
-getDescription() - Method in class com.amd.aparapi.internal.instruction.InstructionPattern.InstructionMatcher
-
-getDescription() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.CloneInstruction
-
-getDescription() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.CompositeInstruction
-
-getDescription() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.FakeGoto
-
-getDescription() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.FieldArrayElementAssign
-
-getDescription() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.FieldArrayElementIncrement
-
-getDescription() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_AALOAD
-
-getDescription() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_AASTORE
-
-getDescription() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_ACONST_NULL
-
-getDescription() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_ANEWARRAY
-
-getDescription() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_ARETURN
-
-getDescription() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_ARRAYLENGTH
-
-getDescription() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_ATHROW
-
-getDescription() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_BALOAD
-
-getDescription() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_BASTORE
-
-getDescription() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_BIPUSH
-
-getDescription() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_CALOAD
-
-getDescription() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_CASTORE
-
-getDescription() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_CHECKCAST
-
-getDescription() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_D2F
-
-getDescription() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_D2I
-
-getDescription() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_D2L
-
-getDescription() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_DADD
-
-getDescription() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_DALOAD
-
-getDescription() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_DASTORE
-
-getDescription() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_DCMPG
-
-getDescription() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_DCMPL
-
-getDescription() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_DCONST_0
-
-getDescription() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_DCONST_1
-
-getDescription() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_DDIV
-
-getDescription() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_DMUL
-
-getDescription() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_DNEG
-
-getDescription() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_DREM
-
-getDescription() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_DRETURN
-
-getDescription() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_DSUB
-
-getDescription() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_DUP
-
-getDescription() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_DUP2
-
-getDescription() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_DUP2_X1
-
-getDescription() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_DUP2_X2
-
-getDescription() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_DUP_X1
-
-getDescription() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_DUP_X2
-
-getDescription() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_END
-
-getDescription() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_F2D
-
-getDescription() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_F2I
-
-getDescription() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_F2L
-
-getDescription() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_FADD
-
-getDescription() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_FALOAD
-
-getDescription() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_FASTORE
-
-getDescription() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_FCMPG
-
-getDescription() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_FCMPL
-
-getDescription() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_FCONST_0
-
-getDescription() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_FCONST_1
-
-getDescription() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_FCONST_2
-
-getDescription() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_FDIV
-
-getDescription() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_FMUL
-
-getDescription() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_FNEG
-
-getDescription() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_FREM
-
-getDescription() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_FRETURN
-
-getDescription() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_FSUB
-
-getDescription() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_GETFIELD
-
-getDescription() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_GETSTATIC
-
-getDescription() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_GOTO
-
-getDescription() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_GOTO_W
-
-getDescription() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_I2B
-
-getDescription() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_I2C
-
-getDescription() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_I2D
-
-getDescription() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_I2F
-
-getDescription() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_I2L
-
-getDescription() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_I2S
-
-getDescription() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_IADD
-
-getDescription() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_IALOAD
-
-getDescription() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_IAND
-
-getDescription() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_IASTORE
-
-getDescription() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_ICONST_0
-
-getDescription() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_ICONST_1
-
-getDescription() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_ICONST_2
-
-getDescription() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_ICONST_3
-
-getDescription() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_ICONST_4
-
-getDescription() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_ICONST_5
-
-getDescription() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_ICONST_M1
-
-getDescription() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_IDIV
-
-getDescription() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_IF_ACMPEQ
-
-getDescription() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_IF_ACMPNE
-
-getDescription() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_IF_ICMPEQ
-
-getDescription() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_IF_ICMPGE
-
-getDescription() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_IF_ICMPGT
-
-getDescription() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_IF_ICMPLE
-
-getDescription() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_IF_ICMPLT
-
-getDescription() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_IF_ICMPNE
-
-getDescription() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_IFEQ
-
-getDescription() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_IFGE
-
-getDescription() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_IFGT
-
-getDescription() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_IFLE
-
-getDescription() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_IFLT
-
-getDescription() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_IFNE
-
-getDescription() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_IFNONNULL
-
-getDescription() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_IFNULL
-
-getDescription() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_IINC
-
-getDescription() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_IMUL
-
-getDescription() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_INEG
-
-getDescription() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_INSTANCEOF
-
-getDescription() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_INVOKEDYNAMIC
-
-getDescription() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_INVOKEINTERFACE
-
-getDescription() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_INVOKESPECIAL
-
-getDescription() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_INVOKESTATIC
-
-getDescription() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_INVOKEVIRTUAL
-
-getDescription() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_IOR
-
-getDescription() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_IREM
-
-getDescription() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_IRETURN
-
-getDescription() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_ISHL
-
-getDescription() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_ISHR
-
-getDescription() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_ISUB
-
-getDescription() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_IUSHR
-
-getDescription() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_IXOR
-
-getDescription() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_JSR
-
-getDescription() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_JSR_W
-
-getDescription() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_L2D
-
-getDescription() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_L2F
-
-getDescription() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_L2I
-
-getDescription() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_LADD
-
-getDescription() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_LALOAD
-
-getDescription() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_LAND
-
-getDescription() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_LASTORE
-
-getDescription() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_LCMP
-
-getDescription() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_LCONST_0
-
-getDescription() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_LCONST_1
-
-getDescription() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_LDC
-
-getDescription() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_LDC2_W
-
-getDescription() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_LDC_W
-
-getDescription() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_LDIV
-
-getDescription() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_LMUL
-
-getDescription() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_LNEG
-
-getDescription() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_LOOKUPSWITCH
-
-getDescription() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_LOR
-
-getDescription() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_LREM
-
-getDescription() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_LRETURN
-
-getDescription() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_LSHL
-
-getDescription() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_LSHR
-
-getDescription() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_LSUB
-
-getDescription() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_LUSHR
-
-getDescription() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_LXOR
-
-getDescription() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_MONITORENTER
-
-getDescription() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_MONITOREXIT
-
-getDescription() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_MULTIANEWARRAY
-
-getDescription() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_NEW
-
-getDescription() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_NEWARRAY
-
-getDescription() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_NOP
-
-getDescription() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_POP
-
-getDescription() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_POP2
-
-getDescription() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_PUTFIELD
-
-getDescription() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_PUTSTATIC
-
-getDescription() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_RET
-
-getDescription() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_RETURN
-
-getDescription() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_SALOAD
-
-getDescription() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_SASTORE
-
-getDescription() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_SIPUSH
-
-getDescription() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_SWAP
-
-getDescription() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_TABLESWITCH
-
-getDescription() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_WIDE
-
-getDescription() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.IncrementInstruction
-
-getDescription() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.InlineAssignInstruction
-
-getDescription() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.LocalVariableConstIndexLoad
-
-getDescription() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.LocalVariableConstIndexStore
-
-getDescription() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.LocalVariableIndex08Load
-
-getDescription() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.LocalVariableIndex08Store
-
-getDescription() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.MultiAssignInstruction
-
-getDescription() - Method in class com.amd.aparapi.internal.instruction.InstructionTransformer
-
-getDescription(ClassModel.ConstantPool.Entry) - Method in class com.amd.aparapi.internal.model.ClassModel.ConstantPool
-
-getDescriptor() - Method in class com.amd.aparapi.internal.model.ClassModel.ClassModelField
-
-getDescriptor() - Method in class com.amd.aparapi.internal.model.ClassModel.ClassModelMethod
-
-getDescriptorIndex() - Method in class com.amd.aparapi.internal.model.ClassModel.AttributePool.LocalVariableTableEntry.LocalVariableInfo
-
-getDescriptorIndex() - Method in class com.amd.aparapi.internal.model.ClassModel.ClassModelField
-
-getDescriptorIndex() - Method in class com.amd.aparapi.internal.model.ClassModel.ClassModelMethod
-
-getDescriptorIndex() - Method in class com.amd.aparapi.internal.model.ClassModel.ConstantPool.NameAndTypeEntry
-
-getDescriptorUTF8Entry() - Method in class com.amd.aparapi.internal.model.ClassModel.ClassModelField
-
-getDescriptorUTF8Entry() - Method in class com.amd.aparapi.internal.model.ClassModel.ClassModelMethod
-
-getDescriptorUTF8Entry() - Method in class com.amd.aparapi.internal.model.ClassModel.ConstantPool.NameAndTypeEntry
-
-getDevice() - Method in class com.amd.aparapi.internal.opencl.OpenCLProgram
-
-getDevice() - Method in class com.amd.aparapi.Range
-
-getDeviceId() - Method in class com.amd.aparapi.device.OpenCLDevice
-
-getDimensions() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_MULTIANEWARRAY
-
-getDims() - Method in class com.amd.aparapi.Range
-
-Get the number of dims for this Range.
-
-getDoubleEntry(int) - Method in class com.amd.aparapi.internal.model.ClassModel.ConstantPool
-
-getDoubleValue() - Method in class com.amd.aparapi.internal.model.ClassModel.ConstantPool.DoubleEntry
-
-getEnd() - Method in class com.amd.aparapi.internal.model.ClassModel.AttributePool.CodeEntry.ExceptionPoolEntry
-
-getEnd() - Method in class com.amd.aparapi.internal.model.ClassModel.AttributePool.LocalVariableTableEntry.LocalVariableInfo
-
-getEnd() - Method in class com.amd.aparapi.internal.tool.InstructionHelper.BranchVector
-
-getEnd() - Method in class com.amd.aparapi.ProfileInfo
-
-getEndPC() - Method in class com.amd.aparapi.internal.tool.InstructionHelper.BranchVector
-
-getEntrypoint(String, Object) - Method in class com.amd.aparapi.internal.model.ClassModel
-
-getEntrypoint() - Method in class com.amd.aparapi.internal.model.ClassModel
-
-getExceptionEntry() - Method in class com.amd.aparapi.internal.model.ClassModel.AttributePool
-
-getExceptionPoolEntries() - Method in class com.amd.aparapi.internal.model.ClassModel.AttributePool.CodeEntry
-
-getExecutionMode() - Method in class com.amd.aparapi.Kernel
-
-Return the current execution mode.
-
-getExecutionTime() - Method in class com.amd.aparapi.internal.kernel.KernelRunner
-
-Determine the execution time of the previous Kernel.execute(range) call.
-
-getExecutionTime() - Method in class com.amd.aparapi.Kernel
-
-Determine the execution time of the previous Kernel.execute(range) call.
-
-getExprHead() - Method in class com.amd.aparapi.internal.model.MethodModel
-
-getFallThrough() - Method in class com.amd.aparapi.internal.instruction.BranchSet.CompoundLogicalExpressionNode
-
-getFallThrough() - Method in class com.amd.aparapi.internal.instruction.BranchSet
-
-getFallThrough() - Method in class com.amd.aparapi.internal.instruction.BranchSet.LogicalExpressionNode
-
-getFallThrough() - Method in class com.amd.aparapi.internal.instruction.BranchSet.SimpleLogicalExpressionNode
-
-getField(String, String) - Method in class com.amd.aparapi.internal.model.ClassModel
-
-getField(String) - Method in class com.amd.aparapi.internal.model.ClassModel
-
-getFieldEntry(int) - Method in class com.amd.aparapi.internal.model.ClassModel.ConstantPool
-
-getFieldFromClassHierarchy(Class<?>, String) - Static method in class com.amd.aparapi.internal.model.Entrypoint
-
-getFieldOrVariableReference() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.IncrementInstruction
-
-getFieldPoolEntries() - Method in class com.amd.aparapi.internal.model.ClassModel
-
-getFirst() - Method in class com.amd.aparapi.internal.instruction.BranchSet
-
-getFirstChild() - Method in class com.amd.aparapi.internal.instruction.Instruction
-
-getFloat(Object, long) - Static method in class com.amd.aparapi.internal.util.UnsafeWrapper
-
-getFloatEntry(int) - Method in class com.amd.aparapi.internal.model.ClassModel.ConstantPool
-
-getFloatValue() - Method in class com.amd.aparapi.internal.model.ClassModel.ConstantPool.FloatEntry
-
-getForwardConditionalBranches() - Method in class com.amd.aparapi.internal.instruction.Instruction
-
-getForwardUnconditionalBranches() - Method in class com.amd.aparapi.internal.instruction.Instruction
-
-getFrom() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.MultiAssignInstruction
-
-getFrom() - Method in class com.amd.aparapi.internal.tool.InstructionHelper.BranchVector
-
-getGlobalIds() - Method in class com.amd.aparapi.Kernel.KernelState
-
-getGlobalMemSize() - Method in class com.amd.aparapi.device.OpenCLDevice
-
-getGlobalSize(int) - Method in class com.amd.aparapi.Range
-
-Get the globalSize (of the range) given the requested dimension
-
-getGlobalSize_0() - Method in class com.amd.aparapi.Range
-
-getGlobalSize_1() - Method in class com.amd.aparapi.Range
-
-getGlobalSize_2() - Method in class com.amd.aparapi.Range
-
-getGroupIds() - Method in class com.amd.aparapi.Kernel.KernelState
-
-getHandler() - Method in class com.amd.aparapi.internal.model.ClassModel.AttributePool.CodeEntry.ExceptionPoolEntry
-
-getHead() - Method in class com.amd.aparapi.internal.instruction.ExpressionList
-
-getHigh() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_TABLESWITCH
-
-getImmediate() - Method in enum com.amd.aparapi.internal.instruction.InstructionSet.ByteCode
-
-getIncrement() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_WIDE
-
-getIndex() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_WIDE
-
-getIndex() - Method in class com.amd.aparapi.internal.model.ClassModel.AttributePool.ConstantValueEntry
-
-getIndex() - Method in class com.amd.aparapi.internal.model.ClassModel.ClassModelField
-
-getIndex() - Method in class com.amd.aparapi.internal.model.ClassModel.ClassModelMethod
-
-getInnerAccess() - Method in class com.amd.aparapi.internal.model.ClassModel.AttributePool.InnerClassesEntry.InnerClassInfo
-
-getInnerIndex() - Method in class com.amd.aparapi.internal.model.ClassModel.AttributePool.InnerClassesEntry.InnerClassInfo
-
-getInnerNameIndex() - Method in class com.amd.aparapi.internal.model.ClassModel.AttributePool.InnerClassesEntry.InnerClassInfo
-
-getInstance() - Method in interface com.amd.aparapi.internal.instruction.InstructionSet.AccessInstanceField
-
-getInstance() - Method in interface com.amd.aparapi.internal.instruction.InstructionSet.AssignToInstanceField
-
-getInstance() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_GETFIELD
-
-getInstance() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_PUTFIELD
-
-getInstanceReference() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_INVOKEDYNAMIC
-
-getInstanceReference() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_INVOKEINTERFACE
-
-getInstanceReference() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_INVOKESPECIAL
-
-getInstanceReference() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_INVOKEVIRTUAL
-
-getInstanceReference() - Method in interface com.amd.aparapi.internal.instruction.InstructionSet.InterfaceConstantPoolMethodIndexAccessor
-
-getInstanceReference() - Method in interface com.amd.aparapi.internal.instruction.InstructionSet.VirtualMethodCall
-
-getInstruction() - Method in exception com.amd.aparapi.internal.exception.ClassParseException
-
-getInt(Object, long) - Static method in class com.amd.aparapi.internal.util.UnsafeWrapper
-
-getIntegerEntry(int) - Method in class com.amd.aparapi.internal.model.ClassModel.ConstantPool
-
-getInterfaceMethodEntry(int) - Method in class com.amd.aparapi.internal.model.ClassModel.ConstantPool
-
-getIntValue() - Method in class com.amd.aparapi.internal.model.ClassModel.ConstantPool.IntegerEntry
-
-getKernelInstance() - Method in class com.amd.aparapi.internal.model.Entrypoint
-
-getKernelState() - Method in class com.amd.aparapi.Kernel
-
-getLabel(Instruction, boolean, boolean, boolean) - Static method in class com.amd.aparapi.internal.tool.InstructionHelper
-
-getLabel() - Method in class com.amd.aparapi.ProfileInfo
-
-getLast() - Method in class com.amd.aparapi.internal.instruction.BranchSet
-
-getLastChild() - Method in class com.amd.aparapi.internal.instruction.Instruction
-
-getLength() - Method in class com.amd.aparapi.internal.instruction.Instruction
-
-getLength() - Method in class com.amd.aparapi.internal.model.ClassModel.AttributePool.AttributePoolEntry
-
-getLength() - Method in class com.amd.aparapi.internal.model.ClassModel.AttributePool.LocalVariableTableEntry.LocalVariableInfo
-
-getLhs() - Method in class com.amd.aparapi.internal.instruction.BranchSet.CompoundLogicalExpressionNode
-
-getLhs() - Method in interface com.amd.aparapi.internal.instruction.InstructionSet.Binary
-
-getLhs() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.BinaryOperator
-
-getLhs() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.If
-
-getLineNumber() - Method in class com.amd.aparapi.internal.model.ClassModel.AttributePool.LineNumberTableEntry.StartLineNumberPair
-
-getLineNumberTableEntry() - Method in class com.amd.aparapi.internal.model.ClassModel.AttributePool.CodeEntry
-
-getLineNumberTableEntry() - Method in class com.amd.aparapi.internal.model.ClassModel.AttributePool
-
-getLineNumberTableEntry() - Method in class com.amd.aparapi.internal.model.ClassModel.ClassModelMethod
-
-getLocalBarrier() - Method in class com.amd.aparapi.Kernel.KernelState
-
-getLocalIds() - Method in class com.amd.aparapi.Kernel.KernelState
-
-getLocalMemSize() - Method in class com.amd.aparapi.device.OpenCLDevice
-
-getLocalSize(int) - Method in class com.amd.aparapi.Range
-
-Get the localSize (of the group) given the requested dimension
-
-getLocalSize_0() - Method in class com.amd.aparapi.Range
-
-getLocalSize_1() - Method in class com.amd.aparapi.Range
-
-getLocalSize_2() - Method in class com.amd.aparapi.Range
-
-getLocalVariable(int, int) - Method in class com.amd.aparapi.internal.model.ClassModel.ClassModelMethod
-
-getLocalVariable(int, int) - Method in class com.amd.aparapi.internal.model.MethodModel
-
-getLocalVariableInfo() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_IINC
-
-getLocalVariableInfo() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_RET
-
-getLocalVariableInfo() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.LocalVariableConstIndexAccessor
-
-getLocalVariableInfo() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.LocalVariableIndex08Accessor
-
-getLocalVariableInfo() - Method in interface com.amd.aparapi.internal.instruction.InstructionSet.LocalVariableTableIndexAccessor
-
-getLocalVariableTableEntry() - Method in class com.amd.aparapi.internal.model.ClassModel.AttributePool
-
-getLocalVariableTableEntry() - Method in class com.amd.aparapi.internal.model.ClassModel.ClassModelMethod
-
-getLocalVariableTableEntry() - Method in class com.amd.aparapi.internal.model.MethodModel
-
-getLocalVariableTableIndex() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_IINC
-
-getLocalVariableTableIndex() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_RET
-
-getLocalVariableTableIndex() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.LocalVariableConstIndexAccessor
-
-getLocalVariableTableIndex() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.LocalVariableIndex08Accessor
-
-getLocalVariableTableIndex() - Method in interface com.amd.aparapi.internal.instruction.InstructionSet.LocalVariableTableIndexAccessor
-
-getLoggerName() - Static method in class com.amd.aparapi.Config
-
-getLogicalExpression() - Method in class com.amd.aparapi.internal.instruction.BranchSet
-
-getLong(Object, long) - Static method in class com.amd.aparapi.internal.util.UnsafeWrapper
-
-getLongEntry(int) - Method in class com.amd.aparapi.internal.model.ClassModel.ConstantPool
-
-getLongName() - Method in enum com.amd.aparapi.internal.instruction.InstructionSet.TypeSpec
-
-getLongValue() - Method in class com.amd.aparapi.internal.model.ClassModel.ConstantPool.LongEntry
-
-getLow() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_TABLESWITCH
-
-getMagic() - Method in class com.amd.aparapi.internal.model.ClassModel
-
-getMajorVersion() - Method in class com.amd.aparapi.internal.model.ClassModel
-
-getMappedMethodName(ClassModel.ConstantPool.MethodReferenceEntry) - Static method in class com.amd.aparapi.Kernel
-
-getMatches() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_LOOKUPSWITCH
-
-getMaxComputeUnits() - Method in class com.amd.aparapi.device.OpenCLDevice
-
-getMaxLocals() - Method in class com.amd.aparapi.internal.model.ClassModel.AttributePool.CodeEntry
-
-getMaxMemAllocSize() - Method in class com.amd.aparapi.device.OpenCLDevice
-
-getMaxStack() - Method in class com.amd.aparapi.internal.model.ClassModel.AttributePool.CodeEntry
-
-getMaxWorkGroupSize() - Method in class com.amd.aparapi.device.Device
-
-getMaxWorkGroupSize() - Method in class com.amd.aparapi.Range
-
-getMaxWorkItemDimensions() - Method in class com.amd.aparapi.device.Device
-
-getMaxWorkItemSize() - Method in class com.amd.aparapi.device.Device
-
-getMaxWorkItemSize() - Method in class com.amd.aparapi.Range
-
-getMem(Object, long) - Method in class com.amd.aparapi.internal.opencl.OpenCLProgram
-
-getMethod() - Method in class com.amd.aparapi.internal.instruction.Instruction
-
-getMethod(String, String) - Method in class com.amd.aparapi.internal.model.ClassModel
-
-getMethod(ClassModel.ConstantPool.MethodEntry, boolean) - Method in class com.amd.aparapi.internal.model.ClassModel
-
-Look up a ConstantPool MethodEntry and return the corresponding Method.
-
-getMethod() - Method in class com.amd.aparapi.internal.model.MethodModel
-
-getMethodCalls() - Method in class com.amd.aparapi.internal.model.MethodModel
-
-getMethodDescription(String) - Static method in class com.amd.aparapi.internal.model.ClassModel
-
-getMethodEntry(int) - Method in class com.amd.aparapi.internal.model.ClassModel.ConstantPool
-
-getMethodIndex() - Method in class com.amd.aparapi.internal.model.ClassModel.AttributePool.EnclosingMethodEntry
-
-getMethodModel(String, String) - Method in class com.amd.aparapi.internal.model.ClassModel
-
-Create a MethodModel for a given method name and signature.
-
-getMethodModel() - Method in class com.amd.aparapi.internal.model.Entrypoint
-
-getMethodName() - Method in class com.amd.aparapi.internal.model.ClassModel.MethodDescription
-
-getMinorVersion() - Method in class com.amd.aparapi.internal.model.ClassModel
-
-getName() - Method in enum com.amd.aparapi.internal.instruction.InstructionSet.ByteCode
-
-getName() - Method in enum com.amd.aparapi.internal.instruction.InstructionSet.ImmediateSpec
-
-getName() - Method in class com.amd.aparapi.internal.model.ClassModel.AttributePool.AttributePoolEntry
-
-getName() - Method in class com.amd.aparapi.internal.model.ClassModel.ClassModelField
-
-getName() - Method in class com.amd.aparapi.internal.model.ClassModel.ClassModelMethod
-
-getName() - Method in class com.amd.aparapi.internal.model.MethodModel
-
-getName() - Method in class com.amd.aparapi.internal.opencl.OpenCLKernel
-
-getName() - Method in class com.amd.aparapi.internal.opencl.OpenCLPlatform
-
-getNameAndTypeEntry(int) - Method in class com.amd.aparapi.internal.model.ClassModel.ConstantPool
-
-getNameAndTypeEntry() - Method in class com.amd.aparapi.internal.model.ClassModel.ConstantPool.ReferenceEntry
-
-getNameAndTypeIndex() - Method in class com.amd.aparapi.internal.model.ClassModel.ConstantPool.ReferenceEntry
-
-getNameIndex() - Method in class com.amd.aparapi.internal.model.ClassModel.AttributePool.AttributePoolEntry
-
-getNameIndex() - Method in class com.amd.aparapi.internal.model.ClassModel.AttributePool.LocalVariableTableEntry.LocalVariableInfo
-
-getNameIndex() - Method in class com.amd.aparapi.internal.model.ClassModel.ClassModelField
-
-getNameIndex() - Method in class com.amd.aparapi.internal.model.ClassModel.ClassModelMethod
-
-getNameIndex() - Method in class com.amd.aparapi.internal.model.ClassModel.ConstantPool.ClassEntry
-
-getNameIndex() - Method in class com.amd.aparapi.internal.model.ClassModel.ConstantPool.NameAndTypeEntry
-
-getNameUTF8Entry() - Method in class com.amd.aparapi.internal.model.ClassModel.ClassModelField
-
-getNameUTF8Entry() - Method in class com.amd.aparapi.internal.model.ClassModel.ClassModelMethod
-
-getNameUTF8Entry() - Method in class com.amd.aparapi.internal.model.ClassModel.ConstantPool.ClassEntry
-
-getNameUTF8Entry() - Method in class com.amd.aparapi.internal.model.ClassModel.ConstantPool.NameAndTypeEntry
-
-getNext() - Method in class com.amd.aparapi.internal.instruction.BranchSet.LogicalExpressionNode
-
-getNextExpr() - Method in class com.amd.aparapi.internal.instruction.Instruction
-
-getNextPC() - Method in class com.amd.aparapi.internal.instruction.Instruction
-
-getNpairs() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_LOOKUPSWITCH
-
-getNumGroups(int) - Method in class com.amd.aparapi.Range
-
-Get the number of groups for the given dimension.
-
-getObject(Object, long) - Static method in class com.amd.aparapi.internal.util.UnsafeWrapper
-
-getObjectArrayFieldsClasses() - Method in class com.amd.aparapi.internal.model.Entrypoint
-
-getOffset(int) - Method in class com.amd.aparapi.internal.instruction.InstructionSet.Switch
-
-getOffset() - Method in class com.amd.aparapi.internal.reader.ByteReader
-
-getOffsets() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.Switch
-
-getOpenCLDevices() - Method in class com.amd.aparapi.internal.opencl.OpenCLPlatform
-
-getOpenCLPlatform() - Method in class com.amd.aparapi.device.OpenCLDevice
-
-getOpenCLPlatforms() - Method in class com.amd.aparapi.internal.opencl.OpenCLPlatform
-
-getOpenCLPlatforms() - Static method in class com.amd.aparapi.internal.util.OpenCLUtil
-
-Retrieve a list of available OpenCL Platforms
-
-getOperator() - Method in enum com.amd.aparapi.internal.instruction.InstructionSet.ByteCode
-
-getOperator() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.ConditionalBranch16
-
-getOperator() - Method in interface com.amd.aparapi.internal.instruction.InstructionSet.HasOperator
-
-getOperator() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.OperatorInstruction
-
-getOrCreateBranchSet() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.ConditionalBranch
-
-getOrUpdateAllClassAccesses(String) - Method in class com.amd.aparapi.internal.model.Entrypoint
-
-getOuterIndex() - Method in class com.amd.aparapi.internal.model.ClassModel.AttributePool.InnerClassesEntry.InnerClassInfo
-
-getPanel() - Method in class com.amd.aparapi.internal.tool.InstructionViewer.Form
-
-getParent() - Method in class com.amd.aparapi.internal.instruction.BranchSet.LogicalExpressionNode
-
-getParentExpr() - Method in class com.amd.aparapi.internal.instruction.Instruction
-
-getPassId() - Method in class com.amd.aparapi.Kernel.KernelState
-
-getPCHead() - Method in class com.amd.aparapi.internal.model.MethodModel
-
-getPool() - Method in class com.amd.aparapi.internal.model.ClassModel.AttributePool.PoolEntry
-
-getPop() - Method in enum com.amd.aparapi.internal.instruction.InstructionSet.ByteCode
-
-getPrevExpr() - Method in class com.amd.aparapi.internal.instruction.Instruction
-
-getPrevPC() - Method in class com.amd.aparapi.internal.instruction.Instruction
-
-getProfileInfo() - Method in class com.amd.aparapi.internal.kernel.KernelRunner
-
-getProfileInfo() - Method in class com.amd.aparapi.Kernel
-
-Get the profiling information from the last successful call to Kernel.execute().
-
-getPush() - Method in enum com.amd.aparapi.internal.instruction.InstructionSet.ByteCode
-
-getQueued() - Method in class com.amd.aparapi.ProfileInfo
-
-getRange() - Method in class com.amd.aparapi.Kernel.KernelState
-
-getReal() - Method in class com.amd.aparapi.internal.instruction.Instruction
-
-getReal() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.CloneInstruction
-
-getReferencedClassModelFields() - Method in class com.amd.aparapi.internal.model.Entrypoint
-
-getReferencedFieldNames() - Method in class com.amd.aparapi.internal.model.Entrypoint
-
-getReferencedFields() - Method in class com.amd.aparapi.internal.model.Entrypoint
-
-getReturnType() - Method in class com.amd.aparapi.internal.model.ClassModel.ConstantPool.MethodReferenceEntry
-
-getReturnType() - Method in class com.amd.aparapi.internal.model.MethodModel
-
-getReverseConditionalBranches() - Method in class com.amd.aparapi.internal.instruction.Instruction
-
-getReverseUnconditionalBranches() - Method in class com.amd.aparapi.internal.instruction.Instruction
-
-getRhs() - Method in class com.amd.aparapi.internal.instruction.BranchSet.CompoundLogicalExpressionNode
-
-getRhs() - Method in interface com.amd.aparapi.internal.instruction.InstructionSet.Binary
-
-getRhs() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.BinaryOperator
-
-getRhs() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.FieldArrayElementAssign
-
-getRhs() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.If
-
-getRhs() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.InlineAssignInstruction
-
-getRoot() - Method in class com.amd.aparapi.internal.instruction.BranchSet.LogicalExpressionNode
-
-getRootExpr() - Method in class com.amd.aparapi.internal.instruction.Instruction
-
-getRuntimeInvisibleAnnotationsEntry() - Method in class com.amd.aparapi.internal.model.ClassModel.AttributePool
-
-getRuntimeVisibleAnnotationsEntry() - Method in class com.amd.aparapi.internal.model.ClassModel.AttributePool
-
-getShortName() - Method in enum com.amd.aparapi.internal.instruction.InstructionSet.TypeSpec
-
-getSimpleName() - Method in class com.amd.aparapi.internal.model.MethodModel
-
-getSize() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.Switch
-
-getSize() - Method in enum com.amd.aparapi.internal.instruction.InstructionSet.TypeSpec
-
-getSlot() - Method in class com.amd.aparapi.internal.model.ClassModel.ConstantPool.Entry
-
-getSlots() - Method in enum com.amd.aparapi.internal.instruction.InstructionSet.TypeSpec
-
-getSourceFileEntry() - Method in class com.amd.aparapi.internal.model.ClassModel.AttributePool
-
-getSourceFileIndex() - Method in class com.amd.aparapi.internal.model.ClassModel.AttributePool.SourceFileEntry
-
-getSourceFileName() - Method in class com.amd.aparapi.internal.model.ClassModel.AttributePool.SourceFileEntry
-
-getSourceLineNumber(int, boolean) - Method in class com.amd.aparapi.internal.model.ClassModel.AttributePool.LineNumberTableEntry
-
-getStackAdjust() - Method in enum com.amd.aparapi.internal.instruction.InstructionSet.PopSpec
-
-getStackAdjust() - Method in enum com.amd.aparapi.internal.instruction.InstructionSet.PushSpec
-
-getStackConsumeCount() - Method in class com.amd.aparapi.internal.instruction.Instruction
-
-getStackConsumeCount() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.CloneInstruction
-
-getStackConsumeCount() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_GETFIELD
-
-getStackConsumeCount() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_GETSTATIC
-
-getStackConsumeCount() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_INVOKEDYNAMIC
-
-getStackConsumeCount() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_INVOKEINTERFACE
-
-getStackConsumeCount() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_INVOKESPECIAL
-
-getStackConsumeCount() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_INVOKESTATIC
-
-getStackConsumeCount() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_INVOKEVIRTUAL
-
-getStackConsumeCount() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_PUTFIELD
-
-getStackConsumeCount() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_PUTSTATIC
-
-getStackConsumeCount() - Method in class com.amd.aparapi.internal.model.ClassModel.ConstantPool.MethodReferenceEntry
-
-getStackDelta() - Method in class com.amd.aparapi.internal.instruction.Instruction
-
-getStackProduceCount() - Method in class com.amd.aparapi.internal.instruction.Instruction
-
-getStackProduceCount() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.CloneInstruction
-
-getStackProduceCount() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_GETFIELD
-
-getStackProduceCount() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_GETSTATIC
-
-getStackProduceCount() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_INVOKEDYNAMIC
-
-getStackProduceCount() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_INVOKEINTERFACE
-
-getStackProduceCount() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_INVOKESPECIAL
-
-getStackProduceCount() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_INVOKESTATIC
-
-getStackProduceCount() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_INVOKEVIRTUAL
-
-getStackProduceCount() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_PUTFIELD
-
-getStackProduceCount() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_PUTSTATIC
-
-getStackProduceCount() - Method in class com.amd.aparapi.internal.model.ClassModel.ConstantPool.MethodReferenceEntry
-
-getStart() - Method in class com.amd.aparapi.internal.model.ClassModel.AttributePool.CodeEntry.ExceptionPoolEntry
-
-getStart() - Method in class com.amd.aparapi.internal.model.ClassModel.AttributePool.LineNumberTableEntry.StartLineNumberPair
-
-getStart() - Method in class com.amd.aparapi.internal.model.ClassModel.AttributePool.LocalVariableTableEntry.LocalVariableInfo
-
-getStart() - Method in class com.amd.aparapi.internal.tool.InstructionHelper.BranchVector
-
-getStart() - Method in class com.amd.aparapi.ProfileInfo
-
-getStartInstruction() - Method in class com.amd.aparapi.internal.instruction.Instruction
-
-getStartInstruction() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.IncrementInstruction
-
-getStartPC() - Method in class com.amd.aparapi.internal.instruction.Instruction
-
-getStartPC() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.CompositeInstruction
-
-getStartPC() - Method in class com.amd.aparapi.internal.tool.InstructionHelper.BranchVector
-
-getStringEntry(int) - Method in class com.amd.aparapi.internal.model.ClassModel.ConstantPool
-
-getStringUTF8Entry() - Method in class com.amd.aparapi.internal.model.ClassModel.ConstantPool.StringEntry
-
-getStructMemberOffsets() - Method in class com.amd.aparapi.internal.model.ClassModel
-
-getStructMembers() - Method in class com.amd.aparapi.internal.model.ClassModel
-
-getStructMemberTypes() - Method in class com.amd.aparapi.internal.model.ClassModel
-
-getSubmit() - Method in class com.amd.aparapi.ProfileInfo
-
-getSuperClassConstantPoolIndex() - Method in class com.amd.aparapi.internal.model.ClassModel
-
-getSuperClazz() - Method in class com.amd.aparapi.internal.model.ClassModel
-
-Getter for superClazz
-
-getSyntheticEntry() - Method in class com.amd.aparapi.internal.model.ClassModel.AttributePool
-
-getTail() - Method in class com.amd.aparapi.internal.instruction.ExpressionList
-
-getTarget() - Method in class com.amd.aparapi.internal.instruction.BranchSet.CompoundLogicalExpressionNode
-
-getTarget() - Method in class com.amd.aparapi.internal.instruction.BranchSet
-
-getTarget() - Method in class com.amd.aparapi.internal.instruction.BranchSet.LogicalExpressionNode
-
-getTarget() - Method in class com.amd.aparapi.internal.instruction.BranchSet.SimpleLogicalExpressionNode
-
-getTarget() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.Branch
-
-getTarget(int) - Method in class com.amd.aparapi.internal.instruction.InstructionSet.Switch
-
-getText() - Method in enum com.amd.aparapi.internal.instruction.InstructionSet.Operator
-
-getText(boolean) - Method in enum com.amd.aparapi.internal.instruction.InstructionSet.Operator
-
-getThisClassConstantPoolIndex() - Method in class com.amd.aparapi.internal.model.ClassModel
-
-getThisPC() - Method in class com.amd.aparapi.internal.instruction.Instruction
-
-getThisPC() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.CompositeInstruction
-
-getTo() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.MultiAssignInstruction
-
-getTo() - Method in class com.amd.aparapi.internal.tool.InstructionHelper.BranchVector
-
-getTotalStructSize() - Method in class com.amd.aparapi.internal.model.ClassModel
-
-getType() - Method in class com.amd.aparapi.device.Device
-
-getType() - Method in exception com.amd.aparapi.internal.exception.ClassParseException
-
-getType() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_NEWARRAY
-
-getType(ClassModel.ConstantPool.Entry) - Method in class com.amd.aparapi.internal.model.ClassModel.ConstantPool
-
-getType() - Method in class com.amd.aparapi.internal.model.ClassModel.ConstantPool.ReferenceEntry.Type
-
-getType() - Method in class com.amd.aparapi.internal.model.ClassModel.MethodDescription
-
-getType() - Method in class com.amd.aparapi.ProfileInfo
-
-getTypeDescriptor() - Method in class com.amd.aparapi.internal.model.ClassModel.AttributePool.RuntimeAnnotationsEntry.AnnotationInfo
-
-getTypeIndex() - Method in class com.amd.aparapi.internal.model.ClassModel.AttributePool.RuntimeAnnotationsEntry.AnnotationInfo
-
-getTypeNameIndex() - Method in class com.amd.aparapi.internal.model.ClassModel.AttributePool.RuntimeAnnotationsEntry.AnnotationInfo.ElementValuePair.PrimitiveValue
-
-getTypes() - Method in enum com.amd.aparapi.internal.instruction.InstructionSet.ImmediateSpec
-
-getUnary() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.IfUnary
-
-getUnary() - Method in interface com.amd.aparapi.internal.instruction.InstructionSet.Unary
-
-getUnary() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.UnaryOperator
-
-getUTF8() - Method in class com.amd.aparapi.internal.model.ClassModel.ConstantPool.UTF8Entry
-
-getUTF8Entry(int) - Method in class com.amd.aparapi.internal.model.ClassModel.ConstantPool
-
-getUTF8Index() - Method in class com.amd.aparapi.internal.model.ClassModel.ConstantPool.StringEntry
-
-getValue() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.AssignToArrayElement
-
-getValue() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.BytecodeEncodedConstant
-
-getValue() - Method in interface com.amd.aparapi.internal.instruction.InstructionSet.Constant
-
-getValue() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_ACONST_NULL
-
-getValue() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_BIPUSH
-
-getValue() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_LDC
-
-getValue() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_LDC2_W
-
-getValue() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_LDC_W
-
-getValue() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.ImmediateConstant
-
-getValueToAssign() - Method in interface com.amd.aparapi.internal.instruction.InstructionSet.AssignToField
-
-getValueToAssign() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_PUTFIELD
-
-getValueToAssign() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_PUTSTATIC
-
-getVariable(int, int) - Method in class com.amd.aparapi.internal.model.ClassModel.AttributePool.LocalVariableTableEntry
-
-getVariableDescriptor() - Method in class com.amd.aparapi.internal.model.ClassModel.AttributePool.LocalVariableTableEntry.LocalVariableInfo
-
-getVariableIndex() - Method in class com.amd.aparapi.internal.model.ClassModel.AttributePool.LocalVariableTableEntry.LocalVariableInfo
-
-getVariableName(int, int) - Method in class com.amd.aparapi.internal.model.ClassModel.AttributePool.LocalVariableTableEntry
-
-getVariableName() - Method in class com.amd.aparapi.internal.model.ClassModel.AttributePool.LocalVariableTableEntry.LocalVariableInfo
-
-getVendor() - Method in class com.amd.aparapi.internal.opencl.OpenCLPlatform
-
-getVersion() - Method in class com.amd.aparapi.internal.opencl.OpenCLPlatform
-
-getWideopcode() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_WIDE
-
-getWorkGroupSize() - Method in class com.amd.aparapi.Range
-
-
-
A B C D E F G H I J K L M N O P R S T U V W _
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/index-files/index-8.html b/com.amd.aparapi/doc/api/index-files/index-8.html
deleted file mode 100644
index 7cdc3faa..00000000
--- a/com.amd.aparapi/doc/api/index-files/index-8.html
+++ /dev/null
@@ -1,136 +0,0 @@
-
-
-
-
-
-H-Index
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-A B C D E F G H I J K L M N O P R S T U V W _
-
-
-
H
-
-hashCode() - Method in class com.amd.aparapi.internal.model.ClassModel.ConstantPool.MethodReferenceEntry
-
-hashCode() - Method in class com.amd.aparapi.internal.tool.InstructionHelper.BranchVector
-
-hasMore() - Method in class com.amd.aparapi.internal.reader.ByteReader
-
-hasNextExecutionMode() - Method in class com.amd.aparapi.Kernel
-
-header(String) - Method in class com.amd.aparapi.internal.tool.InstructionHelper.Table.Col
-
-header(String...) - Method in class com.amd.aparapi.internal.tool.InstructionHelper.Table
-
-HGAP - Static variable in class com.amd.aparapi.internal.tool.InstructionViewer
-
-HGAPROOT - Static variable in class com.amd.aparapi.internal.tool.InstructionViewer
-
-HMARGIN - Static variable in class com.amd.aparapi.internal.tool.InstructionViewer
-
-
-
A B C D E F G H I J K L M N O P R S T U V W _
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/index-files/index-9.html b/com.amd.aparapi/doc/api/index-files/index-9.html
deleted file mode 100644
index 46a1887d..00000000
--- a/com.amd.aparapi/doc/api/index-files/index-9.html
+++ /dev/null
@@ -1,1380 +0,0 @@
-
-
-
-
-
-I-Index
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-A B C D E F G H I J K L M N O P R S T U V W _
-
-
-
I
-
-iadd - Static variable in class com.amd.aparapi.internal.instruction.InstructionPattern
-
-in() - Method in class com.amd.aparapi.internal.writer.BlockWriter
-
-inc - Static variable in class com.amd.aparapi.internal.instruction.InstructionPattern
-
-indent - Variable in class com.amd.aparapi.internal.writer.BlockWriter
-
-insertBetween(Instruction, Instruction, Instruction) - Method in class com.amd.aparapi.internal.instruction.ExpressionList
-
-Insert the given instruction (_newone) between the existing entries (_prev and _next).
-
-INSET - Static variable in class com.amd.aparapi.internal.tool.InstructionViewer.Form
-
-Instruction - Class in com.amd.aparapi.internal.instruction
-
-Initially represents a single Java bytecode instruction.
-
-InstructionHelper - Class in com.amd.aparapi.internal.tool
-
-InstructionHelper() - Constructor for class com.amd.aparapi.internal.tool.InstructionHelper
-
-InstructionHelper.BranchVector - Class in com.amd.aparapi.internal.tool
-
-InstructionHelper.BranchVector(Instruction, Instruction) - Constructor for class com.amd.aparapi.internal.tool.InstructionHelper.BranchVector
-
-InstructionHelper.StringWriter - Class in com.amd.aparapi.internal.tool
-
-InstructionHelper.StringWriter(StringBuilder) - Constructor for class com.amd.aparapi.internal.tool.InstructionHelper.StringWriter
-
-InstructionHelper.StringWriter() - Constructor for class com.amd.aparapi.internal.tool.InstructionHelper.StringWriter
-
-InstructionHelper.Table - Class in com.amd.aparapi.internal.tool
-
-InstructionHelper.Table(String...) - Constructor for class com.amd.aparapi.internal.tool.InstructionHelper.Table
-
-InstructionHelper.Table.Col - Class in com.amd.aparapi.internal.tool
-
-InstructionHelper.Table.Col(String) - Constructor for class com.amd.aparapi.internal.tool.InstructionHelper.Table.Col
-
-InstructionHelper.Table.Col() - Constructor for class com.amd.aparapi.internal.tool.InstructionHelper.Table.Col
-
-instructionListener - Static variable in class com.amd.aparapi.Config
-
-instructionListenerClassName - Static variable in class com.amd.aparapi.Config
-
-InstructionPattern - Class in com.amd.aparapi.internal.instruction
-
-InstructionPattern() - Constructor for class com.amd.aparapi.internal.instruction.InstructionPattern
-
-InstructionPattern.AssignableInstructionMatcher - Class in com.amd.aparapi.internal.instruction
-
-InstructionPattern.AssignableInstructionMatcher(Class<?>...) - Constructor for class com.amd.aparapi.internal.instruction.InstructionPattern.AssignableInstructionMatcher
-
-InstructionPattern.InstructionMatch - Class in com.amd.aparapi.internal.instruction
-
-InstructionPattern.InstructionMatch(boolean) - Constructor for class com.amd.aparapi.internal.instruction.InstructionPattern.InstructionMatch
-
-InstructionPattern.InstructionMatcher - Class in com.amd.aparapi.internal.instruction
-
-InstructionPattern.InstructionMatcher(String) - Constructor for class com.amd.aparapi.internal.instruction.InstructionPattern.InstructionMatcher
-
-InstructionSet - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet() - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet
-
-InstructionSet.AccessArrayElement - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.AccessField - Interface in com.amd.aparapi.internal.instruction
-
-InstructionSet.AccessInstanceField - Interface in com.amd.aparapi.internal.instruction
-
-InstructionSet.AccessLocalVariable - Interface in com.amd.aparapi.internal.instruction
-
-InstructionSet.ArrayAccess - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.ArrayAccess(MethodModel, InstructionSet.ByteCode, ByteReader, boolean) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.ArrayAccess
-
-InstructionSet.AssignToArrayElement - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.AssignToField - Interface in com.amd.aparapi.internal.instruction
-
-InstructionSet.AssignToInstanceField - Interface in com.amd.aparapi.internal.instruction
-
-InstructionSet.AssignToLocalVariable - Interface in com.amd.aparapi.internal.instruction
-
-InstructionSet.Binary - Interface in com.amd.aparapi.internal.instruction
-
-InstructionSet.BinaryOperator - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.Branch - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.Branch(MethodModel, InstructionSet.ByteCode, ByteReader, boolean) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.Branch
-
-InstructionSet.Branch(MethodModel, InstructionSet.ByteCode, Instruction) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.Branch
-
-InstructionSet.Branch32 - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.Branch32(MethodModel, InstructionSet.ByteCode, ByteReader, boolean) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.Branch32
-
-InstructionSet.ByteCode - Enum in com.amd.aparapi.internal.instruction
-
-InstructionSet.BytecodeEncodedConstant <T > - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.BytecodeEncodedConstant(MethodModel, InstructionSet.ByteCode, ByteReader, boolean, T) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.BytecodeEncodedConstant
-
-InstructionSet.CastOperator - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.CloneInstruction - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.CloneInstruction(MethodModel, Instruction) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.CloneInstruction
-
-InstructionSet.CompositeArbitraryScopeInstruction - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.CompositeEmptyLoopInstruction - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.CompositeEmptyLoopInstruction(MethodModel, Instruction, Instruction, BranchSet) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.CompositeEmptyLoopInstruction
-
-InstructionSet.CompositeForEclipseInstruction - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.CompositeForSunInstruction - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.CompositeForSunInstruction(MethodModel, Instruction, Instruction, BranchSet) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.CompositeForSunInstruction
-
-InstructionSet.CompositeIfElseInstruction - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.CompositeIfElseInstruction(MethodModel, Instruction, Instruction, BranchSet) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.CompositeIfElseInstruction
-
-InstructionSet.CompositeIfInstruction - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.CompositeIfInstruction(MethodModel, Instruction, Instruction, BranchSet) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.CompositeIfInstruction
-
-InstructionSet.CompositeInstruction - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.CompositeInstruction(MethodModel, InstructionSet.ByteCode, Instruction, Instruction, BranchSet) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.CompositeInstruction
-
-InstructionSet.CompositeWhileInstruction - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.CompositeWhileInstruction(MethodModel, Instruction, Instruction, BranchSet) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.CompositeWhileInstruction
-
-InstructionSet.ConditionalBranch - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.ConditionalBranch(MethodModel, InstructionSet.ByteCode, ByteReader, boolean) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.ConditionalBranch
-
-InstructionSet.ConditionalBranch16 - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.ConditionalBranch16(MethodModel, InstructionSet.ByteCode, ByteReader, boolean) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.ConditionalBranch16
-
-InstructionSet.Constant <T > - Interface in com.amd.aparapi.internal.instruction
-
-InstructionSet.ConstantPoolEntryConstant - Interface in com.amd.aparapi.internal.instruction
-
-InstructionSet.DUP - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.DUP(MethodModel, InstructionSet.ByteCode, ByteReader, boolean) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.DUP
-
-InstructionSet.FakeGoto - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.FakeGoto(MethodModel, Instruction) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.FakeGoto
-
-InstructionSet.FieldArrayElementAssign - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.FieldArrayElementAssign(MethodModel, InstructionSet.AssignToArrayElement, Instruction) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.FieldArrayElementAssign
-
-InstructionSet.FieldArrayElementIncrement - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.FieldArrayElementIncrement(MethodModel, InstructionSet.AssignToArrayElement, boolean, boolean) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.FieldArrayElementIncrement
-
-InstructionSet.FieldReference - Interface in com.amd.aparapi.internal.instruction
-
-InstructionSet.HasOperator - Interface in com.amd.aparapi.internal.instruction
-
-InstructionSet.I_AALOAD - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.I_AALOAD(MethodModel, ByteReader, boolean) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.I_AALOAD
-
-InstructionSet.I_AASTORE - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.I_AASTORE(MethodModel, ByteReader, boolean) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.I_AASTORE
-
-InstructionSet.I_ACONST_NULL - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.I_ACONST_NULL(MethodModel, ByteReader, boolean) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.I_ACONST_NULL
-
-InstructionSet.I_ALOAD - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.I_ALOAD(MethodModel, ByteReader, boolean) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.I_ALOAD
-
-InstructionSet.I_ALOAD_0 - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.I_ALOAD_0(MethodModel, ByteReader, boolean) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.I_ALOAD_0
-
-InstructionSet.I_ALOAD_1 - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.I_ALOAD_1(MethodModel, ByteReader, boolean) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.I_ALOAD_1
-
-InstructionSet.I_ALOAD_2 - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.I_ALOAD_2(MethodModel, ByteReader, boolean) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.I_ALOAD_2
-
-InstructionSet.I_ALOAD_3 - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.I_ALOAD_3(MethodModel, ByteReader, boolean) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.I_ALOAD_3
-
-InstructionSet.I_ANEWARRAY - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.I_ANEWARRAY(MethodModel, ByteReader, boolean) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.I_ANEWARRAY
-
-InstructionSet.I_ARETURN - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.I_ARETURN(MethodModel, ByteReader, boolean) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.I_ARETURN
-
-InstructionSet.I_ARRAYLENGTH - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.I_ARRAYLENGTH(MethodModel, ByteReader, boolean) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.I_ARRAYLENGTH
-
-InstructionSet.I_ASTORE - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.I_ASTORE(MethodModel, ByteReader, boolean) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.I_ASTORE
-
-InstructionSet.I_ASTORE_0 - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.I_ASTORE_0(MethodModel, ByteReader, boolean) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.I_ASTORE_0
-
-InstructionSet.I_ASTORE_1 - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.I_ASTORE_1(MethodModel, ByteReader, boolean) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.I_ASTORE_1
-
-InstructionSet.I_ASTORE_2 - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.I_ASTORE_2(MethodModel, ByteReader, boolean) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.I_ASTORE_2
-
-InstructionSet.I_ASTORE_3 - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.I_ASTORE_3(MethodModel, ByteReader, boolean) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.I_ASTORE_3
-
-InstructionSet.I_ATHROW - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.I_ATHROW(MethodModel, ByteReader, boolean) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.I_ATHROW
-
-InstructionSet.I_BALOAD - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.I_BALOAD(MethodModel, ByteReader, boolean) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.I_BALOAD
-
-InstructionSet.I_BASTORE - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.I_BASTORE(MethodModel, ByteReader, boolean) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.I_BASTORE
-
-InstructionSet.I_BIPUSH - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.I_BIPUSH(MethodModel, ByteReader, boolean) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.I_BIPUSH
-
-InstructionSet.I_CALOAD - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.I_CALOAD(MethodModel, ByteReader, boolean) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.I_CALOAD
-
-InstructionSet.I_CASTORE - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.I_CASTORE(MethodModel, ByteReader, boolean) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.I_CASTORE
-
-InstructionSet.I_CHECKCAST - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.I_CHECKCAST(MethodModel, ByteReader, boolean) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.I_CHECKCAST
-
-InstructionSet.I_D2F - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.I_D2F(MethodModel, ByteReader, boolean) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.I_D2F
-
-InstructionSet.I_D2I - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.I_D2I(MethodModel, ByteReader, boolean) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.I_D2I
-
-InstructionSet.I_D2L - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.I_D2L(MethodModel, ByteReader, boolean) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.I_D2L
-
-InstructionSet.I_DADD - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.I_DADD(MethodModel, ByteReader, boolean) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.I_DADD
-
-InstructionSet.I_DALOAD - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.I_DALOAD(MethodModel, ByteReader, boolean) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.I_DALOAD
-
-InstructionSet.I_DASTORE - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.I_DASTORE(MethodModel, ByteReader, boolean) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.I_DASTORE
-
-InstructionSet.I_DCMPG - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.I_DCMPG(MethodModel, ByteReader, boolean) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.I_DCMPG
-
-InstructionSet.I_DCMPL - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.I_DCMPL(MethodModel, ByteReader, boolean) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.I_DCMPL
-
-InstructionSet.I_DCONST_0 - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.I_DCONST_0(MethodModel, ByteReader, boolean) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.I_DCONST_0
-
-InstructionSet.I_DCONST_1 - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.I_DCONST_1(MethodModel, ByteReader, boolean) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.I_DCONST_1
-
-InstructionSet.I_DDIV - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.I_DDIV(MethodModel, ByteReader, boolean) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.I_DDIV
-
-InstructionSet.I_DLOAD - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.I_DLOAD(MethodModel, ByteReader, boolean) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.I_DLOAD
-
-InstructionSet.I_DLOAD_0 - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.I_DLOAD_0(MethodModel, ByteReader, boolean) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.I_DLOAD_0
-
-InstructionSet.I_DLOAD_1 - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.I_DLOAD_1(MethodModel, ByteReader, boolean) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.I_DLOAD_1
-
-InstructionSet.I_DLOAD_2 - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.I_DLOAD_2(MethodModel, ByteReader, boolean) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.I_DLOAD_2
-
-InstructionSet.I_DLOAD_3 - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.I_DLOAD_3(MethodModel, ByteReader, boolean) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.I_DLOAD_3
-
-InstructionSet.I_DMUL - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.I_DMUL(MethodModel, ByteReader, boolean) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.I_DMUL
-
-InstructionSet.I_DNEG - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.I_DNEG(MethodModel, ByteReader, boolean) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.I_DNEG
-
-InstructionSet.I_DREM - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.I_DREM(MethodModel, ByteReader, boolean) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.I_DREM
-
-InstructionSet.I_DRETURN - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.I_DRETURN(MethodModel, ByteReader, boolean) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.I_DRETURN
-
-InstructionSet.I_DSTORE - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.I_DSTORE(MethodModel, ByteReader, boolean) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.I_DSTORE
-
-InstructionSet.I_DSTORE_0 - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.I_DSTORE_0(MethodModel, ByteReader, boolean) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.I_DSTORE_0
-
-InstructionSet.I_DSTORE_1 - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.I_DSTORE_1(MethodModel, ByteReader, boolean) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.I_DSTORE_1
-
-InstructionSet.I_DSTORE_2 - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.I_DSTORE_2(MethodModel, ByteReader, boolean) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.I_DSTORE_2
-
-InstructionSet.I_DSTORE_3 - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.I_DSTORE_3(MethodModel, ByteReader, boolean) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.I_DSTORE_3
-
-InstructionSet.I_DSUB - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.I_DSUB(MethodModel, ByteReader, boolean) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.I_DSUB
-
-InstructionSet.I_DUP - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.I_DUP(MethodModel, ByteReader, boolean) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.I_DUP
-
-InstructionSet.I_DUP2 - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.I_DUP2(MethodModel, ByteReader, boolean) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.I_DUP2
-
-InstructionSet.I_DUP2_X1 - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.I_DUP2_X1(MethodModel, ByteReader, boolean) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.I_DUP2_X1
-
-InstructionSet.I_DUP2_X2 - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.I_DUP2_X2(MethodModel, ByteReader, boolean) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.I_DUP2_X2
-
-InstructionSet.I_DUP_X1 - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.I_DUP_X1(MethodModel, ByteReader, boolean) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.I_DUP_X1
-
-InstructionSet.I_DUP_X2 - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.I_DUP_X2(MethodModel, ByteReader, boolean) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.I_DUP_X2
-
-InstructionSet.I_END - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.I_END(MethodModel, int) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.I_END
-
-InstructionSet.I_F2D - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.I_F2D(MethodModel, ByteReader, boolean) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.I_F2D
-
-InstructionSet.I_F2I - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.I_F2I(MethodModel, ByteReader, boolean) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.I_F2I
-
-InstructionSet.I_F2L - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.I_F2L(MethodModel, ByteReader, boolean) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.I_F2L
-
-InstructionSet.I_FADD - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.I_FADD(MethodModel, ByteReader, boolean) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.I_FADD
-
-InstructionSet.I_FALOAD - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.I_FALOAD(MethodModel, ByteReader, boolean) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.I_FALOAD
-
-InstructionSet.I_FASTORE - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.I_FASTORE(MethodModel, ByteReader, boolean) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.I_FASTORE
-
-InstructionSet.I_FCMPG - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.I_FCMPG(MethodModel, ByteReader, boolean) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.I_FCMPG
-
-InstructionSet.I_FCMPL - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.I_FCMPL(MethodModel, ByteReader, boolean) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.I_FCMPL
-
-InstructionSet.I_FCONST_0 - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.I_FCONST_0(MethodModel, ByteReader, boolean) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.I_FCONST_0
-
-InstructionSet.I_FCONST_1 - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.I_FCONST_1(MethodModel, ByteReader, boolean) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.I_FCONST_1
-
-InstructionSet.I_FCONST_2 - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.I_FCONST_2(MethodModel, ByteReader, boolean) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.I_FCONST_2
-
-InstructionSet.I_FDIV - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.I_FDIV(MethodModel, ByteReader, boolean) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.I_FDIV
-
-InstructionSet.I_FLOAD - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.I_FLOAD(MethodModel, ByteReader, boolean) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.I_FLOAD
-
-InstructionSet.I_FLOAD_0 - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.I_FLOAD_0(MethodModel, ByteReader, boolean) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.I_FLOAD_0
-
-InstructionSet.I_FLOAD_1 - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.I_FLOAD_1(MethodModel, ByteReader, boolean) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.I_FLOAD_1
-
-InstructionSet.I_FLOAD_2 - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.I_FLOAD_2(MethodModel, ByteReader, boolean) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.I_FLOAD_2
-
-InstructionSet.I_FLOAD_3 - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.I_FLOAD_3(MethodModel, ByteReader, boolean) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.I_FLOAD_3
-
-InstructionSet.I_FMUL - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.I_FMUL(MethodModel, ByteReader, boolean) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.I_FMUL
-
-InstructionSet.I_FNEG - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.I_FNEG(MethodModel, ByteReader, boolean) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.I_FNEG
-
-InstructionSet.I_FREM - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.I_FREM(MethodModel, ByteReader, boolean) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.I_FREM
-
-InstructionSet.I_FRETURN - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.I_FRETURN(MethodModel, ByteReader, boolean) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.I_FRETURN
-
-InstructionSet.I_FSTORE - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.I_FSTORE(MethodModel, ByteReader, boolean) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.I_FSTORE
-
-InstructionSet.I_FSTORE_0 - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.I_FSTORE_0(MethodModel, ByteReader, boolean) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.I_FSTORE_0
-
-InstructionSet.I_FSTORE_1 - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.I_FSTORE_1(MethodModel, ByteReader, boolean) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.I_FSTORE_1
-
-InstructionSet.I_FSTORE_2 - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.I_FSTORE_3 - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.I_FSTORE_3(MethodModel, ByteReader, boolean) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.I_FSTORE_3
-
-InstructionSet.I_FSUB - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.I_FSUB(MethodModel, ByteReader, boolean) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.I_FSUB
-
-InstructionSet.I_GETFIELD - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.I_GETFIELD(MethodModel, ByteReader, boolean) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.I_GETFIELD
-
-InstructionSet.I_GETSTATIC - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.I_GETSTATIC(MethodModel, ByteReader, boolean) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.I_GETSTATIC
-
-InstructionSet.I_GOTO - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.I_GOTO(MethodModel, ByteReader, boolean) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.I_GOTO
-
-InstructionSet.I_GOTO_W - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.I_GOTO_W(MethodModel, ByteReader, boolean) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.I_GOTO_W
-
-InstructionSet.I_I2B - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.I_I2B(MethodModel, ByteReader, boolean) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.I_I2B
-
-InstructionSet.I_I2C - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.I_I2C(MethodModel, ByteReader, boolean) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.I_I2C
-
-InstructionSet.I_I2D - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.I_I2D(MethodModel, ByteReader, boolean) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.I_I2D
-
-InstructionSet.I_I2F - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.I_I2F(MethodModel, ByteReader, boolean) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.I_I2F
-
-InstructionSet.I_I2L - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.I_I2L(MethodModel, ByteReader, boolean) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.I_I2L
-
-InstructionSet.I_I2S - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.I_I2S(MethodModel, ByteReader, boolean) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.I_I2S
-
-InstructionSet.I_IADD - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.I_IADD(MethodModel, ByteReader, boolean) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.I_IADD
-
-InstructionSet.I_IALOAD - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.I_IALOAD(MethodModel, ByteReader, boolean) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.I_IALOAD
-
-InstructionSet.I_IAND - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.I_IAND(MethodModel, ByteReader, boolean) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.I_IAND
-
-InstructionSet.I_IASTORE - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.I_IASTORE(MethodModel, ByteReader, boolean) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.I_IASTORE
-
-InstructionSet.I_ICONST_0 - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.I_ICONST_0(MethodModel, ByteReader, boolean) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.I_ICONST_0
-
-InstructionSet.I_ICONST_1 - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.I_ICONST_1(MethodModel, ByteReader, boolean) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.I_ICONST_1
-
-InstructionSet.I_ICONST_2 - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.I_ICONST_2(MethodModel, ByteReader, boolean) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.I_ICONST_2
-
-InstructionSet.I_ICONST_3 - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.I_ICONST_3(MethodModel, ByteReader, boolean) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.I_ICONST_3
-
-InstructionSet.I_ICONST_4 - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.I_ICONST_4(MethodModel, ByteReader, boolean) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.I_ICONST_4
-
-InstructionSet.I_ICONST_5 - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.I_ICONST_5(MethodModel, ByteReader, boolean) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.I_ICONST_5
-
-InstructionSet.I_ICONST_M1 - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.I_ICONST_M1(MethodModel, ByteReader, boolean) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.I_ICONST_M1
-
-InstructionSet.I_IDIV - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.I_IDIV(MethodModel, ByteReader, boolean) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.I_IDIV
-
-InstructionSet.I_IF_ACMPEQ - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.I_IF_ACMPEQ(MethodModel, ByteReader, boolean) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.I_IF_ACMPEQ
-
-InstructionSet.I_IF_ACMPNE - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.I_IF_ACMPNE(MethodModel, ByteReader, boolean) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.I_IF_ACMPNE
-
-InstructionSet.I_IF_ICMPEQ - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.I_IF_ICMPEQ(MethodModel, ByteReader, boolean) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.I_IF_ICMPEQ
-
-InstructionSet.I_IF_ICMPGE - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.I_IF_ICMPGE(MethodModel, ByteReader, boolean) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.I_IF_ICMPGE
-
-InstructionSet.I_IF_ICMPGT - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.I_IF_ICMPGT(MethodModel, ByteReader, boolean) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.I_IF_ICMPGT
-
-InstructionSet.I_IF_ICMPLE - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.I_IF_ICMPLE(MethodModel, ByteReader, boolean) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.I_IF_ICMPLE
-
-InstructionSet.I_IF_ICMPLT - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.I_IF_ICMPLT(MethodModel, ByteReader, boolean) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.I_IF_ICMPLT
-
-InstructionSet.I_IF_ICMPNE - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.I_IF_ICMPNE(MethodModel, ByteReader, boolean) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.I_IF_ICMPNE
-
-InstructionSet.I_IFEQ - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.I_IFEQ(MethodModel, ByteReader, boolean) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.I_IFEQ
-
-InstructionSet.I_IFGE - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.I_IFGE(MethodModel, ByteReader, boolean) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.I_IFGE
-
-InstructionSet.I_IFGT - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.I_IFGT(MethodModel, ByteReader, boolean) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.I_IFGT
-
-InstructionSet.I_IFLE - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.I_IFLE(MethodModel, ByteReader, boolean) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.I_IFLE
-
-InstructionSet.I_IFLT - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.I_IFLT(MethodModel, ByteReader, boolean) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.I_IFLT
-
-InstructionSet.I_IFNE - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.I_IFNE(MethodModel, ByteReader, boolean) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.I_IFNE
-
-InstructionSet.I_IFNONNULL - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.I_IFNONNULL(MethodModel, ByteReader, boolean) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.I_IFNONNULL
-
-InstructionSet.I_IFNULL - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.I_IFNULL(MethodModel, ByteReader, boolean) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.I_IFNULL
-
-InstructionSet.I_IINC - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.I_IINC(MethodModel, ByteReader, boolean) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.I_IINC
-
-InstructionSet.I_ILOAD - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.I_ILOAD(MethodModel, ByteReader, boolean) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.I_ILOAD
-
-InstructionSet.I_ILOAD_0 - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.I_ILOAD_0(MethodModel, ByteReader, boolean) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.I_ILOAD_0
-
-InstructionSet.I_ILOAD_1 - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.I_ILOAD_1(MethodModel, ByteReader, boolean) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.I_ILOAD_1
-
-InstructionSet.I_ILOAD_2 - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.I_ILOAD_2(MethodModel, ByteReader, boolean) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.I_ILOAD_2
-
-InstructionSet.I_ILOAD_3 - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.I_ILOAD_3(MethodModel, ByteReader, boolean) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.I_ILOAD_3
-
-InstructionSet.I_IMUL - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.I_IMUL(MethodModel, ByteReader, boolean) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.I_IMUL
-
-InstructionSet.I_INEG - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.I_INEG(MethodModel, ByteReader, boolean) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.I_INEG
-
-InstructionSet.I_INSTANCEOF - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.I_INSTANCEOF(MethodModel, ByteReader, boolean) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.I_INSTANCEOF
-
-InstructionSet.I_INVOKEDYNAMIC - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.I_INVOKEDYNAMIC(MethodModel, ByteReader, boolean) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.I_INVOKEDYNAMIC
-
-InstructionSet.I_INVOKEINTERFACE - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.I_INVOKEINTERFACE(MethodModel, ByteReader, boolean) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.I_INVOKEINTERFACE
-
-InstructionSet.I_INVOKESPECIAL - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.I_INVOKESPECIAL(MethodModel, ByteReader, boolean) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.I_INVOKESPECIAL
-
-InstructionSet.I_INVOKESTATIC - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.I_INVOKESTATIC(MethodModel, ByteReader, boolean) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.I_INVOKESTATIC
-
-InstructionSet.I_INVOKEVIRTUAL - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.I_INVOKEVIRTUAL(MethodModel, ByteReader, boolean) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.I_INVOKEVIRTUAL
-
-InstructionSet.I_IOR - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.I_IOR(MethodModel, ByteReader, boolean) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.I_IOR
-
-InstructionSet.I_IREM - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.I_IREM(MethodModel, ByteReader, boolean) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.I_IREM
-
-InstructionSet.I_IRETURN - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.I_IRETURN(MethodModel, ByteReader, boolean) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.I_IRETURN
-
-InstructionSet.I_ISHL - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.I_ISHL(MethodModel, ByteReader, boolean) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.I_ISHL
-
-InstructionSet.I_ISHR - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.I_ISHR(MethodModel, ByteReader, boolean) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.I_ISHR
-
-InstructionSet.I_ISTORE - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.I_ISTORE(MethodModel, ByteReader, boolean) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.I_ISTORE
-
-InstructionSet.I_ISTORE_0 - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.I_ISTORE_0(MethodModel, ByteReader, boolean) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.I_ISTORE_0
-
-InstructionSet.I_ISTORE_1 - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.I_ISTORE_1(MethodModel, ByteReader, boolean) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.I_ISTORE_1
-
-InstructionSet.I_ISTORE_2 - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.I_ISTORE_2(MethodModel, ByteReader, boolean) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.I_ISTORE_2
-
-InstructionSet.I_ISTORE_3 - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.I_ISTORE_3(MethodModel, ByteReader, boolean) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.I_ISTORE_3
-
-InstructionSet.I_ISUB - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.I_ISUB(MethodModel, ByteReader, boolean) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.I_ISUB
-
-InstructionSet.I_IUSHR - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.I_IUSHR(MethodModel, ByteReader, boolean) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.I_IUSHR
-
-InstructionSet.I_IXOR - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.I_IXOR(MethodModel, ByteReader, boolean) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.I_IXOR
-
-InstructionSet.I_JSR - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.I_JSR(MethodModel, ByteReader, boolean) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.I_JSR
-
-InstructionSet.I_JSR_W - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.I_JSR_W(MethodModel, ByteReader, boolean) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.I_JSR_W
-
-InstructionSet.I_L2D - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.I_L2D(MethodModel, ByteReader, boolean) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.I_L2D
-
-InstructionSet.I_L2F - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.I_L2F(MethodModel, ByteReader, boolean) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.I_L2F
-
-InstructionSet.I_L2I - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.I_L2I(MethodModel, ByteReader, boolean) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.I_L2I
-
-InstructionSet.I_LADD - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.I_LADD(MethodModel, ByteReader, boolean) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.I_LADD
-
-InstructionSet.I_LALOAD - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.I_LALOAD(MethodModel, ByteReader, boolean) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.I_LALOAD
-
-InstructionSet.I_LAND - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.I_LAND(MethodModel, ByteReader, boolean) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.I_LAND
-
-InstructionSet.I_LASTORE - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.I_LASTORE(MethodModel, ByteReader, boolean) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.I_LASTORE
-
-InstructionSet.I_LCMP - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.I_LCMP(MethodModel, ByteReader, boolean) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.I_LCMP
-
-InstructionSet.I_LCONST_0 - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.I_LCONST_0(MethodModel, ByteReader, boolean) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.I_LCONST_0
-
-InstructionSet.I_LCONST_1 - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.I_LCONST_1(MethodModel, ByteReader, boolean) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.I_LCONST_1
-
-InstructionSet.I_LDC - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.I_LDC(MethodModel, ByteReader, boolean) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.I_LDC
-
-InstructionSet.I_LDC2_W - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.I_LDC2_W(MethodModel, ByteReader, boolean) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.I_LDC2_W
-
-InstructionSet.I_LDC_W - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.I_LDC_W(MethodModel, ByteReader, boolean) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.I_LDC_W
-
-InstructionSet.I_LDIV - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.I_LDIV(MethodModel, ByteReader, boolean) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.I_LDIV
-
-InstructionSet.I_LLOAD - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.I_LLOAD(MethodModel, ByteReader, boolean) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.I_LLOAD
-
-InstructionSet.I_LLOAD_0 - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.I_LLOAD_0(MethodModel, ByteReader, boolean) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.I_LLOAD_0
-
-InstructionSet.I_LLOAD_1 - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.I_LLOAD_1(MethodModel, ByteReader, boolean) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.I_LLOAD_1
-
-InstructionSet.I_LLOAD_2 - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.I_LLOAD_2(MethodModel, ByteReader, boolean) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.I_LLOAD_2
-
-InstructionSet.I_LLOAD_3 - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.I_LLOAD_3(MethodModel, ByteReader, boolean) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.I_LLOAD_3
-
-InstructionSet.I_LMUL - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.I_LMUL(MethodModel, ByteReader, boolean) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.I_LMUL
-
-InstructionSet.I_LNEG - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.I_LNEG(MethodModel, ByteReader, boolean) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.I_LNEG
-
-InstructionSet.I_LOOKUPSWITCH - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.I_LOOKUPSWITCH(MethodModel, ByteReader, boolean) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.I_LOOKUPSWITCH
-
-InstructionSet.I_LOR - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.I_LOR(MethodModel, ByteReader, boolean) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.I_LOR
-
-InstructionSet.I_LREM - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.I_LREM(MethodModel, ByteReader, boolean) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.I_LREM
-
-InstructionSet.I_LRETURN - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.I_LRETURN(MethodModel, ByteReader, boolean) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.I_LRETURN
-
-InstructionSet.I_LSHL - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.I_LSHL(MethodModel, ByteReader, boolean) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.I_LSHL
-
-InstructionSet.I_LSHR - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.I_LSHR(MethodModel, ByteReader, boolean) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.I_LSHR
-
-InstructionSet.I_LSTORE - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.I_LSTORE(MethodModel, ByteReader, boolean) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.I_LSTORE
-
-InstructionSet.I_LSTORE_0 - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.I_LSTORE_0(MethodModel, ByteReader, boolean) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.I_LSTORE_0
-
-InstructionSet.I_LSTORE_1 - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.I_LSTORE_1(MethodModel, ByteReader, boolean) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.I_LSTORE_1
-
-InstructionSet.I_LSTORE_2 - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.I_LSTORE_2(MethodModel, ByteReader, boolean) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.I_LSTORE_2
-
-InstructionSet.I_LSTORE_3 - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.I_LSTORE_3(MethodModel, ByteReader, boolean) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.I_LSTORE_3
-
-InstructionSet.I_LSUB - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.I_LSUB(MethodModel, ByteReader, boolean) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.I_LSUB
-
-InstructionSet.I_LUSHR - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.I_LUSHR(MethodModel, ByteReader, boolean) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.I_LUSHR
-
-InstructionSet.I_LXOR - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.I_LXOR(MethodModel, ByteReader, boolean) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.I_LXOR
-
-InstructionSet.I_MONITORENTER - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.I_MONITORENTER(MethodModel, ByteReader, boolean) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.I_MONITORENTER
-
-InstructionSet.I_MONITOREXIT - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.I_MONITOREXIT(MethodModel, ByteReader, boolean) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.I_MONITOREXIT
-
-InstructionSet.I_MULTIANEWARRAY - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.I_MULTIANEWARRAY(MethodModel, ByteReader, boolean) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.I_MULTIANEWARRAY
-
-InstructionSet.I_NEW - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.I_NEW(MethodModel, ByteReader, boolean) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.I_NEW
-
-InstructionSet.I_NEWARRAY - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.I_NEWARRAY(MethodModel, ByteReader, boolean) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.I_NEWARRAY
-
-InstructionSet.I_NOP - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.I_NOP(MethodModel, ByteReader, boolean) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.I_NOP
-
-InstructionSet.I_POP - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.I_POP(MethodModel, ByteReader, boolean) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.I_POP
-
-InstructionSet.I_POP2 - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.I_POP2(MethodModel, ByteReader, boolean) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.I_POP2
-
-InstructionSet.I_PUTFIELD - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.I_PUTFIELD(MethodModel, ByteReader, boolean) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.I_PUTFIELD
-
-InstructionSet.I_PUTSTATIC - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.I_PUTSTATIC(MethodModel, ByteReader, boolean) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.I_PUTSTATIC
-
-InstructionSet.I_RET - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.I_RET(MethodModel, ByteReader, boolean) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.I_RET
-
-InstructionSet.I_RETURN - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.I_RETURN(MethodModel, ByteReader, boolean) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.I_RETURN
-
-InstructionSet.I_SALOAD - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.I_SALOAD(MethodModel, ByteReader, boolean) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.I_SALOAD
-
-InstructionSet.I_SASTORE - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.I_SASTORE(MethodModel, ByteReader, boolean) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.I_SASTORE
-
-InstructionSet.I_SIPUSH - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.I_SIPUSH(MethodModel, ByteReader, boolean) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.I_SIPUSH
-
-InstructionSet.I_SWAP - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.I_SWAP(MethodModel, ByteReader, boolean) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.I_SWAP
-
-InstructionSet.I_TABLESWITCH - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.I_TABLESWITCH(MethodModel, ByteReader, boolean) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.I_TABLESWITCH
-
-InstructionSet.I_WIDE - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.I_WIDE(MethodModel, ByteReader, boolean) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.I_WIDE
-
-InstructionSet.If - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.If(MethodModel, InstructionSet.ByteCode, ByteReader, boolean) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.If
-
-InstructionSet.IfUnary - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.IfUnary(MethodModel, InstructionSet.ByteCode, ByteReader, boolean) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.IfUnary
-
-InstructionSet.ImmediateConstant <T > - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.ImmediateConstant(MethodModel, InstructionSet.ByteCode, ByteReader, boolean) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.ImmediateConstant
-
-InstructionSet.ImmediateSpec - Enum in com.amd.aparapi.internal.instruction
-
-InstructionSet.IncrementInstruction - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.IncrementInstruction(MethodModel, Instruction, boolean, boolean) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.IncrementInstruction
-
-InstructionSet.Index - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.Index(MethodModel, InstructionSet.ByteCode, ByteReader, boolean) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.Index
-
-InstructionSet.Index08 - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.Index08(MethodModel, InstructionSet.ByteCode, ByteReader, boolean) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.Index08
-
-InstructionSet.Index16 - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.Index16(MethodModel, InstructionSet.ByteCode, ByteReader, boolean) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.Index16
-
-InstructionSet.IndexConst - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.IndexConst(MethodModel, InstructionSet.ByteCode, ByteReader, boolean, int) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.IndexConst
-
-InstructionSet.InlineAssignInstruction - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.InlineAssignInstruction(MethodModel, InstructionSet.AssignToLocalVariable, Instruction) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.InlineAssignInstruction
-
-InstructionSet.InterfaceConstantPoolMethodIndexAccessor - Interface in com.amd.aparapi.internal.instruction
-
-InstructionSet.LocalVariableConstIndexAccessor - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.LocalVariableConstIndexAccessor(MethodModel, InstructionSet.ByteCode, ByteReader, boolean, int) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.LocalVariableConstIndexAccessor
-
-InstructionSet.LocalVariableConstIndexLoad - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.LocalVariableConstIndexLoad(MethodModel, InstructionSet.ByteCode, ByteReader, boolean, int) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.LocalVariableConstIndexLoad
-
-InstructionSet.LocalVariableConstIndexStore - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.LocalVariableConstIndexStore(MethodModel, InstructionSet.ByteCode, ByteReader, boolean, int) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.LocalVariableConstIndexStore
-
-InstructionSet.LocalVariableIndex08Accessor - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.LocalVariableIndex08Accessor(MethodModel, InstructionSet.ByteCode, ByteReader, boolean) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.LocalVariableIndex08Accessor
-
-InstructionSet.LocalVariableIndex08Load - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.LocalVariableIndex08Load(MethodModel, InstructionSet.ByteCode, ByteReader, boolean) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.LocalVariableIndex08Load
-
-InstructionSet.LocalVariableIndex08Store - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.LocalVariableIndex08Store(MethodModel, InstructionSet.ByteCode, ByteReader, boolean) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.LocalVariableIndex08Store
-
-InstructionSet.LocalVariableTableIndexAccessor - Interface in com.amd.aparapi.internal.instruction
-
-InstructionSet.MethodCall - Interface in com.amd.aparapi.internal.instruction
-
-InstructionSet.MultiAssignInstruction - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.MultiAssignInstruction(MethodModel, Instruction, Instruction, Instruction) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.MultiAssignInstruction
-
-InstructionSet.New - Interface in com.amd.aparapi.internal.instruction
-
-InstructionSet.Operator - Enum in com.amd.aparapi.internal.instruction
-
-Represents an Operator
-
-InstructionSet.OperatorInstruction - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.PopSpec - Enum in com.amd.aparapi.internal.instruction
-
-InstructionSet.PushSpec - Enum in com.amd.aparapi.internal.instruction
-
-InstructionSet.Return - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.Return(MethodModel, InstructionSet.ByteCode, ByteReader, boolean) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.Return
-
-InstructionSet.Switch - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.Switch(MethodModel, InstructionSet.ByteCode, ByteReader, boolean) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.Switch
-
-InstructionSet.TypeSpec - Enum in com.amd.aparapi.internal.instruction
-
-InstructionSet.Unary - Interface in com.amd.aparapi.internal.instruction
-
-InstructionSet.UnaryOperator - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.UnconditionalBranch - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.UnconditionalBranch(MethodModel, InstructionSet.ByteCode, ByteReader, boolean) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.UnconditionalBranch
-
-InstructionSet.UnconditionalBranch(MethodModel, InstructionSet.ByteCode, Instruction) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.UnconditionalBranch
-
-InstructionSet.UnconditionalBranch16 - Class in com.amd.aparapi.internal.instruction
-
-InstructionSet.UnconditionalBranch16(MethodModel, InstructionSet.ByteCode, ByteReader, boolean) - Constructor for class com.amd.aparapi.internal.instruction.InstructionSet.UnconditionalBranch16
-
-InstructionSet.VirtualMethodCall - Interface in com.amd.aparapi.internal.instruction
-
-InstructionTransformer - Class in com.amd.aparapi.internal.instruction
-
-InstructionTransformer(String) - Constructor for class com.amd.aparapi.internal.instruction.InstructionTransformer
-
-InstructionViewer - Class in com.amd.aparapi.internal.tool
-
-InstructionViewer(Color, String) - Constructor for class com.amd.aparapi.internal.tool.InstructionViewer
-
-InstructionViewer() - Constructor for class com.amd.aparapi.internal.tool.InstructionViewer
-
-InstructionViewer.DoorBell - Class in com.amd.aparapi.internal.tool
-
-InstructionViewer.DoorBell() - Constructor for class com.amd.aparapi.internal.tool.InstructionViewer.DoorBell
-
-InstructionViewer.Form <T extends InstructionViewer.Form.Template > - Class in com.amd.aparapi.internal.tool
-
-InstructionViewer.Form(T) - Constructor for class com.amd.aparapi.internal.tool.InstructionViewer.Form
-
-InstructionViewer.Form.Check - Annotation Type in com.amd.aparapi.internal.tool
-
-InstructionViewer.Form.List - Annotation Type in com.amd.aparapi.internal.tool
-
-InstructionViewer.Form.OneOf - Annotation Type in com.amd.aparapi.internal.tool
-
-InstructionViewer.Form.Template - Interface in com.amd.aparapi.internal.tool
-
-InstructionViewer.Form.Toggle - Annotation Type in com.amd.aparapi.internal.tool
-
-InstructionViewer.InstructionView - Class in com.amd.aparapi.internal.tool
-
-InstructionViewer.InstructionView(Instruction) - Constructor for class com.amd.aparapi.internal.tool.InstructionViewer.InstructionView
-
-InstructionViewer.Options - Class in com.amd.aparapi.internal.tool
-
-InstructionViewer.Options() - Constructor for class com.amd.aparapi.internal.tool.InstructionViewer.Options
-
-invert() - Method in class com.amd.aparapi.internal.instruction.BranchSet.CompoundLogicalExpressionNode
-
-invert() - Method in class com.amd.aparapi.internal.instruction.BranchSet.LogicalExpressionNode
-
-invert() - Method in class com.amd.aparapi.internal.instruction.BranchSet.SimpleLogicalExpressionNode
-
-invoke(Object, Method, Object[]) - Method in class com.amd.aparapi.device.OpenCLDevice.OpenCLInvocationHandler
-
-invoke(Object[]) - Method in class com.amd.aparapi.internal.opencl.OpenCLKernel
-
-isAfter(Instruction) - Method in class com.amd.aparapi.internal.instruction.Instruction
-
-isAfterOrEqual(Instruction) - Method in class com.amd.aparapi.internal.instruction.Instruction
-
-isAnd() - Method in class com.amd.aparapi.internal.instruction.BranchSet.CompoundLogicalExpressionNode
-
-isArray() - Method in class com.amd.aparapi.internal.model.ClassModel.ConstantPool.ReferenceEntry.Type
-
-isBackward() - Method in class com.amd.aparapi.internal.tool.InstructionHelper.BranchVector
-
-isBefore(Instruction) - Method in class com.amd.aparapi.internal.instruction.Instruction
-
-isBeforeOrEqual(Instruction) - Method in class com.amd.aparapi.internal.instruction.Instruction
-
-isBinary() - Method in enum com.amd.aparapi.internal.instruction.InstructionSet.Operator
-
-isBranch() - Method in class com.amd.aparapi.internal.instruction.Instruction
-
-isBranchTarget() - Method in class com.amd.aparapi.internal.instruction.Instruction
-
-isBreakOrContinue() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.Branch
-
-isConditional() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.Branch
-
-isConditionalBranch() - Method in class com.amd.aparapi.internal.tool.InstructionHelper.BranchVector
-
-isConditionalBranchTarget() - Method in class com.amd.aparapi.internal.instruction.Instruction
-
-isDeclaration() - Method in interface com.amd.aparapi.internal.instruction.InstructionSet.AssignToLocalVariable
-
-isDeclaration() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_RET
-
-isDeclaration() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.LocalVariableConstIndexStore
-
-isDeclaration() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.LocalVariableIndex08Store
-
-isExplicit() - Method in class com.amd.aparapi.internal.kernel.KernelRunner
-
-isExplicit() - Method in class com.amd.aparapi.Kernel
-
-For dev purposes (we should remove this for production) determine whether this Kernel uses explicit memory management
-
-isForward() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.Branch
-
-isForward() - Method in class com.amd.aparapi.internal.tool.InstructionHelper.BranchVector
-
-isForwardBranch() - Method in class com.amd.aparapi.internal.instruction.Instruction
-
-isForwardBranchTarget() - Method in class com.amd.aparapi.internal.instruction.Instruction
-
-isForwardConditional() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.Branch
-
-isForwardConditionalBranchTarget() - Method in class com.amd.aparapi.internal.instruction.Instruction
-
-isForwardUnconditional() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.Branch
-
-isForwardUnconditionalBranchTarget() - Method in class com.amd.aparapi.internal.instruction.Instruction
-
-isGetter() - Method in class com.amd.aparapi.internal.model.MethodModel
-
-isiinc() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_WIDE
-
-isInc() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.FieldArrayElementIncrement
-
-isInc() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.I_IINC
-
-isInc() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.IncrementInstruction
-
-isInvert() - Method in class com.amd.aparapi.internal.instruction.BranchSet.SimpleLogicalExpressionNode
-
-isLocalIsDerived() - Method in class com.amd.aparapi.Range
-
-isMappedMethod(ClassModel.ConstantPool.MethodReferenceEntry) - Static method in class com.amd.aparapi.Kernel
-
-isOpenCL() - Method in enum com.amd.aparapi.Kernel.EXECUTION_MODE
-
-isOpenCLAvailable() - Static method in class com.amd.aparapi.internal.opencl.OpenCLLoader
-
-Retrieve the status of whether OpenCL was successfully loaded
-
-isOpenCLDelegateMethod(ClassModel.ConstantPool.MethodReferenceEntry) - Static method in class com.amd.aparapi.Kernel
-
-isPre() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.FieldArrayElementIncrement
-
-isPre() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.IncrementInstruction
-
-isReverse() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.Branch
-
-isReverseBranchTarget() - Method in class com.amd.aparapi.internal.instruction.Instruction
-
-isReverseConditional() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.Branch
-
-isReverseConditionalBranchTarget() - Method in class com.amd.aparapi.internal.instruction.Instruction
-
-isReverseUnconditional() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.Branch
-
-isReverseUnconditionalBranchTarget() - Method in class com.amd.aparapi.internal.instruction.Instruction
-
-isSetter() - Method in class com.amd.aparapi.internal.model.MethodModel
-
-isStatic() - Method in class com.amd.aparapi.internal.model.ClassModel.ClassModelMethod
-
-isSuperClass(String) - Method in class com.amd.aparapi.internal.model.ClassModel
-
-Determine if this is the superclass of some other named class.
-
-isSuperClass(Class<?>) - Method in class com.amd.aparapi.internal.model.ClassModel
-
-Determine if this is the superclass of some other class.
-
-isUnary() - Method in enum com.amd.aparapi.internal.instruction.InstructionSet.Operator
-
-isUnconditional() - Method in class com.amd.aparapi.internal.instruction.InstructionSet.Branch
-
-isUnconditionalBranchTarget() - Method in class com.amd.aparapi.internal.instruction.Instruction
-
-isValid() - Method in class com.amd.aparapi.Range
-
-isVoid() - Method in class com.amd.aparapi.internal.model.ClassModel.ConstantPool.ReferenceEntry.Type
-
-iterator() - Method in class com.amd.aparapi.internal.model.ClassModel.AttributePool.PoolEntry
-
-iterator() - Method in class com.amd.aparapi.internal.model.ClassModel.ConstantPool
-
-
-
A B C D E F G H I J K L M N O P R S T U V W _
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/index.html b/com.amd.aparapi/doc/api/index.html
deleted file mode 100644
index 70aec448..00000000
--- a/com.amd.aparapi/doc/api/index.html
+++ /dev/null
@@ -1,33 +0,0 @@
-
-
-
-
-
-Generated Documentation (Untitled)
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-Frame Alert
-This document is designed to be viewed using the frames feature. If you see this message, you are using a non-frame-capable web client. Link to Non-frame version .
-
-
-
diff --git a/com.amd.aparapi/doc/api/overview-frame.html b/com.amd.aparapi/doc/api/overview-frame.html
deleted file mode 100644
index 6cd71842..00000000
--- a/com.amd.aparapi/doc/api/overview-frame.html
+++ /dev/null
@@ -1,35 +0,0 @@
-
-
-
-
-
-Overview List
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/overview-summary.html b/com.amd.aparapi/doc/api/overview-summary.html
deleted file mode 100644
index 389c0400..00000000
--- a/com.amd.aparapi/doc/api/overview-summary.html
+++ /dev/null
@@ -1,186 +0,0 @@
-
-
-
-
-
-Overview
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/overview-tree.html b/com.amd.aparapi/doc/api/overview-tree.html
deleted file mode 100644
index fd195e60..00000000
--- a/com.amd.aparapi/doc/api/overview-tree.html
+++ /dev/null
@@ -1,746 +0,0 @@
-
-
-
-
-
-Class Hierarchy
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
Class Hierarchy
-
-
Interface Hierarchy
-
-
Annotation Type Hierarchy
-
-com.amd.aparapi.internal.tool.InstructionViewer.Form.OneOf (implements java.lang.annotation.Annotation)
-com.amd.aparapi.internal.tool.InstructionViewer.Form.List (implements java.lang.annotation.Annotation)
-com.amd.aparapi.internal.tool.InstructionViewer.Form.Toggle (implements java.lang.annotation.Annotation)
-com.amd.aparapi.internal.tool.InstructionViewer.Form.Check (implements java.lang.annotation.Annotation)
-com.amd.aparapi.annotation.Experimental (implements java.lang.annotation.Annotation)
-com.amd.aparapi.opencl.OpenCL.Put (implements java.lang.annotation.Annotation)
-com.amd.aparapi.opencl.OpenCL.Get (implements java.lang.annotation.Annotation)
-com.amd.aparapi.opencl.OpenCL.Source (implements java.lang.annotation.Annotation)
-com.amd.aparapi.opencl.OpenCL.Resource (implements java.lang.annotation.Annotation)
-com.amd.aparapi.opencl.OpenCL.Kernel (implements java.lang.annotation.Annotation)
-com.amd.aparapi.opencl.OpenCL.Arg (implements java.lang.annotation.Annotation)
-com.amd.aparapi.opencl.OpenCL.GlobalReadWrite (implements java.lang.annotation.Annotation)
-com.amd.aparapi.opencl.OpenCL.GlobalReadOnly (implements java.lang.annotation.Annotation)
-com.amd.aparapi.opencl.OpenCL.GlobalWriteOnly (implements java.lang.annotation.Annotation)
-com.amd.aparapi.opencl.OpenCL.Local (implements java.lang.annotation.Annotation)
-com.amd.aparapi.opencl.OpenCL.Constant (implements java.lang.annotation.Annotation)
-com.amd.aparapi.Kernel.Local (implements java.lang.annotation.Annotation)
-com.amd.aparapi.Kernel.Constant (implements java.lang.annotation.Annotation)
-com.amd.aparapi.internal.annotation.UsedByJNICode (implements java.lang.annotation.Annotation)
-com.amd.aparapi.internal.annotation.Unused (implements java.lang.annotation.Annotation)
-com.amd.aparapi.internal.annotation.RemoveMe (implements java.lang.annotation.Annotation)
-com.amd.aparapi.internal.annotation.DocMe (implements java.lang.annotation.Annotation)
-
-
Enum Hierarchy
-
-java.lang.Object
-
-java.lang.Enum<E> (implements java.lang.Comparable<T>, java.io.Serializable)
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/package-list b/com.amd.aparapi/doc/api/package-list
deleted file mode 100644
index 08d56e09..00000000
--- a/com.amd.aparapi/doc/api/package-list
+++ /dev/null
@@ -1,16 +0,0 @@
-com.amd.aparapi
-com.amd.aparapi.annotation
-com.amd.aparapi.device
-com.amd.aparapi.exception
-com.amd.aparapi.internal.annotation
-com.amd.aparapi.internal.exception
-com.amd.aparapi.internal.instruction
-com.amd.aparapi.internal.jni
-com.amd.aparapi.internal.kernel
-com.amd.aparapi.internal.model
-com.amd.aparapi.internal.opencl
-com.amd.aparapi.internal.reader
-com.amd.aparapi.internal.tool
-com.amd.aparapi.internal.util
-com.amd.aparapi.internal.writer
-com.amd.aparapi.opencl
diff --git a/com.amd.aparapi/doc/api/resources/background.gif b/com.amd.aparapi/doc/api/resources/background.gif
deleted file mode 100644
index f471940f..00000000
Binary files a/com.amd.aparapi/doc/api/resources/background.gif and /dev/null differ
diff --git a/com.amd.aparapi/doc/api/resources/tab.gif b/com.amd.aparapi/doc/api/resources/tab.gif
deleted file mode 100644
index 1a73a83b..00000000
Binary files a/com.amd.aparapi/doc/api/resources/tab.gif and /dev/null differ
diff --git a/com.amd.aparapi/doc/api/resources/titlebar.gif b/com.amd.aparapi/doc/api/resources/titlebar.gif
deleted file mode 100644
index 17443b3e..00000000
Binary files a/com.amd.aparapi/doc/api/resources/titlebar.gif and /dev/null differ
diff --git a/com.amd.aparapi/doc/api/resources/titlebar_end.gif b/com.amd.aparapi/doc/api/resources/titlebar_end.gif
deleted file mode 100644
index 3ad78d46..00000000
Binary files a/com.amd.aparapi/doc/api/resources/titlebar_end.gif and /dev/null differ
diff --git a/com.amd.aparapi/doc/api/serialized-form.html b/com.amd.aparapi/doc/api/serialized-form.html
deleted file mode 100644
index 49fb33bf..00000000
--- a/com.amd.aparapi/doc/api/serialized-form.html
+++ /dev/null
@@ -1,170 +0,0 @@
-
-
-
-
-
-Serialized Form
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/com.amd.aparapi/doc/api/stylesheet.css b/com.amd.aparapi/doc/api/stylesheet.css
deleted file mode 100644
index 0e0d70c1..00000000
--- a/com.amd.aparapi/doc/api/stylesheet.css
+++ /dev/null
@@ -1,474 +0,0 @@
-/* Javadoc style sheet */
-/*
-Overall document style
-*/
-body {
- background-color:#ffffff;
- color:#353833;
- font-family:Arial, Helvetica, sans-serif;
- font-size:76%;
- margin:0;
-}
-a:link, a:visited {
- text-decoration:none;
- color:#4c6b87;
-}
-a:hover, a:focus {
- text-decoration:none;
- color:#bb7a2a;
-}
-a:active {
- text-decoration:none;
- color:#4c6b87;
-}
-a[name] {
- color:#353833;
-}
-a[name]:hover {
- text-decoration:none;
- color:#353833;
-}
-pre {
- font-size:1.3em;
-}
-h1 {
- font-size:1.8em;
-}
-h2 {
- font-size:1.5em;
-}
-h3 {
- font-size:1.4em;
-}
-h4 {
- font-size:1.3em;
-}
-h5 {
- font-size:1.2em;
-}
-h6 {
- font-size:1.1em;
-}
-ul {
- list-style-type:disc;
-}
-code, tt {
- font-size:1.2em;
-}
-dt code {
- font-size:1.2em;
-}
-table tr td dt code {
- font-size:1.2em;
- vertical-align:top;
-}
-sup {
- font-size:.6em;
-}
-/*
-Document title and Copyright styles
-*/
-.clear {
- clear:both;
- height:0px;
- overflow:hidden;
-}
-.aboutLanguage {
- float:right;
- padding:0px 21px;
- font-size:.8em;
- z-index:200;
- margin-top:-7px;
-}
-.legalCopy {
- margin-left:.5em;
-}
-.bar a, .bar a:link, .bar a:visited, .bar a:active {
- color:#FFFFFF;
- text-decoration:none;
-}
-.bar a:hover, .bar a:focus {
- color:#bb7a2a;
-}
-.tab {
- background-color:#0066FF;
- background-image:url(resources/titlebar.gif);
- background-position:left top;
- background-repeat:no-repeat;
- color:#ffffff;
- padding:8px;
- width:5em;
- font-weight:bold;
-}
-/*
-Navigation bar styles
-*/
-.bar {
- background-image:url(resources/background.gif);
- background-repeat:repeat-x;
- color:#FFFFFF;
- padding:.8em .5em .4em .8em;
- height:auto;/*height:1.8em;*/
- font-size:1em;
- margin:0;
-}
-.topNav {
- background-image:url(resources/background.gif);
- background-repeat:repeat-x;
- color:#FFFFFF;
- float:left;
- padding:0;
- width:100%;
- clear:right;
- height:2.8em;
- padding-top:10px;
- overflow:hidden;
-}
-.bottomNav {
- margin-top:10px;
- background-image:url(resources/background.gif);
- background-repeat:repeat-x;
- color:#FFFFFF;
- float:left;
- padding:0;
- width:100%;
- clear:right;
- height:2.8em;
- padding-top:10px;
- overflow:hidden;
-}
-.subNav {
- background-color:#dee3e9;
- border-bottom:1px solid #9eadc0;
- float:left;
- width:100%;
- overflow:hidden;
-}
-.subNav div {
- clear:left;
- float:left;
- padding:0 0 5px 6px;
-}
-ul.navList, ul.subNavList {
- float:left;
- margin:0 25px 0 0;
- padding:0;
-}
-ul.navList li{
- list-style:none;
- float:left;
- padding:3px 6px;
-}
-ul.subNavList li{
- list-style:none;
- float:left;
- font-size:90%;
-}
-.topNav a:link, .topNav a:active, .topNav a:visited, .bottomNav a:link, .bottomNav a:active, .bottomNav a:visited {
- color:#FFFFFF;
- text-decoration:none;
-}
-.topNav a:hover, .bottomNav a:hover {
- text-decoration:none;
- color:#bb7a2a;
-}
-.navBarCell1Rev {
- background-image:url(resources/tab.gif);
- background-color:#a88834;
- color:#FFFFFF;
- margin: auto 5px;
- border:1px solid #c9aa44;
-}
-/*
-Page header and footer styles
-*/
-.header, .footer {
- clear:both;
- margin:0 20px;
- padding:5px 0 0 0;
-}
-.indexHeader {
- margin:10px;
- position:relative;
-}
-.indexHeader h1 {
- font-size:1.3em;
-}
-.title {
- color:#2c4557;
- margin:10px 0;
-}
-.subTitle {
- margin:5px 0 0 0;
-}
-.header ul {
- margin:0 0 25px 0;
- padding:0;
-}
-.footer ul {
- margin:20px 0 5px 0;
-}
-.header ul li, .footer ul li {
- list-style:none;
- font-size:1.2em;
-}
-/*
-Heading styles
-*/
-div.details ul.blockList ul.blockList ul.blockList li.blockList h4, div.details ul.blockList ul.blockList ul.blockListLast li.blockList h4 {
- background-color:#dee3e9;
- border-top:1px solid #9eadc0;
- border-bottom:1px solid #9eadc0;
- margin:0 0 6px -8px;
- padding:2px 5px;
-}
-ul.blockList ul.blockList ul.blockList li.blockList h3 {
- background-color:#dee3e9;
- border-top:1px solid #9eadc0;
- border-bottom:1px solid #9eadc0;
- margin:0 0 6px -8px;
- padding:2px 5px;
-}
-ul.blockList ul.blockList li.blockList h3 {
- padding:0;
- margin:15px 0;
-}
-ul.blockList li.blockList h2 {
- padding:0px 0 20px 0;
-}
-/*
-Page layout container styles
-*/
-.contentContainer, .sourceContainer, .classUseContainer, .serializedFormContainer, .constantValuesContainer {
- clear:both;
- padding:10px 20px;
- position:relative;
-}
-.indexContainer {
- margin:10px;
- position:relative;
- font-size:1.0em;
-}
-.indexContainer h2 {
- font-size:1.1em;
- padding:0 0 3px 0;
-}
-.indexContainer ul {
- margin:0;
- padding:0;
-}
-.indexContainer ul li {
- list-style:none;
-}
-.contentContainer .description dl dt, .contentContainer .details dl dt, .serializedFormContainer dl dt {
- font-size:1.1em;
- font-weight:bold;
- margin:10px 0 0 0;
- color:#4E4E4E;
-}
-.contentContainer .description dl dd, .contentContainer .details dl dd, .serializedFormContainer dl dd {
- margin:10px 0 10px 20px;
-}
-.serializedFormContainer dl.nameValue dt {
- margin-left:1px;
- font-size:1.1em;
- display:inline;
- font-weight:bold;
-}
-.serializedFormContainer dl.nameValue dd {
- margin:0 0 0 1px;
- font-size:1.1em;
- display:inline;
-}
-/*
-List styles
-*/
-ul.horizontal li {
- display:inline;
- font-size:0.9em;
-}
-ul.inheritance {
- margin:0;
- padding:0;
-}
-ul.inheritance li {
- display:inline;
- list-style:none;
-}
-ul.inheritance li ul.inheritance {
- margin-left:15px;
- padding-left:15px;
- padding-top:1px;
-}
-ul.blockList, ul.blockListLast {
- margin:10px 0 10px 0;
- padding:0;
-}
-ul.blockList li.blockList, ul.blockListLast li.blockList {
- list-style:none;
- margin-bottom:25px;
-}
-ul.blockList ul.blockList li.blockList, ul.blockList ul.blockListLast li.blockList {
- padding:0px 20px 5px 10px;
- border:1px solid #9eadc0;
- background-color:#f9f9f9;
-}
-ul.blockList ul.blockList ul.blockList li.blockList, ul.blockList ul.blockList ul.blockListLast li.blockList {
- padding:0 0 5px 8px;
- background-color:#ffffff;
- border:1px solid #9eadc0;
- border-top:none;
-}
-ul.blockList ul.blockList ul.blockList ul.blockList li.blockList {
- margin-left:0;
- padding-left:0;
- padding-bottom:15px;
- border:none;
- border-bottom:1px solid #9eadc0;
-}
-ul.blockList ul.blockList ul.blockList ul.blockList li.blockListLast {
- list-style:none;
- border-bottom:none;
- padding-bottom:0;
-}
-table tr td dl, table tr td dl dt, table tr td dl dd {
- margin-top:0;
- margin-bottom:1px;
-}
-/*
-Table styles
-*/
-.contentContainer table, .classUseContainer table, .constantValuesContainer table {
- border-bottom:1px solid #9eadc0;
- width:100%;
-}
-.contentContainer ul li table, .classUseContainer ul li table, .constantValuesContainer ul li table {
- width:100%;
-}
-.contentContainer .description table, .contentContainer .details table {
- border-bottom:none;
-}
-.contentContainer ul li table th.colOne, .contentContainer ul li table th.colFirst, .contentContainer ul li table th.colLast, .classUseContainer ul li table th, .constantValuesContainer ul li table th, .contentContainer ul li table td.colOne, .contentContainer ul li table td.colFirst, .contentContainer ul li table td.colLast, .classUseContainer ul li table td, .constantValuesContainer ul li table td{
- vertical-align:top;
- padding-right:20px;
-}
-.contentContainer ul li table th.colLast, .classUseContainer ul li table th.colLast,.constantValuesContainer ul li table th.colLast,
-.contentContainer ul li table td.colLast, .classUseContainer ul li table td.colLast,.constantValuesContainer ul li table td.colLast,
-.contentContainer ul li table th.colOne, .classUseContainer ul li table th.colOne,
-.contentContainer ul li table td.colOne, .classUseContainer ul li table td.colOne {
- padding-right:3px;
-}
-.overviewSummary caption, .packageSummary caption, .contentContainer ul.blockList li.blockList caption, .summary caption, .classUseContainer caption, .constantValuesContainer caption {
- position:relative;
- text-align:left;
- background-repeat:no-repeat;
- color:#FFFFFF;
- font-weight:bold;
- clear:none;
- overflow:hidden;
- padding:0px;
- margin:0px;
-}
-caption a:link, caption a:hover, caption a:active, caption a:visited {
- color:#FFFFFF;
-}
-.overviewSummary caption span, .packageSummary caption span, .contentContainer ul.blockList li.blockList caption span, .summary caption span, .classUseContainer caption span, .constantValuesContainer caption span {
- white-space:nowrap;
- padding-top:8px;
- padding-left:8px;
- display:block;
- float:left;
- background-image:url(resources/titlebar.gif);
- height:18px;
-}
-.overviewSummary .tabEnd, .packageSummary .tabEnd, .contentContainer ul.blockList li.blockList .tabEnd, .summary .tabEnd, .classUseContainer .tabEnd, .constantValuesContainer .tabEnd {
- width:10px;
- background-image:url(resources/titlebar_end.gif);
- background-repeat:no-repeat;
- background-position:top right;
- position:relative;
- float:left;
-}
-ul.blockList ul.blockList li.blockList table {
- margin:0 0 12px 0px;
- width:100%;
-}
-.tableSubHeadingColor {
- background-color: #EEEEFF;
-}
-.altColor {
- background-color:#eeeeef;
-}
-.rowColor {
- background-color:#ffffff;
-}
-.overviewSummary td, .packageSummary td, .contentContainer ul.blockList li.blockList td, .summary td, .classUseContainer td, .constantValuesContainer td {
- text-align:left;
- padding:3px 3px 3px 7px;
-}
-th.colFirst, th.colLast, th.colOne, .constantValuesContainer th {
- background:#dee3e9;
- border-top:1px solid #9eadc0;
- border-bottom:1px solid #9eadc0;
- text-align:left;
- padding:3px 3px 3px 7px;
-}
-td.colOne a:link, td.colOne a:active, td.colOne a:visited, td.colOne a:hover, td.colFirst a:link, td.colFirst a:active, td.colFirst a:visited, td.colFirst a:hover, td.colLast a:link, td.colLast a:active, td.colLast a:visited, td.colLast a:hover, .constantValuesContainer td a:link, .constantValuesContainer td a:active, .constantValuesContainer td a:visited, .constantValuesContainer td a:hover {
- font-weight:bold;
-}
-td.colFirst, th.colFirst {
- border-left:1px solid #9eadc0;
- white-space:nowrap;
-}
-td.colLast, th.colLast {
- border-right:1px solid #9eadc0;
-}
-td.colOne, th.colOne {
- border-right:1px solid #9eadc0;
- border-left:1px solid #9eadc0;
-}
-table.overviewSummary {
- padding:0px;
- margin-left:0px;
-}
-table.overviewSummary td.colFirst, table.overviewSummary th.colFirst,
-table.overviewSummary td.colOne, table.overviewSummary th.colOne {
- width:25%;
- vertical-align:middle;
-}
-table.packageSummary td.colFirst, table.overviewSummary th.colFirst {
- width:25%;
- vertical-align:middle;
-}
-/*
-Content styles
-*/
-.description pre {
- margin-top:0;
-}
-.deprecatedContent {
- margin:0;
- padding:10px 0;
-}
-.docSummary {
- padding:0;
-}
-/*
-Formatting effect styles
-*/
-.sourceLineNo {
- color:green;
- padding:0 30px 0 0;
-}
-h1.hidden {
- visibility:hidden;
- overflow:hidden;
- font-size:.9em;
-}
-.block {
- display:block;
- margin:3px 0 0 0;
-}
-.strong {
- font-weight:bold;
-}
diff --git a/com.amd.aparapi/src/java/com/amd/aparapi/Config.java b/com.amd.aparapi/src/java/com/amd/aparapi/Config.java
deleted file mode 100644
index 8f9df4d3..00000000
--- a/com.amd.aparapi/src/java/com/amd/aparapi/Config.java
+++ /dev/null
@@ -1,210 +0,0 @@
-/*
-Copyright (c) 2010-2011, Advanced Micro Devices, Inc.
-All rights reserved.
-
-Redistribution and use in source and binary forms, with or without modification, are permitted provided that the
-following conditions are met:
-
-Redistributions of source code must retain the above copyright notice, this list of conditions and the following
-disclaimer.
-
-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.
-
-Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products
-derived from this software without specific prior written permission.
-
-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.
-
-If you use the software (in whole or in part), you shall adhere to all applicable U.S., European, and other export
-laws, including but not limited to the U.S. Export Administration Regulations ("EAR"), (15 C.F.R. Sections 730 through
-774), and E.U. Council Regulation (EC) No 1334/2000 of 22 June 2000. Further, pursuant to Section 740.6 of the EAR,
-you hereby certify that, except pursuant to a license granted by the United States Department of Commerce Bureau of
-Industry and Security or as otherwise permitted pursuant to a License Exception under the U.S. Export Administration
-Regulations ("EAR"), you will not (1) export, re-export or release to a national of a country in Country Groups D:1,
-E:1 or E:2 any restricted technology, software, or source code you receive hereunder, or (2) export to Country Groups
-D:1, E:1 or E:2 the direct product of such technology or software, if such foreign produced direct product is subject
-to national security controls as identified on the Commerce Control List (currently found in Supplement 1 to Part 774
-of EAR). For the most current Country Group listings, or for additional information about the EAR or your obligations
-under those regulations, please refer to the U.S. Bureau of Industry and Security's website at http://www.bis.doc.gov/.
-
- */
-package com.amd.aparapi;
-
-import java.util.logging.Handler;
-import java.util.logging.Level;
-import java.util.logging.Logger;
-
-import com.amd.aparapi.internal.instruction.Instruction;
-import com.amd.aparapi.internal.jni.ConfigJNI;
-import com.amd.aparapi.internal.tool.InstructionViewer;
-
-/**
- * A central location for holding all runtime configurable properties as well as logging configuration.
- *
- * Ideally we will find all properties used by Aparapi here. Please consider updating this class if you wish
- * to add new properties which control Aparapis behavior.
- *
- * @author gfrost
- *
- */
-public class Config extends ConfigJNI{
-
- // Logging setup
- private static final String logPropName = propPkgName + ".logLevel";
-
- private static final Logger logger = Logger.getLogger(Config.getLoggerName());
-
- /**
- * Allows the user to request to use a jvmti agent to
- * access JNI code rather than loading explicitly.
- *
- * Usage -agentpath=/full/path/to/agent.dll -Dcom.amd.aparapi.useAgent=true
- */
-
- public static final boolean useAgent = Boolean.getBoolean(propPkgName + ".useAgent");
-
- /**
- * Disable Unsafe
- */
- public static final boolean disableUnsafe = Boolean.getBoolean(propPkgName + ".disableUnsafe");
-
- /**
- * Allows the user to request a specific Kernel.EXECUTION_MODE enum value for all Kernels.
- *
- * Usage -Dcom.amd.aparapi.executionMode={SEQ|JTP|CPU|GPU}
- *
- * @see com.amd.aparapi.Kernel.EXECUTION_MODE
- */
- public static final String executionMode = System.getProperty(propPkgName + ".executionMode");
-
- /**
- * Allows the user to request that the execution mode of each kernel invocation be reported to stdout.
- *
- * Usage -Dcom.amd.aparapi.enableExecutionModeReporting={true|false}
- *
- */
- public static final boolean enableExecutionModeReporting = Boolean.getBoolean(propPkgName + ".enableExecutionModeReporting");
-
- /**
- * Allows the user to request that generated OpenCL code is dumped to standard out.
- *
- * Usage -Dcom.amd.aparapi.enableShowGeneratedOpenCL={true|false}
- *
- */
- public static final boolean enableShowGeneratedOpenCL = Boolean.getBoolean(propPkgName + ".enableShowGeneratedOpenCL");
-
- // Pragma/OpenCL codegen related flags
- public static final boolean enableAtomic32 = Boolean.getBoolean(propPkgName + ".enableAtomic32");
-
- public static final boolean enableAtomic64 = Boolean.getBoolean(propPkgName + ".enableAtomic64");
-
- public static final boolean enableByteWrites = Boolean.getBoolean(propPkgName + ".enableByteWrites");
-
- public static final boolean enableDoubles = Boolean.getBoolean(propPkgName + ".enableDoubles");
-
- // Debugging related flags
- public static final boolean verboseComparitor = Boolean.getBoolean(propPkgName + ".verboseComparitor");
-
- public static final boolean dumpFlags = Boolean.getBoolean(propPkgName + ".dumpFlags");
-
- // Individual bytecode support related flags
- public static final boolean enablePUTFIELD = Boolean.getBoolean(propPkgName + ".enable.PUTFIELD");
-
- public static final boolean enableARETURN = !Boolean.getBoolean(propPkgName + ".disable.ARETURN");
-
- public static final boolean enablePUTSTATIC = Boolean.getBoolean(propPkgName + ".enable.PUTSTATIC");
-
- // Allow static array accesses
- public static final boolean enableGETSTATIC = true; //Boolean.getBoolean(propPkgName + ".enable.GETSTATIC");
-
- public static final boolean enableINVOKEINTERFACE = Boolean.getBoolean(propPkgName + ".enable.INVOKEINTERFACE");
-
- public static final boolean enableMONITOR = Boolean.getBoolean(propPkgName + ".enable.MONITOR");
-
- public static final boolean enableNEW = Boolean.getBoolean(propPkgName + ".enable.NEW");
-
- public static final boolean enableATHROW = Boolean.getBoolean(propPkgName + ".enable.ATHROW");
-
- public static final boolean enableMETHODARRAYPASSING = !Boolean.getBoolean(propPkgName + ".disable.METHODARRAYPASSING");
-
- public static final boolean enableARRAYLENGTH = Boolean.getBoolean(propPkgName + ".enable.ARRAYLENGTH");
-
- public static final boolean enableSWITCH = Boolean.getBoolean(propPkgName + ".enable.SWITCH");
-
- public static boolean enableShowFakeLocalVariableTable = Boolean.getBoolean(propPkgName + ".enableShowFakeLocalVariableTable");
-
- public static final boolean enableInstructionDecodeViewer = Boolean.getBoolean(propPkgName + ".enableInstructionDecodeViewer");
-
- public static String instructionListenerClassName = System.getProperty(propPkgName + ".instructionListenerClass");
-
- public static InstructionListener instructionListener = null;
-
- public interface InstructionListener{
- void showAndTell(String message, Instruction _start, Instruction _instruction);
- }
-
- static {
- try {
- final Level level = Level.parse(System.getProperty(getLoggerName(), "WARNING"));
-
- final Handler[] handlers = Logger.getLogger("").getHandlers();
- for (final Handler handler : handlers) {
- handler.setLevel(level);
- }
-
- logger.setLevel(level);
- } catch (final Exception e) {
- System.out.println("Exception " + e + " in Aparapi logging setup");
- e.printStackTrace();
- }
- };
-
- static {
- if (enableInstructionDecodeViewer && ((instructionListenerClassName == null) || instructionListenerClassName.equals(""))) {
- instructionListenerClassName = InstructionViewer.class.getName();
- }
-
- if ((instructionListenerClassName != null) && !instructionListenerClassName.equals("")) {
- try {
- final Class> instructionListenerClass = Class.forName(instructionListenerClassName);
- instructionListener = (InstructionListener) instructionListenerClass.newInstance();
- } catch (final ClassNotFoundException e) {
- // TODO Auto-generated catch block
- e.printStackTrace();
- } catch (final InstantiationException e) {
- // TODO Auto-generated catch block
- e.printStackTrace();
- } catch (final IllegalAccessException e) {
- // TODO Auto-generated catch block
- e.printStackTrace();
- }
- }
-
- if (dumpFlags) {
- System.out.println(propPkgName + ".executionMode{GPU|CPU|JTP|SEQ}=" + executionMode);
- System.out.println(propPkgName + ".logLevel{OFF|FINEST|FINER|FINE|WARNING|SEVERE|ALL}=" + logger.getLevel());
- System.out.println(propPkgName + ".enableProfiling{true|false}=" + enableProfiling);
- System.out.println(propPkgName + ".enableProfilingCSV{true|false}=" + enableProfilingCSV);
- System.out.println(propPkgName + ".enableVerboseJNI{true|false}=" + enableVerboseJNI);
- System.out.println(propPkgName + ".enableVerboseJNIOpenCLResourceTracking{true|false}="
- + enableVerboseJNIOpenCLResourceTracking);
- System.out.println(propPkgName + ".enableShowGeneratedOpenCL{true|false}=" + enableShowGeneratedOpenCL);
- System.out.println(propPkgName + ".enableExecutionModeReporting{true|false}=" + enableExecutionModeReporting);
- System.out.println(propPkgName + ".enableInstructionDecodeViewer{true|false}=" + enableInstructionDecodeViewer);
- System.out.println(propPkgName
- + ".instructionListenerClassName{}="
- + instructionListenerClassName);
- }
- }
-
- public static String getLoggerName() {
- return logPropName;
- }
-}
diff --git a/com.amd.aparapi/src/java/com/amd/aparapi/Kernel.java b/com.amd.aparapi/src/java/com/amd/aparapi/Kernel.java
deleted file mode 100644
index 0069d4e4..00000000
--- a/com.amd.aparapi/src/java/com/amd/aparapi/Kernel.java
+++ /dev/null
@@ -1,2862 +0,0 @@
-/*
-Copyright (c) 2010-2011, Advanced Micro Devices, Inc.
-All rights reserved.
-
-Redistribution and use in source and binary forms, with or without modification, are permitted provided that the
-following conditions are met:
-
-Redistributions of source code must retain the above copyright notice, this list of conditions and the following
-disclaimer.
-
-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.
-
-Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products
-derived from this software without specific prior written permission.
-
-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.
-
-If you use the software (in whole or in part), you shall adhere to all applicable U.S., European, and other export
-laws, including but not limited to the U.S. Export Administration Regulations ("EAR"), (15 C.F.R. Sections 730 through
-774), and E.U. Council Regulation (EC) No 1334/2000 of 22 June 2000. Further, pursuant to Section 740.6 of the EAR,
-you hereby certify that, except pursuant to a license granted by the United States Department of Commerce Bureau of
-Industry and Security or as otherwise permitted pursuant to a License Exception under the U.S. Export Administration
-Regulations ("EAR"), you will not (1) export, re-export or release to a national of a country in Country Groups D:1,
-E:1 or E:2 any restricted technology, software, or source code you receive hereunder, or (2) export to Country Groups
-D:1, E:1 or E:2 the direct product of such technology or software, if such foreign produced direct product is subject
-to national security controls as identified on the Commerce Control List (currently found in Supplement 1 to Part 774
-of EAR). For the most current Country Group listings, or for additional information about the EAR or your obligations
-under those regulations, please refer to the U.S. Bureau of Industry and Security's website at http://www.bis.doc.gov/.
-
-*/
-package com.amd.aparapi;
-
-import com.amd.aparapi.annotation.*;
-import com.amd.aparapi.exception.*;
-import com.amd.aparapi.internal.kernel.*;
-import com.amd.aparapi.internal.model.ClassModel.ConstantPool.*;
-import com.amd.aparapi.internal.opencl.*;
-import com.amd.aparapi.internal.util.*;
-
-import java.lang.annotation.*;
-import java.lang.reflect.*;
-import java.util.*;
-import java.util.concurrent.*;
-import java.util.logging.*;
-
-/**
- * A kernel encapsulates a data parallel algorithm that will execute either on a GPU
- * (through conversion to OpenCL) or on a CPU via a Java Thread Pool.
- *
- * To write a new kernel, a developer extends the Kernel class and overrides the Kernel.run() method.
- * To execute this kernel, the developer creates a new instance of it and calls Kernel.execute(int globalSize) with a suitable 'global size'. At runtime
- * Aparapi will attempt to convert the Kernel.run() method (and any method called directly or indirectly
- * by Kernel.run()) into OpenCL for execution on GPU devices made available via the OpenCL platform.
- *
- * Note that Kernel.run() is not called directly. Instead,
- * the Kernel.execute(int globalSize) method will cause the overridden Kernel.run()
- * method to be invoked once for each value in the range 0...globalSize.
- *
- * On the first call to Kernel.execute(int _globalSize), Aparapi will determine the EXECUTION_MODE of the kernel.
- * This decision is made dynamically based on two factors:
- *
- * Whether OpenCL is available (appropriate drivers are installed and the OpenCL and Aparapi dynamic libraries are included on the system path).
- * Whether the bytecode of the run() method (and every method that can be called directly or indirectly from the run() method)
- * can be converted into OpenCL.
- *
- *
- * Below is an example Kernel that calculates the square of a set of input values.
- *
- *
- * class SquareKernel extends Kernel{
- * private int values[];
- * private int squares[];
- * public SquareKernel(int values[]){
- * this.values = values;
- * squares = new int[values.length];
- * }
- * public void run() {
- * int gid = getGlobalID();
- * squares[gid] = values[gid]*values[gid];
- * }
- * public int[] getSquares(){
- * return(squares);
- * }
- * }
- *
- *
- * To execute this kernel, first create a new instance of it and then call execute(Range _range).
- *
- *
- * int[] values = new int[1024];
- * // fill values array
- * Range range = Range.create(values.length); // create a range 0..1024
- * SquareKernel kernel = new SquareKernel(values);
- * kernel.execute(range);
- *
- *
- * When execute(Range) returns, all the executions of Kernel.run() have completed and the results are available in the squares array.
- *
- *
- * int[] squares = kernel.getSquares();
- * for (int i=0; i< values.length; i++){
- * System.out.printf("%4d %4d %8d\n", i, values[i], squares[i]);
- * }
- *
- *
- * A different approach to creating kernels that avoids extending Kernel is to write an anonymous inner class:
- *
- *
- *
- * final int[] values = new int[1024];
- * // fill the values array
- * final int[] squares = new int[values.length];
- * final Range range = Range.create(values.length);
- *
- * Kernel kernel = new Kernel(){
- * public void run() {
- * int gid = getGlobalID();
- * squares[gid] = values[gid]*values[gid];
- * }
- * };
- * kernel.execute(range);
- * for (int i=0; i< values.length; i++){
- * System.out.printf("%4d %4d %8d\n", i, values[i], squares[i]);
- * }
- *
- *
- *
- *
- * @author gfrost AMD Javalabs
- * @version Alpha, 21/09/2010
- */
-public abstract class Kernel implements Cloneable {
-
- private static Logger logger = Logger.getLogger(Config.getLoggerName());
-
- /**
- * We can use this Annotation to 'tag' intended local buffers.
- *
- * So we can either annotate the buffer
- *
- * @Local int[] buffer = new int[1024];
- *
- * Or use a special suffix
- *
- * int[] buffer_$local$ = new int[1024];
- *
- *
- * @see #LOCAL_SUFFIX
- *
- *
- */
- @Retention(RetentionPolicy.RUNTIME)
- public @interface Local {
-
- }
-
- /**
- * We can use this Annotation to 'tag' intended constant buffers.
- *
- * So we can either annotate the buffer
- *
- * @Constant int[] buffer = new int[1024];
- *
- * Or use a special suffix
- *
- * int[] buffer_$constant$ = new int[1024];
- *
- *
- * @see #LOCAL_SUFFIX
- *
- *
- */
- @Retention(RetentionPolicy.RUNTIME)
- public @interface Constant {
-
- }
-
- /**
- *
- * We can use this Annotation to 'tag' __private (unshared) array fields. Data in the __private address space in OpenCL is accessible only from
- * the current kernel instance.
- *
- * To so mark a field with a buffer size of 99, we can either annotate the buffer
- *
- * @PrivateMemorySpace(99) int[] buffer = new int[99];
- *
- * Or use a special suffix
- *
- * int[] buffer_$private$99 = new int[99];
- *
- *
- * Note that any code which must be runnable in {@link EXECUTION_MODE#JTP} will fail to work correctly if it uses such an
- * array, as the array will be shared by all threads. The solution is to create a {@link NoCL} method called at the start of {@link #run()} which sets
- * the field to an array returned from a static ThreadLocal
. Please see MedianKernel7x7 in the samples for an example.
- *
- * @see #PRIVATE_SUFFIX
- */
- @Retention(RetentionPolicy.RUNTIME)
- @Target({ElementType.FIELD})
- public @interface PrivateMemorySpace {
- /** Size of the array used as __private buffer. */
- int value();
- }
-
- /**
- * Annotation which can be applied to either a getter (with usual java bean naming convention relative to an instance field), or to any method
- * with void return type, which prevents both the method body and any calls to the method being emitted in the generated OpenCL. (In the case of a getter, the
- * underlying field is used in place of the NoCL getter method.) This allows for code specialization within a java/JTP execution path, for example to
- * allow logging/breakpointing when debugging, or to apply ThreadLocal processing (see {@link PrivateMemorySpace}) in java to simulate OpenCL __private
- * memory.
- */
- @Retention(RetentionPolicy.RUNTIME)
- @Target({ElementType.METHOD, ElementType.FIELD})
- public @interface NoCL {
- // empty
- }
-
- /**
- * We can use this suffix to 'tag' intended local buffers.
- *
- *
- * So either name the buffer
- *
- * int[] buffer_$local$ = new int[1024];
- *
- * Or use the Annotation form
- *
- * @Local int[] buffer = new int[1024];
- *
- */
- public final static String LOCAL_SUFFIX = "_$local$";
-
- /**
- * We can use this suffix to 'tag' intended constant buffers.
- *
- *
- * So either name the buffer
- *
- * int[] buffer_$constant$ = new int[1024];
- *
- * Or use the Annotation form
- *
- * @Constant int[] buffer = new int[1024];
- *
- */
- public final static String CONSTANT_SUFFIX = "_$constant$";
-
- /**
- * We can use this suffix to 'tag' __private buffers.
- *
- * So either name the buffer
- *
- * int[] buffer_$private$32 = new int[32];
- *
- * Or use the Annotation form
- *
- * @PrivateMemorySpace(32) int[] buffer = new int[32];
- *
- *
- * @see PrivateMemorySpace for a more detailed usage summary
- */
- public final static String PRIVATE_SUFFIX = "_$private$";
-
- /**
- * This annotation is for internal use only
- */
- @Retention(RetentionPolicy.RUNTIME)
- protected @interface OpenCLDelegate {
-
- }
-
- /**
- * This annotation is for internal use only
- */
- @Retention(RetentionPolicy.RUNTIME)
- protected @interface OpenCLMapping {
- String mapTo() default "";
-
- boolean atomic32() default false;
-
- boolean atomic64() default false;
- }
-
- public abstract class Entry {
- public abstract void run();
-
- public Kernel execute(Range _range) {
- return (Kernel.this.execute("foo", _range, 1));
- }
- }
-
- /**
- * The execution mode ENUM enumerates the possible modes of executing a kernel.
- * One can request a mode of execution using the values below, and query a kernel after it first executes to
- * determine how it executed.
- *
- *
- * Aparapi supports 4 execution modes.
- *
- *
- * Enum value Execution
- * GPU Execute using OpenCL on first available GPU device
- * CPU Execute using OpenCL on first available CPU device
- * JTP Execute using a Java Thread Pool (one thread spawned per available core)
- * SEQ Execute using a single loop. This is useful for debugging but will be less
- * performant than the other modes
- *
- *
- *
- * To request that a kernel is executed in a specific mode, call Kernel.setExecutionMode(EXECUTION_MODE) before the
- * kernel first executes.
- *
- *
- * int[] values = new int[1024];
- * // fill values array
- * SquareKernel kernel = new SquareKernel(values);
- * kernel.setExecutionMode(Kernel.EXECUTION_MODE.JTP);
- * kernel.execute(values.length);
- *
- *
- * Alternatively, the property com.amd.aparapi.executionMode can be set to one of JTP,GPU,CPU,SEQ
- * when an application is launched.
- *
- * java -classpath ....;aparapi.jar -Dcom.amd.aparapi.executionMode=GPU MyApplication
- *
- * Generally setting the execution mode is not recommended (it is best to let Aparapi decide automatically) but the option
- * provides a way to compare a kernel's performance under multiple execution modes.
- *
- * @author gfrost AMD Javalabs
- * @version Alpha, 21/09/2010
- */
-
- public static enum EXECUTION_MODE {
- /**
- * A dummy value to indicate an unknown state.
- */
- NONE,
- /**
- * The value representing execution on a GPU device via OpenCL.
- */
- GPU,
- /**
- * The value representing execution on a CPU device via OpenCL.
- *
- * Note not all OpenCL implementations support OpenCL compute on the CPU.
- */
- CPU,
- /**
- * The value representing execution on a Java Thread Pool.
- *
- * By default one Java thread is started for each available core and each core will execute globalSize/cores work items.
- * This creates a total of globalSize%cores threads to complete the work.
- * Choose suitable values for globalSize to minimize the number of threads that are spawned.
- */
- JTP,
- /**
- * The value representing execution sequentially in a single loop.
- *
- * This is meant to be used for debugging a kernel.
- */
- SEQ;
-
- static EXECUTION_MODE getDefaultExecutionMode() {
- EXECUTION_MODE defaultExecutionMode = OpenCLLoader.isOpenCLAvailable() ? GPU : JTP;
- final String executionMode = Config.executionMode;
- if (executionMode != null) {
- try {
- EXECUTION_MODE requestedExecutionMode;
- requestedExecutionMode = getExecutionModeFromString(executionMode).iterator().next();
- logger.fine("requested execution mode =");
- if ((OpenCLLoader.isOpenCLAvailable() && requestedExecutionMode.isOpenCL()) || !requestedExecutionMode.isOpenCL()) {
- defaultExecutionMode = requestedExecutionMode;
- }
- } catch (final Throwable t) {
- // we will take the default
- }
- }
-
- logger.fine("default execution modes = " + defaultExecutionMode);
-
- return (defaultExecutionMode);
- }
-
- static LinkedHashSet getDefaultExecutionModes() {
- LinkedHashSet defaultExecutionModes = new LinkedHashSet();
-
- if (OpenCLLoader.isOpenCLAvailable()) {
- defaultExecutionModes.add(GPU);
- defaultExecutionModes.add(JTP);
- } else {
- defaultExecutionModes.add(JTP);
- }
-
- final String executionMode = Config.executionMode;
-
- if (executionMode != null) {
- try {
- LinkedHashSet requestedExecutionModes;
- requestedExecutionModes = EXECUTION_MODE.getExecutionModeFromString(executionMode);
- logger.fine("requested execution mode =");
- for (final EXECUTION_MODE mode : requestedExecutionModes) {
- logger.fine(" " + mode);
- }
- if ((OpenCLLoader.isOpenCLAvailable() && EXECUTION_MODE.anyOpenCL(requestedExecutionModes))
- || !EXECUTION_MODE.anyOpenCL(requestedExecutionModes)) {
- defaultExecutionModes = requestedExecutionModes;
- }
- } catch (final Throwable t) {
- // we will take the default
- }
- }
-
- logger.info("default execution modes = " + defaultExecutionModes);
-
- for (final EXECUTION_MODE e : defaultExecutionModes) {
- logger.info("SETTING DEFAULT MODE: " + e.toString());
- }
-
- return (defaultExecutionModes);
- }
-
- static LinkedHashSet getExecutionModeFromString(String executionMode) {
- final LinkedHashSet executionModes = new LinkedHashSet();
- for (final String mode : executionMode.split(",")) {
- executionModes.add(valueOf(mode.toUpperCase()));
- }
- return executionModes;
- }
-
- static EXECUTION_MODE getFallbackExecutionMode() {
- final EXECUTION_MODE defaultFallbackExecutionMode = JTP;
- logger.info("fallback execution mode = " + defaultFallbackExecutionMode);
- return (defaultFallbackExecutionMode);
- }
-
- static boolean anyOpenCL(LinkedHashSet _executionModes) {
- for (final EXECUTION_MODE mode : _executionModes) {
- if ((mode == GPU) || (mode == CPU)) {
- return true;
- }
- }
- return false;
- }
-
- public boolean isOpenCL() {
- return (this == GPU) || (this == CPU);
- }
- };
-
- private KernelRunner kernelRunner = null;
-
- private KernelState kernelState = new KernelState();
-
- /**
- * This class is for internal Kernel state management
- * NOT INTENDED FOR USE BY USERS
- */
- public final class KernelState {
-
- private int[] globalIds = new int[] {
- 0,
- 0,
- 0
- };
-
- private int[] localIds = new int[] {
- 0,
- 0,
- 0
- };
-
- private int[] groupIds = new int[] {
- 0,
- 0,
- 0
- };
-
- private Range range;
-
- private int passId;
-
- private volatile CyclicBarrier localBarrier;
-
- /**
- * Default constructor
- */
- protected KernelState() {
-
- }
-
- /**
- * Copy constructor
- */
- protected KernelState(KernelState kernelState) {
- globalIds = kernelState.getGlobalIds();
- localIds = kernelState.getLocalIds();
- groupIds = kernelState.getGroupIds();
- range = kernelState.getRange();
- passId = kernelState.getPassId();
- localBarrier = kernelState.getLocalBarrier();
- }
-
- /**
- * @return the globalIds
- */
- public int[] getGlobalIds() {
- return globalIds;
- }
-
- /**
- * @param globalIds the globalIds to set
- */
- public void setGlobalIds(int[] globalIds) {
- this.globalIds = globalIds;
- }
-
- /**
- * Set a specific index value
- *
- * @param _index
- * @param value
- */
- public void setGlobalId(int _index, int value) {
- globalIds[_index] = value;
- }
-
- /**
- * @return the localIds
- */
- public int[] getLocalIds() {
- return localIds;
- }
-
- /**
- * @param localIds the localIds to set
- */
- public void setLocalIds(int[] localIds) {
- this.localIds = localIds;
- }
-
- /**
- * Set a specific index value
- *
- * @param _index
- * @param value
- */
- public void setLocalId(int _index, int value) {
- localIds[_index] = value;
- }
-
- /**
- * @return the groupIds
- */
- public int[] getGroupIds() {
- return groupIds;
- }
-
- /**
- * @param groupIds the groupIds to set
- */
- public void setGroupIds(int[] groupIds) {
- this.groupIds = groupIds;
- }
-
- /**
- * Set a specific index value
- *
- * @param _index
- * @param value
- */
- public void setGroupId(int _index, int value) {
- groupIds[_index] = value;
- }
-
- /**
- * @return the range
- */
- public Range getRange() {
- return range;
- }
-
- /**
- * @param range the range to set
- */
- public void setRange(Range range) {
- this.range = range;
- }
-
- /**
- * @return the passId
- */
- public int getPassId() {
- return passId;
- }
-
- /**
- * @param passId the passId to set
- */
- public void setPassId(int passId) {
- this.passId = passId;
- }
-
- /**
- * @return the localBarrier
- */
- public CyclicBarrier getLocalBarrier() {
- return localBarrier;
- }
-
- /**
- * @param localBarrier the localBarrier to set
- */
- public void setLocalBarrier(CyclicBarrier localBarrier) {
- this.localBarrier = localBarrier;
- }
- }
-
- /**
- * Determine the globalId of an executing kernel.
- *
- * The kernel implementation uses the globalId to determine which of the executing kernels (in the global domain space) this invocation is expected to deal with.
- *
- * For example in a SquareKernel implementation:
- *
- *
- * class SquareKernel extends Kernel{
- * private int values[];
- * private int squares[];
- * public SquareKernel(int values[]){
- * this.values = values;
- * squares = new int[values.length];
- * }
- * public void run() {
- * int gid = getGlobalID();
- * squares[gid] = values[gid]*values[gid];
- * }
- * public int[] getSquares(){
- * return(squares);
- * }
- * }
- *
- *
- * Each invocation of SquareKernel.run() retrieves it's globalId by calling getGlobalId(), and then computes the value of square[gid] for a given value of value[gid].
- *
- * @return The globalId for the Kernel being executed
- *
- * @see #getLocalId()
- * @see #getGroupId()
- * @see #getGlobalSize()
- * @see #getNumGroups()
- * @see #getLocalSize()
- */
-
- @OpenCLDelegate
- protected final int getGlobalId() {
- return getGlobalId(0);
- }
-
- @OpenCLDelegate
- protected final int getGlobalId(int _dim) {
- return kernelState.getGlobalIds()[_dim];
- }
-
- /*
- @OpenCLDelegate protected final int getGlobalX() {
- return (getGlobalId(0));
- }
-
- @OpenCLDelegate protected final int getGlobalY() {
- return (getGlobalId(1));
- }
-
- @OpenCLDelegate protected final int getGlobalZ() {
- return (getGlobalId(2));
- }
- */
- /**
- * Determine the groupId of an executing kernel.
- *
- * When a Kernel.execute(int globalSize) is invoked for a particular kernel, the runtime will break the work into various 'groups'.
- *
- * A kernel can use getGroupId() to determine which group a kernel is currently
- * dispatched to
- *
- * The following code would capture the groupId for each kernel and map it against globalId.
- *
- * final int[] groupIds = new int[1024];
- * Kernel kernel = new Kernel(){
- * public void run() {
- * int gid = getGlobalId();
- * groupIds[gid] = getGroupId();
- * }
- * };
- * kernel.execute(groupIds.length);
- * for (int i=0; i< values.length; i++){
- * System.out.printf("%4d %4d\n", i, groupIds[i]);
- * }
- *
- *
- * @see #getLocalId()
- * @see #getGlobalId()
- * @see #getGlobalSize()
- * @see #getNumGroups()
- * @see #getLocalSize()
- *
- * @return The groupId for this Kernel being executed
- */
- @OpenCLDelegate
- protected final int getGroupId() {
- return getGroupId(0);
- }
-
- @OpenCLDelegate
- protected final int getGroupId(int _dim) {
- return kernelState.getGroupIds()[_dim];
- }
-
- /*
- @OpenCLDelegate protected final int getGroupX() {
- return (getGroupId(0));
- }
-
- @OpenCLDelegate protected final int getGroupY() {
- return (getGroupId(1));
- }
-
- @OpenCLDelegate protected final int getGroupZ() {
- return (getGroupId(2));
- }
- */
- /**
- * Determine the passId of an executing kernel.
- *
- * When a Kernel.execute(int globalSize, int passes) is invoked for a particular kernel, the runtime will break the work into various 'groups'.
- *
- * A kernel can use getPassId() to determine which pass we are in. This is ideal for 'reduce' type phases
- *
- * @see #getLocalId()
- * @see #getGlobalId()
- * @see #getGlobalSize()
- * @see #getNumGroups()
- * @see #getLocalSize()
- *
- * @return The groupId for this Kernel being executed
- */
- @OpenCLDelegate
- protected final int getPassId() {
- return kernelState.getPassId();
- }
-
- /**
- * Determine the local id of an executing kernel.
- *
- * When a Kernel.execute(int globalSize) is invoked for a particular kernel, the runtime will break the work into
- * various 'groups'.
- * getLocalId() can be used to determine the relative id of the current kernel within a specific group.
- *
- * The following code would capture the groupId for each kernel and map it against globalId.
- *
- * final int[] localIds = new int[1024];
- * Kernel kernel = new Kernel(){
- * public void run() {
- * int gid = getGlobalId();
- * localIds[gid] = getLocalId();
- * }
- * };
- * kernel.execute(localIds.length);
- * for (int i=0; i< values.length; i++){
- * System.out.printf("%4d %4d\n", i, localIds[i]);
- * }
- *
- *
- * @see #getGroupId()
- * @see #getGlobalId()
- * @see #getGlobalSize()
- * @see #getNumGroups()
- * @see #getLocalSize()
- *
- * @return The local id for this Kernel being executed
- */
- @OpenCLDelegate
- protected final int getLocalId() {
- return getLocalId(0);
- }
-
- @OpenCLDelegate
- protected final int getLocalId(int _dim) {
- return kernelState.getLocalIds()[_dim];
- }
-
- /*
- @OpenCLDelegate protected final int getLocalX() {
- return (getLocalId(0));
- }
-
- @OpenCLDelegate protected final int getLocalY() {
- return (getLocalId(1));
- }
-
- @OpenCLDelegate protected final int getLocalZ() {
- return (getLocalId(2));
- }
- */
- /**
- * Determine the size of the group that an executing kernel is a member of.
- *
- * When a Kernel.execute(int globalSize) is invoked for a particular kernel, the runtime will break the work into
- * various 'groups'. getLocalSize() allows a kernel to determine the size of the current group.
- *
- * Note groups may not all be the same size. In particular, if (global size)%(# of compute devices)!=0, the runtime can choose to dispatch kernels to
- * groups with differing sizes.
- *
- * @see #getGroupId()
- * @see #getGlobalId()
- * @see #getGlobalSize()
- * @see #getNumGroups()
- * @see #getLocalSize()
- *
- * @return The size of the currently executing group.
- */
- @OpenCLDelegate
- protected final int getLocalSize() {
- return kernelState.getRange().getLocalSize(0);
- }
-
- @OpenCLDelegate
- protected final int getLocalSize(int _dim) {
- return kernelState.getRange().getLocalSize(_dim);
- }
-
- /*
- @OpenCLDelegate protected final int getLocalWidth() {
- return (range.getLocalSize(0));
- }
-
- @OpenCLDelegate protected final int getLocalHeight() {
- return (range.getLocalSize(1));
- }
-
- @OpenCLDelegate protected final int getLocalDepth() {
- return (range.getLocalSize(2));
- }
- */
- /**
- * Determine the value that was passed to Kernel.execute(int globalSize) method.
- *
- * @see #getGroupId()
- * @see #getGlobalId()
- * @see #getNumGroups()
- * @see #getLocalSize()
- *
- * @return The value passed to Kernel.execute(int globalSize) causing the current execution.
- */
- @OpenCLDelegate
- protected final int getGlobalSize() {
- return kernelState.getRange().getGlobalSize(0);
- }
-
- @OpenCLDelegate
- protected final int getGlobalSize(int _dim) {
- return kernelState.getRange().getGlobalSize(_dim);
- }
-
- /*
- @OpenCLDelegate protected final int getGlobalWidth() {
- return (range.getGlobalSize(0));
- }
-
- @OpenCLDelegate protected final int getGlobalHeight() {
- return (range.getGlobalSize(1));
- }
-
- @OpenCLDelegate protected final int getGlobalDepth() {
- return (range.getGlobalSize(2));
- }
- */
- /**
- * Determine the number of groups that will be used to execute a kernel
- *
- * When Kernel.execute(int globalSize) is invoked, the runtime will split the work into
- * multiple 'groups'. getNumGroups() returns the total number of groups that will be used.
- *
- * @see #getGroupId()
- * @see #getGlobalId()
- * @see #getGlobalSize()
- * @see #getNumGroups()
- * @see #getLocalSize()
- *
- * @return The number of groups that kernels will be dispatched into.
- */
- @OpenCLDelegate
- protected final int getNumGroups() {
- return kernelState.getRange().getNumGroups(0);
- }
-
- @OpenCLDelegate
- protected final int getNumGroups(int _dim) {
- return kernelState.getRange().getNumGroups(_dim);
- }
-
- /*
- @OpenCLDelegate protected final int getNumGroupsWidth() {
- return (range.getGroups(0));
- }
-
- @OpenCLDelegate protected final int getNumGroupsHeight() {
- return (range.getGroups(1));
- }
-
- @OpenCLDelegate protected final int getNumGroupsDepth() {
- return (range.getGroups(2));
- }
- */
- /**
- * The entry point of a kernel.
- *
- *
- * Every kernel must override this method.
- */
- public abstract void run();
-
- /**
- * When using a Java Thread Pool Aparapi uses clone to copy the initial instance to each thread.
- *
- *
- * If you choose to override clone() you are responsible for delegating to super.clone();
- */
- @Override
- public Kernel clone() {
- try {
- final Kernel worker = (Kernel) super.clone();
-
- // We need to be careful to also clone the KernelState
- worker.kernelState = worker.new KernelState(kernelState); // Qualified copy constructor
-
- worker.kernelState.setGroupIds(new int[] {
- 0,
- 0,
- 0
- });
-
- worker.kernelState.setLocalIds(new int[] {
- 0,
- 0,
- 0
- });
-
- worker.kernelState.setGlobalIds(new int[] {
- 0,
- 0,
- 0
- });
-
- return worker;
- } catch (final CloneNotSupportedException e) {
- // TODO Auto-generated catch block
- e.printStackTrace();
- return (null);
- }
- }
-
- /**
- * Delegates to either {@link java.lang.Math#acos(double)} (Java) or acos(float) (OpenCL).
- *
- * User should note the differences in precision between Java and OpenCL's implementation of arithmetic functions to determine whether the difference in precision is acceptable.
- *
- * @param a value to delegate to {@link java.lang.Math#acos(double)}/acos(float)
- * @return {@link java.lang.Math#acos(double)} casted to float/acos(float)
- *
- * @see java.lang.Math#acos(double)
- * @see acos(float)
- */
- @OpenCLMapping(mapTo = "acos")
- protected float acos(float a) {
- return (float) Math.acos(a);
- }
-
- /**
- * Delegates to either {@link java.lang.Math#acos(double)} (Java) or acos(double) (OpenCL).
- *
- * User should note the differences in precision between Java and OpenCL's implementation of arithmetic functions to determine whether the difference in precision is acceptable.
- *
- * @param a value to delegate to {@link java.lang.Math#acos(double)}/acos(double)
- * @return {@link java.lang.Math#acos(double)}/acos(double)
- *
- * @see java.lang.Math#acos(double)
- * @see acos(double)
- */
- @OpenCLMapping(mapTo = "acos")
- protected double acos(double a) {
- return Math.acos(a);
- }
-
- /**
- * Delegates to either {@link java.lang.Math#asin(double)} (Java) or asin(float) (OpenCL).
- *
- * User should note the differences in precision between Java and OpenCL's implementation of arithmetic functions to determine whether the difference in precision is acceptable.
- *
- * @param _f value to delegate to {@link java.lang.Math#asin(double)}/asin(float)
- * @return {@link java.lang.Math#asin(double)} casted to float/asin(float)
- *
- * @see java.lang.Math#asin(double)
- * @see asin(float)
- */
- @OpenCLMapping(mapTo = "asin")
- protected float asin(float _f) {
- return (float) Math.asin(_f);
- }
-
- /**
- * Delegates to either {@link java.lang.Math#asin(double)} (Java) or asin(double) (OpenCL).
- *
- * User should note the differences in precision between Java and OpenCL's implementation of arithmetic functions to determine whether the difference in precision is acceptable.
- *
- * @param _d value to delegate to {@link java.lang.Math#asin(double)}/asin(double)
- * @return {@link java.lang.Math#asin(double)}/asin(double)
- *
- * @see java.lang.Math#asin(double)
- * @see asin(double)
- */
- @OpenCLMapping(mapTo = "asin")
- protected double asin(double _d) {
- return Math.asin(_d);
- }
-
- /**
- * Delegates to either {@link java.lang.Math#atan(double)} (Java) or atan(float) (OpenCL).
- *
- * User should note the differences in precision between Java and OpenCL's implementation of arithmetic functions to determine whether the difference in precision is acceptable.
- *
- * @param _f value to delegate to {@link java.lang.Math#atan(double)}/atan(float)
- * @return {@link java.lang.Math#atan(double)} casted to float/atan(float)
- *
- * @see java.lang.Math#atan(double)
- * @see atan(float)
- */
- @OpenCLMapping(mapTo = "atan")
- protected float atan(float _f) {
- return (float) Math.atan(_f);
- }
-
- /**
- * Delegates to either {@link java.lang.Math#atan(double)} (Java) or atan(double) (OpenCL).
- *
- * User should note the differences in precision between Java and OpenCL's implementation of arithmetic functions to determine whether the difference in precision is acceptable.
- *
- * @param _d value to delegate to {@link java.lang.Math#atan(double)}/atan(double)
- * @return {@link java.lang.Math#atan(double)}/atan(double)
- *
- * @see java.lang.Math#atan(double)
- * @see atan(double)
- */
- @OpenCLMapping(mapTo = "atan")
- protected double atan(double _d) {
- return Math.atan(_d);
- }
-
- /**
- * Delegates to either {@link java.lang.Math#atan2(double, double)} (Java) or atan2(float, float) (OpenCL).
- *
- * User should note the differences in precision between Java and OpenCL's implementation of arithmetic functions to determine whether the difference in precision is acceptable.
- *
- * @param _f1 value to delegate to first argument of {@link java.lang.Math#atan2(double, double)}/atan2(float, float)
- * @param _f2 value to delegate to second argument of {@link java.lang.Math#atan2(double, double)}/atan2(float, float)
- * @return {@link java.lang.Math#atan2(double, double)} casted to float/atan2(float, float)
- *
- * @see java.lang.Math#atan2(double, double)
- * @see atan2(float, float)
- */
- @OpenCLMapping(mapTo = "atan2")
- protected float atan2(float _f1, float _f2) {
- return (float) Math.atan2(_f1, _f2);
- }
-
- /**
- * Delegates to either {@link java.lang.Math#atan2(double, double)} (Java) or atan2(double, double) (OpenCL).
- *
- * User should note the differences in precision between Java and OpenCL's implementation of arithmetic functions to determine whether the difference in precision is acceptable.
- *
- * @param _d1 value to delegate to first argument of {@link java.lang.Math#atan2(double, double)}/atan2(double, double)
- * @param _d2 value to delegate to second argument of {@link java.lang.Math#atan2(double, double)}/atan2(double, double)
- * @return {@link java.lang.Math#atan2(double, double)}/atan2(double, double)
- *
- * @see java.lang.Math#atan2(double, double)
- * @see atan2(double, double)
- */
- @OpenCLMapping(mapTo = "atan2")
- protected double atan2(double _d1, double _d2) {
- return Math.atan2(_d1, _d2);
- }
-
- /**
- * Delegates to either {@link java.lang.Math#ceil(double)} (Java) or ceil(float) (OpenCL).
- *
- * User should note the differences in precision between Java and OpenCL's implementation of arithmetic functions to determine whether the difference in precision is acceptable.
- *
- * @param _f value to delegate to {@link java.lang.Math#ceil(double)}/ceil(float)
- * @return {@link java.lang.Math#ceil(double)} casted to float/ceil(float)
- *
- * @see java.lang.Math#ceil(double)
- * @see ceil(float)
- */
- @OpenCLMapping(mapTo = "ceil")
- protected float ceil(float _f) {
- return (float) Math.ceil(_f);
- }
-
- /**
- * Delegates to either {@link java.lang.Math#ceil(double)} (Java) or ceil(double) (OpenCL).
- *
- * User should note the differences in precision between Java and OpenCL's implementation of arithmetic functions to determine whether the difference in precision is acceptable.
- *
- * @param _d value to delegate to {@link java.lang.Math#ceil(double)}/ceil(double)
- * @return {@link java.lang.Math#ceil(double)}/ceil(double)
- *
- * @see java.lang.Math#ceil(double)
- * @see ceil(double)
- */
- @OpenCLMapping(mapTo = "ceil")
- protected double ceil(double _d) {
- return Math.ceil(_d);
- }
-
- /**
- * Delegates to either {@link java.lang.Math#cos(double)} (Java) or cos(float) (OpenCL).
- *
- * User should note the differences in precision between Java and OpenCL's implementation of arithmetic functions to determine whether the difference in precision is acceptable.
- *
- * @param _f value to delegate to {@link java.lang.Math#cos(double)}/cos(float)
- * @return {@link java.lang.Math#cos(double)} casted to float/cos(float)
- *
- * @see java.lang.Math#cos(double)
- * @see cos(float)
- */
- @OpenCLMapping(mapTo = "cos")
- protected float cos(float _f) {
- return (float) Math.cos(_f);
- }
-
- /**
- * Delegates to either {@link java.lang.Math#cos(double)} (Java) or cos(double) (OpenCL).
- *
- * User should note the differences in precision between Java and OpenCL's implementation of arithmetic functions to determine whether the difference in precision is acceptable.
- *
- * @param _d value to delegate to {@link java.lang.Math#cos(double)}/cos(double)
- * @return {@link java.lang.Math#cos(double)}/cos(double)
- *
- * @see java.lang.Math#cos(double)
- * @see cos(double)
- */
- @OpenCLMapping(mapTo = "cos")
- protected double cos(double _d) {
- return Math.cos(_d);
- }
-
- /**
- * Delegates to either {@link java.lang.Math#exp(double)} (Java) or exp(float) (OpenCL).
- *
- * User should note the differences in precision between Java and OpenCL's implementation of arithmetic functions to determine whether the difference in precision is acceptable.
- *
- * @param _f value to delegate to {@link java.lang.Math#exp(double)}/exp(float)
- * @return {@link java.lang.Math#exp(double)} casted to float/exp(float)
- *
- * @see java.lang.Math#exp(double)
- * @see exp(float)
- */
- @OpenCLMapping(mapTo = "exp")
- protected float exp(float _f) {
- return (float) Math.exp(_f);
- }
-
- /**
- * Delegates to either {@link java.lang.Math#exp(double)} (Java) or exp(double) (OpenCL).
- *
- * User should note the differences in precision between Java and OpenCL's implementation of arithmetic functions to determine whether the difference in precision is acceptable.
- *
- * @param _d value to delegate to {@link java.lang.Math#exp(double)}/exp(double)
- * @return {@link java.lang.Math#exp(double)}/exp(double)
- *
- * @see java.lang.Math#exp(double)
- * @see exp(double)
- */
- @OpenCLMapping(mapTo = "exp")
- protected double exp(double _d) {
- return Math.exp(_d);
- }
-
- /**
- * Delegates to either {@link java.lang.Math#abs(float)} (Java) or fabs(float) (OpenCL).
- *
- * User should note the differences in precision between Java and OpenCL's implementation of arithmetic functions to determine whether the difference in precision is acceptable.
- *
- * @param _f value to delegate to {@link java.lang.Math#abs(float)}/fabs(float)
- * @return {@link java.lang.Math#abs(float)}/fabs(float)
- *
- * @see java.lang.Math#abs(float)
- * @see fabs(float)
- */
- @OpenCLMapping(mapTo = "fabs")
- protected float abs(float _f) {
- return Math.abs(_f);
- }
-
- /**
- * Delegates to either {@link java.lang.Math#abs(double)} (Java) or fabs(double) (OpenCL).
- *
- * User should note the differences in precision between Java and OpenCL's implementation of arithmetic functions to determine whether the difference in precision is acceptable.
- *
- * @param _d value to delegate to {@link java.lang.Math#abs(double)}/fabs(double)
- * @return {@link java.lang.Math#abs(double)}/fabs(double)
- *
- * @see java.lang.Math#abs(double)
- * @see fabs(double)
- */
- @OpenCLMapping(mapTo = "fabs")
- protected double abs(double _d) {
- return Math.abs(_d);
- }
-
- /**
- * Delegates to either {@link java.lang.Math#abs(int)} (Java) or abs(int) (OpenCL).
- *
- * User should note the differences in precision between Java and OpenCL's implementation of arithmetic functions to determine whether the difference in precision is acceptable.
- *
- * @param n value to delegate to {@link java.lang.Math#abs(int)}/abs(int)
- * @return {@link java.lang.Math#abs(int)}/abs(int)
- *
- * @see java.lang.Math#abs(int)
- * @see abs(int)
- */
- @OpenCLMapping(mapTo = "abs")
- protected int abs(int n) {
- return Math.abs(n);
- }
-
- /**
- * Delegates to either {@link java.lang.Math#abs(long)} (Java) or abs(long) (OpenCL).
- *
- * User should note the differences in precision between Java and OpenCL's implementation of arithmetic functions to determine whether the difference in precision is acceptable.
- *
- * @param n value to delegate to {@link java.lang.Math#abs(long)}/abs(long)
- * @return {@link java.lang.Math#abs(long)}/abs(long)
- *
- * @see java.lang.Math#abs(long)
- * @see abs(long)
- */
- @OpenCLMapping(mapTo = "abs")
- protected long abs(long n) {
- return Math.abs(n);
- }
-
- /**
- * Delegates to either {@link java.lang.Math#floor(double)} (Java) or floor(float) (OpenCL).
- *
- * User should note the differences in precision between Java and OpenCL's implementation of arithmetic functions to determine whether the difference in precision is acceptable.
- *
- * @param _f value to delegate to {@link java.lang.Math#floor(double)}/floor(float)
- * @return {@link java.lang.Math#floor(double)} casted to float/floor(float)
- *
- * @see java.lang.Math#floor(double)
- * @see floor(float)
- */
- @OpenCLMapping(mapTo = "floor")
- protected float floor(float _f) {
- return (float) Math.floor(_f);
- }
-
- /**
- * Delegates to either {@link java.lang.Math#floor(double)} (Java) or floor(double) (OpenCL).
- *
- * User should note the differences in precision between Java and OpenCL's implementation of arithmetic functions to determine whether the difference in precision is acceptable.
- *
- * @param _d value to delegate to {@link java.lang.Math#floor(double)}/floor(double)
- * @return {@link java.lang.Math#floor(double)}/floor(double)
- *
- * @see java.lang.Math#floor(double)
- * @see floor(double)
- */
- @OpenCLMapping(mapTo = "floor")
- protected double floor(double _d) {
- return Math.floor(_d);
- }
-
- /**
- * Delegates to either {@link java.lang.Math#max(float, float)} (Java) or fmax(float, float) (OpenCL).
- *
- * User should note the differences in precision between Java and OpenCL's implementation of arithmetic functions to determine whether the difference in precision is acceptable.
- *
- * @param _f1 value to delegate to first argument of {@link java.lang.Math#max(float, float)}/fmax(float, float)
- * @param _f2 value to delegate to second argument of {@link java.lang.Math#max(float, float)}/fmax(float, float)
- * @return {@link java.lang.Math#max(float, float)}/fmax(float, float)
- *
- * @see java.lang.Math#max(float, float)
- * @see fmax(float, float)
- */
- @OpenCLMapping(mapTo = "fmax")
- protected float max(float _f1, float _f2) {
- return Math.max(_f1, _f2);
- }
-
- /**
- * Delegates to either {@link java.lang.Math#max(double, double)} (Java) or fmax(double, double) (OpenCL).
- *
- * User should note the differences in precision between Java and OpenCL's implementation of arithmetic functions to determine whether the difference in precision is acceptable.
- *
- * @param _d1 value to delegate to first argument of {@link java.lang.Math#max(double, double)}/fmax(double, double)
- * @param _d2 value to delegate to second argument of {@link java.lang.Math#max(double, double)}/fmax(double, double)
- * @return {@link java.lang.Math#max(double, double)}/fmax(double, double)
- *
- * @see java.lang.Math#max(double, double)
- * @see fmax(double, double)
- */
- @OpenCLMapping(mapTo = "fmax")
- protected double max(double _d1, double _d2) {
- return Math.max(_d1, _d2);
- }
-
- /**
- * Delegates to either {@link java.lang.Math#max(int, int)} (Java) or max(int, int) (OpenCL).
- *
- * User should note the differences in precision between Java and OpenCL's implementation of arithmetic functions to determine whether the difference in precision is acceptable.
- *
- * @param n1 value to delegate to {@link java.lang.Math#max(int, int)}/max(int, int)
- * @param n2 value to delegate to {@link java.lang.Math#max(int, int)}/max(int, int)
- * @return {@link java.lang.Math#max(int, int)}/max(int, int)
- *
- * @see java.lang.Math#max(int, int)
- * @see max(int, int)
- */
- @OpenCLMapping(mapTo = "max")
- protected int max(int n1, int n2) {
- return Math.max(n1, n2);
- }
-
- /**
- * Delegates to either {@link java.lang.Math#max(long, long)} (Java) or max(long, long) (OpenCL).
- *
- * User should note the differences in precision between Java and OpenCL's implementation of arithmetic functions to determine whether the difference in precision is acceptable.
- *
- * @param n1 value to delegate to first argument of {@link java.lang.Math#max(long, long)}/max(long, long)
- * @param n2 value to delegate to second argument of {@link java.lang.Math#max(long, long)}/max(long, long)
- * @return {@link java.lang.Math#max(long, long)}/max(long, long)
- *
- * @see java.lang.Math#max(long, long)
- * @see max(long, long)
- */
- @OpenCLMapping(mapTo = "max")
- protected long max(long n1, long n2) {
- return Math.max(n1, n2);
- }
-
- /**
- * Delegates to either {@link java.lang.Math#min(float, float)} (Java) or fmin(float, float) (OpenCL).
- *
- * User should note the differences in precision between Java and OpenCL's implementation of arithmetic functions to determine whether the difference in precision is acceptable.
- *
- * @param _f1 value to delegate to first argument of {@link java.lang.Math#min(float, float)}/fmin(float, float)
- * @param _f2 value to delegate to second argument of {@link java.lang.Math#min(float, float)}/fmin(float, float)
- * @return {@link java.lang.Math#min(float, float)}/fmin(float, float)
- *
- * @see java.lang.Math#min(float, float)
- * @see fmin(float, float)
- */
- @OpenCLMapping(mapTo = "fmin")
- protected float min(float _f1, float _f2) {
- return Math.min(_f1, _f2);
- }
-
- /**
- * Delegates to either {@link java.lang.Math#min(double, double)} (Java) or fmin(double, double) (OpenCL).
- *
- * User should note the differences in precision between Java and OpenCL's implementation of arithmetic functions to determine whether the difference in precision is acceptable.
- *
- * @param _d1 value to delegate to first argument of {@link java.lang.Math#min(double, double)}/fmin(double, double)
- * @param _d2 value to delegate to second argument of {@link java.lang.Math#min(double, double)}/fmin(double, double)
- * @return {@link java.lang.Math#min(double, double)}/fmin(double, double)
- *
- * @see java.lang.Math#min(double, double)
- * @see fmin(double, double)
- */
- @OpenCLMapping(mapTo = "fmin")
- protected double min(double _d1, double _d2) {
- return Math.min(_d1, _d2);
- }
-
- /**
- * Delegates to either {@link java.lang.Math#min(int, int)} (Java) or min(int, int) (OpenCL).
- *
- * User should note the differences in precision between Java and OpenCL's implementation of arithmetic functions to determine whether the difference in precision is acceptable.
- *
- * @param n1 value to delegate to first argument of {@link java.lang.Math#min(int, int)}/min(int, int)
- * @param n2 value to delegate to second argument of {@link java.lang.Math#min(int, int)}/min(int, int)
- * @return {@link java.lang.Math#min(int, int)}/min(int, int)
- *
- * @see java.lang.Math#min(int, int)
- * @see min(int, int)
- */
- @OpenCLMapping(mapTo = "min")
- protected int min(int n1, int n2) {
- return Math.min(n1, n2);
- }
-
- /**
- * Delegates to either {@link java.lang.Math#min(long, long)} (Java) or min(long, long) (OpenCL).
- *
- * User should note the differences in precision between Java and OpenCL's implementation of arithmetic functions to determine whether the difference in precision is acceptable.
- *
- * @param n1 value to delegate to first argument of {@link java.lang.Math#min(long, long)}/min(long, long)
- * @param n2 value to delegate to second argument of {@link java.lang.Math#min(long, long)}/min(long, long)
- * @return {@link java.lang.Math#min(long, long)}/min(long, long)
- *
- * @see java.lang.Math#min(long, long)
- * @see min(long, long)
- */
- @OpenCLMapping(mapTo = "min")
- protected long min(long n1, long n2) {
- return Math.min(n1, n2);
- }
-
- /**
- * Delegates to either {@link java.lang.Math#log(double)} (Java) or log(float) (OpenCL).
- *
- * User should note the differences in precision between Java and OpenCL's implementation of arithmetic functions to determine whether the difference in precision is acceptable.
- *
- * @param _f value to delegate to {@link java.lang.Math#log(double)}/log(float)
- * @return {@link java.lang.Math#log(double)} casted to float/log(float)
- *
- * @see java.lang.Math#log(double)
- * @see log(float)
- */
- @OpenCLMapping(mapTo = "log")
- protected float log(float _f) {
- return (float) Math.log(_f);
- }
-
- /**
- * Delegates to either {@link java.lang.Math#log(double)} (Java) or log(double) (OpenCL).
- *
- * User should note the differences in precision between Java and OpenCL's implementation of arithmetic functions to determine whether the difference in precision is acceptable.
- *
- * @param _d value to delegate to {@link java.lang.Math#log(double)}/log(double)
- * @return {@link java.lang.Math#log(double)}/log(double)
- *
- * @see java.lang.Math#log(double)
- * @see log(double)
- */
- @OpenCLMapping(mapTo = "log")
- protected double log(double _d) {
- return Math.log(_d);
- }
-
- /**
- * Delegates to either {@link java.lang.Math#pow(double, double)} (Java) or pow(float, float) (OpenCL).
- *
- * User should note the differences in precision between Java and OpenCL's implementation of arithmetic functions to determine whether the difference in precision is acceptable.
- *
- * @param _f1 value to delegate to first argument of {@link java.lang.Math#pow(double, double)}/pow(float, float)
- * @param _f2 value to delegate to second argument of {@link java.lang.Math#pow(double, double)}/pow(float, float)
- * @return {@link java.lang.Math#pow(double, double)} casted to float/pow(float, float)
- *
- * @see java.lang.Math#pow(double, double)
- * @see pow(float, float)
- */
- @OpenCLMapping(mapTo = "pow")
- protected float pow(float _f1, float _f2) {
- return (float) Math.pow(_f1, _f2);
- }
-
- /**
- * Delegates to either {@link java.lang.Math#pow(double, double)} (Java) or pow(double, double) (OpenCL).
- *
- * User should note the differences in precision between Java and OpenCL's implementation of arithmetic functions to determine whether the difference in precision is acceptable.
- *
- * @param _d1 value to delegate to first argument of {@link java.lang.Math#pow(double, double)}/pow(double, double)
- * @param _d2 value to delegate to second argument of {@link java.lang.Math#pow(double, double)}/pow(double, double)
- * @return {@link java.lang.Math#pow(double, double)}/pow(double, double)
- *
- * @see java.lang.Math#pow(double, double)
- * @see pow(double, double)
- */
- @OpenCLMapping(mapTo = "pow")
- protected double pow(double _d1, double _d2) {
- return Math.pow(_d1, _d2);
- }
-
- /**
- * Delegates to either {@link java.lang.Math#IEEEremainder(double, double)} (Java) or remainder(float, float) (OpenCL).
- *
- * User should note the differences in precision between Java and OpenCL's implementation of arithmetic functions to determine whether the difference in precision is acceptable.
- *
- * @param _f1 value to delegate to first argument of {@link java.lang.Math#IEEEremainder(double, double)}/remainder(float, float)
- * @param _f2 value to delegate to second argument of {@link java.lang.Math#IEEEremainder(double, double)}/remainder(float, float)
- * @return {@link java.lang.Math#IEEEremainder(double, double)} casted to float/remainder(float, float)
- *
- * @see java.lang.Math#IEEEremainder(double, double)
- * @see remainder(float, float)
- */
- @OpenCLMapping(mapTo = "remainder")
- protected float IEEEremainder(float _f1, float _f2) {
- return (float) Math.IEEEremainder(_f1, _f2);
- }
-
- /**
- * Delegates to either {@link java.lang.Math#IEEEremainder(double, double)} (Java) or remainder(double, double) (OpenCL).
- *
- * User should note the differences in precision between Java and OpenCL's implementation of arithmetic functions to determine whether the difference in precision is acceptable.
- *
- * @param _d1 value to delegate to first argument of {@link java.lang.Math#IEEEremainder(double, double)}/remainder(double, double)
- * @param _d2 value to delegate to second argument of {@link java.lang.Math#IEEEremainder(double, double)}/remainder(double, double)
- * @return {@link java.lang.Math#IEEEremainder(double, double)}/remainder(double, double)
- *
- * @see java.lang.Math#IEEEremainder(double, double)
- * @see remainder(double, double)
- */
- @OpenCLMapping(mapTo = "remainder")
- protected double IEEEremainder(double _d1, double _d2) {
- return Math.IEEEremainder(_d1, _d2);
- }
-
- /**
- * Delegates to either {@link java.lang.Math#toRadians(double)} (Java) or radians(float) (OpenCL).
- *
- * User should note the differences in precision between Java and OpenCL's implementation of arithmetic functions to determine whether the difference in precision is acceptable.
- *
- * @param _f value to delegate to {@link java.lang.Math#toRadians(double)}/radians(float)
- * @return {@link java.lang.Math#toRadians(double)} casted to float/radians(float)
- *
- * @see java.lang.Math#toRadians(double)
- * @see radians(float)
- */
- @OpenCLMapping(mapTo = "radians")
- protected float toRadians(float _f) {
- return (float) Math.toRadians(_f);
- }
-
- /**
- * Delegates to either {@link java.lang.Math#toRadians(double)} (Java) or radians(double) (OpenCL).
- *
- * User should note the differences in precision between Java and OpenCL's implementation of arithmetic functions to determine whether the difference in precision is acceptable.
- *
- * @param _d value to delegate to {@link java.lang.Math#toRadians(double)}/radians(double)
- * @return {@link java.lang.Math#toRadians(double)}/radians(double)
- *
- * @see java.lang.Math#toRadians(double)
- * @see radians(double)
- */
- @OpenCLMapping(mapTo = "radians")
- protected double toRadians(double _d) {
- return Math.toRadians(_d);
- }
-
- /**
- * Delegates to either {@link java.lang.Math#toDegrees(double)} (Java) or degrees(float) (OpenCL).
- *
- * User should note the differences in precision between Java and OpenCL's implementation of arithmetic functions to determine whether the difference in precision is acceptable.
- *
- * @param _f value to delegate to {@link java.lang.Math#toDegrees(double)}/degrees(float)
- * @return {@link java.lang.Math#toDegrees(double)} casted to float/degrees(float)
- *
- * @see java.lang.Math#toDegrees(double)
- * @see degrees(float)
- */
- @OpenCLMapping(mapTo = "degrees")
- protected float toDegrees(float _f) {
- return (float) Math.toDegrees(_f);
- }
-
- /**
- * Delegates to either {@link java.lang.Math#toDegrees(double)} (Java) or degrees(double) (OpenCL).
- *
- * User should note the differences in precision between Java and OpenCL's implementation of arithmetic functions to determine whether the difference in precision is acceptable.
- *
- * @param _d value to delegate to {@link java.lang.Math#toDegrees(double)}/degrees(double)
- * @return {@link java.lang.Math#toDegrees(double)}/degrees(double)
- *
- * @see java.lang.Math#toDegrees(double)
- * @see degrees(double)
- */
- @OpenCLMapping(mapTo = "degrees")
- protected double toDegrees(double _d) {
- return Math.toDegrees(_d);
- }
-
- /**
- * Delegates to either {@link java.lang.Math#rint(double)} (Java) or rint(float) (OpenCL).
- *
- * User should note the differences in precision between Java and OpenCL's implementation of arithmetic functions to determine whether the difference in precision is acceptable.
- *
- * @param _f value to delegate to {@link java.lang.Math#rint(double)}/rint(float)
- * @return {@link java.lang.Math#rint(double)} casted to float/rint(float)
- *
- * @see java.lang.Math#rint(double)
- * @see rint(float)
- */
- @OpenCLMapping(mapTo = "rint")
- protected float rint(float _f) {
- return (float) Math.rint(_f);
- }
-
- /**
- * Delegates to either {@link java.lang.Math#rint(double)} (Java) or rint(double) (OpenCL).
- *
- * User should note the differences in precision between Java and OpenCL's implementation of arithmetic functions to determine whether the difference in precision is acceptable.
- *
- * @param _d value to delegate to {@link java.lang.Math#rint(double)}/rint(double)
- * @return {@link java.lang.Math#rint(double)}/rint(double)
- *
- * @see java.lang.Math#rint(double)
- * @see rint(double)
- */
- @OpenCLMapping(mapTo = "rint")
- protected double rint(double _d) {
- return Math.rint(_d);
- }
-
- /**
- * Delegates to either {@link java.lang.Math#round(float)} (Java) or round(float) (OpenCL).
- *
- * User should note the differences in precision between Java and OpenCL's implementation of arithmetic functions to determine whether the difference in precision is acceptable.
- *
- * @param _f value to delegate to {@link java.lang.Math#round(float)}/round(float)
- * @return {@link java.lang.Math#round(float)}/round(float)
- *
- * @see java.lang.Math#round(float)
- * @see round(float)
- */
- @OpenCLMapping(mapTo = "round")
- protected int round(float _f) {
- return Math.round(_f);
- }
-
- /**
- * Delegates to either {@link java.lang.Math#round(double)} (Java) or round(double) (OpenCL).
- *
- * User should note the differences in precision between Java and OpenCL's implementation of arithmetic functions to determine whether the difference in precision is acceptable.
- *
- * @param _d value to delegate to {@link java.lang.Math#round(double)}/round(double)
- * @return {@link java.lang.Math#round(double)}/round(double)
- *
- * @see java.lang.Math#round(double)
- * @see round(double)
- */
- @OpenCLMapping(mapTo = "round")
- protected long round(double _d) {
- return Math.round(_d);
- }
-
- /**
- * Delegates to either {@link java.lang.Math#sin(double)} (Java) or sin(float) (OpenCL).
- *
- * User should note the differences in precision between Java and OpenCL's implementation of arithmetic functions to determine whether the difference in precision is acceptable.
- *
- * @param _f value to delegate to {@link java.lang.Math#sin(double)}/sin(float)
- * @return {@link java.lang.Math#sin(double)} casted to float/sin(float)
- *
- * @see java.lang.Math#sin(double)
- * @see sin(float)
- */
- @OpenCLMapping(mapTo = "sin")
- protected float sin(float _f) {
- return (float) Math.sin(_f);
- }
-
- /**
- * Delegates to either {@link java.lang.Math#sin(double)} (Java) or sin(double) (OpenCL).
- *
- * User should note the differences in precision between Java and OpenCL's implementation of arithmetic functions to determine whether the difference in precision is acceptable.
- *
- * @param _d value to delegate to {@link java.lang.Math#sin(double)}/sin(double)
- * @return {@link java.lang.Math#sin(double)}/sin(double)
- *
- * @see java.lang.Math#sin(double)
- * @see sin(double)
- */
- @OpenCLMapping(mapTo = "sin")
- protected double sin(double _d) {
- return Math.sin(_d);
- }
-
- /**
- * Delegates to either {@link java.lang.Math#sqrt(double)} (Java) or sqrt(float) (OpenCL).
- *
- * User should note the differences in precision between Java and OpenCL's implementation of arithmetic functions to determine whether the difference in precision is acceptable.
- *
- * @param _f value to delegate to {@link java.lang.Math#sqrt(double)}/sqrt(float)
- * @return {@link java.lang.Math#sqrt(double)} casted to float/sqrt(float)
- *
- * @see java.lang.Math#sqrt(double)
- * @see sqrt(float)
- */
- @OpenCLMapping(mapTo = "sqrt")
- protected float sqrt(float _f) {
- return (float) Math.sqrt(_f);
- }
-
- /**
- * Delegates to either {@link java.lang.Math#sqrt(double)} (Java) or sqrt(double) (OpenCL).
- *
- * User should note the differences in precision between Java and OpenCL's implementation of arithmetic functions to determine whether the difference in precision is acceptable.
- *
- * @param _d value to delegate to {@link java.lang.Math#sqrt(double)}/sqrt(double)
- * @return {@link java.lang.Math#sqrt(double)}/sqrt(double)
- *
- * @see java.lang.Math#sqrt(double)
- * @see sqrt(double)
- */
- @OpenCLMapping(mapTo = "sqrt")
- protected double sqrt(double _d) {
- return Math.sqrt(_d);
- }
-
- /**
- * Delegates to either {@link java.lang.Math#tan(double)} (Java) or tan(float) (OpenCL).
- *
- * User should note the differences in precision between Java and OpenCL's implementation of arithmetic functions to determine whether the difference in precision is acceptable.
- *
- * @param _f value to delegate to {@link java.lang.Math#tan(double)}/tan(float)
- * @return {@link java.lang.Math#tan(double)} casted to float/tan(float)
- *
- * @see java.lang.Math#tan(double)
- * @see tan(float)
- */
- @OpenCLMapping(mapTo = "tan")
- protected float tan(float _f) {
- return (float) Math.tan(_f);
- }
-
- /**
- * Delegates to either {@link java.lang.Math#tan(double)} (Java) or tan(double) (OpenCL).
- *
- * User should note the differences in precision between Java and OpenCL's implementation of arithmetic functions to determine whether the difference in precision is acceptable.
- *
- * @param _d value to delegate to {@link java.lang.Math#tan(double)}/tan(double)
- * @return {@link java.lang.Math#tan(double)}/tan(double)
- *
- * @see java.lang.Math#tan(double)
- * @see tan(double)
- */
- @OpenCLMapping(mapTo = "tan")
- protected double tan(double _d) {
- return Math.tan(_d);
- }
-
- // the following rsqrt and native_sqrt and native_rsqrt don't exist in java Math
- // but added them here for nbody testing, not sure if we want to expose them
- /**
- * Computes inverse square root using {@link java.lang.Math#sqrt(double)} (Java) or delegates to rsqrt(double) (OpenCL).
- *
- * User should note the differences in precision between Java and OpenCL's implementation of arithmetic functions to determine whether the difference in precision is acceptable.
- *
- * @param _f value to delegate to {@link java.lang.Math#sqrt(double)}/rsqrt(double)
- * @return ( 1.0f / {@link java.lang.Math#sqrt(double)} casted to float )/rsqrt(double)
- *
- * @see java.lang.Math#sqrt(double)
- * @see rsqrt(double)
- */
- @OpenCLMapping(mapTo = "rsqrt")
- protected float rsqrt(float _f) {
- return (1.0f / (float) Math.sqrt(_f));
- }
-
- /**
- * Computes inverse square root using {@link java.lang.Math#sqrt(double)} (Java) or delegates to rsqrt(double) (OpenCL).
- *
- * User should note the differences in precision between Java and OpenCL's implementation of arithmetic functions to determine whether the difference in precision is acceptable.
- *
- * @param _d value to delegate to {@link java.lang.Math#sqrt(double)}/rsqrt(double)
- * @return ( 1.0f / {@link java.lang.Math#sqrt(double)} ) /rsqrt(double)
- *
- * @see java.lang.Math#sqrt(double)
- * @see rsqrt(double)
- */
- @OpenCLMapping(mapTo = "rsqrt")
- protected double rsqrt(double _d) {
- return (1.0 / Math.sqrt(_d));
- }
-
- @OpenCLMapping(mapTo = "native_sqrt")
- private float native_sqrt(float _f) {
- int j = Float.floatToIntBits(_f);
- j = ((1 << 29) + (j >> 1)) - (1 << 22) - 0x4c00;
- return (Float.intBitsToFloat(j));
- // could add more precision using one iteration of newton's method, use the following
- }
-
- @OpenCLMapping(mapTo = "native_rsqrt")
- private float native_rsqrt(float _f) {
- int j = Float.floatToIntBits(_f);
- j = 0x5f3759df - (j >> 1);
- final float x = (Float.intBitsToFloat(j));
- return x;
- // if want more precision via one iteration of newton's method, use the following
- // float fhalf = 0.5f*_f;
- // return (x *(1.5f - fhalf * x * x));
- }
-
- // Hacked from AtomicIntegerArray.getAndAdd(i, delta)
- /**
- * Atomically adds _delta value to _index element of array _arr (Java) or delegates to atomic_add(volatile int*, int) (OpenCL).
- *
- *
- * @param _arr array for which an element value needs to be atomically incremented by _delta
- * @param _index index of the _arr array that needs to be atomically incremented by _delta
- * @param _delta value by which _index element of _arr array needs to be atomically incremented
- * @return previous value of _index element of _arr array
- *
- * @see atomic_add(volatile int*, int)
- */
- @OpenCLMapping(atomic32 = true)
- protected int atomicAdd(int[] _arr, int _index, int _delta) {
- if (!Config.disableUnsafe) {
- return UnsafeWrapper.atomicAdd(_arr, _index, _delta);
- } else {
- synchronized (_arr) {
- final int previous = _arr[_index];
- _arr[_index] += _delta;
- return previous;
- }
- }
- }
-
- /**
- * Wait for all kernels in the current group to rendezvous at this call before continuing execution.
- *
- * @annotion Experimental
- */
- @OpenCLDelegate
- @Experimental
- protected final void localBarrier() {
- try {
- kernelState.getLocalBarrier().await();
- } catch (final InterruptedException e) {
- // TODO Auto-generated catch block
- e.printStackTrace();
- } catch (final BrokenBarrierException e) {
- // TODO Auto-generated catch block
- e.printStackTrace();
- }
- }
-
- /**
- * Wait for all kernels in the current group to rendezvous at this call before continuing execution.
- *
- *
- * Java version is identical to localBarrier()
- *
- * @annotion Experimental
- * @deprecated
- */
- @OpenCLDelegate
- @Experimental
- @Deprecated
- protected final void globalBarrier() throws DeprecatedException {
- throw new DeprecatedException(
- "Kernel.globalBarrier() has been deprecated. It was based an incorrect understanding of OpenCL functionality.");
- }
-
- public KernelState getKernelState() {
- return kernelState;
- }
-
- /**
- * Determine the execution time of the previous Kernel.execute(range) call.
- *
- * Note that for the first call this will include the conversion time.
- *
- * @return The time spent executing the kernel (ms)
- *
- * @see #getConversionTime();
- * @see #getAccumulatedExecutionTime();
- *
- */
- public synchronized long getExecutionTime() {
- if (kernelRunner == null) {
- kernelRunner = new KernelRunner(this);
- }
-
- return (kernelRunner.getExecutionTime());
- }
-
- /**
- * Determine the total execution time of all previous Kernel.execute(range) calls.
- *
- * Note that this will include the initial conversion time.
- *
- * @return The total time spent executing the kernel (ms)
- *
- * @see #getExecutionTime();
- * @see #getConversionTime();
- *
- */
- public synchronized long getAccumulatedExecutionTime() {
- if (kernelRunner == null) {
- kernelRunner = new KernelRunner(this);
- }
-
- return (kernelRunner.getAccumulatedExecutionTime());
- }
-
- /**
- * Determine the time taken to convert bytecode to OpenCL for first Kernel.execute(range) call.
- * @return The time spent preparing the kernel for execution using GPU
- *
- * @see #getExecutionTime();
- * @see #getAccumulatedExecutionTime();
- */
- public synchronized long getConversionTime() {
- if (kernelRunner == null) {
- kernelRunner = new KernelRunner(this);
- }
-
- return (kernelRunner.getConversionTime());
- }
-
- /**
- * Start execution of _range kernels.
- *
- * When kernel.execute(globalSize) is invoked, Aparapi will schedule the execution of globalSize kernels. If the execution mode is GPU then
- * the kernels will execute as OpenCL code on the GPU device. Otherwise, if the mode is JTP, the kernels will execute as a pool of Java threads on the CPU.
- *
- * @param _range The number of Kernels that we would like to initiate.
- * @returnThe Kernel instance (this) so we can chain calls to put(arr).execute(range).get(arr)
- *
- */
- public synchronized Kernel execute(Range _range) {
- return (execute(_range, 1));
- }
-
- /**
- * Start execution of _range kernels.
- *
- * When kernel.execute(_range) is invoked, Aparapi will schedule the execution of _range kernels. If the execution mode is GPU then
- * the kernels will execute as OpenCL code on the GPU device. Otherwise, if the mode is JTP, the kernels will execute as a pool of Java threads on the CPU.
- *
- * Since adding the new Range class this method offers backward compatibility and merely defers to return (execute(Range.create(_range), 1));.
- * @param _range The number of Kernels that we would like to initiate.
- * @returnThe Kernel instance (this) so we can chain calls to put(arr).execute(range).get(arr)
- *
- */
- public synchronized Kernel execute(int _range) {
- return (execute(Range.create(_range), 1));
- }
-
- /**
- * Start execution of _passes iterations of _range kernels.
- *
- * When kernel.execute(_range, _passes) is invoked, Aparapi will schedule the execution of _reange kernels. If the execution mode is GPU then
- * the kernels will execute as OpenCL code on the GPU device. Otherwise, if the mode is JTP, the kernels will execute as a pool of Java threads on the CPU.
- *
- * @param _passes The number of passes to make
- * @return The Kernel instance (this) so we can chain calls to put(arr).execute(range).get(arr)
- *
- */
- public synchronized Kernel execute(Range _range, int _passes) {
- return (execute("run", _range, _passes));
- }
-
- /**
- * Start execution of _passes iterations over the _range of kernels.
- *
- * When kernel.execute(_range) is invoked, Aparapi will schedule the execution of _range kernels. If the execution mode is GPU then
- * the kernels will execute as OpenCL code on the GPU device. Otherwise, if the mode is JTP, the kernels will execute as a pool of Java threads on the CPU.
- *
- * Since adding the new Range class this method offers backward compatibility and merely defers to return (execute(Range.create(_range), 1));.
- * @param _range The number of Kernels that we would like to initiate.
- * @returnThe Kernel instance (this) so we can chain calls to put(arr).execute(range).get(arr)
- *
- */
- public synchronized Kernel execute(int _range, int _passes) {
- return (execute(Range.create(_range), _passes));
- }
-
- /**
- * Start execution of globalSize kernels for the given entrypoint.
- *
- * When kernel.execute("entrypoint", globalSize) is invoked, Aparapi will schedule the execution of globalSize kernels. If the execution mode is GPU then
- * the kernels will execute as OpenCL code on the GPU device. Otherwise, if the mode is JTP, the kernels will execute as a pool of Java threads on the CPU.
- *
- * @param _entry is the name of the method we wish to use as the entrypoint to the kernel
- * @return The Kernel instance (this) so we can chain calls to put(arr).execute(range).get(arr)
- *
- */
- public synchronized Kernel execute(Entry _entry, Range _range) {
- if (kernelRunner == null) {
- kernelRunner = new KernelRunner(this);
- }
-
- return (kernelRunner.execute(_entry, _range, 1));
- }
-
- /**
- * Start execution of globalSize kernels for the given entrypoint.
- *
- * When kernel.execute("entrypoint", globalSize) is invoked, Aparapi will schedule the execution of globalSize kernels. If the execution mode is GPU then
- * the kernels will execute as OpenCL code on the GPU device. Otherwise, if the mode is JTP, the kernels will execute as a pool of Java threads on the CPU.
- *
- * @param _entrypoint is the name of the method we wish to use as the entrypoint to the kernel
- * @return The Kernel instance (this) so we can chain calls to put(arr).execute(range).get(arr)
- *
- */
- public synchronized Kernel execute(String _entrypoint, Range _range) {
- return (execute(_entrypoint, _range, 1));
- }
-
- /**
- * Start execution of globalSize kernels for the given entrypoint.
- *
- * When kernel.execute("entrypoint", globalSize) is invoked, Aparapi will schedule the execution of globalSize kernels. If the execution mode is GPU then
- * the kernels will execute as OpenCL code on the GPU device. Otherwise, if the mode is JTP, the kernels will execute as a pool of Java threads on the CPU.
- *
- * @param _entrypoint is the name of the method we wish to use as the entrypoint to the kernel
- * @return The Kernel instance (this) so we can chain calls to put(arr).execute(range).get(arr)
- *
- */
- public synchronized Kernel execute(String _entrypoint, Range _range, int _passes) {
- if (kernelRunner == null) {
- kernelRunner = new KernelRunner(this);
-
- }
-
- return (kernelRunner.execute(_entrypoint, _range, _passes));
- }
-
- /**
- * Release any resources associated with this Kernel.
- *
- * When the execution mode is CPU or GPU, Aparapi stores some OpenCL resources in a data structure associated with the kernel instance. The
- * dispose() method must be called to release these resources.
- *
- * If execute(int _globalSize) is called after dispose() is called the results are undefined.
- */
- public synchronized void dispose() {
- if (kernelRunner != null) {
- kernelRunner.dispose();
- kernelRunner = null;
- }
- }
-
- /**
- * Return the current execution mode.
- *
- * Before a Kernel executes, this return value will be the execution mode as determined by the setting of
- * the EXECUTION_MODE enumeration. By default, this setting is either GPU
- * if OpenCL is available on the target system, or JTP otherwise. This default setting can be
- * changed by calling setExecutionMode().
- *
- *
- * After a Kernel executes, the return value will be the mode in which the Kernel actually executed.
- *
- * @return The current execution mode.
- *
- * @see #setExecutionMode(EXECUTION_MODE)
- */
- public EXECUTION_MODE getExecutionMode() {
- return (executionMode);
- }
-
- /**
- * Set the execution mode.
- *
- * This should be regarded as a request. The real mode will be determined at runtime based on the availability of OpenCL and the characteristics of the workload.
- *
- * @param _executionMode the requested execution mode.
- *
- * @see #getExecutionMode()
- */
- public void setExecutionMode(EXECUTION_MODE _executionMode) {
- executionMode = _executionMode;
- }
-
- public void setFallbackExecutionMode() {
- executionMode = EXECUTION_MODE.getFallbackExecutionMode();
- }
-
- final static Map typeToLetterMap = new HashMap();
-
- static {
- // only primitive types for now
- typeToLetterMap.put("double", "D");
- typeToLetterMap.put("float", "F");
- typeToLetterMap.put("int", "I");
- typeToLetterMap.put("long", "J");
- typeToLetterMap.put("boolean", "Z");
- typeToLetterMap.put("byte", "B");
- typeToLetterMap.put("char", "C");
- typeToLetterMap.put("short", "S");
- typeToLetterMap.put("void", "V");
- }
-
- private static String descriptorToReturnTypeLetter(String desc) {
- // find the letter after the closed parenthesis
- return desc.substring(desc.lastIndexOf(')') + 1);
- }
-
- private static String getReturnTypeLetter(Method meth) {
- final Class> retClass = meth.getReturnType();
- final String strRetClass = retClass.toString();
- final String mapping = typeToLetterMap.get(strRetClass);
- // System.out.println("strRetClass = <" + strRetClass + ">, mapping = " + mapping);
- return mapping;
- }
-
- public static String getMappedMethodName(MethodReferenceEntry _methodReferenceEntry) {
- String mappedName = null;
- final String name = _methodReferenceEntry.getNameAndTypeEntry().getNameUTF8Entry().getUTF8();
- for (final Method kernelMethod : Kernel.class.getDeclaredMethods()) {
- if (kernelMethod.isAnnotationPresent(OpenCLMapping.class)) {
- // ultimately, need a way to constrain this based upon signature (to disambiguate abs(float) from abs(int);
- // for Alpha, we will just disambiguate based on the return type
- if (false) {
- System.out.println("kernelMethod is ... " + kernelMethod.toGenericString());
- System.out.println("returnType = " + kernelMethod.getReturnType());
- System.out.println("returnTypeLetter = " + getReturnTypeLetter(kernelMethod));
- System.out.println("kernelMethod getName = " + kernelMethod.getName());
- System.out.println("methRefName = " + name + " descriptor = "
- + _methodReferenceEntry.getNameAndTypeEntry().getDescriptorUTF8Entry().getUTF8());
- System.out
- .println("descToReturnTypeLetter = "
- + descriptorToReturnTypeLetter(_methodReferenceEntry.getNameAndTypeEntry().getDescriptorUTF8Entry()
- .getUTF8()));
- }
- if (_methodReferenceEntry.getNameAndTypeEntry().getNameUTF8Entry().getUTF8().equals(kernelMethod.getName())
- && descriptorToReturnTypeLetter(_methodReferenceEntry.getNameAndTypeEntry().getDescriptorUTF8Entry().getUTF8())
- .equals(getReturnTypeLetter(kernelMethod))) {
- final OpenCLMapping annotation = kernelMethod.getAnnotation(OpenCLMapping.class);
- final String mapTo = annotation.mapTo();
- if (!mapTo.equals("")) {
- mappedName = mapTo;
- // System.out.println("mapTo = " + mapTo);
- }
- }
- }
- }
- // System.out.println("... in getMappedMethodName, returning = " + mappedName);
- return (mappedName);
- }
-
- public static boolean isMappedMethod(MethodReferenceEntry methodReferenceEntry) {
- boolean isMapped = false;
- for (final Method kernelMethod : Kernel.class.getDeclaredMethods()) {
- if (kernelMethod.isAnnotationPresent(OpenCLMapping.class)) {
- if (methodReferenceEntry.getNameAndTypeEntry().getNameUTF8Entry().getUTF8().equals(kernelMethod.getName())) {
-
- // well they have the same name ;)
- isMapped = true;
- }
- }
- }
- return (isMapped);
- }
-
- public static boolean isOpenCLDelegateMethod(MethodReferenceEntry methodReferenceEntry) {
- boolean isMapped = false;
- for (final Method kernelMethod : Kernel.class.getDeclaredMethods()) {
- if (kernelMethod.isAnnotationPresent(OpenCLDelegate.class)) {
- if (methodReferenceEntry.getNameAndTypeEntry().getNameUTF8Entry().getUTF8().equals(kernelMethod.getName())) {
-
- // well they have the same name ;)
- isMapped = true;
- }
- }
- }
- return (isMapped);
- }
-
- public static boolean usesAtomic32(MethodReferenceEntry methodReferenceEntry) {
- for (final Method kernelMethod : Kernel.class.getDeclaredMethods()) {
- if (kernelMethod.isAnnotationPresent(OpenCLMapping.class)) {
- if (methodReferenceEntry.getNameAndTypeEntry().getNameUTF8Entry().getUTF8().equals(kernelMethod.getName())) {
- final OpenCLMapping annotation = kernelMethod.getAnnotation(OpenCLMapping.class);
- return annotation.atomic32();
- }
- }
- }
- return (false);
- }
-
- // For alpha release atomic64 is not supported
- public static boolean usesAtomic64(MethodReferenceEntry methodReferenceEntry) {
- //for (java.lang.reflect.Method kernelMethod : Kernel.class.getDeclaredMethods()) {
- // if (kernelMethod.isAnnotationPresent(Kernel.OpenCLMapping.class)) {
- // if (methodReferenceEntry.getNameAndTypeEntry().getNameUTF8Entry().getUTF8().equals(kernelMethod.getName())) {
- // OpenCLMapping annotation = kernelMethod.getAnnotation(Kernel.OpenCLMapping.class);
- // return annotation.atomic64();
- // }
- // }
- //}
- return (false);
- }
-
- // the flag useNullForLocalSize is useful for testing that what we compute for localSize is what OpenCL
- // would also compute if we passed in null. In non-testing mode, we just call execute with the
- // same localSize that we computed in getLocalSizeJNI. We don't want do publicize these of course.
- // GRF we can't access this from test classes without exposing in in javadoc so I left the flag but made the test/set of the flag reflectively
- boolean useNullForLocalSize = false;
-
- // Explicit memory management API's follow
-
- /**
- * For dev purposes (we should remove this for production) allow us to define that this Kernel uses explicit memory management
- * @param _explicit (true if we want explicit memory management)
- */
- public void setExplicit(boolean _explicit) {
- if (kernelRunner == null) {
- kernelRunner = new KernelRunner(this);
- }
-
- kernelRunner.setExplicit(_explicit);
- }
-
- /**
- * For dev purposes (we should remove this for production) determine whether this Kernel uses explicit memory management
- * @return (true if we kernel is using explicit memory management)
- */
- public boolean isExplicit() {
- if (kernelRunner == null) {
- kernelRunner = new KernelRunner(this);
- }
-
- return (kernelRunner.isExplicit());
- }
-
- /**
- * Tag this array so that it is explicitly enqueued before the kernel is executed
- * @param array
- * @return This kernel so that we can use the 'fluent' style API
- */
- public Kernel put(long[] array) {
- if (kernelRunner == null) {
- kernelRunner = new KernelRunner(this);
- }
-
- kernelRunner.put(array);
- return (this);
- }
-
- /**
- * Tag this array so that it is explicitly enqueued before the kernel is executed
- * @param array
- * @return This kernel so that we can use the 'fluent' style API
- */
- public Kernel put(long[][] array) {
- if (kernelRunner == null) {
- kernelRunner = new KernelRunner(this);
- }
-
- kernelRunner.put(array);
- return (this);
- }
-
- /**
- * Tag this array so that it is explicitly enqueued before the kernel is executed
- * @param array
- * @return This kernel so that we can use the 'fluent' style API
- */
- public Kernel put(long[][][] array) {
- if (kernelRunner == null) {
- kernelRunner = new KernelRunner(this);
- }
-
- kernelRunner.put(array);
- return (this);
- }
-
- /**
- * Tag this array so that it is explicitly enqueued before the kernel is executed
- * @param array
- * @return This kernel so that we can use the 'fluent' style API
- */
- public Kernel put(double[] array) {
- if (kernelRunner == null) {
- kernelRunner = new KernelRunner(this);
- }
-
- kernelRunner.put(array);
- return (this);
- }
-
- /**
- * Tag this array so that it is explicitly enqueued before the kernel is executed
- * @param array
- * @return This kernel so that we can use the 'fluent' style API
- */
- public Kernel put(double[][] array) {
- if (kernelRunner == null) {
- kernelRunner = new KernelRunner(this);
- }
-
- kernelRunner.put(array);
- return (this);
- }
-
- /**
- * Tag this array so that it is explicitly enqueued before the kernel is executed
- * @param array
- * @return This kernel so that we can use the 'fluent' style API
- */
- public Kernel put(double[][][] array) {
- if (kernelRunner == null) {
- kernelRunner = new KernelRunner(this);
- }
-
- kernelRunner.put(array);
- return (this);
- }
-
- /**
- * Tag this array so that it is explicitly enqueued before the kernel is executed
- * @param array
- * @return This kernel so that we can use the 'fluent' style API
- */
- public Kernel put(float[] array) {
- if (kernelRunner == null) {
- kernelRunner = new KernelRunner(this);
- }
-
- kernelRunner.put(array);
- return (this);
- }
-
- /**
- * Tag this array so that it is explicitly enqueued before the kernel is executed
- * @param array
- * @return This kernel so that we can use the 'fluent' style API
- */
- public Kernel put(float[][] array) {
- if (kernelRunner == null) {
- kernelRunner = new KernelRunner(this);
- }
-
- kernelRunner.put(array);
- return (this);
- }
-
- /**
- * Tag this array so that it is explicitly enqueued before the kernel is executed
- * @param array
- * @return This kernel so that we can use the 'fluent' style API
- */
- public Kernel put(float[][][] array) {
- if (kernelRunner == null) {
- kernelRunner = new KernelRunner(this);
- }
-
- kernelRunner.put(array);
- return (this);
- }
-
- /**
- * Tag this array so that it is explicitly enqueued before the kernel is executed
- * @param array
- * @return This kernel so that we can use the 'fluent' style API
- */
- public Kernel put(int[] array) {
- if (kernelRunner == null) {
- kernelRunner = new KernelRunner(this);
- }
-
- kernelRunner.put(array);
- return (this);
- }
-
- /**
- * Tag this array so that it is explicitly enqueued before the kernel is executed
- * @param array
- * @return This kernel so that we can use the 'fluent' style API
- */
- public Kernel put(int[][] array) {
- if (kernelRunner == null) {
- kernelRunner = new KernelRunner(this);
- }
-
- kernelRunner.put(array);
- return (this);
- }
-
- /**
- * Tag this array so that it is explicitly enqueued before the kernel is executed
- * @param array
- * @return This kernel so that we can use the 'fluent' style API
- */
- public Kernel put(int[][][] array) {
- if (kernelRunner == null) {
- kernelRunner = new KernelRunner(this);
- }
-
- kernelRunner.put(array);
- return (this);
- }
-
- /**
- * Tag this array so that it is explicitly enqueued before the kernel is executed
- * @param array
- * @return This kernel so that we can use the 'fluent' style API
- */
- public Kernel put(byte[] array) {
- if (kernelRunner == null) {
- kernelRunner = new KernelRunner(this);
- }
-
- kernelRunner.put(array);
- return (this);
- }
-
- /**
- * Tag this array so that it is explicitly enqueued before the kernel is executed
- * @param array
- * @return This kernel so that we can use the 'fluent' style API
- */
- public Kernel put(byte[][] array) {
- if (kernelRunner == null) {
- kernelRunner = new KernelRunner(this);
- }
-
- kernelRunner.put(array);
- return (this);
- }
-
- /**
- * Tag this array so that it is explicitly enqueued before the kernel is executed
- * @param array
- * @return This kernel so that we can use the 'fluent' style API
- */
- public Kernel put(byte[][][] array) {
- if (kernelRunner == null) {
- kernelRunner = new KernelRunner(this);
- }
-
- kernelRunner.put(array);
- return (this);
- }
-
- /**
- * Tag this array so that it is explicitly enqueued before the kernel is executed
- * @param array
- * @return This kernel so that we can use the 'fluent' style API
- */
- public Kernel put(char[] array) {
- if (kernelRunner == null) {
- kernelRunner = new KernelRunner(this);
- }
-
- kernelRunner.put(array);
- return (this);
- }
-
- /**
- * Tag this array so that it is explicitly enqueued before the kernel is executed
- * @param array
- * @return This kernel so that we can use the 'fluent' style API
- */
- public Kernel put(char[][] array) {
- if (kernelRunner == null) {
- kernelRunner = new KernelRunner(this);
- }
-
- kernelRunner.put(array);
- return (this);
- }
-
- /**
- * Tag this array so that it is explicitly enqueued before the kernel is executed
- * @param array
- * @return This kernel so that we can use the 'fluent' style API
- */
- public Kernel put(char[][][] array) {
- if (kernelRunner == null) {
- kernelRunner = new KernelRunner(this);
- }
-
- kernelRunner.put(array);
- return (this);
- }
-
- /**
- * Tag this array so that it is explicitly enqueued before the kernel is executed
- * @param array
- * @return This kernel so that we can use the 'fluent' style API
- */
- public Kernel put(boolean[] array) {
- if (kernelRunner == null) {
- kernelRunner = new KernelRunner(this);
- }
-
- kernelRunner.put(array);
- return (this);
- }
-
- /**
- * Tag this array so that it is explicitly enqueued before the kernel is executed
- * @param array
- * @return This kernel so that we can use the 'fluent' style API
- */
- public Kernel put(boolean[][] array) {
- if (kernelRunner == null) {
- kernelRunner = new KernelRunner(this);
- }
-
- kernelRunner.put(array);
- return (this);
- }
-
- /**
- * Tag this array so that it is explicitly enqueued before the kernel is executed
- * @param array
- * @return This kernel so that we can use the 'fluent' style API
- */
- public Kernel put(boolean[][][] array) {
- if (kernelRunner == null) {
- kernelRunner = new KernelRunner(this);
- }
-
- kernelRunner.put(array);
- return (this);
- }
-
- /**
- * Enqueue a request to return this buffer from the GPU. This method blocks until the array is available.
- * @param array
- * @return This kernel so that we can use the 'fluent' style API
- */
- public Kernel get(long[] array) {
- if (kernelRunner == null) {
- kernelRunner = new KernelRunner(this);
- }
-
- kernelRunner.get(array);
- return (this);
- }
-
- /**
- * Enqueue a request to return this buffer from the GPU. This method blocks until the array is available.
- * @param array
- * @return This kernel so that we can use the 'fluent' style API
- */
- public Kernel get(long[][] array) {
- if (kernelRunner == null) {
- kernelRunner = new KernelRunner(this);
- }
-
- kernelRunner.get(array);
- return (this);
- }
-
- /**
- * Enqueue a request to return this buffer from the GPU. This method blocks until the array is available.
- * @param array
- * @return This kernel so that we can use the 'fluent' style API
- */
- public Kernel get(long[][][] array) {
- if (kernelRunner == null) {
- kernelRunner = new KernelRunner(this);
- }
-
- kernelRunner.get(array);
- return (this);
- }
-
- /**
- * Enqueue a request to return this buffer from the GPU. This method blocks until the array is available.
- * @param array
- * @return This kernel so that we can use the 'fluent' style API
- */
- public Kernel get(double[] array) {
- if (kernelRunner == null) {
- kernelRunner = new KernelRunner(this);
- }
-
- kernelRunner.get(array);
- return (this);
- }
-
- /**
- * Enqueue a request to return this buffer from the GPU. This method blocks until the array is available.
- * @param array
- * @return This kernel so that we can use the 'fluent' style API
- */
- public Kernel get(double[][] array) {
- if (kernelRunner == null) {
- kernelRunner = new KernelRunner(this);
- }
-
- kernelRunner.get(array);
- return (this);
- }
-
- /**
- * Enqueue a request to return this buffer from the GPU. This method blocks until the array is available.
- * @param array
- * @return This kernel so that we can use the 'fluent' style API
- */
- public Kernel get(double[][][] array) {
- if (kernelRunner == null) {
- kernelRunner = new KernelRunner(this);
- }
-
- kernelRunner.get(array);
- return (this);
- }
-
- /**
- * Enqueue a request to return this buffer from the GPU. This method blocks until the array is available.
- * @param array
- * @return This kernel so that we can use the 'fluent' style API
- */
- public Kernel get(float[] array) {
- if (kernelRunner == null) {
- kernelRunner = new KernelRunner(this);
- }
-
- kernelRunner.get(array);
- return (this);
- }
-
- /**
- * Enqueue a request to return this buffer from the GPU. This method blocks until the array is available.
- * @param array
- * @return This kernel so that we can use the 'fluent' style API
- */
- public Kernel get(float[][] array) {
- if (kernelRunner == null) {
- kernelRunner = new KernelRunner(this);
- }
-
- kernelRunner.get(array);
- return (this);
- }
-
- /**
- * Enqueue a request to return this buffer from the GPU. This method blocks until the array is available.
- * @param array
- * @return This kernel so that we can use the 'fluent' style API
- */
- public Kernel get(float[][][] array) {
- if (kernelRunner == null) {
- kernelRunner = new KernelRunner(this);
- }
-
- kernelRunner.get(array);
- return (this);
- }
-
- /**
- * Enqueue a request to return this buffer from the GPU. This method blocks until the array is available.
- * @param array
- * @return This kernel so that we can use the 'fluent' style API
- */
- public Kernel get(int[] array) {
- if (kernelRunner == null) {
- kernelRunner = new KernelRunner(this);
- }
-
- kernelRunner.get(array);
- return (this);
- }
-
- /**
- * Enqueue a request to return this buffer from the GPU. This method blocks until the array is available.
- * @param array
- * @return This kernel so that we can use the 'fluent' style API
- */
- public Kernel get(int[][] array) {
- if (kernelRunner == null) {
- kernelRunner = new KernelRunner(this);
- }
-
- kernelRunner.get(array);
- return (this);
- }
-
- /**
- * Enqueue a request to return this buffer from the GPU. This method blocks until the array is available.
- * @param array
- * @return This kernel so that we can use the 'fluent' style API
- */
- public Kernel get(int[][][] array) {
- if (kernelRunner == null) {
- kernelRunner = new KernelRunner(this);
- }
-
- kernelRunner.get(array);
- return (this);
- }
-
- /**
- * Enqueue a request to return this buffer from the GPU. This method blocks until the array is available.
- * @param array
- * @return This kernel so that we can use the 'fluent' style API
- */
- public Kernel get(byte[] array) {
- if (kernelRunner == null) {
- kernelRunner = new KernelRunner(this);
- }
-
- kernelRunner.get(array);
- return (this);
- }
-
- /**
- * Enqueue a request to return this buffer from the GPU. This method blocks until the array is available.
- * @param array
- * @return This kernel so that we can use the 'fluent' style API
- */
- public Kernel get(byte[][] array) {
- if (kernelRunner == null) {
- kernelRunner = new KernelRunner(this);
- }
-
- kernelRunner.get(array);
- return (this);
- }
-
- /**
- * Enqueue a request to return this buffer from the GPU. This method blocks until the array is available.
- * @param array
- * @return This kernel so that we can use the 'fluent' style API
- */
- public Kernel get(byte[][][] array) {
- if (kernelRunner == null) {
- kernelRunner = new KernelRunner(this);
- }
-
- kernelRunner.get(array);
- return (this);
- }
-
- /**
- * Enqueue a request to return this buffer from the GPU. This method blocks until the array is available.
- * @param array
- * @return This kernel so that we can use the 'fluent' style API
- */
- public Kernel get(char[] array) {
- if (kernelRunner == null) {
- kernelRunner = new KernelRunner(this);
- }
-
- kernelRunner.get(array);
- return (this);
- }
-
- /**
- * Enqueue a request to return this buffer from the GPU. This method blocks until the array is available.
- * @param array
- * @return This kernel so that we can use the 'fluent' style API
- */
- public Kernel get(char[][] array) {
- if (kernelRunner == null) {
- kernelRunner = new KernelRunner(this);
- }
-
- kernelRunner.get(array);
- return (this);
- }
-
- /**
- * Enqueue a request to return this buffer from the GPU. This method blocks until the array is available.
- * @param array
- * @return This kernel so that we can use the 'fluent' style API
- */
- public Kernel get(char[][][] array) {
- if (kernelRunner == null) {
- kernelRunner = new KernelRunner(this);
- }
-
- kernelRunner.get(array);
- return (this);
- }
-
- /**
- * Enqueue a request to return this buffer from the GPU. This method blocks until the array is available.
- * @param array
- * @return This kernel so that we can use the 'fluent' style API
- */
- public Kernel get(boolean[] array) {
- if (kernelRunner == null) {
- kernelRunner = new KernelRunner(this);
- }
-
- kernelRunner.get(array);
- return (this);
- }
-
- /**
- * Enqueue a request to return this buffer from the GPU. This method blocks until the array is available.
- * @param array
- * @return This kernel so that we can use the 'fluent' style API
- */
- public Kernel get(boolean[][] array) {
- if (kernelRunner == null) {
- kernelRunner = new KernelRunner(this);
- }
-
- kernelRunner.get(array);
- return (this);
- }
-
- /**
- * Enqueue a request to return this buffer from the GPU. This method blocks until the array is available.
- * @param array
- * @return This kernel so that we can use the 'fluent' style API
- */
- public Kernel get(boolean[][][] array) {
- if (kernelRunner == null) {
- kernelRunner = new KernelRunner(this);
- }
-
- kernelRunner.get(array);
- return (this);
- }
-
- /**
- * Get the profiling information from the last successful call to Kernel.execute().
- * @return A list of ProfileInfo records
- */
- public List getProfileInfo() {
- if (kernelRunner == null) {
- kernelRunner = new KernelRunner(this);
- }
-
- return (kernelRunner.getProfileInfo());
- }
-
- private final LinkedHashSet executionModes = EXECUTION_MODE.getDefaultExecutionModes();
-
- private Iterator currentMode = executionModes.iterator();
-
- private EXECUTION_MODE executionMode = currentMode.next();
-
- /**
- * set possible fallback path for execution modes.
- * for example setExecutionFallbackPath(GPU,CPU,JTP) will try to use the GPU
- * if it fails it will fall back to OpenCL CPU and finally it will try JTP.
- */
- public void addExecutionModes(EXECUTION_MODE... platforms) {
- executionModes.addAll(Arrays.asList(platforms));
- currentMode = executionModes.iterator();
- executionMode = currentMode.next();
- }
-
- /**
- * @return is there another execution path we can try
- */
- public boolean hasNextExecutionMode() {
- return currentMode.hasNext();
- }
-
- /**
- * try the next execution path in the list if there aren't any more than give up
- */
- public void tryNextExecutionMode() {
- if (currentMode.hasNext()) {
- executionMode = currentMode.next();
- }
- }
-}
diff --git a/com.amd.aparapi/src/java/com/amd/aparapi/ProfileInfo.java b/com.amd.aparapi/src/java/com/amd/aparapi/ProfileInfo.java
deleted file mode 100644
index b30d9128..00000000
--- a/com.amd.aparapi/src/java/com/amd/aparapi/ProfileInfo.java
+++ /dev/null
@@ -1,123 +0,0 @@
-/*
-Copyright (c) 2010-2011, Advanced Micro Devices, Inc.
-All rights reserved.
-
-Redistribution and use in source and binary forms, with or without modification, are permitted provided that the
-following conditions are met:
-
-Redistributions of source code must retain the above copyright notice, this list of conditions and the following
-disclaimer.
-
-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.
-
-Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products
-derived from this software without specific prior written permission.
-
-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.
-
-If you use the software (in whole or in part), you shall adhere to all applicable U.S., European, and other export
-laws, including but not limited to the U.S. Export Administration Regulations ("EAR"), (15 C.F.R. Sections 730 through
-774), and E.U. Council Regulation (EC) No 1334/2000 of 22 June 2000. Further, pursuant to Section 740.6 of the EAR,
-you hereby certify that, except pursuant to a license granted by the United States Department of Commerce Bureau of
-Industry and Security or as otherwise permitted pursuant to a License Exception under the U.S. Export Administration
-Regulations ("EAR"), you will not (1) export, re-export or release to a national of a country in Country Groups D:1,
-E:1 or E:2 any restricted technology, software, or source code you receive hereunder, or (2) export to Country Groups
-D:1, E:1 or E:2 the direct product of such technology or software, if such foreign produced direct product is subject
-to national security controls as identified on the Commerce Control List (currently found in Supplement 1 to Part 774
-of EAR). For the most current Country Group listings, or for additional information about the EAR or your obligations
-under those regulations, please refer to the U.S. Bureau of Industry and Security's website at http://www.bis.doc.gov/.
-
-*/
-package com.amd.aparapi;
-
-public class ProfileInfo{
-
- private enum TYPE {
- R,
- X,
- W
- }; // 0 = write, 1 = execute, 2 = read
-
- private final TYPE type;
-
- private final String label;
-
- private final long start;
-
- private final long end;
-
- private final long submit;
-
- private final long queued;
-
- /**
- * Minimal constructor
- *
- * @param _label
- * @param _type
- * @param _start
- * @param _end
- * @param _submit
- * @param _queued
- */
- public ProfileInfo(String _label, int _type, long _start, long _end, long _submit, long _queued) {
- type = TYPE.values()[_type];
- label = _label == null ? "exec()" : _label;
- start = _start;
- end = _end;
- submit = _submit;
- queued = _queued;
- }
-
- public long getStart() {
- return start;
- }
-
- public long getEnd() {
- return end;
- }
-
- public long getSubmit() {
- return submit;
- }
-
- public long getQueued() {
- return queued;
- }
-
- public String getLabel() {
- return (label);
- }
-
- public TYPE getType() {
- return (type);
- }
-
- @Override public String toString() {
- final StringBuilder sb = new StringBuilder();
- sb.append("ProfileInfo[");
- sb.append(type);
- sb.append(" '");
- sb.append(label);
- sb.append("' start=");
- sb.append(start);
- sb.append(", end=");
- sb.append(end);
- sb.append(", submit=");
- sb.append(submit);
- sb.append(", queued=");
- sb.append(queued);
- sb.append(", duration=");
- sb.append((end - start));
- sb.append("]");
-
- return sb.toString();
- }
-}
diff --git a/com.amd.aparapi/src/java/com/amd/aparapi/Range.java b/com.amd.aparapi/src/java/com/amd/aparapi/Range.java
deleted file mode 100644
index 5fb435a4..00000000
--- a/com.amd.aparapi/src/java/com/amd/aparapi/Range.java
+++ /dev/null
@@ -1,628 +0,0 @@
-package com.amd.aparapi;
-
-import java.util.Arrays;
-
-import com.amd.aparapi.device.Device;
-import com.amd.aparapi.internal.jni.RangeJNI;
-
-/**
- *
- * A representation of 1, 2 or 3 dimensional range of execution.
- *
- * This class uses factory methods to allow one, two or three dimensional ranges to be created.
- *
- * For a Kernel operating over the linear range 0..1024 without a specified groups size we would create a one dimensional Range using
- * Range.create(1024);
- * To request the same linear range but with a groupSize of 64 (range must be a multiple of group size!) we would use
- * Range.create(1024,64);
- * To request a two dimensional range over a grid (0..width)x(0..height) where width==512 and height=256 we would use
- *
- * int width=512;
- * int height=256;
- * Range.create2D(width,height)
- *
- * Again the above does not specify the group size. One will be chosen for you. If you want to specify the groupSize (say 16x8; 16 wide by 8 high) use
- *
- * int width=512;
- * int height=256;
- * int groupWidth=16;
- * int groupHeight=8;
- * Range.create2D(width, height, groupWidth, groupHeight);
- *
- * Finally we can request a three dimensional range using
- *
- * int width=512;
- * int height=256;
- * int depth=8;
- * Range.create3D(width, height, depth);
- *
- * And can specify a group size using
- *
- * int width=512;
- * int height=256;
- * int depth=8;
- * int groupWidth=8;
- * int groupHeight=4;
- * int groupDepth=2
- * Range.create3D(width, height, depth, groupWidth, groupHeight, groupDepth);
- *
- */
-public class Range extends RangeJNI{
-
- public static final int THREADS_PER_CORE = 16;
-
- public static final int MAX_OPENCL_GROUP_SIZE = 256;
-
- public static final int MAX_GROUP_SIZE = Math.max(Runtime.getRuntime().availableProcessors() * THREADS_PER_CORE,
- MAX_OPENCL_GROUP_SIZE);
-
- private Device device = null;
-
- private int maxWorkGroupSize;
-
- private int[] maxWorkItemSize = new int[] {
- MAX_GROUP_SIZE,
- MAX_GROUP_SIZE,
- MAX_GROUP_SIZE
- };
-
- /**
- * Minimal constructor
- *
- * @param _device
- * @param _dims
- */
- public Range(Device _device, int _dims) {
- device = _device;
- dims = _dims;
-
- if (device != null) {
- maxWorkItemSize = device.getMaxWorkItemSize();
- maxWorkGroupSize = device.getMaxWorkGroupSize();
- } else {
- maxWorkGroupSize = MAX_GROUP_SIZE;
- }
- }
-
- /**
- * Create a one dimensional range 0.._globalWidth which is processed in groups of size _localWidth.
- *
- * Note that for this range to be valid : _globalWidth > 0 && _localWidth > 0 && _localWidth < MAX_GROUP_SIZE && _globalWidth % _localWidth==0
- *
- * @param _globalWidth the overall range we wish to process
- * @param _localWidth the size of the group we wish to process.
- * @return A new Range with the requested dimensions
- */
- public static Range create(Device _device, int _globalWidth, int _localWidth) {
- final Range range = new Range(_device, 1);
-
- range.setGlobalSize_0(_globalWidth);
- range.setLocalSize_0(_localWidth);
-
- range.setValid((range.getLocalSize_0() > 0) && (range.getLocalSize_0() <= range.getMaxWorkItemSize()[0])
- && (range.getLocalSize_0() <= range.getMaxWorkGroupSize()) && ((range.getGlobalSize_0() % range.getLocalSize_0()) == 0));
-
- return (range);
- }
-
- /**
- * Determine the set of factors for a given value.
- * @param _value The value we wish to factorize.
- * @param _max an upper bound on the value that can be chosen
- * @return and array of factors of _value
- */
-
- private static int[] getFactors(int _value, int _max) {
- final int factors[] = new int[MAX_GROUP_SIZE];
- int factorIdx = 0;
-
- for (int possibleFactor = 1; possibleFactor <= _max; possibleFactor++) {
- if ((_value % possibleFactor) == 0) {
- factors[factorIdx++] = possibleFactor;
- }
- }
-
- return (Arrays.copyOf(factors, factorIdx));
- }
-
- /**
- * Create a one dimensional range 0.._globalWidth with an undefined group size.
- *
- * Note that for this range to be valid :- _globalWidth > 0
- *
- * The groupsize will be chosen such that _localWidth > 0 && _localWidth < MAX_GROUP_SIZE && _globalWidth % _localWidth==0 is true
- *
- * We extract the factors of _globalWidth and choose the highest value.
- *
- * @param _globalWidth the overall range we wish to process
- * @return A new Range with the requested dimensions
- */
- public static Range create(Device _device, int _globalWidth) {
- final Range withoutLocal = create(_device, _globalWidth, 1);
-
- if (withoutLocal.isValid()) {
- withoutLocal.setLocalIsDerived(true);
- final int[] factors = getFactors(withoutLocal.getGlobalSize_0(), withoutLocal.getMaxWorkItemSize()[0]);
-
- withoutLocal.setLocalSize_0(factors[factors.length - 1]);
-
- withoutLocal.setValid((withoutLocal.getLocalSize_0() > 0)
- && (withoutLocal.getLocalSize_0() <= withoutLocal.getMaxWorkItemSize()[0])
- && (withoutLocal.getLocalSize_0() <= withoutLocal.getMaxWorkGroupSize())
- && ((withoutLocal.getGlobalSize_0() % withoutLocal.getLocalSize_0()) == 0));
- }
-
- return (withoutLocal);
- }
-
- public static Range create(int _globalWidth, int _localWidth) {
- final Range range = create(null, _globalWidth, _localWidth);
-
- return (range);
- }
-
- public static Range create(int _globalWidth) {
- final Range range = create(null, _globalWidth);
-
- return (range);
- }
-
- /**
- * Create a two dimensional range 0.._globalWidth x 0.._globalHeight using a group which is _localWidth x _localHeight in size.
- *
- * Note that for this range to be valid _globalWidth > 0 && _globalHeight >0 && _localWidth>0 && _localHeight>0 && _localWidth*_localHeight < MAX_GROUP_SIZE && _globalWidth%_localWidth==0 && _globalHeight%_localHeight==0.
- *
- * @param _globalWidth the overall range we wish to process
- * @return
- */
- public static Range create2D(Device _device, int _globalWidth, int _globalHeight, int _localWidth, int _localHeight) {
- final Range range = new Range(_device, 2);
-
- range.setGlobalSize_0(_globalWidth);
- range.setLocalSize_0(_localWidth);
- range.setGlobalSize_1(_globalHeight);
- range.setLocalSize_1(_localHeight);
-
- range.setValid((range.getLocalSize_0() > 0) && (range.getLocalSize_1() > 0)
- && (range.getLocalSize_0() <= range.getMaxWorkItemSize()[0])
- && (range.getLocalSize_1() <= range.getMaxWorkItemSize()[1])
- && ((range.getLocalSize_0() * range.getLocalSize_1()) <= range.getMaxWorkGroupSize())
- && ((range.getGlobalSize_0() % range.getLocalSize_0()) == 0)
- && ((range.getGlobalSize_1() % range.getLocalSize_1()) == 0));
-
- return (range);
- }
-
- /**
- * Create a two dimensional range 0.._globalWidth * 0.._globalHeight choosing suitable values for localWidth and localHeight.
- *
- * Note that for this range to be valid _globalWidth > 0 && _globalHeight >0 && _localWidth>0 && _localHeight>0 && _localWidth*_localHeight < MAX_GROUP_SIZE && _globalWidth%_localWidth==0 && _globalHeight%_localHeight==0.
- *
- *
- * To determine suitable values for _localWidth and _localHeight we extract the factors for _globalWidth and _globalHeight and then
- * find the largest product ( <= MAX_GROUP_SIZE) with the lowest perimeter.
- *
- *
- * For example for MAX_GROUP_SIZE of 16 we favor 4x4 over 1x16.
- *
- * @param _globalWidth the overall range we wish to process
- * @return
- */
- public static Range create2D(Device _device, int _globalWidth, int _globalHeight) {
- final Range withoutLocal = create2D(_device, _globalWidth, _globalHeight, 1, 1);
-
- if (withoutLocal.isValid()) {
- withoutLocal.setLocalIsDerived(true);
- final int[] widthFactors = getFactors(_globalWidth, withoutLocal.getMaxWorkItemSize()[0]);
- final int[] heightFactors = getFactors(_globalHeight, withoutLocal.getMaxWorkItemSize()[1]);
-
- withoutLocal.setLocalSize_0(1);
- withoutLocal.setLocalSize_1(1);
- int max = 1;
- int perimeter = 0;
-
- for (final int w : widthFactors) {
- for (final int h : heightFactors) {
- final int size = w * h;
- if (size > withoutLocal.getMaxWorkGroupSize()) {
- break;
- }
-
- if (size > max) {
- max = size;
- perimeter = w + h;
- withoutLocal.setLocalSize_0(w);
- withoutLocal.setLocalSize_1(h);
- } else if (size == max) {
- final int localPerimeter = w + h;
- if (localPerimeter < perimeter) {// is this the shortest perimeter so far
- perimeter = localPerimeter;
- withoutLocal.setLocalSize_0(w);
- withoutLocal.setLocalSize_1(h);
- }
- }
- }
- }
-
- withoutLocal.setValid((withoutLocal.getLocalSize_0() > 0) && (withoutLocal.getLocalSize_1() > 0)
- && (withoutLocal.getLocalSize_0() <= withoutLocal.getMaxWorkItemSize()[0])
- && (withoutLocal.getLocalSize_1() <= withoutLocal.getMaxWorkItemSize()[1])
- && ((withoutLocal.getLocalSize_0() * withoutLocal.getLocalSize_1()) <= withoutLocal.getMaxWorkGroupSize())
- && ((withoutLocal.getGlobalSize_0() % withoutLocal.getLocalSize_0()) == 0)
- && ((withoutLocal.getGlobalSize_1() % withoutLocal.getLocalSize_1()) == 0));
- }
-
- return (withoutLocal);
- }
-
- public static Range create2D(int _globalWidth, int _globalHeight, int _localWidth, int _localHeight) {
- final Range range = create2D(null, _globalWidth, _globalHeight, _localWidth, _localHeight);
-
- return (range);
- }
-
- public static Range create2D(int _globalWidth, int _globalHeight) {
- final Range range = create2D(null, _globalWidth, _globalHeight);
-
- return (range);
- }
-
- /**
- * Create a two dimensional range 0.._globalWidth * 0.._globalHeight *0../_globalDepth
- * in groups defined by localWidth * localHeight * localDepth.
- *
- * Note that for this range to be valid _globalWidth > 0 && _globalHeight >0 _globalDepth >0 && _localWidth>0 && _localHeight>0 && _localDepth>0 && _localWidth*_localHeight*_localDepth < MAX_GROUP_SIZE && _globalWidth%_localWidth==0 && _globalHeight%_localHeight==0 && _globalDepth%_localDepth==0.
- *
- * @param _globalWidth the width of the 3D grid we wish to process
- * @param _globalHeight the height of the 3D grid we wish to process
- * @param _globalDepth the depth of the 3D grid we wish to process
- * @param _localWidth the width of the 3D group we wish to process
- * @param _localHeight the height of the 3D group we wish to process
- * @param _localDepth the depth of the 3D group we wish to process
- * @return
- */
- public static Range create3D(Device _device, int _globalWidth, int _globalHeight, int _globalDepth, int _localWidth,
- int _localHeight, int _localDepth) {
- final Range range = new Range(_device, 3);
-
- range.setGlobalSize_0(_globalWidth);
- range.setLocalSize_0(_localWidth);
- range.setGlobalSize_1(_globalHeight);
- range.setLocalSize_1(_localHeight);
- range.setGlobalSize_2(_globalDepth);
- range.setLocalSize_2(_localDepth);
- range.setValid((range.getLocalSize_0() > 0) && (range.getLocalSize_1() > 0) && (range.getLocalSize_2() > 0)
- && ((range.getLocalSize_0() * range.getLocalSize_1() * range.getLocalSize_2()) <= range.getMaxWorkGroupSize())
- && (range.getLocalSize_0() <= range.getMaxWorkItemSize()[0])
- && (range.getLocalSize_1() <= range.getMaxWorkItemSize()[1])
- && (range.getLocalSize_2() <= range.getMaxWorkItemSize()[2])
- && ((range.getGlobalSize_0() % range.getLocalSize_0()) == 0)
- && ((range.getGlobalSize_1() % range.getLocalSize_1()) == 0)
- && ((range.getGlobalSize_2() % range.getLocalSize_2()) == 0));
-
- return (range);
- }
-
- /**
- * Create a three dimensional range 0.._globalWidth * 0.._globalHeight *0../_globalDepth
- * choosing suitable values for localWidth, localHeight and localDepth.
- *
- * Note that for this range to be valid _globalWidth > 0 && _globalHeight >0 _globalDepth >0 && _localWidth>0 && _localHeight>0 && _localDepth>0 && _localWidth*_localHeight*_localDepth < MAX_GROUP_SIZE && _globalWidth%_localWidth==0 && _globalHeight%_localHeight==0 && _globalDepth%_localDepth==0.
- *
- *
- * To determine suitable values for _localWidth,_localHeight and _lodalDepth we extract the factors for _globalWidth,_globalHeight and _globalDepth and then
- * find the largest product ( <= MAX_GROUP_SIZE) with the lowest perimeter.
- *
- *
- * For example for MAX_GROUP_SIZE of 64 we favor 4x4x4 over 1x16x16.
- *
- * @param _globalWidth the width of the 3D grid we wish to process
- * @param _globalHieght the height of the 3D grid we wish to process
- * @param _globalDepth the depth of the 3D grid we wish to process
- * @return
- */
- public static Range create3D(Device _device, int _globalWidth, int _globalHeight, int _globalDepth) {
- final Range withoutLocal = create3D(_device, _globalWidth, _globalHeight, _globalDepth, 1, 1, 1);
-
- if (withoutLocal.isValid()) {
- withoutLocal.setLocalIsDerived(true);
-
- final int[] widthFactors = getFactors(_globalWidth, withoutLocal.getMaxWorkItemSize()[0]);
- final int[] heightFactors = getFactors(_globalHeight, withoutLocal.getMaxWorkItemSize()[1]);
- final int[] depthFactors = getFactors(_globalDepth, withoutLocal.getMaxWorkItemSize()[2]);
-
- withoutLocal.setLocalSize_0(1);
- withoutLocal.setLocalSize_1(1);
- withoutLocal.setLocalSize_2(1);
-
- int max = 1;
- int perimeter = 0;
-
- for (final int w : widthFactors) {
- for (final int h : heightFactors) {
- for (final int d : depthFactors) {
- final int size = w * h * d;
- if (size > withoutLocal.getMaxWorkGroupSize()) {
- break;
- }
-
- if (size > max) {
- max = size;
- perimeter = w + h + d;
- withoutLocal.setLocalSize_0(w);
- withoutLocal.setLocalSize_1(h);
- withoutLocal.setLocalSize_2(d);
- } else if (size == max) {
- final int localPerimeter = w + h + d;
- if (localPerimeter < perimeter) { // is this the shortest perimeter so far
- perimeter = localPerimeter;
- withoutLocal.setLocalSize_0(w);
- withoutLocal.setLocalSize_1(w);
- withoutLocal.setLocalSize_2(d);
- }
- }
- }
- }
- }
-
- withoutLocal.setValid((withoutLocal.getLocalSize_0() > 0)
- && (withoutLocal.getLocalSize_1() > 0)
- && (withoutLocal.getLocalSize_2() > 0)
- && ((withoutLocal.getLocalSize_0() * withoutLocal.getLocalSize_1() * withoutLocal.getLocalSize_2()) <= withoutLocal
- .getMaxWorkGroupSize()) && (withoutLocal.getLocalSize_0() <= withoutLocal.getMaxWorkItemSize()[0])
- && (withoutLocal.getLocalSize_1() <= withoutLocal.getMaxWorkItemSize()[1])
- && (withoutLocal.getLocalSize_2() <= withoutLocal.getMaxWorkItemSize()[2])
- && ((withoutLocal.getGlobalSize_0() % withoutLocal.getLocalSize_0()) == 0)
- && ((withoutLocal.getGlobalSize_1() % withoutLocal.getLocalSize_1()) == 0)
- && ((withoutLocal.getGlobalSize_2() % withoutLocal.getLocalSize_2()) == 0));
- }
-
- return (withoutLocal);
- }
-
- public static Range create3D(int _globalWidth, int _globalHeight, int _globalDepth) {
- final Range range = create3D(null, _globalWidth, _globalHeight, _globalDepth);
-
- return (range);
- }
-
- public static Range create3D(int _globalWidth, int _globalHeight, int _globalDepth, int _localWidth, int _localHeight,
- int _localDepth) {
- final Range range = create3D(null, _globalWidth, _globalHeight, _globalDepth, _localWidth, _localHeight, _localDepth);
- return (range);
- }
-
- /**
- * Override {@link #toString()}
- */
- @Override public String toString() {
- final StringBuilder sb = new StringBuilder();
-
- switch (dims) {
- case 1:
- sb.append("global:" + globalSize_0 + " local:" + (localIsDerived ? "(derived)" : "") + localSize_0);
- break;
- case 2:
- sb.append("2D(global:" + globalSize_0 + "x" + globalSize_1 + " local:" + (localIsDerived ? "(derived)" : "")
- + localSize_0 + "x" + localSize_1 + ")");
- break;
- case 3:
- sb.append("3D(global:" + globalSize_0 + "x" + globalSize_1 + "x" + globalSize_2 + " local:"
- + (localIsDerived ? "(derived)" : "") + localSize_0 + "x" + localSize_1 + "x" + localSize_2 + ")");
- break;
- }
-
- return (sb.toString());
- }
-
- /**
- * Get the localSize (of the group) given the requested dimension
- *
- * @param _dim 0=width, 1=height, 2=depth
- * @return The size of the group give the requested dimension
- */
- public int getLocalSize(int _dim) {
- return (_dim == 0 ? localSize_0 : (_dim == 1 ? localSize_1 : localSize_2));
- }
-
- /**
- * Get the globalSize (of the range) given the requested dimension
- *
- * @param _dim 0=width, 1=height, 2=depth
- * @return The size of the group give the requested dimension
- */
- public int getGlobalSize(int _dim) {
- return (_dim == 0 ? globalSize_0 : (_dim == 1 ? globalSize_1 : globalSize_2));
- }
-
- /**
- * Get the number of groups for the given dimension.
- *
- *
- * This will essentially return globalXXXX/localXXXX for the given dimension (width, height, depth)
- * @param _dim The dim we are interested in 0, 1 or 2
- * @return the number of groups for the given dimension.
- */
- public int getNumGroups(int _dim) {
- return (_dim == 0 ? (globalSize_0 / localSize_0) : (_dim == 1 ? (globalSize_1 / localSize_1) : (globalSize_2 / localSize_2)));
- }
-
- /**
- *
- * @return The product of all valid localSize dimensions
- */
- public int getWorkGroupSize() {
- return localSize_0 * localSize_1 * localSize_2;
- }
-
- public Device getDevice() {
- return (device);
- }
-
- /**
- * @return the globalSize_0
- */
- public int getGlobalSize_0() {
- return globalSize_0;
- }
-
- /**
- * @param globalSize_0
- * the globalSize_0 to set
- */
- public void setGlobalSize_0(int globalSize_0) {
- this.globalSize_0 = globalSize_0;
- }
-
- /**
- * @return the localSize_0
- */
- public int getLocalSize_0() {
- return localSize_0;
- }
-
- /**
- * @param localSize_0
- * the localSize_0 to set
- */
- public void setLocalSize_0(int localSize_0) {
- this.localSize_0 = localSize_0;
- }
-
- /**
- * @return the globalSize_1
- */
- public int getGlobalSize_1() {
- return globalSize_1;
- }
-
- /**
- * @param globalSize_1
- * the globalSize_1 to set
- */
- public void setGlobalSize_1(int globalSize_1) {
- this.globalSize_1 = globalSize_1;
- }
-
- /**
- * @return the localSize_1
- */
- public int getLocalSize_1() {
- return localSize_1;
- }
-
- /**
- * @param localSize_1
- * the localSize_1 to set
- */
- public void setLocalSize_1(int localSize_1) {
- this.localSize_1 = localSize_1;
- }
-
- /**
- * @return the globalSize_2
- */
- public int getGlobalSize_2() {
- return globalSize_2;
- }
-
- /**
- * @param globalSize_2
- * the globalSize_2 to set
- */
- public void setGlobalSize_2(int globalSize_2) {
- this.globalSize_2 = globalSize_2;
- }
-
- /**
- * @return the localSize_2
- */
- public int getLocalSize_2() {
- return localSize_2;
- }
-
- /**
- * @param localSize_2
- * the localSize_2 to set
- */
- public void setLocalSize_2(int localSize_2) {
- this.localSize_2 = localSize_2;
- }
-
- /**
- * Get the number of dims for this Range.
- *
- * @return 0, 1 or 2 for one dimensional, two dimensional and three dimensional range respectively.
- */
- public int getDims() {
- return dims;
- }
-
- /**
- * @param dims
- * the dims to set
- */
- public void setDims(int dims) {
- this.dims = dims;
- }
-
- /**
- * @return the valid
- */
- public boolean isValid() {
- return valid;
- }
-
- /**
- * @param valid
- * the valid to set
- */
- public void setValid(boolean valid) {
- this.valid = valid;
- }
-
- /**
- * @return the localIsDerived
- */
- public boolean isLocalIsDerived() {
- return localIsDerived;
- }
-
- /**
- * @param localIsDerived
- * the localIsDerived to set
- */
- public void setLocalIsDerived(boolean localIsDerived) {
- this.localIsDerived = localIsDerived;
- }
-
- /**
- * @return the maxWorkGroupSize
- */
- public int getMaxWorkGroupSize() {
- return maxWorkGroupSize;
- }
-
- /**
- * @param maxWorkGroupSize
- * the maxWorkGroupSize to set
- */
- public void setMaxWorkGroupSize(int maxWorkGroupSize) {
- this.maxWorkGroupSize = maxWorkGroupSize;
- }
-
- /**
- * @return the maxWorkItemSize
- */
- public int[] getMaxWorkItemSize() {
- return maxWorkItemSize;
- }
-
- /**
- * @param maxWorkItemSize
- * the maxWorkItemSize to set
- */
- public void setMaxWorkItemSize(int[] maxWorkItemSize) {
- this.maxWorkItemSize = maxWorkItemSize;
- }
-}
diff --git a/com.amd.aparapi/src/java/com/amd/aparapi/annotation/Experimental.java b/com.amd.aparapi/src/java/com/amd/aparapi/annotation/Experimental.java
deleted file mode 100644
index e40e2106..00000000
--- a/com.amd.aparapi/src/java/com/amd/aparapi/annotation/Experimental.java
+++ /dev/null
@@ -1,13 +0,0 @@
-package com.amd.aparapi.annotation;
-
-/**
- * Used to tag experimental features (methods/fields)
- *
- * Do not rely on anything tagged as experimental, it will probably be retracted/refactored
- *
- * @author gfrost
- *
- */
-public @interface Experimental {
-
-}
diff --git a/com.amd.aparapi/src/java/com/amd/aparapi/annotation/package-info.java b/com.amd.aparapi/src/java/com/amd/aparapi/annotation/package-info.java
deleted file mode 100644
index 27f9e1df..00000000
--- a/com.amd.aparapi/src/java/com/amd/aparapi/annotation/package-info.java
+++ /dev/null
@@ -1,4 +0,0 @@
-/**
- *
- */
-package com.amd.aparapi.annotation;
\ No newline at end of file
diff --git a/com.amd.aparapi/src/java/com/amd/aparapi/device/Device.java b/com.amd.aparapi/src/java/com/amd/aparapi/device/Device.java
deleted file mode 100644
index 48b33515..00000000
--- a/com.amd.aparapi/src/java/com/amd/aparapi/device/Device.java
+++ /dev/null
@@ -1,122 +0,0 @@
-package com.amd.aparapi.device;
-
-import com.amd.aparapi.Range;
-import com.amd.aparapi.device.OpenCLDevice.DeviceComparitor;
-import com.amd.aparapi.device.OpenCLDevice.DeviceSelector;
-
-public abstract class Device{
-
- public static enum TYPE {
- UNKNOWN,
- GPU,
- CPU,
- JTP,
- SEQ
- };
-
- public static Device best() {
- return (OpenCLDevice.select(new DeviceComparitor(){
- @Override public OpenCLDevice select(OpenCLDevice _deviceLhs, OpenCLDevice _deviceRhs) {
- if (_deviceLhs.getType() != _deviceRhs.getType()) {
- if (_deviceLhs.getType() == TYPE.GPU) {
- return (_deviceLhs);
- } else {
- return (_deviceRhs);
- }
- }
-
- if (_deviceLhs.getMaxComputeUnits() > _deviceRhs.getMaxComputeUnits()) {
- return (_deviceLhs);
- } else {
- return (_deviceRhs);
- }
- }
- }));
- }
-
- public static Device first(final Device.TYPE _type) {
- return (OpenCLDevice.select(new DeviceSelector(){
- @Override public OpenCLDevice select(OpenCLDevice _device) {
- return (_device.getType() == _type ? _device : null);
- }
- }));
- }
-
- public static Device firstGPU() {
- return (first(Device.TYPE.GPU));
- }
-
- public static Device firstCPU() {
- return (first(Device.TYPE.CPU));
-
- }
-
- protected TYPE type = TYPE.UNKNOWN;
-
- protected int maxWorkGroupSize;
-
- protected int maxWorkItemDimensions;
-
- protected int[] maxWorkItemSize = new int[] {
- 0,
- 0,
- 0
- };
-
- public TYPE getType() {
- return type;
- }
-
- public void setType(TYPE type) {
- this.type = type;
- }
-
- public int getMaxWorkItemDimensions() {
- return maxWorkItemDimensions;
- }
-
- public void setMaxWorkItemDimensions(int _maxWorkItemDimensions) {
- maxWorkItemDimensions = _maxWorkItemDimensions;
- }
-
- public int getMaxWorkGroupSize() {
- return maxWorkGroupSize;
- }
-
- public void setMaxWorkGroupSize(int _maxWorkGroupSize) {
- maxWorkGroupSize = _maxWorkGroupSize;
- }
-
- public int[] getMaxWorkItemSize() {
- return maxWorkItemSize;
- }
-
- public void setMaxWorkItemSize(int[] maxWorkItemSize) {
- this.maxWorkItemSize = maxWorkItemSize;
- }
-
- public Range createRange(int _globalWidth) {
- return (Range.create(this, _globalWidth));
- }
-
- public Range createRange(int _globalWidth, int _localWidth) {
- return (Range.create(this, _globalWidth, _localWidth));
- }
-
- public Range createRange2D(int _globalWidth, int _globalHeight) {
- return (Range.create2D(this, _globalWidth, _globalHeight));
- }
-
- public Range createRange2D(int _globalWidth, int _globalHeight, int _localWidth, int _localHeight) {
- return (Range.create2D(this, _globalWidth, _globalHeight, _localWidth, _localHeight));
- }
-
- public Range createRange3D(int _globalWidth, int _globalHeight, int _globalDepth) {
- return (Range.create3D(this, _globalWidth, _globalHeight, _globalDepth));
- }
-
- public Range createRange3D(int _globalWidth, int _globalHeight, int _globalDepth, int _localWidth, int _localHeight,
- int _localDepth) {
- return (Range.create3D(this, _globalWidth, _globalHeight, _globalDepth, _localWidth, _localHeight, _localDepth));
- }
-}
diff --git a/com.amd.aparapi/src/java/com/amd/aparapi/device/JavaDevice.java b/com.amd.aparapi/src/java/com/amd/aparapi/device/JavaDevice.java
deleted file mode 100644
index 78082e77..00000000
--- a/com.amd.aparapi/src/java/com/amd/aparapi/device/JavaDevice.java
+++ /dev/null
@@ -1,5 +0,0 @@
-package com.amd.aparapi.device;
-
-public class JavaDevice extends Device{
-
-}
diff --git a/com.amd.aparapi/src/java/com/amd/aparapi/device/OpenCLDevice.java b/com.amd.aparapi/src/java/com/amd/aparapi/device/OpenCLDevice.java
deleted file mode 100644
index 58896058..00000000
--- a/com.amd.aparapi/src/java/com/amd/aparapi/device/OpenCLDevice.java
+++ /dev/null
@@ -1,470 +0,0 @@
-package com.amd.aparapi.device;
-
-import com.amd.aparapi.ProfileInfo;
-import java.io.BufferedReader;
-import java.io.IOException;
-import java.io.InputStream;
-import java.io.InputStreamReader;
-import java.lang.annotation.Annotation;
-import java.lang.reflect.InvocationHandler;
-import java.lang.reflect.Method;
-import java.lang.reflect.Proxy;
-import java.util.ArrayList;
-import java.util.HashMap;
-import java.util.List;
-import java.util.Map;
-
-import com.amd.aparapi.Range;
-import com.amd.aparapi.internal.opencl.OpenCLArgDescriptor;
-import com.amd.aparapi.internal.opencl.OpenCLKernel;
-import com.amd.aparapi.internal.opencl.OpenCLPlatform;
-import com.amd.aparapi.internal.opencl.OpenCLProgram;
-import com.amd.aparapi.opencl.OpenCL;
-import com.amd.aparapi.opencl.OpenCL.Arg;
-import com.amd.aparapi.opencl.OpenCL.Constant;
-import com.amd.aparapi.opencl.OpenCL.GlobalReadOnly;
-import com.amd.aparapi.opencl.OpenCL.GlobalReadWrite;
-import com.amd.aparapi.opencl.OpenCL.GlobalWriteOnly;
-import com.amd.aparapi.opencl.OpenCL.Kernel;
-import com.amd.aparapi.opencl.OpenCL.Local;
-import com.amd.aparapi.opencl.OpenCL.Resource;
-import com.amd.aparapi.opencl.OpenCL.Source;
-
-public class OpenCLDevice extends Device{
-
- private final OpenCLPlatform platform;
-
- private final long deviceId;
-
- private int maxComputeUnits;
-
- private long localMemSize;
-
- private long globalMemSize;
-
- private long maxMemAllocSize;
-
- /**
- * Minimal constructor
- *
- * @param _platform
- * @param _deviceId
- * @param _type
- */
- public OpenCLDevice(OpenCLPlatform _platform, long _deviceId, TYPE _type) {
- platform = _platform;
- deviceId = _deviceId;
- type = _type;
- }
-
- public OpenCLPlatform getOpenCLPlatform() {
- return platform;
- }
-
- public int getMaxComputeUnits() {
- return maxComputeUnits;
- }
-
- public void setMaxComputeUnits(int _maxComputeUnits) {
- maxComputeUnits = _maxComputeUnits;
- }
-
- public long getLocalMemSize() {
- return localMemSize;
- }
-
- public void setLocalMemSize(long _localMemSize) {
- localMemSize = _localMemSize;
- }
-
- public long getMaxMemAllocSize() {
- return maxMemAllocSize;
- }
-
- public void setMaxMemAllocSize(long _maxMemAllocSize) {
- maxMemAllocSize = _maxMemAllocSize;
- }
-
- public long getGlobalMemSize() {
- return globalMemSize;
- }
-
- public void setGlobalMemSize(long _globalMemSize) {
- globalMemSize = _globalMemSize;
- }
-
- void setMaxWorkItemSize(int _dim, int _value) {
- maxWorkItemSize[_dim] = _value;
- }
-
- public long getDeviceId() {
- return (deviceId);
- }
-
- public static class OpenCLInvocationHandler> implements InvocationHandler{
- private final Map map;
-
- private final OpenCLProgram program;
- private boolean disposed = false;
- public OpenCLInvocationHandler(OpenCLProgram _program, Map _map) {
- program = _program;
- map = _map;
- disposed = false;
- }
-
- @Override public Object invoke(Object proxy, Method method, Object[] args) throws Throwable {
- if (disposed){
- throw new IllegalStateException("bound interface already disposed");
- }
- if (!isReservedInterfaceMethod(method)) {
- final OpenCLKernel kernel = map.get(method.getName());
- if (kernel != null) {
- kernel.invoke(args);
- }
- } else {
- if (method.getName().equals("put")) {
- System.out.println("put not implemented");
-
- /*
- for (Object arg : args) {
- Class> argClass = arg.getClass();
- if (argClass.isArray()) {
- if (argClass.getComponentType().isPrimitive()) {
- OpenCLMem mem = program.getMem(arg, 0L);
- if (mem == null) {
- throw new IllegalStateException("can't put an array that has never been passed to a kernel " + argClass);
-
- }
- mem.bits |= OpenCLMem.MEM_DIRTY_BIT;
- } else {
- throw new IllegalStateException("Only array args (of primitives) expected for put/get, cant deal with "
- + argClass);
-
- }
- } else {
- throw new IllegalStateException("Only array args expected for put/get, cant deal with " + argClass);
- }
- }
- */
- } else if (method.getName().equals("get")) {
- System.out.println("get not implemented");
- /*
- for (Object arg : args) {
- Class> argClass = arg.getClass();
- if (argClass.isArray()) {
- if (argClass.getComponentType().isPrimitive()) {
- OpenCLMem mem = program.getMem(arg, 0L);
- if (mem == null) {
- throw new IllegalStateException("can't get an array that has never been passed to a kernel " + argClass);
-
- }
- OpenCLJNI.getJNI().getMem(program, mem);
- } else {
- throw new IllegalStateException("Only array args (of primitives) expected for put/get, cant deal with "
- + argClass);
-
- }
- } else {
- throw new IllegalStateException("Only array args expected for put/get, cant deal with " + argClass);
- }
- }
- */
- } else if (method.getName().equals("begin")) {
- System.out.println("begin not implemented");
- } else if (method.getName().equals("dispose")) {
- // System.out.println("dispose");
- for (OpenCLKernel k:map.values()){
- k.dispose();
- }
- program.dispose();
- map.clear();
- disposed=true;
- } else if (method.getName().equals("end")) {
- System.out.println("end not implemented");
- } else if (method.getName().equals("getProfileInfo")){
- proxy = (Object)program.getProfileInfo();
- }
- }
- return proxy;
- }
- }
-
- public List getArgs(Method m) {
- final List args = new ArrayList();
- final Annotation[][] parameterAnnotations = m.getParameterAnnotations();
- final Class>[] parameterTypes = m.getParameterTypes();
-
- for (int arg = 0; arg < parameterTypes.length; arg++) {
- if (parameterTypes[arg].isAssignableFrom(Range.class)) {
-
- } else {
-
- long bits = 0L;
- String name = null;
- for (final Annotation pa : parameterAnnotations[arg]) {
- if (pa instanceof GlobalReadOnly) {
- name = ((GlobalReadOnly) pa).value();
- bits |= OpenCLArgDescriptor.ARG_GLOBAL_BIT | OpenCLArgDescriptor.ARG_READONLY_BIT;
- } else if (pa instanceof GlobalWriteOnly) {
- name = ((GlobalWriteOnly) pa).value();
- bits |= OpenCLArgDescriptor.ARG_GLOBAL_BIT | OpenCLArgDescriptor.ARG_WRITEONLY_BIT;
- } else if (pa instanceof GlobalReadWrite) {
- name = ((GlobalReadWrite) pa).value();
- bits |= OpenCLArgDescriptor.ARG_GLOBAL_BIT | OpenCLArgDescriptor.ARG_READWRITE_BIT;
- } else if (pa instanceof Local) {
- name = ((Local) pa).value();
- bits |= OpenCLArgDescriptor.ARG_LOCAL_BIT;
- } else if (pa instanceof Constant) {
- name = ((Constant) pa).value();
- bits |= OpenCLArgDescriptor.ARG_CONST_BIT | OpenCLArgDescriptor.ARG_READONLY_BIT;
- } else if (pa instanceof Arg) {
- name = ((Arg) pa).value();
- bits |= OpenCLArgDescriptor.ARG_ISARG_BIT;
- }
-
- }
- if (parameterTypes[arg].isArray()) {
- if (parameterTypes[arg].isAssignableFrom(float[].class)) {
- bits |= OpenCLArgDescriptor.ARG_FLOAT_BIT | OpenCLArgDescriptor.ARG_ARRAY_BIT;
- } else if (parameterTypes[arg].isAssignableFrom(int[].class)) {
- bits |= OpenCLArgDescriptor.ARG_INT_BIT | OpenCLArgDescriptor.ARG_ARRAY_BIT;
- } else if (parameterTypes[arg].isAssignableFrom(double[].class)) {
- bits |= OpenCLArgDescriptor.ARG_DOUBLE_BIT | OpenCLArgDescriptor.ARG_ARRAY_BIT;
- } else if (parameterTypes[arg].isAssignableFrom(byte[].class)) {
- bits |= OpenCLArgDescriptor.ARG_BYTE_BIT | OpenCLArgDescriptor.ARG_ARRAY_BIT;
- } else if (parameterTypes[arg].isAssignableFrom(short[].class)) {
- bits |= OpenCLArgDescriptor.ARG_SHORT_BIT | OpenCLArgDescriptor.ARG_ARRAY_BIT;
- } else if (parameterTypes[arg].isAssignableFrom(long[].class)) {
- bits |= OpenCLArgDescriptor.ARG_LONG_BIT | OpenCLArgDescriptor.ARG_ARRAY_BIT;
- }
- } else if (parameterTypes[arg].isPrimitive()) {
- if (parameterTypes[arg].isAssignableFrom(float.class)) {
- bits |= OpenCLArgDescriptor.ARG_FLOAT_BIT | OpenCLArgDescriptor.ARG_PRIMITIVE_BIT;
- } else if (parameterTypes[arg].isAssignableFrom(int.class)) {
- bits |= OpenCLArgDescriptor.ARG_INT_BIT | OpenCLArgDescriptor.ARG_PRIMITIVE_BIT;
- } else if (parameterTypes[arg].isAssignableFrom(double.class)) {
- bits |= OpenCLArgDescriptor.ARG_DOUBLE_BIT | OpenCLArgDescriptor.ARG_PRIMITIVE_BIT;
- } else if (parameterTypes[arg].isAssignableFrom(byte.class)) {
- bits |= OpenCLArgDescriptor.ARG_BYTE_BIT | OpenCLArgDescriptor.ARG_PRIMITIVE_BIT;
- } else if (parameterTypes[arg].isAssignableFrom(short.class)) {
- bits |= OpenCLArgDescriptor.ARG_SHORT_BIT | OpenCLArgDescriptor.ARG_PRIMITIVE_BIT;
- } else if (parameterTypes[arg].isAssignableFrom(long.class)) {
- bits |= OpenCLArgDescriptor.ARG_LONG_BIT | OpenCLArgDescriptor.ARG_PRIMITIVE_BIT;
- }
- } else {
- System.out.println("OUch!");
- }
- if (name == null) {
- throw new IllegalStateException("no name!");
- }
- final OpenCLArgDescriptor kernelArg = new OpenCLArgDescriptor(name, bits);
- args.add(kernelArg);
-
- }
- }
-
- return (args);
- }
-
- private static boolean isReservedInterfaceMethod(Method _methods) {
- return ( _methods.getName().equals("put")
- || _methods.getName().equals("get")
- || _methods.getName().equals("dispose")
- || _methods.getName().equals("begin")
- || _methods.getName().equals("end")
- || _methods.getName().equals("getProfileInfo"));
- }
-
- private String streamToString(InputStream _inputStream) {
- final StringBuilder sourceBuilder = new StringBuilder();
-
- if (_inputStream != null) {
-
- final BufferedReader reader = new BufferedReader(new InputStreamReader(_inputStream));
-
- try {
- for (String line = reader.readLine(); line != null; line = reader.readLine()) {
- sourceBuilder.append(line).append("\n");
- }
- } catch (final IOException e) {
- // TODO Auto-generated catch block
- e.printStackTrace();
- }
-
- try {
- _inputStream.close();
- } catch (final IOException e) {
- // TODO Auto-generated catch block
- e.printStackTrace();
- }
- }
-
-
- return (sourceBuilder.toString());
- }
-
- public > T bind(Class _interface, InputStream _inputStream) {
- return (bind(_interface, streamToString(_inputStream)));
- }
-
- public > T bind(Class _interface) {
- return (bind(_interface, (String) null));
- }
-
- public > T bind(Class _interface, String _source) {
- final Map> kernelNameToArgsMap = new HashMap>();
-
- if (_source == null) {
- final StringBuilder sourceBuilder = new StringBuilder();
- boolean interfaceIsAnnotated = false;
- for (final Annotation a : _interface.getAnnotations()) {
- if (a instanceof Source) {
- final Source source = (Source) a;
- sourceBuilder.append(source.value()).append("\n");
- interfaceIsAnnotated = true;
- } else if (a instanceof Resource) {
- final Resource sourceResource = (Resource) a;
- final InputStream stream = _interface.getClassLoader().getResourceAsStream(sourceResource.value());
- sourceBuilder.append(streamToString(stream));
- interfaceIsAnnotated = true;
- }
- }
-
- if (interfaceIsAnnotated) {
- // just crawl the methods (non put or get) and create kernels
- for (final Method m : _interface.getDeclaredMethods()) {
- if (!isReservedInterfaceMethod(m)) {
- final List args = getArgs(m);
- kernelNameToArgsMap.put(m.getName(), args);
- }
- }
- } else {
-
- for (final Method m : _interface.getDeclaredMethods()) {
- if (!isReservedInterfaceMethod(m)) {
- for (final Annotation a : m.getAnnotations()) {
- // System.out.println(" annotation "+a);
- // System.out.println(" annotation type " + a.annotationType());
- if (a instanceof Kernel) {
- sourceBuilder.append("__kernel void " + m.getName() + "(");
- final List args = getArgs(m);
-
- boolean first = true;
- for (final OpenCLArgDescriptor arg : args) {
- if (first) {
- first = false;
- } else {
- sourceBuilder.append(",");
- }
- sourceBuilder.append("\n " + arg);
- }
-
- sourceBuilder.append(")");
- final Kernel kernel = (Kernel) a;
- sourceBuilder.append(kernel.value());
- kernelNameToArgsMap.put(m.getName(), args);
-
- }
- }
- }
- }
-
- }
- _source = sourceBuilder.toString();
- } else {
- for (final Method m : _interface.getDeclaredMethods()) {
- if (!isReservedInterfaceMethod(m)) {
- final List args = getArgs(m);
- kernelNameToArgsMap.put(m.getName(), args);
- }
- }
- }
-
- // System.out.println("opencl{\n" + _source + "\n}opencl");
-
- final OpenCLProgram program = new OpenCLProgram(this, _source).createProgram(this);
-
- final Map map = new HashMap();
- for (final String name : kernelNameToArgsMap.keySet()) {
- final OpenCLKernel kernel = OpenCLKernel.createKernel(program, name, kernelNameToArgsMap.get(name));
- //final OpenCLKernel kernel = new OpenCLKernel(program, name, kernelNameToArgsMap.get(name));
- if (kernel == null) {
- throw new IllegalStateException("kernel is null");
- }
-
- map.put(name, kernel);
- }
-
- final OpenCLInvocationHandler invocationHandler = new OpenCLInvocationHandler(program, map);
- final T instance = (T) Proxy.newProxyInstance(OpenCLDevice.class.getClassLoader(), new Class[] {
- _interface,
- OpenCL.class
- }, invocationHandler);
-
- return instance;
- }
-
- public interface DeviceSelector{
- OpenCLDevice select(OpenCLDevice _device);
- }
-
- public interface DeviceComparitor{
- OpenCLDevice select(OpenCLDevice _deviceLhs, OpenCLDevice _deviceRhs);
- }
-
- public static OpenCLDevice select(DeviceSelector _deviceSelector) {
- OpenCLDevice device = null;
- final OpenCLPlatform platform = new OpenCLPlatform(0, null, null, null);
-
- for (final OpenCLPlatform p : platform.getOpenCLPlatforms()) {
- for (final OpenCLDevice d : p.getOpenCLDevices()) {
- device = _deviceSelector.select(d);
- if (device != null) {
- break;
- }
- }
- if (device != null) {
- break;
- }
- }
-
- return (device);
- }
-
- public static OpenCLDevice select(DeviceComparitor _deviceComparitor) {
- OpenCLDevice device = null;
- final OpenCLPlatform platform = new OpenCLPlatform(0, null, null, null);
-
- for (final OpenCLPlatform p : platform.getOpenCLPlatforms()) {
- for (final OpenCLDevice d : p.getOpenCLDevices()) {
- if (device == null) {
- device = d;
- } else {
- device = _deviceComparitor.select(device, d);
- }
- }
- }
-
- return (device);
- }
-
- @Override public String toString() {
- final StringBuilder s = new StringBuilder("{");
- boolean first = true;
- for (final int workItemSize : maxWorkItemSize) {
- if (first) {
- first = false;
- } else {
- s.append(", ");
- }
-
- s.append(workItemSize);
- }
-
- s.append("}");
-
- return ("Device " + deviceId + "\n type:" + type + "\n maxComputeUnits=" + maxComputeUnits + "\n maxWorkItemDimensions="
- + maxWorkItemDimensions + "\n maxWorkItemSizes=" + s + "\n maxWorkWorkGroupSize=" + maxWorkGroupSize
- + "\n globalMemSize=" + globalMemSize + "\n localMemSize=" + localMemSize);
- }
-}
diff --git a/com.amd.aparapi/src/java/com/amd/aparapi/device/package-info.java b/com.amd.aparapi/src/java/com/amd/aparapi/device/package-info.java
deleted file mode 100644
index babe06a6..00000000
--- a/com.amd.aparapi/src/java/com/amd/aparapi/device/package-info.java
+++ /dev/null
@@ -1,4 +0,0 @@
-/**
- *
- */
-package com.amd.aparapi.device;
\ No newline at end of file
diff --git a/com.amd.aparapi/src/java/com/amd/aparapi/exception/DeprecatedException.java b/com.amd.aparapi/src/java/com/amd/aparapi/exception/DeprecatedException.java
deleted file mode 100644
index 4e2dfa0e..00000000
--- a/com.amd.aparapi/src/java/com/amd/aparapi/exception/DeprecatedException.java
+++ /dev/null
@@ -1,47 +0,0 @@
-/*
-Copyright (c) 2010-2011, Advanced Micro Devices, Inc.
-All rights reserved.
-
-Redistribution and use in source and binary forms, with or without modification, are permitted provided that the
-following conditions are met:
-
-Redistributions of source code must retain the above copyright notice, this list of conditions and the following
-disclaimer.
-
-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.
-
-Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products
-derived from this software without specific prior written permission.
-
-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.
-
-If you use the software (in whole or in part), you shall adhere to all applicable U.S., European, and other export
-laws, including but not limited to the U.S. Export Administration Regulations ("EAR"), (15 C.F.R. Sections 730 through
-774), and E.U. Council Regulation (EC) No 1334/2000 of 22 June 2000. Further, pursuant to Section 740.6 of the EAR,
-you hereby certify that, except pursuant to a license granted by the United States Department of Commerce Bureau of
-Industry and Security or as otherwise permitted pursuant to a License Exception under the U.S. Export Administration
-Regulations ("EAR"), you will not (1) export, re-export or release to a national of a country in Country Groups D:1,
-E:1 or E:2 any restricted technology, software, or source code you receive hereunder, or (2) export to Country Groups
-D:1, E:1 or E:2 the direct product of such technology or software, if such foreign produced direct product is subject
-to national security controls as identified on the Commerce Control List (currently found in Supplement 1 to Part 774
-of EAR). For the most current Country Group listings, or for additional information about the EAR or your obligations
-under those regulations, please refer to the U.S. Bureau of Industry and Security's website at http://www.bis.doc.gov/.
-
-*/
-package com.amd.aparapi.exception;
-
-import com.amd.aparapi.internal.exception.AparapiException;
-
-@SuppressWarnings("serial") public class DeprecatedException extends AparapiException{
-
- public DeprecatedException(String msg) {
- super(msg);
- }
-}
diff --git a/com.amd.aparapi/src/java/com/amd/aparapi/exception/package-info.java b/com.amd.aparapi/src/java/com/amd/aparapi/exception/package-info.java
deleted file mode 100644
index b2347d90..00000000
--- a/com.amd.aparapi/src/java/com/amd/aparapi/exception/package-info.java
+++ /dev/null
@@ -1,4 +0,0 @@
-/**
- *
- */
-package com.amd.aparapi.exception;
\ No newline at end of file
diff --git a/com.amd.aparapi/src/java/com/amd/aparapi/internal/annotation/DocMe.java b/com.amd.aparapi/src/java/com/amd/aparapi/internal/annotation/DocMe.java
deleted file mode 100644
index 94d84936..00000000
--- a/com.amd.aparapi/src/java/com/amd/aparapi/internal/annotation/DocMe.java
+++ /dev/null
@@ -1,9 +0,0 @@
-package com.amd.aparapi.internal.annotation;
-
-/**
- * Use this annotation to tag stuff that needs Java Doc added
- *
- * @author gfrost
- */
-public @interface DocMe {
-}
diff --git a/com.amd.aparapi/src/java/com/amd/aparapi/internal/annotation/RemoveMe.java b/com.amd.aparapi/src/java/com/amd/aparapi/internal/annotation/RemoveMe.java
deleted file mode 100644
index 3c5a6492..00000000
--- a/com.amd.aparapi/src/java/com/amd/aparapi/internal/annotation/RemoveMe.java
+++ /dev/null
@@ -1,9 +0,0 @@
-package com.amd.aparapi.internal.annotation;
-
-/**
- * Use this annotation to tag fields that we think need to be removed (method/field/var)
- *
- * @author gfrost
- */
-public @interface RemoveMe {
-}
diff --git a/com.amd.aparapi/src/java/com/amd/aparapi/internal/annotation/Unused.java b/com.amd.aparapi/src/java/com/amd/aparapi/internal/annotation/Unused.java
deleted file mode 100644
index e984cb5f..00000000
--- a/com.amd.aparapi/src/java/com/amd/aparapi/internal/annotation/Unused.java
+++ /dev/null
@@ -1,13 +0,0 @@
-package com.amd.aparapi.internal.annotation;
-
-/**
- * Used to tag unused features (methods/fields)
- *
- * Do not rely on anything tagged as unused, it will probably be retracted/refactored
- *
- * @author gfrost
- *
- */
-public @interface Unused {
-
-}
diff --git a/com.amd.aparapi/src/java/com/amd/aparapi/internal/annotation/UsedByJNICode.java b/com.amd.aparapi/src/java/com/amd/aparapi/internal/annotation/UsedByJNICode.java
deleted file mode 100644
index 351890d8..00000000
--- a/com.amd.aparapi/src/java/com/amd/aparapi/internal/annotation/UsedByJNICode.java
+++ /dev/null
@@ -1,8 +0,0 @@
-package com.amd.aparapi.internal.annotation;
-
-/**
- * Be careful changing the name/type of this field as it is referenced from JNI code.
- */
-public @interface UsedByJNICode {
-
-}
diff --git a/com.amd.aparapi/src/java/com/amd/aparapi/internal/exception/AparapiException.java b/com.amd.aparapi/src/java/com/amd/aparapi/internal/exception/AparapiException.java
deleted file mode 100644
index af7b2499..00000000
--- a/com.amd.aparapi/src/java/com/amd/aparapi/internal/exception/AparapiException.java
+++ /dev/null
@@ -1,62 +0,0 @@
-/*
-Copyright (c) 2010-2011, Advanced Micro Devices, Inc.
-All rights reserved.
-
-Redistribution and use in source and binary forms, with or without modification, are permitted provided that the
-following conditions are met:
-
-Redistributions of source code must retain the above copyright notice, this list of conditions and the following
-disclaimer.
-
-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.
-
-Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products
-derived from this software without specific prior written permission.
-
-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.
-
-If you use the software (in whole or in part), you shall adhere to all applicable U.S., European, and other export
-laws, including but not limited to the U.S. Export Administration Regulations ("EAR"), (15 C.F.R. Sections 730 through
-774), and E.U. Council Regulation (EC) No 1334/2000 of 22 June 2000. Further, pursuant to Section 740.6 of the EAR,
-you hereby certify that, except pursuant to a license granted by the United States Department of Commerce Bureau of
-Industry and Security or as otherwise permitted pursuant to a License Exception under the U.S. Export Administration
-Regulations ("EAR"), you will not (1) export, re-export or release to a national of a country in Country Groups D:1,
-E:1 or E:2 any restricted technology, software, or source code you receive hereunder, or (2) export to Country Groups
-D:1, E:1 or E:2 the direct product of such technology or software, if such foreign produced direct product is subject
-to national security controls as identified on the Commerce Control List (currently found in Supplement 1 to Part 774
-of EAR). For the most current Country Group listings, or for additional information about the EAR or your obligations
-under those regulations, please refer to the U.S. Bureau of Industry and Security's website at http://www.bis.doc.gov/.
-
-*/
-package com.amd.aparapi.internal.exception;
-
-/**
- * We use AparapiException class and subclasses to wrap other
- * Exception classes, mainly to allow differentiation between Aparapi specific issues at runtime.
- *
- * The class parser for example will throw a specific ClassParseException if any Aparapi unfriendly
- * constructs are found. This allows us to fail fast during classfile parsing.
- *
- * @see com.amd.aparapi.internal.exception.ClassParseException
- * @see com.amd.aparapi.internal.exception.CodeGenException
- *
- * @author gfrost
- *
- */
-@SuppressWarnings("serial") public class AparapiException extends Exception{
-
- public AparapiException(String _msg) {
- super(_msg);
- }
-
- public AparapiException(Throwable _t) {
- super(_t);
- }
-}
diff --git a/com.amd.aparapi/src/java/com/amd/aparapi/internal/exception/ClassParseException.java b/com.amd.aparapi/src/java/com/amd/aparapi/internal/exception/ClassParseException.java
deleted file mode 100644
index 776dd967..00000000
--- a/com.amd.aparapi/src/java/com/amd/aparapi/internal/exception/ClassParseException.java
+++ /dev/null
@@ -1,133 +0,0 @@
-/*
-Copyright (c) 2010-2011, Advanced Micro Devices, Inc.
-All rights reserved.
-
-Redistribution and use in source and binary forms, with or without modification, are permitted provided that the
-following conditions are met:
-
-Redistributions of source code must retain the above copyright notice, this list of conditions and the following
-disclaimer.
-
-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.
-
-Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products
-derived from this software without specific prior written permission.
-
-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.
-
-If you use the software (in whole or in part), you shall adhere to all applicable U.S., European, and other export
-laws, including but not limited to the U.S. Export Administration Regulations ("EAR"), (15 C.F.R. Sections 730 through
-774), and E.U. Council Regulation (EC) No 1334/2000 of 22 June 2000. Further, pursuant to Section 740.6 of the EAR,
-you hereby certify that, except pursuant to a license granted by the United States Department of Commerce Bureau of
-Industry and Security or as otherwise permitted pursuant to a License Exception under the U.S. Export Administration
-Regulations ("EAR"), you will not (1) export, re-export or release to a national of a country in Country Groups D:1,
-E:1 or E:2 any restricted technology, software, or source code you receive hereunder, or (2) export to Country Groups
-D:1, E:1 or E:2 the direct product of such technology or software, if such foreign produced direct product is subject
-to national security controls as identified on the Commerce Control List (currently found in Supplement 1 to Part 774
-of EAR). For the most current Country Group listings, or for additional information about the EAR or your obligations
-under those regulations, please refer to the U.S. Bureau of Industry and Security's website at http://www.bis.doc.gov/.
-
-*/
-package com.amd.aparapi.internal.exception;
-
-import com.amd.aparapi.internal.instruction.Instruction;
-
-/**
- * We throw ClassParseExceptions (derived from AparapiException) if we encounter any Aparapi unfriendly
- * constructs. This allows us to fail fast .
- *
- * @see com.amd.aparapi.internal.exception.AparapiException
- *
- * @author gfrost
- *
- */
-@SuppressWarnings("serial") public class ClassParseException extends AparapiException{
-
- public static enum TYPE {
- NONE("none"), //
- ARRAY_RETURN("We don't support areturn instructions"), //
- PUTFIELD("We don't support putstatic instructions"), //
- INVOKEINTERFACE("We don't support invokeinterface instructions"), //
- GETSTATIC("We don't support getstatic instructions"), //
- ATHROW("We don't support athrow instructions"), //
- SYNCHRONIZE("We don't support monitorenter or monitorexit instructions"), //
- NEW("We don't support new instructions"), //
- ARRAYALIAS("We don't support copying refs in kernels"), //
- SWITCH("We don't support lookupswitch or tableswitch instructions"), //
- METHODARRAYARG("We don't support passing arrays as method args"), //
- RECURSION("We don't support recursion"), //
- UNSUPPORTEDBYTECODE("This bytecode is not supported"), //
- OPERANDCONSUMERPRODUCERMISSMATCH("Detected an non-reducable operand consumer/producer mismatch"), //
- BADGETTERTYPEMISMATCH("Getter return type does not match field var type"), //
- BADGETTERNAMEMISMATCH("Getter name does not match fiels name"), //
- BADGETTERNAMENOTFOUND("Getter not found"), //
- BADSETTERTYPEMISMATCH("Setter arg type does not match field var type"), //
- EXCEPTION("We don't support catch blocks"), //
- ARRAYLOCALVARIABLE("Found an array local variable which assumes that we will alias a field array"), //
- CONFUSINGBRANCHESPOSSIBLYCONTINUE("we don't support continue"), //
- CONFUSINGBRANCHESPOSSIBLYBREAK("we don't support break"), //
- OBJECTFIELDREFERENCE("Using java objects inside kernels is not supported"), //
- OBJECTARRAYFIELDREFERENCE("Object array elements cannot contain"), //
- OVERRIDENFIELD("Found overidden field"), //
- LOCALARRAYLENGTHACCESS("Found array length access on local array. Might be a result of using ForEach()"), //
- ACCESSEDOBJECTNONFINAL("Kernel array object member class must be final."), //
- ACCESSEDOBJECTFIELDNAMECONFLICT("Conflicting fields found in class hierarchy"), //
- ACCESSEDOBJECTONLYSUPPORTSSIMPLEPUTFIELD("We don't support putfield instructions beyond simple setters"), //
- ACCESSEDOBJECTSETTERARRAY("Passing array arguments to Intrinsics in expression form is not supported"), //
- MULTIDIMENSIONARRAYASSIGN("Can't assign to two dimension array"), //
- MULTIDIMENSIONARRAYACCESS("Can't access through a two dimensional array"), //
- MISSINGLOCALVARIABLETABLE("Method does not contain a local variable table (recompile with -g?)"), //
- IMPROPERPRIVATENAMEMANGLING("Could not parse private array size from field name");
-
- private String description;
-
- TYPE(final String _description) {
- description = _description;
- }
-
- public String getDescription() {
- return (description);
- }
- };
-
- private Instruction instruction;
-
- private TYPE type;
-
- public ClassParseException(final TYPE _type) {
- super(_type.getDescription());
- type = _type;
- instruction = null;
- }
-
- public ClassParseException(final Instruction _instruction, final TYPE _type) {
- super("@" + _instruction.getThisPC() + " " + _instruction.getByteCode() + " " + _type.getDescription());
- type = _type;
- instruction = _instruction;
- }
-
- public ClassParseException(final TYPE _type, final String _methodName) {
- super("@" + _methodName + " " + _type.getDescription());
- type = _type;
- instruction = null;
- }
-
- public ClassParseException(final Throwable _t) {
- super(_t);
- }
-
- public Instruction getInstruction() {
- return (instruction);
- }
-
- public TYPE getType() {
- return (type);
- }
-}
diff --git a/com.amd.aparapi/src/java/com/amd/aparapi/internal/exception/CodeGenException.java b/com.amd.aparapi/src/java/com/amd/aparapi/internal/exception/CodeGenException.java
deleted file mode 100644
index 5d680cdb..00000000
--- a/com.amd.aparapi/src/java/com/amd/aparapi/internal/exception/CodeGenException.java
+++ /dev/null
@@ -1,49 +0,0 @@
-/*
-Copyright (c) 2010-2011, Advanced Micro Devices, Inc.
-All rights reserved.
-
-Redistribution and use in source and binary forms, with or without modification, are permitted provided that the
-following conditions are met:
-
-Redistributions of source code must retain the above copyright notice, this list of conditions and the following
-disclaimer.
-
-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.
-
-Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products
-derived from this software without specific prior written permission.
-
-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.
-
-If you use the software (in whole or in part), you shall adhere to all applicable U.S., European, and other export
-laws, including but not limited to the U.S. Export Administration Regulations ("EAR"), (15 C.F.R. Sections 730 through
-774), and E.U. Council Regulation (EC) No 1334/2000 of 22 June 2000. Further, pursuant to Section 740.6 of the EAR,
-you hereby certify that, except pursuant to a license granted by the United States Department of Commerce Bureau of
-Industry and Security or as otherwise permitted pursuant to a License Exception under the U.S. Export Administration
-Regulations ("EAR"), you will not (1) export, re-export or release to a national of a country in Country Groups D:1,
-E:1 or E:2 any restricted technology, software, or source code you receive hereunder, or (2) export to Country Groups
-D:1, E:1 or E:2 the direct product of such technology or software, if such foreign produced direct product is subject
-to national security controls as identified on the Commerce Control List (currently found in Supplement 1 to Part 774
-of EAR). For the most current Country Group listings, or for additional information about the EAR or your obligations
-under those regulations, please refer to the U.S. Bureau of Industry and Security's website at http://www.bis.doc.gov/.
-
-*/
-package com.amd.aparapi.internal.exception;
-
-@SuppressWarnings("serial") public class CodeGenException extends AparapiException{
-
- public CodeGenException(String msg) {
- super(msg);
- }
-
- public CodeGenException(Throwable t) {
- super(t);
- }
-}
diff --git a/com.amd.aparapi/src/java/com/amd/aparapi/internal/exception/RangeException.java b/com.amd.aparapi/src/java/com/amd/aparapi/internal/exception/RangeException.java
deleted file mode 100644
index 7cdc710a..00000000
--- a/com.amd.aparapi/src/java/com/amd/aparapi/internal/exception/RangeException.java
+++ /dev/null
@@ -1,45 +0,0 @@
-/*
-Copyright (c) 2010-2011, Advanced Micro Devices, Inc.
-All rights reserved.
-
-Redistribution and use in source and binary forms, with or without modification, are permitted provided that the
-following conditions are met:
-
-Redistributions of source code must retain the above copyright notice, this list of conditions and the following
-disclaimer.
-
-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.
-
-Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products
-derived from this software without specific prior written permission.
-
-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.
-
-If you use the software (in whole or in part), you shall adhere to all applicable U.S., European, and other export
-laws, including but not limited to the U.S. Export Administration Regulations ("EAR"), (15 C.F.R. Sections 730 through
-774), and E.U. Council Regulation (EC) No 1334/2000 of 22 June 2000. Further, pursuant to Section 740.6 of the EAR,
-you hereby certify that, except pursuant to a license granted by the United States Department of Commerce Bureau of
-Industry and Security or as otherwise permitted pursuant to a License Exception under the U.S. Export Administration
-Regulations ("EAR"), you will not (1) export, re-export or release to a national of a country in Country Groups D:1,
-E:1 or E:2 any restricted technology, software, or source code you receive hereunder, or (2) export to Country Groups
-D:1, E:1 or E:2 the direct product of such technology or software, if such foreign produced direct product is subject
-to national security controls as identified on the Commerce Control List (currently found in Supplement 1 to Part 774
-of EAR). For the most current Country Group listings, or for additional information about the EAR or your obligations
-under those regulations, please refer to the U.S. Bureau of Industry and Security's website at http://www.bis.doc.gov/.
-
-*/
-package com.amd.aparapi.internal.exception;
-
-@SuppressWarnings("serial") public class RangeException extends AparapiException{
-
- public RangeException(String msg) {
- super(msg);
- }
-}
diff --git a/com.amd.aparapi/src/java/com/amd/aparapi/internal/instruction/BranchSet.java b/com.amd.aparapi/src/java/com/amd/aparapi/internal/instruction/BranchSet.java
deleted file mode 100644
index 0454d75b..00000000
--- a/com.amd.aparapi/src/java/com/amd/aparapi/internal/instruction/BranchSet.java
+++ /dev/null
@@ -1,368 +0,0 @@
-/*
-Copyright (c) 2010-2011, Advanced Micro Devices, Inc.
-All rights reserved.
-
-Redistribution and use in source and binary forms, with or without modification, are permitted provided that the
-following conditions are met:
-
-Redistributions of source code must retain the above copyright notice, this list of conditions and the following
-disclaimer.
-
-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.
-
-Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products
-derived from this software without specific prior written permission.
-
-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.
-
-If you use the software (in whole or in part), you shall adhere to all applicable U.S., European, and other export
-laws, including but not limited to the U.S. Export Administration Regulations ("EAR"), (15 C.F.R. Sections 730 through
-774), and E.U. Council Regulation (EC) No 1334/2000 of 22 June 2000. Further, pursuant to Section 740.6 of the EAR,
-you hereby certify that, except pursuant to a license granted by the United States Department of Commerce Bureau of
-Industry and Security or as otherwise permitted pursuant to a License Exception under the U.S. Export Administration
-Regulations ("EAR"), you will not (1) export, re-export or release to a national of a country in Country Groups D:1,
-E:1 or E:2 any restricted technology, software, or source code you receive hereunder, or (2) export to Country Groups
-D:1, E:1 or E:2 the direct product of such technology or software, if such foreign produced direct product is subject
-to national security controls as identified on the Commerce Control List (currently found in Supplement 1 to Part 774
-of EAR). For the most current Country Group listings, or for additional information about the EAR or your obligations
-under those regulations, please refer to the U.S. Bureau of Industry and Security's website at http://www.bis.doc.gov/.
-
-*/
-package com.amd.aparapi.internal.instruction;
-
-import java.util.ArrayList;
-import java.util.LinkedHashSet;
-import java.util.List;
-import java.util.Set;
-
-import com.amd.aparapi.internal.instruction.InstructionSet.Branch;
-import com.amd.aparapi.internal.instruction.InstructionSet.ConditionalBranch;
-
-/**
- * Deals with the issue of recognizing that a sequence of bytecode branch instructions actually represent a single if/while with a logical expression.
- *
- *
- * A logical expressions such as
- *
- if (i>= 0 && i%2 == 0 && i<100){}
- *
- * gets translated into a sequence of bytecode level branches and targets. Which might look like the following.
- *
- a: if ? e +
- b: if ? d |+
- c: if ? e ||+
- d: if ? out |v|+
- e: ... v v|
- ... |
- out: _instruction v
- *
- * We need an algorithm for recognizing the underlying logical expression.
- *
- * Essentially, given a set of branches, get the longest sequential sequence including the input set which target each other or _target.
- *
- * Branches can legally branch to another in the valid set, or to the fall through of the last in the valid set or to _target
- *
- * So an
if(COND){IF_INSTRUCTIONS}else{ELSE_INSTUCTIONS}... will be
-
- branch[?? branch]*, instructions*,goto,instruction*,target
-
- * and if(COND){IF_INSTRUCTIONS}... will be :-
-
- branch[?? branch]*,instruction*,target
-
- * The psuedo code code the algorithm looks like this:
-
- int n=0;
- while (exp.length >1){
- if (exp[n].target == exp[n+1].target){ #rule 1
- replace exp[n] and exp[n+1] with a single expression representing 'exp[n] || exp[n+1]'
- n=0;
- }else if (exp[n].target == exp[n+1].next){ #rule 2
- replace exp[n] and exp[n+1] with a single expression representing '!(exp[n]) && exp[n+1]
- n=0;
- }else{ #rule 3
- n++;
- }
- }
-
- result = !exp[0];
-
- * @author gfrost
- */
-
-public class BranchSet{
- /**
- * Base abstract class used to hold information used to construct node tree for logical expressions.
- *
- * @see SimpleLogicalExpressionNode
- * @see CompoundLogicalExpressionNode
- *
- * @author gfrost
- *
- */
- public static abstract class LogicalExpressionNode{
- private LogicalExpressionNode next = null;
-
- private LogicalExpressionNode parent = null;
-
- public void setParent(LogicalExpressionNode _parent) {
- parent = _parent;
- }
-
- public abstract int getTarget();
-
- public abstract int getFallThrough();
-
- public abstract void invert();
-
- public LogicalExpressionNode getRoot() {
- if (parent != null) {
- return (parent);
- } else {
- return (this);
- }
- }
-
- public LogicalExpressionNode getNext() {
- return (next == null ? next : next.getRoot());
- }
-
- public void setNext(LogicalExpressionNode _next) {
- next = _next == null ? _next : _next.getRoot();
- }
-
- public LogicalExpressionNode getParent() {
- return (parent);
- }
- }
-
- /**
- * A node in the expression tree representing a simple logical expression.
- *
- * For example (i<3) in the following would appear as a SimpleLogicalExpressionNode
- *
- * if (i<3){}
- *
- *
- * @author gfrost
- *
- */
- public static class SimpleLogicalExpressionNode extends LogicalExpressionNode{
- private final ConditionalBranch branch;
-
- protected boolean invert = false;
-
- public SimpleLogicalExpressionNode(ConditionalBranch _branch) {
- branch = _branch;
- }
-
- @Override public int getTarget() {
- return (getBranch().getTarget().getThisPC());
- }
-
- @Override public void invert() {
- invert = !invert;
- }
-
- @Override public int getFallThrough() {
- return (getBranch().getNextPC().getThisPC());
- }
-
- public boolean isInvert() {
- return (invert);
- }
-
- public ConditionalBranch getBranch() {
- return branch;
- }
- }
-
- /**
- * A node in the expression tree representing a simple logical expression.
- *
- * For example (i<3 || i>10) in the following would appear as a CompoundLogicalExpressionNode
- *
- * if (i<3 || i>10){}
- *
- *
- * @author gfrost
- *
- */
- public static class CompoundLogicalExpressionNode extends LogicalExpressionNode{
- private final LogicalExpressionNode lhs;
-
- private final LogicalExpressionNode rhs;
-
- private boolean and;
-
- public CompoundLogicalExpressionNode(boolean _and, LogicalExpressionNode _lhs, LogicalExpressionNode _rhs) {
- lhs = _lhs;
- and = _and;
- rhs = _rhs;
- setNext(_rhs.getNext());
- if (and) {
- lhs.invert();
- // rhs.invert();
- }
- rhs.setParent(this);
- lhs.setParent(this);
- }
-
- @Override public int getTarget() {
- return (rhs.getTarget());
- }
-
- @Override public void invert() {
- and = !and;
- lhs.invert();
- rhs.invert();
- }
-
- public boolean isAnd() {
- return (and);
- }
-
- @Override public int getFallThrough() {
- return (rhs.getFallThrough());
- }
-
- public LogicalExpressionNode getLhs() {
-
- return lhs;
- }
-
- public LogicalExpressionNode getRhs() {
-
- return rhs;
- }
- }
-
- private final List set = new ArrayList();
-
- private final Instruction fallThrough;
-
- private final Instruction target;
-
- private final Branch last;
-
- private Branch first;
-
- private LogicalExpressionNode logicalExpressionNode = null;
-
- /**
- * We construct a branch set with the 'last' branch. It is assumed that all nodes prior to _branch are folded.
- *
- * This will walk backwards until it finds a non-branch or until it finds a branch that does not below to this set.
- *
- * @param _branch
- */
- public BranchSet(Branch _branch) {
- target = _branch.getTarget();
- last = _branch;
-
- final Set expandedSet = new LinkedHashSet();
- final Instruction fallThroughRoot = last.getNextExpr();
- fallThrough = fallThroughRoot == null ? last.getNextPC() : fallThroughRoot.getStartInstruction();
- first = last;
- while ((first.getPrevExpr() != null) && first.getPrevExpr().isBranch() && first.getPrevExpr().asBranch().isConditional()) {
- final Instruction prevBranchTarget = first.getPrevExpr().asBranch().getTarget();
- final Instruction prevBranchTargetRoot = prevBranchTarget.getRootExpr();
- if ((prevBranchTarget == target) || (prevBranchTarget == fallThrough) || expandedSet.contains(prevBranchTargetRoot)) {
- expandedSet.add(first);
- first = first.getPrevExpr().asBranch();
- } else {
- break;
- }
- }
- for (Instruction i = first; i != fallThroughRoot; i = i.getNextExpr()) {
- set.add((ConditionalBranch) i.asBranch());
- ((ConditionalBranch) i.asBranch()).setBranchSet(this);
- }
-
- // ConditionalBranch16 branches[] = set.toArray(new ConditionalBranch16[0]);
-
- LogicalExpressionNode end = null;
- for (final ConditionalBranch cb : set) {
- final SimpleLogicalExpressionNode sn = new SimpleLogicalExpressionNode(cb);
- if (logicalExpressionNode == null) {
- logicalExpressionNode = sn;
- } else {
- end.setNext(sn);
- }
- end = sn;
- }
- int count = 0;
- while (logicalExpressionNode.next != null) {
- if (++count > 20) {
- throw new IllegalStateException("Sanity check, we seem to have >20 iterations collapsing logical expression");
- }
- LogicalExpressionNode n = logicalExpressionNode;
- LogicalExpressionNode prev = null;
- int i = 0;
-
- while ((n != null) && (n.getNext() != null)) {
- if ((n.getTarget() == n.getNext().getTarget()) || (n.getTarget() == n.getNext().getFallThrough())) {
- LogicalExpressionNode newNode = null;
- if (n.getTarget() == n.getNext().getTarget()) {
- // lhs(n) and rhs(n.next) are branching to the same location so we replace (lhs ?? rhs) with (lhs || rhs)
- // System.out.println("exp["+i+"] exp["+(i+1)+"] replaced by (exp["+i+"] || exp["+(i+1)+"])");
- newNode = new CompoundLogicalExpressionNode(false, n, n.getNext());
- } else if (n.getTarget() == n.getNext().getFallThrough()) {
- // lhs(n) target and rhs(n.next) fallthrough are the same so we replace (lhs ?? rhs) with !(lhs && rhs)
- // System.out.println("exp["+i+"] exp["+(i+1)+"] replaced by (!exp["+i+"] && exp["+(i+1)+"])");
- newNode = new CompoundLogicalExpressionNode(true, n, n.getNext());
- }
- if (n == logicalExpressionNode) {
- logicalExpressionNode = newNode;
- }
- if (prev != null) {
- prev.setNext(newNode);
- }
- break;
- } else {
- prev = n;
- n = n.getNext();
- i++;
- }
- }
- }
- }
-
- public List getBranches() {
- return (set);
- }
-
- public Branch getFirst() {
- return (first);
- }
-
- public Branch getLast() {
-
- return (last);
- }
-
- public void unhook() {
- for (final Branch b : set) {
- b.unhook();
- }
- }
-
- public Instruction getTarget() {
- return (target);
- }
-
- public Instruction getFallThrough() {
- return (fallThrough);
- }
-
- public LogicalExpressionNode getLogicalExpression() {
- return (logicalExpressionNode);
- }
-}
diff --git a/com.amd.aparapi/src/java/com/amd/aparapi/internal/instruction/ExpressionList.java b/com.amd.aparapi/src/java/com/amd/aparapi/internal/instruction/ExpressionList.java
deleted file mode 100644
index 46e2e22e..00000000
--- a/com.amd.aparapi/src/java/com/amd/aparapi/internal/instruction/ExpressionList.java
+++ /dev/null
@@ -1,973 +0,0 @@
-/*
-Copyright (c) 2010-2011, Advanced Micro Devices, Inc.
-All rights reserved.
-
-Redistribution and use in source and binary forms, with or without modification, are permitted provided that the
-following conditions are met:
-
-Redistributions of source code must retain the above copyright notice, this list of conditions and the following
-disclaimer.
-
-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.
-
-Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products
-derived from this software without specific prior written permission.
-
-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.
-
-If you use the software (in whole or in part), you shall adhere to all applicable U.S., European, and other export
-laws, including but not limited to the U.S. Export Administration Regulations ("EAR"), (15 C.F.R. Sections 730 through
-774), and E.U. Council Regulation (EC) No 1334/2000 of 22 June 2000. Further, pursuant to Section 740.6 of the EAR,
-you hereby certify that, except pursuant to a license granted by the United States Department of Commerce Bureau of
-Industry and Security or as otherwise permitted pursuant to a License Exception under the U.S. Export Administration
-Regulations ("EAR"), you will not (1) export, re-export or release to a national of a country in Country Groups D:1,
-E:1 or E:2 any restricted technology, software, or source code you receive hereunder, or (2) export to Country Groups
-D:1, E:1 or E:2 the direct product of such technology or software, if such foreign produced direct product is subject
-to national security controls as identified on the Commerce Control List (currently found in Supplement 1 to Part 774
-of EAR). For the most current Country Group listings, or for additional information about the EAR or your obligations
-under those regulations, please refer to the U.S. Bureau of Industry and Security's website at http://www.bis.doc.gov/.
-
-*/
-package com.amd.aparapi.internal.instruction;
-
-import java.util.ArrayList;
-import java.util.LinkedList;
-import java.util.List;
-import java.util.logging.Level;
-import java.util.logging.Logger;
-
-import com.amd.aparapi.Config;
-import com.amd.aparapi.internal.exception.ClassParseException;
-import com.amd.aparapi.internal.instruction.InstructionSet.AssignToLocalVariable;
-import com.amd.aparapi.internal.instruction.InstructionSet.Branch;
-import com.amd.aparapi.internal.instruction.InstructionSet.ByteCode;
-import com.amd.aparapi.internal.instruction.InstructionSet.CompositeArbitraryScopeInstruction;
-import com.amd.aparapi.internal.instruction.InstructionSet.CompositeInstruction;
-import com.amd.aparapi.internal.instruction.InstructionSet.ConditionalBranch;
-import com.amd.aparapi.internal.instruction.InstructionSet.FakeGoto;
-import com.amd.aparapi.internal.instruction.InstructionSet.Return;
-import com.amd.aparapi.internal.instruction.InstructionSet.UnconditionalBranch;
-import com.amd.aparapi.internal.model.MethodModel;
-import com.amd.aparapi.internal.model.ClassModel.LocalVariableTableEntry;
-import com.amd.aparapi.internal.model.ClassModel.LocalVariableInfo;
-
-/**
- * Essentially a glorified linked list of Instructions plus some additional state to allow us to transform sequences.
- *
- * ExpressionLists do have the notion of a parent which allows us to clone an existing parent, allow transformations
- * and then possibly commit or abort the transformations at will.
- * @author gfrost
- *
- */
-public class ExpressionList{
-
- private static Logger logger = Logger.getLogger(Config.getLoggerName());
-
- private final MethodModel methodModel;
-
- private final ExpressionList parent;
-
- private Instruction head;
-
- private Instruction tail;
-
- private final Instruction instruction;
-
- private ExpressionList(MethodModel _methodModel, ExpressionList _parent, Instruction _instruction) {
-
- methodModel = _methodModel;
- parent = _parent;
- instruction = _instruction;
- if (parent != null) {
- head = parent.head;
- tail = parent.tail;
- }
- if (instruction != null) {
- tail = _instruction.getPrevExpr();
- tail.setNextExpr(null);
- _instruction.setPrevExpr(null);
- }
- }
-
- public ExpressionList(MethodModel _methodModel) {
- this(_methodModel, null, null);
- }
-
- /**
- * Determine whether the sequence of instructions from _start to _extent is free of branches which extend beyond _extent.
- *
- * As a side effect, if we find a possible branch it is likely a break or continue so we mark the conditional as such.
- *
- * @param _start
- * @param _extent
- * @return
- */
- public boolean doesNotContainContinueOrBreak(Instruction _start, Instruction _extent) {
- boolean ok = true;
- boolean breakOrContinue = false;
- for (Instruction i = _start; i != null; i = i.getNextExpr()) {
- if (i.isBranch()) {
- if (i.asBranch().isForwardUnconditional() && i.asBranch().getTarget().isAfter(_extent)) {
- breakOrContinue = true;
- } else {
- ok = false;
- break;
- }
- }
- }
- if (ok) {
- if (breakOrContinue) {
- for (Instruction i = _start; i != null; i = i.getNextExpr()) {
- if (i.isBranch() && i.asBranch().isForwardUnconditional() && i.asBranch().getTarget().isAfter(_extent)) {
- i.asBranch().setBreakOrContinue(true);
- }
- }
- }
- }
- return (ok);
- }
-
- public boolean doesNotContainCompositeOrBranch(Instruction _start, Instruction _exclusiveEnd) {
- boolean ok = true;
- for (Instruction i = _start; (i != null) && (i != _exclusiveEnd); i = i.getNextExpr()) {
- if (!(i instanceof CompositeInstruction) && (i.isBranch())) {
- ok = false;
- break;
- }
- }
- return (ok);
- }
-
- public void unwind() {
- if (parent != null) {
- if (instruction != null) {
- tail.setNextExpr(instruction);
- instruction.setPrevExpr(tail);
- parent.head = head;
- } else {
- parent.head = head;
- parent.tail = tail;
- }
- }
- }
-
- /**
- * [1] [2] [3] [4]
- *
- * Note that passing null here essentially deletes the existing expression list and returns the expression
- *
- * @param _newTail
- * @return
- */
-
- public Instruction createList(final Instruction _newTail) {
- Instruction childExprHead = null;
- if (_newTail == null) {
- childExprHead = head;
- tail = head = null;
- } else {
- childExprHead = _newTail.getNextExpr();
- tail = _newTail;
- _newTail.setNextExpr(null);
- if (childExprHead != null) {
- childExprHead.setPrevExpr(null);
- }
-
- }
- return (childExprHead);
- }
-
- /**
- * Add this instruction to the end of the list.
- *
- * @param _instruction
- * @return The instruction we added
- */
-
- public Instruction add(Instruction _instruction) {
-
- if (head == null) {
- head = _instruction;
- } else {
- _instruction.setPrevExpr(tail);
- tail.setNextExpr(_instruction);
-
- }
-
- tail = _instruction;
- logger.log(Level.FINE, "After PUSH of " + _instruction + " tail=" + tail);
- return (tail);
- }
-
- /**
- * Insert the given instruction (_newone) between the existing entries (_prev and _next).
- * @param _prev
- * @param _next
- * @param _newOne
- */
- public void insertBetween(Instruction _prev, Instruction _next, Instruction _newOne) {
- _newOne.setNextExpr(null);
- _newOne.setPrevExpr(null);
- if (_prev == null) {
- // this is the new head
- if (_next == null) {
- head = tail = _newOne;
- } else {
- _newOne.setNextExpr(head);
- head.setPrevExpr(_newOne);
- head = _newOne;
- }
- } else if (_next == null) {
- _newOne.setPrevExpr(tail);
- tail.setNextExpr(_newOne);
- tail = _newOne;
- } else {
- _newOne.setNextExpr(_prev.getNextExpr());
- _newOne.setPrevExpr(_next.getPrevExpr());
- _prev.setNextExpr(_newOne);
- _next.setPrevExpr(_newOne);
- }
-
- }
-
- /**
- * Inclusive replace between _head and _tail with _newOne.
- *
- *
- * | | --> | | ---> ... ---> | | ---> | |
- * | prev | | _head | | _tail | | next |
- * | | <-- | | <--- ... <----| | <--- | |
- *
- * To
- *
- * | | --> | | ---> | |
- * | prev | | _newOne | | next |
- * | | <-- | | <--- | |
- *
- */
-
- public void replaceInclusive(Instruction _head, Instruction _tail, Instruction _newOne) {
- _newOne.setNextExpr(null);
- _newOne.setPrevExpr(null);
- final Instruction prevHead = _head.getPrevExpr();
- if (_tail == null) {
- // this is the new tail
- _newOne.setPrevExpr(prevHead);
- prevHead.setNextExpr(_newOne);
- tail = _newOne;
- } else {
- final Instruction tailNext = _tail.getNextExpr();
- if (prevHead == null) {
- // this is the new head
- if (tailNext == null) {
- head = tail = _newOne;
- } else {
- _newOne.setNextExpr(head);
- head.setPrevExpr(_newOne);
- head = _newOne;
- }
- } else if (tailNext == null) {
- _newOne.setPrevExpr(prevHead);
- prevHead.setNextExpr(_newOne);
- tail = _newOne;
- _head.setPrevExpr(null);
- } else {
- _newOne.setNextExpr(tailNext);
- _newOne.setPrevExpr(prevHead);
- prevHead.setNextExpr(_newOne);
- tailNext.setPrevExpr(_newOne);
-
- }
- _tail.setNextExpr(null);
- _head.setPrevExpr(null);
- }
-
- }
-
- /**
- * Fold headTail.tail into valid composites
- *
- *
- * if(??){then}...
- * ?? ?> [THEN] ...
- * -------->
- *
- * if (??){THEN}else{ELSE}...
- *
- * ?? ?> [THEN] >> [ELSE] ...
- * ------------>
- * -------->
- *
- * sun for (INIT,??,DELTA){BODY} ...
- *
- * [INIT] ?? ?> [BODY] [DELTA] << ...
- * ------------------>
- * <-------------------
- *
- * sun for (,??,DELTA){BODY} ...
- *
- * ?? ?> [BODY] [DELTA] << ...
- * ------------------>
- * <-------------------
- *
- * sun while (?){l} ...
- *
- * ?? ?> [BODY] << ...
- * ----------->
- * <------------
- *
- * eclipse for (INIT,??,DELTA){BODY} ...
- * [INIT] >> [BODY] [DELTA] ?? ?< ...
- * ---------------->
- * <-----------------
- *
- * eclipse for (,??,DELTA){BODY} ...
- * >> [BODY] [DELTA] ?? ?< ...
- * --------------->
- * <-----------------
- *
- * eclipse while (??){BODY} ...
- * >> [BODY] ?? ?< ...
- * -------->
- * <----------
- *
- * eclipe if (?1) { while (?2) {BODY} } else {ELSE} ...
- * ?1 ?> >> [BODY] ?2 ?< >> [ELSE] ...
- * --------->
- * <---------
- * --------------------->
- * -------->
- *
- * sun for (,?1,DELTA){ if (?2) { THEN break; } BODY} ...
- *
- * ?1 ?> ?2 ?> [THEN] >> [BODY] [DELTA] << ...
- * ----------->
- * ---------------------------------->
- * ------------------>
- * <------------------------------------
- *
- * sun for (,?1,DELTA){ if (?2) { THEN continue; } BODY} ...
- *
- * ?1 ?> ?2 ?> THEN >> [BODY] [DELTA] << ...
- * --------->
- * -------->
- * -------------------------------->
- * <----------------------------------
- *
- * Some exceptions based on sun javac optimizations
- *
- * if (?1){ if (?2){THEN} }else{ ELSE } ...
- * One might expect
- * ?1 ?> ?2 ?> [THEN] >> [ELSE] ...
- * ----------------->
- * -------->!
- * ------------->
- * However the conditional branch to the unconditional (!) is optimized away and instead the unconditional inverted and extended
- *
- * ?1 ?> ?2 ?> [THEN] >> [ELSE] ...
- * ----------------->
- * --------*--------->
- *
- * sun if (?1) { while (?2) {l} } else {e} ...
- * One might expect
- * ?1 ?> ?2 ?> [BODY] << >> [ELSE] ...
- * ------------------->
- * ----------->!
- * <----------
- * -------->
- *
- * However as above the conditional branch to the unconditional (!) can be optimized away and the conditional inverted and extended
- * ?1 ?> ?2 ?> [BODY] << >> [ELSE] ...
- * -------------------->
- * -----------*--------->
- * <-----------
- *
- * However we can also now remove the forward unconditional completely as it is unreachable
- * ?1 ?> ?2 ?> [BODY] << [ELSE] ...
- * ----------------->
- * ------------------>
- * <-----------
- *
- * sun while(?1){if (?2) {THEN} else {ELSE} } ...
- * One might expect
- * ?1 ?> ?2 ?> [BODY] >> [ELSE] << ...
- * -------------------------->
- * <---------------------
- * ---------->
- * ------->!
- *
- * However the unconditional branch to the unconditional backbranch (!) can be optimized away and the unconditional wrapped back directly to the loop control head
- * ?1 ?> ?2 ?> [BODY] << [ELSE] << ...
- * -------------------------->
- * <---------------------
- * ---------->
- * <-----------
-
- *
- * @param _instruction
- * @throws ClassParseException
- */
- public boolean foldComposite(final Instruction _instruction) throws ClassParseException {
- boolean handled = false;
- try {
-
- if (logger.isLoggable(Level.FINE)) {
- System.out.println("foldComposite: curr = " + _instruction);
- System.out.println(dumpDiagram(_instruction));
- // System.out.println(dumpDiagram(null, _instruction));
- }
- if (_instruction.isForwardBranchTarget() || ((tail != null) && tail.isBranch() && tail.asBranch().isReverseConditional())) {
- while (_instruction.isForwardBranchTarget()
- || ((tail != null) && tail.isBranch() && tail.asBranch().isReverseConditional())) {
- if (logger.isLoggable(Level.FINE)) {
- System.out.println(dumpDiagram(_instruction));
-
- }
- handled = false;
-
- if ((tail != null) && tail.isBranch() && tail.asBranch().isReverseConditional()) {
- /**
- * This looks like an eclipse style for/while loop or possibly a do{}while()
- *
- * eclipse for (INIT,??,DELTA){BODY} ...
- * [INIT] >> [BODY] [DELTA] ?? ?< ...
- * ---------------->
- * <-----------------
- *
- * eclipse for (,??,DELTA){BODY} ...
- * >> [BODY] [DELTA] ?? ?< ...
- * --------------->
- * <-----------------
- *
- * do {BODY} while(??)
- * [BODY] ?? ?< ...
- * <-----------
- *
- * eclipse while (??){BODY} ...
- * >> [BODY] ?? ?< ...
- * -------->
- * <----------
- *
- **/
- final BranchSet branchSet = ((ConditionalBranch) tail.asBranch()).getOrCreateBranchSet();
- Instruction loopTop = branchSet.getTarget().getRootExpr();
- final Instruction beginingOfBranch = branchSet.getFirst();
-
- final Instruction startOfBeginningOfBranch = beginingOfBranch.getStartInstruction();
- // empty loops sometimes look like eclipse loops!
- if (startOfBeginningOfBranch == loopTop) {
-
- loopTop = loopTop.getPrevExpr();
- if (loopTop instanceof AssignToLocalVariable) {
- final LocalVariableInfo localVariableInfo = ((AssignToLocalVariable) loopTop).getLocalVariableInfo();
- if ((localVariableInfo.getStart() == loopTop.getNextExpr().getStartPC())
- && (localVariableInfo.getEnd() == _instruction.getThisPC())) {
- loopTop = loopTop.getPrevExpr(); // back up over the initialization
- }
- }
- addAsComposites(ByteCode.COMPOSITE_EMPTY_LOOP, loopTop, branchSet);
- handled = true;
- } else {
-
- if ((loopTop.getPrevExpr() != null) && loopTop.getPrevExpr().isBranch()
- && loopTop.getPrevExpr().asBranch().isForwardUnconditional()) {
- if (doesNotContainCompositeOrBranch(branchSet.getTarget().getRootExpr(), branchSet.getFirst().getPrevExpr())) {
- branchSet.unhook();
- loopTop.getPrevExpr().asBranch().unhook();
- loopTop = loopTop.getPrevExpr();
- // looptop == the unconditional?
- loopTop = loopTop.getPrevExpr();
- if (loopTop instanceof AssignToLocalVariable) {
- final LocalVariableInfo localVariableInfo = ((AssignToLocalVariable) loopTop).getLocalVariableInfo();
- if ((localVariableInfo.getStart() == loopTop.getNextExpr().getStartPC())
- && (localVariableInfo.getEnd() == _instruction.getThisPC())) {
- loopTop = loopTop.getPrevExpr(); // back up over the initialization
- }
- }
- addAsComposites(ByteCode.COMPOSITE_FOR_ECLIPSE, loopTop, branchSet);
- handled = true;
- }
- }
- if (!handled) {
- // do{}while()_ do not require any previous instruction
- if (loopTop.getPrevExpr() == null) {
- throw new IllegalStateException("might be a dowhile with no provious expression");
-
- } else if (!(loopTop.getPrevExpr().isBranch() && loopTop.getPrevExpr().asBranch().isForwardUnconditional())) {
- if (doesNotContainCompositeOrBranch(branchSet.getTarget().getRootExpr(), branchSet.getFirst()
- .getPrevExpr())) {
- loopTop = loopTop.getPrevExpr();
- branchSet.unhook();
- addAsComposites(ByteCode.COMPOSITE_DO_WHILE, loopTop, branchSet);
- handled = true;
- }
- } else {
- throw new IllegalStateException("might be mistaken for a do while!");
- }
- }
- }
- }
- if (!handled && _instruction.isForwardConditionalBranchTarget() && tail.isBranch()
- && tail.asBranch().isReverseUnconditional()) {
-
- /**
- * This is s sun style loop
- *
- * sun for (INIT,??,DELTA){BODY} ...
- *
- * [INIT] ?? ?> [BODY] [DELTA] << ...
- * ------------------>
- * <-------------------
- *
- * sun for (,??,DELTA){BODY} ...
- *
- * ?? ?> [BODY] [DELTA] << ...
- * ------------------>
- * <-------------------
- *
- * sun while (?){l} ...
- *
- * ?? ?> [BODY] << ...
- * ----------->
- * <------------
- *
- *
- */
- final ConditionalBranch lastForwardConditional = _instruction.getForwardConditionalBranches().getLast();
- final BranchSet branchSet = lastForwardConditional.getOrCreateBranchSet();
- final Branch reverseGoto = tail.asBranch();
- final Instruction loopBackTarget = reverseGoto.getTarget();
- if (loopBackTarget.getReverseUnconditionalBranches().size() > 1) {
- throw new ClassParseException(ClassParseException.TYPE.CONFUSINGBRANCHESPOSSIBLYCONTINUE);
- }
- if (_instruction.isForwardUnconditionalBranchTarget()) {
- /**
- * Check if we have a break
- *
- * ?? ?> [BODY] ?1 ?> >> [BODY] << ...
- * -------------------------->
- * ---->
- * ----------->
- * <----------------------------
- *
- *
- */
- final Branch lastForwardUnconditional = _instruction.getForwardUnconditionalBranches().getLast();
- if ((lastForwardUnconditional != null) && lastForwardUnconditional.isAfter(lastForwardConditional)) {
- throw new ClassParseException(ClassParseException.TYPE.CONFUSINGBRANCHESPOSSIBLYBREAK);
- }
- }
- if (loopBackTarget != branchSet.getFirst().getStartInstruction()) {
- /**
- * we may have a if(?1){while(?2){}}else{...} where the else goto has been optimized away.
- *
- * One might expect
- * ?1 ?> ?2 ?> [BODY] << >> [ELSE] ...
- * ------------------->
- * ----------->!
- * <----------
- * -------->
- *
- * However as above the conditional branch to the unconditional (!) can be optimized away and the conditional inverted and extended
- * ?1 ?> ?2 ?> [BODY] << >> [ELSE] ...
- * -------------------->
- * -----------*--------->
- * <-----------
- *
- * However we can also now remove the forward unconditional completely as it is unreachable
- * ?1 ?> ?2 ?> [BODY] << [ELSE] ...
- * ----------------->
- * ------------------>
- * <-----------
- *
- *
- */
-
- final Instruction loopbackTargetRoot = loopBackTarget.getRootExpr();
- if (loopbackTargetRoot.isBranch() && loopbackTargetRoot.asBranch().isConditional()) {
- final ConditionalBranch topOfRealLoop = (ConditionalBranch) loopbackTargetRoot.asBranch();
- BranchSet extentBranchSet = topOfRealLoop.getBranchSet();
- if (topOfRealLoop.getBranchSet() == null) {
- extentBranchSet = topOfRealLoop.findEndOfConditionalBranchSet(_instruction.getNextPC())
- .getOrCreateBranchSet();
- }
- // We believe that this extendBranchSet is the real top of the while.
- if (doesNotContainCompositeOrBranch(extentBranchSet.getLast().getNextExpr(), reverseGoto)) {
-
- Instruction loopTop = topOfRealLoop.getPrevExpr();
- if (loopTop instanceof AssignToLocalVariable) {
- final LocalVariableInfo localVariableInfo = ((AssignToLocalVariable) loopTop).getLocalVariableInfo();
- if ((localVariableInfo.getStart() == loopTop.getNextExpr().getStartPC())
- && (localVariableInfo.getEnd() == _instruction.getThisPC())) {
- loopTop = loopTop.getPrevExpr(); // back up over the initialization
- }
- }
- extentBranchSet.unhook();
-
- addAsComposites(ByteCode.COMPOSITE_FOR_SUN, loopTop, extentBranchSet);
- final UnconditionalBranch fakeGoto = new FakeGoto(methodModel, extentBranchSet.getLast().getTarget());
-
- add(fakeGoto);
- extentBranchSet.getLast().getTarget().addBranchTarget(fakeGoto);
-
- handled = true;
- }
- }
- } else {
- /**
- * Just a normal sun style loop
- */
- if (doesNotContainCompositeOrBranch(branchSet.getLast().getNextExpr(), reverseGoto)) {
- Instruction loopTop = reverseGoto.getTarget().getRootExpr().getPrevExpr();
-
- if (logger.isLoggable(Level.FINEST)) {
- Instruction next = branchSet.getFirst().getNextExpr();
- System.out.println("### for/while candidate exprs: " + branchSet.getFirst());
- while (next != null) {
- System.out.println("### expr = " + next);
- next = next.getNextExpr();
- }
- }
-
- if (loopTop instanceof AssignToLocalVariable) {
- final LocalVariableInfo localVariableInfo = ((AssignToLocalVariable) loopTop).getLocalVariableInfo();
- if ((localVariableInfo.getStart() == loopTop.getNextExpr().getStartPC())
- && (localVariableInfo.getEnd() == _instruction.getThisPC())) {
- loopTop = loopTop.getPrevExpr(); // back up over the initialization
-
- }
- }
- branchSet.unhook();
-
- // If there is an inner scope, it is likely that the loop counter var
- // is modified using an inner scope variable so use while rather than for
- if (reverseGoto.getPrevExpr() instanceof CompositeArbitraryScopeInstruction) {
- addAsComposites(ByteCode.COMPOSITE_WHILE, loopTop, branchSet);
- } else {
- addAsComposites(ByteCode.COMPOSITE_FOR_SUN, loopTop, branchSet);
- }
- handled = true;
- }
-
- }
- }
- if (!handled && !tail.isForwardBranch() && _instruction.isForwardConditionalBranchTarget()) {
- /**
- * This an if(exp)
- * *
- * if(??){then}...
- * ?? ?> [THEN] ...
- * -------->
- *
- *
- */
- final ConditionalBranch lastForwardConditional = _instruction.getForwardConditionalBranches().getLast();
- final BranchSet branchSet = lastForwardConditional.getOrCreateBranchSet();
- if (doesNotContainContinueOrBreak(branchSet.getLast().getNextExpr(), _instruction)) {
- branchSet.unhook();
- addAsComposites(ByteCode.COMPOSITE_IF, branchSet.getFirst().getPrevExpr(), branchSet);
- handled = true;
- }
- }
- if (!handled && !tail.isForwardBranch() && _instruction.isForwardUnconditionalBranchTarget()) {
-
- final LinkedList forwardUnconditionalBranches = _instruction.getForwardUnconditionalBranches();
-
- final Branch lastForwardUnconditional = forwardUnconditionalBranches.getLast();
- final Instruction afterGoto = lastForwardUnconditional.getNextExpr();
- if (afterGoto.getStartInstruction().isForwardConditionalBranchTarget()) {
- final LinkedList forwardConditionalBranches = afterGoto.getStartInstruction()
- .getForwardConditionalBranches();
- final ConditionalBranch lastForwardConditional = forwardConditionalBranches.getLast();
- final BranchSet branchSet = lastForwardConditional.getOrCreateBranchSet();
-
- if (doesNotContainCompositeOrBranch(branchSet.getLast().getNextExpr(), lastForwardUnconditional)) {
- if (doesNotContainContinueOrBreak(afterGoto.getNextExpr(), _instruction)) {
- branchSet.unhook();
- lastForwardUnconditional.unhook();
- addAsComposites(ByteCode.COMPOSITE_IF_ELSE, branchSet.getFirst().getPrevExpr(), branchSet);
- handled = true;
- }
- } else {
- //then not clean.
- final ExpressionList newHeadTail = new ExpressionList(methodModel, this, lastForwardUnconditional);
- handled = newHeadTail.foldComposite(lastForwardUnconditional.getStartInstruction());
- newHeadTail.unwind();
- // handled = foldCompositeRecurse(lastForwardUnconditional);
- if (!handled && (forwardUnconditionalBranches.size() > 1)) {
- // BI AI AE BE
- // ?> ?> .. >> .. >> C S
- // ?---------------------->22
- // ?---------->18
- // +-------------->31
- // +------>31
- // Javac sometimes performs the above optimization. Basically the GOTO for the inner IFELSE(AI,AE) instead of targeting the GOTO
- // from the outer IFELSE(B1,BE) so instead of AE->BE->... we have AE-->...
- //
- // So given more than one target we retreat up the list of unconditionals until we find a clean one treating the previously visited GOTO
- // as a possible end
-
- for (int i = forwardUnconditionalBranches.size(); i > 1; i--) {
- final Branch thisGoto = forwardUnconditionalBranches.get(i - 1);
- final Branch elseGoto = forwardUnconditionalBranches.get(i - 2);
- final Instruction afterElseGoto = elseGoto.getNextExpr();
- if (afterElseGoto.getStartInstruction().isConditionalBranchTarget()) {
- final BranchSet elseBranchSet = afterElseGoto.getStartInstruction()
- .getForwardConditionalBranches().getLast().getOrCreateBranchSet();
- if (doesNotContainCompositeOrBranch(elseBranchSet.getLast().getNextExpr(), elseGoto)) {
- if (doesNotContainCompositeOrBranch(afterElseGoto.getNextExpr(), thisGoto)) {
- if (logger.isLoggable(Level.FINE)) {
- System.out.println(dumpDiagram(_instruction));
- }
- elseBranchSet.unhook();
- elseGoto.unhook();
- if (logger.isLoggable(Level.FINE)) {
- System.out.println(dumpDiagram(_instruction));
-
- }
-
- final CompositeInstruction composite = CompositeInstruction.create(
- ByteCode.COMPOSITE_IF_ELSE, methodModel, elseBranchSet.getFirst(), thisGoto,
- elseBranchSet);
- replaceInclusive(elseBranchSet.getFirst(), thisGoto.getPrevExpr(), composite);
-
- handled = true;
-
- break;
- }
- }
- }
-
- }
-
- }
- }
-
- }
-
- }
- if (!handled && !tail.isForwardBranch() && _instruction.isForwardConditionalBranchTarget()
- && _instruction.isForwardUnconditionalBranchTarget()) {
- // here we have multiple composites ending at the same point
-
- final Branch lastForwardUnconditional = _instruction.getForwardUnconditionalBranches().getLast();
- final ConditionalBranch lastForwardConditional = _instruction.getStartInstruction()
- .getForwardConditionalBranches().getLast();
- // we will clip the tail and see if recursing helps
-
- if (lastForwardConditional.getTarget().isAfter(lastForwardUnconditional)) {
-
- lastForwardConditional.retarget(lastForwardUnconditional);
-
- final ExpressionList newHeadTail = new ExpressionList(methodModel, this, lastForwardUnconditional);
- handled = newHeadTail.foldComposite(lastForwardUnconditional.getStartInstruction());
- newHeadTail.unwind();
-
- }
-
- }
- if (!handled) {
- break;
- }
- }
-
- } else {
-
- // might be end of arbitrary scope
- final LocalVariableTableEntry localVariableTable = methodModel.getMethod()
- .getLocalVariableTableEntry();
- int startPc = Short.MAX_VALUE;
-
- for (final LocalVariableInfo localVariableInfo : localVariableTable) {
- if (localVariableInfo.getEnd() == _instruction.getThisPC()) {
- logger.fine(localVariableInfo.getVariableName() + " scope " + localVariableInfo.getStart() + " ,"
- + localVariableInfo.getEnd());
- if (localVariableInfo.getStart() < startPc) {
- startPc = localVariableInfo.getStart();
- }
- }
- }
- if (startPc < Short.MAX_VALUE) {
- logger.fine("Scope block from " + startPc + " to " + (tail.getThisPC() + tail.getLength()));
- for (Instruction i = head; i != null; i = i.getNextPC()) {
- if (i.getThisPC() == startPc) {
- final Instruction startInstruction = i.getRootExpr().getPrevExpr();
- logger.fine("Start = " + startInstruction);
-
- addAsComposites(ByteCode.COMPOSITE_ARBITRARY_SCOPE, startInstruction.getPrevExpr(), null);
- handled = true;
- break;
- }
- }
-
- }
-
- }
-
- if (Config.instructionListener != null) {
- Config.instructionListener.showAndTell("after folding", head, _instruction);
- }
-
- } catch (final ClassParseException _classParseException) {
- throw new ClassParseException(_classParseException);
- } catch (final Throwable t) {
- throw new ClassParseException(t);
-
- }
- return (handled);
- }
-
- private void addAsComposites(ByteCode _byteCode, Instruction _start, BranchSet _branchSet) {
- final Instruction childTail = tail;
- final Instruction childHead = createList(_start);
- final CompositeInstruction composite = CompositeInstruction.create(_byteCode, methodModel, childHead, childTail, _branchSet);
- add(composite);
- }
-
- /**
- * Aids debugging. Creates a diagrammatic form of the roots (+ tail instruction) so that we can analyze control flow.
- *
- * I I I C C I U I U[I]I
- * |---------->1
- * |---->1
- * |------>2
- * |-->2
- *
- * @param _cursor The instruction we are looking at
- * @param _instruction The instruction we are considering adding (may be null)
- * @return
- */
- public String dumpDiagram(Instruction _instruction) {
- final StringBuilder sb = new StringBuilder();
- final List list = new ArrayList();
-
- for (Instruction i = head; i != null; i = i.getNextExpr()) {
- list.add(i);
- }
-
- for (Instruction i = _instruction; i != null; i = i.getNextPC()) {
- list.add(i);
- }
-
- final Instruction[] array = list.toArray(new Instruction[0]);
- boolean lastWasCursor = false;
-
- final List branches = new ArrayList();
- for (final Instruction i : list) {
- sb.append(String.format(" %3d", i.getStartPC()));
- }
-
- sb.append("\n");
- for (final Instruction i : list) {
- sb.append(String.format(" %3d", i.getThisPC()));
- }
-
- sb.append("\n");
- for (final Instruction i : list) {
-
- if (i == _instruction) {
- sb.append(" [");
- lastWasCursor = true;
- } else {
- if (lastWasCursor) {
- sb.append("] ");
- lastWasCursor = false;
- } else {
- sb.append(" ");
- }
- }
- if (i.isBranch() && i.asBranch().isConditional()) {
- branches.add(i.asBranch());
-
- if (i.asBranch().isForward()) {
- sb.append("?>");
-
- } else {
- sb.append("?<");
- }
- } else if (i.isBranch() && i.asBranch().isUnconditional()) {
- branches.add(i.asBranch());
- if (i.asBranch().isForward()) {
- sb.append(">>");
- } else {
- sb.append("<<");
- }
- } else if (i instanceof CompositeInstruction) {
- sb.append(" C");
- } else if (i instanceof Return) {
-
- sb.append(" R");
- // } else if (i instanceof AssignToLocalVariable) {
- // sb.append(" S");
- } else {
- sb.append("..");
- }
- }
-
- if (lastWasCursor) {
- sb.append("] ");
- } else {
- sb.append(" ");
- }
-
- for (final Branch b : branches) {
- sb.append("\n ");
- if (b.isForward()) {
- for (int i = 0; i < array.length; i++) {
- if ((array[i].getStartPC() < b.getStartPC()) || (array[i].getThisPC() > b.getTarget().getThisPC())) {
- sb.append(" ");
- } else {
- if (b.isConditional()) {
- sb.append("?-");
- } else {
- sb.append("+-");
- }
- i++;
- while ((i < array.length) && (array[i].getStartPC() < b.getTarget().getThisPC())) {
- sb.append("----");
- i++;
- }
- sb.append("->");
- sb.append(b.getTarget().getThisPC());
-
- }
- }
- } else {
- for (int i = 0; i < array.length; i++) {
- if ((array[i].getStartPC() < b.getTarget().getThisPC()) || (array[i].getThisPC() > b.getThisPC())) {
- sb.append(" ");
- } else {
- sb.append("<-");
- i++;
- while ((i < array.length) && (array[i].getStartPC() < b.getThisPC())) {
- sb.append("----");
- i++;
- }
- if (b.isConditional()) {
- sb.append("-?");
- } else {
- sb.append("-+");
- }
- }
- }
- }
- }
-
- return (sb.toString());
- }
-
- public Instruction getTail() {
- return (tail);
- }
-
- public Instruction getHead() {
- return (head);
- }
-}
diff --git a/com.amd.aparapi/src/java/com/amd/aparapi/internal/instruction/Instruction.java b/com.amd.aparapi/src/java/com/amd/aparapi/internal/instruction/Instruction.java
deleted file mode 100644
index cbb30fde..00000000
--- a/com.amd.aparapi/src/java/com/amd/aparapi/internal/instruction/Instruction.java
+++ /dev/null
@@ -1,387 +0,0 @@
-/*
-Copyright (c) 2010-2011, Advanced Micro Devices, Inc.
-All rights reserved.
-
-Redistribution and use in source and binary forms, with or without modification, are permitted provided that the
-following conditions are met:
-
-Redistributions of source code must retain the above copyright notice, this list of conditions and the following
-disclaimer.
-
-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.
-
-Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products
-derived from this software without specific prior written permission.
-
-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.
-
-If you use the software (in whole or in part), you shall adhere to all applicable U.S., European, and other export
-laws, including but not limited to the U.S. Export Administration Regulations ("EAR"), (15 C.F.R. Sections 730 through
-774), and E.U. Council Regulation (EC) No 1334/2000 of 22 June 2000. Further, pursuant to Section 740.6 of the EAR,
-you hereby certify that, except pursuant to a license granted by the United States Department of Commerce Bureau of
-Industry and Security or as otherwise permitted pursuant to a License Exception under the U.S. Export Administration
-Regulations ("EAR"), you will not (1) export, re-export or release to a national of a country in Country Groups D:1,
-E:1 or E:2 any restricted technology, software, or source code you receive hereunder, or (2) export to Country Groups
-D:1, E:1 or E:2 the direct product of such technology or software, if such foreign produced direct product is subject
-to national security controls as identified on the Commerce Control List (currently found in Supplement 1 to Part 774
-of EAR). For the most current Country Group listings, or for additional information about the EAR or your obligations
-under those regulations, please refer to the U.S. Bureau of Industry and Security's website at http://www.bis.doc.gov/.
-
-*/
-package com.amd.aparapi.internal.instruction;
-
-import java.util.LinkedList;
-
-import com.amd.aparapi.internal.instruction.InstructionSet.Branch;
-import com.amd.aparapi.internal.instruction.InstructionSet.ByteCode;
-import com.amd.aparapi.internal.instruction.InstructionSet.CompositeInstruction;
-import com.amd.aparapi.internal.instruction.InstructionSet.ConditionalBranch;
-import com.amd.aparapi.internal.model.MethodModel;
-import com.amd.aparapi.internal.reader.ByteReader;
-
-/**
- * Initially represents a single Java bytecode instruction.
- *
- * Instructions for each bytecode are created when the bytecode is first scanned.
- *
- * Each Instruction will contain a pc (program counter) offset from the beginning of the sequence of bytecode and the length will be determined by the information gleaned from InstructionSet.BYTECODE.
- *
- *
- * @author gfrost
- *
- */
-public abstract class Instruction{
-
- protected MethodModel method;
-
- private final ByteCode byteCode;
-
- private int length;
-
- protected int pc;
-
- abstract String getDescription();
-
- private Instruction nextPC = null;
-
- private Instruction prevPC = null;
-
- private Instruction nextExpr = null;
-
- private Instruction prevExpr = null;
-
- private Instruction parentExpr = null;
-
- private LinkedList forwardConditionalBranchTargets;
-
- private LinkedList reverseConditionalBranchTargets;
-
- private LinkedList forwardUnconditionalBranchTargets;
-
- private LinkedList reverseUnconditionalBranchTargets;
-
- private Instruction firstChild = null;
-
- private Instruction lastChild = null;
-
- public void setChildren(Instruction _firstChild, Instruction _lastChild) {
-
- if ((_firstChild == null) || (_lastChild == null)) {
- throw new IllegalStateException("null children added");
- }
- firstChild = _firstChild;
- lastChild = _lastChild;
-
- for (Instruction i = firstChild; i != lastChild; i = i.getNextExpr()) {
- if (i == null) {
- throw new IllegalStateException("child list broken ");
- }
- i.setParentExpr(this);
- }
- lastChild.setParentExpr(this);
- }
-
- public Instruction getPrevExpr() {
- return (prevExpr);
-
- }
-
- public Instruction getNextExpr() {
- return (nextExpr);
- }
-
- public void setNextPC(Instruction _nextByPC) {
- nextPC = _nextByPC;
- }
-
- public void setPrevPC(Instruction _prevByPC) {
- prevPC = _prevByPC;
- }
-
- public void setPrevExpr(Instruction _prevExpr) {
- prevExpr = _prevExpr;
- }
-
- public void setNextExpr(Instruction _nextExpr) {
- nextExpr = _nextExpr;
- }
-
- public Instruction toInstruction() {
- return (this);
- }
-
- public int getLength() {
- return (length);
- }
-
- public void setLength(int _length) {
- length = _length;
- }
-
- public final ByteCode getByteCode() {
- return (byteCode);
- }
-
- public int getThisPC() {
- return (pc);
- }
-
- public int getStartPC() {
- return (getFirstChild() == null ? pc : getFirstChild().getStartPC());
- }
-
- protected Instruction(MethodModel _method, ByteCode _byteCode, int _pc) {
- method = _method;
- pc = _pc;
- byteCode = _byteCode;
- }
-
- protected Instruction(MethodModel _method, ByteCode _byteCode, ByteReader _byteReader, boolean _wide) {
- this(_method, _byteCode, _wide ? _byteReader.getOffset() - 2 : _byteReader.getOffset() - 1);
- }
-
- // This works for most cases (except calls whose operand count depends upon the signature) so all call instructions therefore override this method
- public int getStackConsumeCount() {
- return (byteCode.getPop().getStackAdjust());
- }
-
- public int getStackProduceCount() {
- return (byteCode.getPush().getStackAdjust());
- }
-
- public int getStackDelta() {
- return (getStackProduceCount() - getStackConsumeCount());
- }
-
- @Override public String toString() {
- return (String.format("%d %s", pc, byteCode.getName()));
- }
-
- public boolean isBranch() {
- return (this instanceof Branch);
- }
-
- public int compareTo(Instruction _other) {
- return (pc - _other.pc);
- }
-
- public boolean isAfter(Instruction _other) {
- return (compareTo(_other) > 0);
- }
-
- public boolean isAfterOrEqual(Instruction _other) {
- return (compareTo(_other) >= 0);
- }
-
- public boolean isBefore(Instruction _other) {
- return (compareTo(_other) < 0);
- }
-
- public boolean isBeforeOrEqual(Instruction _other) {
- return (compareTo(_other) <= 0);
- }
-
- public Instruction getFirstChild() {
- return (firstChild);
- }
-
- public Instruction getLastChild() {
- return (lastChild);
- }
-
- public Instruction getStartInstruction() {
- return (getFirstChild() == null ? this : getFirstChild().getStartInstruction());
- }
-
- public MethodModel getMethod() {
- return (method);
- }
-
- public Instruction getNextPC() {
- return (nextPC);
- }
-
- public Instruction getPrevPC() {
- return (prevPC);
- }
-
- public void setParentExpr(Instruction _parentExpr) {
- parentExpr = _parentExpr;
- }
-
- public Instruction getParentExpr() {
- return (parentExpr);
- }
-
- public Instruction getRootExpr() {
- return (parentExpr == null ? this : parentExpr.getRootExpr());
- }
-
- public boolean isReverseConditionalBranchTarget() {
- return ((reverseConditionalBranchTargets != null) && (reverseConditionalBranchTargets.size() > 0));
- }
-
- public boolean isForwardConditionalBranchTarget() {
- return ((forwardConditionalBranchTargets != null) && (forwardConditionalBranchTargets.size() > 0));
- }
-
- public boolean isReverseUnconditionalBranchTarget() {
- return ((reverseUnconditionalBranchTargets != null) && (reverseUnconditionalBranchTargets.size() > 0));
- }
-
- public boolean isForwardUnconditionalBranchTarget() {
- return ((forwardUnconditionalBranchTargets != null) && (forwardUnconditionalBranchTargets.size() > 0));
- }
-
- public boolean isReverseBranchTarget() {
- return (isReverseConditionalBranchTarget() || isReverseUnconditionalBranchTarget());
- }
-
- public boolean isConditionalBranchTarget() {
- return (isReverseConditionalBranchTarget() || isForwardConditionalBranchTarget());
- }
-
- public boolean isUnconditionalBranchTarget() {
- return (isReverseUnconditionalBranchTarget() || isForwardUnconditionalBranchTarget());
- }
-
- public boolean isForwardBranchTarget() {
- return (isForwardConditionalBranchTarget() || isForwardUnconditionalBranchTarget());
- }
-
- public boolean isBranchTarget() {
- return (isForwardBranchTarget() || isReverseBranchTarget());
- }
-
- public boolean producesStack() {
- return ((this instanceof CompositeInstruction) || (getStackProduceCount() > 0));
- }
-
- public Instruction getReal() {
- return (this);
- }
-
- public Branch asBranch() {
- return ((Branch) this);
- }
-
- public boolean consumesStack() {
- return (getStackConsumeCount() > 0);
- }
-
- public void addBranchTarget(Branch _branch) {
-
- if (_branch.isReverse()) {
- if (_branch.isConditional()) {
- if (reverseConditionalBranchTargets == null) {
- reverseConditionalBranchTargets = new LinkedList();
- }
- reverseConditionalBranchTargets.add((ConditionalBranch) _branch);
- } else {
- if (reverseUnconditionalBranchTargets == null) {
- reverseUnconditionalBranchTargets = new LinkedList();
- }
- reverseUnconditionalBranchTargets.add(_branch);
- }
- } else {
- if (_branch.isConditional()) {
- if (forwardConditionalBranchTargets == null) {
- forwardConditionalBranchTargets = new LinkedList();
- }
- forwardConditionalBranchTargets.add((ConditionalBranch) _branch);
- } else {
- if (forwardUnconditionalBranchTargets == null) {
- forwardUnconditionalBranchTargets = new LinkedList();
- }
- forwardUnconditionalBranchTargets.add(_branch);
- }
- }
- }
-
- public void removeBranchTarget(Branch _branch) {
- if (_branch.isReverse()) {
- if (_branch.isConditional()) {
- if (reverseConditionalBranchTargets != null) {
- reverseConditionalBranchTargets.remove(_branch);
- if (reverseConditionalBranchTargets.size() == 0) {
- reverseConditionalBranchTargets = null;
- }
- }
- } else {
- if (reverseUnconditionalBranchTargets != null) {
- reverseUnconditionalBranchTargets.remove(_branch);
- if (reverseUnconditionalBranchTargets.size() == 0) {
- reverseUnconditionalBranchTargets = null;
- }
- }
- }
- } else {
- if (_branch.isConditional()) {
- if (forwardConditionalBranchTargets != null) {
- forwardConditionalBranchTargets.remove(_branch);
- if (forwardConditionalBranchTargets.size() == 0) {
- forwardConditionalBranchTargets = null;
- }
- }
- } else {
- if (forwardUnconditionalBranchTargets != null) {
- forwardUnconditionalBranchTargets.remove(_branch);
- if (forwardUnconditionalBranchTargets.size() == 0) {
- forwardUnconditionalBranchTargets = null;
- }
- }
- }
- }
- }
-
- public LinkedList