Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

OrcJIT's MaterializationResponsibility fails asserts (also in KaleidoscopeJIT Ch2) #40940

Open
llvmbot opened this issue Apr 25, 2019 · 0 comments
Labels
bugzilla Issues migrated from bugzilla orcjit

Comments

@llvmbot
Copy link
Member

llvmbot commented Apr 25, 2019

Bugzilla Link 41595
Version 8.0
OS Windows NT
Reporter LLVM Bugzilla Contributor
CC @AlexDenisov,@dwblaikie,@lhames

Extended Description

Using OrcJIT in llvm 8.0.0 fails very quickly in an assert failure in MaterializationResponsibility::resolve, which seems to be internal to OrcJIT and out of the control of the user. Just running Kaleidoscope Ch2 as included in the source code distribution causes

assert(I != SymbolFlags.end() &&
       "Resolving symbol outside this responsibility set");

in lines 399 and 400 of ExecutionEngine/Orc/Core.cpp to fail. In particular, this seems to reliably happen after entering the second line code, say "5+2" and "5+2".

Originally, I just tried to compile a function that returns an integer constant and is marked as having external linkage, which failed in the same function at lines 407 and 408:

  assert(I->second == KV.second.getFlags() &&
         "Resolving symbol with incorrect flags");

As far as I can tell from the data, "I" has a Flags field whose value is "Exported | Callable (48 '0')", and "KV" has a Flags field whose value is just "Callable (32 '0')". After setting up a JIT much like in Kaleidoscope, the following is all that this code does to produce that error:

auto theModule = llvm::make_uniquellvm::Module("module", LLVMCONTEXT);
theModule->setDataLayout(NomJIT::Instance()->getDataLayout());

llvm::Function *fun = llvm::Function::Create(llvm::FunctionType::get(INTTYPE, false), llvm::Function::ExternalLinkage, "testmethod", theModule.get());

BasicBlock *startBlock = BasicBlock::Create(LLVMCONTEXT, "testmethod$start", fun);

IRBuilder<> builder(LLVMCONTEXT);
builder.SetInsertPoint(startBlock);
builder.CreateRet(llvm::ConstantInt::get(INTTYPE, 5, true));
if (verifyFunction(*fun))
{
throw "Failed verification";
}

MyJIT::Instance()->addModule(std::move(theModule));
auto MainSymbol = ExitOnErr(MyJIT::Instance()->lookup("testmethod")); //FAILS HERE
int (mainmeth)() = (int ()())(intptr_t)MainSymbol.getAddress();
std::cout<<mainmeth();

I'm running Windows 10 and compiled llvm (from the 8.0.0 source tar available on llvm.org) and the other projects with Visual Studio 2017, and the same problems happen on two different machines with the same setup.

@llvmbot llvmbot transferred this issue from llvm/llvm-bugzilla-archive Dec 10, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bugzilla Issues migrated from bugzilla orcjit
Projects
None yet
Development

No branches or pull requests

1 participant