Displaying 2 results from an estimated 2 matches for "int4_8".
Did you mean:
int4
2015 Jun 30
4
[LLVMdev] Crashes on Windows 8 with >4k stack frames
...ebug and release
builds are affected.
The variables are created en-block at the beginning of the function with
code looking like
for (i=0; i<513; ++i) {
AllocaInst *variable =
mBuilder.CreateAlloca(Type::getInt64Ty(mContext),0,"");
mBuilder.CreateStore(GetConstI("INT4_8",0),variable);
}
We have not yet looked at the compiled machine code (same on Win 7 and
8, or differs?). But the 4k limit made us suspicious, as there were some
bug reports - some still open - regarding this limit with LLVM [1,2].
So the question is - before digging into this for more days...
2015 Jun 30
2
[LLVMdev] Crashes on Windows 8 with >4k stack frames
...bles are created en-block at the beginning of the function
>> with code looking like
>>
>> for (i=0; i<513; ++i) {
>> AllocaInst *variable =
>> mBuilder.CreateAlloca(Type::getInt64Ty(mContext),0,"");
>> mBuilder.CreateStore(GetConstI("INT4_8",0),variable);
>> }
>>
>> We have not yet looked at the compiled machine code (same on Win 7 and
>> 8, or differs?). But the 4k limit made us suspicious, as there were
>> some bug reports - some still open - regarding this limit with LLVM
>> [1,2].
>>...