-
Notifications
You must be signed in to change notification settings - Fork 396
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
JitBuilder math APIs like Add, Mul, etc. require that the left and right operands have the same type or if the left is a pointer that the right is an Int32 or Int64. Currently a VMRegister wrapping a int8_t * will fail when Adjust is called since _integerTypeForAdjustment will be Int8. It is incorrect to limit the adjustBy amount to the primite type of the pointer since a user may want to adjust the value by a large value. The solution is to adjust by an Int64 not matter what the primitive register type is. This PR includes a new test called vmregister which verifies that VMRegisters wrapping a pInt8 work. This test failed before this PR. The Operand[Array,Stack]Tests verify that the code continues to work for larger types. Signed-off-by: Charlie Gracie <charlie.gracie@gmail.com>
- Loading branch information
1 parent
a7063e5
commit 02678cf
Showing
7 changed files
with
186 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,123 @@ | ||
/******************************************************************************* | ||
* Copyright (c) 2016, 2019 IBM Corp. and others | ||
* | ||
* This program and the accompanying materials are made available under | ||
* the terms of the Eclipse Public License 2.0 which accompanies this | ||
* distribution and is available at https://www.eclipse.org/legal/epl-2.0/ | ||
* or the Apache License, Version 2.0 which accompanies this distribution and | ||
* is available at https://www.apache.org/licenses/LICENSE-2.0. | ||
* | ||
* This Source Code may also be made available under the following | ||
* Secondary Licenses when the conditions for such availability set | ||
* forth in the Eclipse Public License, v. 2.0 are satisfied: GNU | ||
* General Public License, version 2 with the GNU Classpath | ||
* Exception [1] and GNU General Public License, version 2 with the | ||
* OpenJDK Assembly Exception [2]. | ||
* | ||
* [1] https://www.gnu.org/software/classpath/license.html | ||
* [2] http://openjdk.java.net/legal/assembly-exception.html | ||
* | ||
* SPDX-License-Identifier: EPL-2.0 OR Apache-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 OR LicenseRef-GPL-2.0 WITH Assembly-exception | ||
*******************************************************************************/ | ||
|
||
|
||
#include <iostream> | ||
#include <stdlib.h> | ||
#include <stdint.h> | ||
#include <errno.h> | ||
|
||
#include "VMRegister.hpp" | ||
#include "JitBuilder.hpp" | ||
|
||
using std::cout; | ||
using std::cerr; | ||
|
||
#define TOSTR(x) #x | ||
#define LINETOSTR(x) TOSTR(x) | ||
|
||
|
||
int | ||
main(int argc, char *argv[]) | ||
{ | ||
cout << "Step 1: initialize JIT\n"; | ||
bool initialized = initializeJit(); | ||
if (!initialized) | ||
{ | ||
cerr << "FAIL: could not initialize JIT\n"; | ||
exit(-1); | ||
} | ||
|
||
cout << "Step 2: define type dictionary\n"; | ||
OMR::JitBuilder::TypeDictionary types; | ||
|
||
cout << "Step 3: compile method builder\n"; | ||
VMRegisterMethod method(&types); | ||
void *entry = 0; | ||
int32_t rc = compileMethodBuilder(&method, &entry); | ||
if (rc != 0) | ||
{ | ||
cerr << "FAIL: compilation error " << rc << "\n"; | ||
exit(-2); | ||
} | ||
|
||
cout << "Step 4: invoke compiled code and print results\n"; | ||
typedef int32_t (VMRegisterMethodFunction)(int8_t **values, int32_t count); | ||
VMRegisterMethodFunction *test = (VMRegisterMethodFunction *) entry; | ||
|
||
int8_t values[] = {7,2,9,5,3,1,6}; | ||
int8_t *vals = values; | ||
int32_t retVal = test(&vals, 7); | ||
cout << "test(values) returned " << retVal << "\n"; | ||
|
||
cout << "Step 5: shutdown JIT\n"; | ||
shutdownJit(); | ||
} | ||
|
||
|
||
|
||
VMRegisterMethod::VMRegisterMethod(OMR::JitBuilder::TypeDictionary *d) | ||
: OMR::JitBuilder::MethodBuilder(d, (OMR::JitBuilder::VirtualMachineState *) NULL) | ||
{ | ||
DefineLine(LINETOSTR(__LINE__)); | ||
DefineFile(__FILE__); | ||
|
||
DefineName("test"); | ||
DefineParameter("valuesPtr", d->PointerTo(d->PointerTo(Int8))); | ||
DefineParameter("count", Int32); | ||
DefineReturnType(Int32); | ||
} | ||
|
||
bool | ||
VMRegisterMethod::buildIL() | ||
{ | ||
OMR::JitBuilder::TypeDictionary *dict = typeDictionary(); | ||
OMR::JitBuilder::IlType *pElementType = dict->PointerTo(Int8); | ||
OMR::JitBuilder::IlType *ppElementType = dict->PointerTo(pElementType); | ||
OMR::JitBuilder::VirtualMachineRegister *vmreg = new OMR::JitBuilder::VirtualMachineRegister(this, "MYBYTES", ppElementType, sizeof(int8_t), Load("valuesPtr")); | ||
|
||
Store("result", ConstInt32(0)); | ||
|
||
OMR::JitBuilder::IlBuilder *loop = NULL; | ||
ForLoopUp("i", &loop, | ||
ConstInt32(0), | ||
Load("count"), | ||
ConstInt32(1)); | ||
|
||
loop->Store("valAddress", | ||
vmreg->Load(loop)); | ||
|
||
loop->Store("val", | ||
loop-> LoadAt(pElementType, | ||
loop-> Load("valAddress"))); | ||
|
||
loop->Store("result", | ||
loop-> Add( | ||
loop-> Load("result"), | ||
loop-> ConvertTo(Int32, | ||
loop-> Load("val")))); | ||
vmreg->Adjust(loop, 1); | ||
|
||
Return(Load("result")); | ||
|
||
return true; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
/******************************************************************************* | ||
* Copyright (c) 2016, 2019 IBM Corp. and others | ||
* | ||
* This program and the accompanying materials are made available under | ||
* the terms of the Eclipse Public License 2.0 which accompanies this | ||
* distribution and is available at https://www.eclipse.org/legal/epl-2.0/ | ||
* or the Apache License, Version 2.0 which accompanies this distribution and | ||
* is available at https://www.apache.org/licenses/LICENSE-2.0. | ||
* | ||
* This Source Code may also be made available under the following | ||
* Secondary Licenses when the conditions for such availability set | ||
* forth in the Eclipse Public License, v. 2.0 are satisfied: GNU | ||
* General Public License, version 2 with the GNU Classpath | ||
* Exception [1] and GNU General Public License, version 2 with the | ||
* OpenJDK Assembly Exception [2]. | ||
* | ||
* [1] https://www.gnu.org/software/classpath/license.html | ||
* [2] http://openjdk.java.net/legal/assembly-exception.html | ||
* | ||
* SPDX-License-Identifier: EPL-2.0 OR Apache-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 OR LicenseRef-GPL-2.0 WITH Assembly-exception | ||
*******************************************************************************/ | ||
|
||
|
||
#ifndef VMREGISTER_INCL | ||
#define VMREGISTER_INCL | ||
|
||
#include "JitBuilder.hpp" | ||
|
||
class VMRegisterMethod : public OMR::JitBuilder::MethodBuilder | ||
{ | ||
public: | ||
VMRegisterMethod(OMR::JitBuilder::TypeDictionary *); | ||
virtual bool buildIL(); | ||
}; | ||
|
||
#endif // !defined(VMREGISTER_INCL) |