Displaying 4 results from an estimated 4 matches for "getbb".
Did you mean:
retbb
2008 Dec 05
0
[LLVMdev] MachineCodeEmitter Patch
...uot; <llvmdev at cs.uiuc.edu>
Sent: Tuesday, November 25, 2008 1:51:35 AM GMT -05:00 US/Canada Eastern
Subject: Re: [LLVMdev] MachineCodeEmitter Patch
Thanks. But we need to match the type changes in all the target. e.g.
ARMJITInfo.cpp, X86CodeEmitter.cpp. Also in MachineRelocation, e.g.
getBB. Could you prepare a patch with all those fixed as well?
Evan
On Nov 22, 2008, at 1:19 PM, Thomas Jablin wrote:
> Here is the corrected version.
>
> Thomas Jablin wrote:
>> Actually, there is a problem with the patch. Please delay review.
>>
>> Thomas Jablin wrote:
>...
2008 Dec 05
0
[LLVMdev] MachineCodeEmitter Patch
...uot; <llvmdev at cs.uiuc.edu>
Sent: Tuesday, November 25, 2008 1:51:35 AM GMT -05:00 US/Canada Eastern
Subject: Re: [LLVMdev] MachineCodeEmitter Patch
Thanks. But we need to match the type changes in all the target. e.g.
ARMJITInfo.cpp, X86CodeEmitter.cpp. Also in MachineRelocation, e.g.
getBB. Could you prepare a patch with all those fixed as well?
Evan
On Nov 22, 2008, at 1:19 PM, Thomas Jablin wrote:
> Here is the corrected version.
>
> Thomas Jablin wrote:
>> Actually, there is a problem with the patch. Please delay review.
>>
>> Thomas Jablin wrote:
>...
2011 Dec 13
1
[LLVMdev] Memory Dependence Analysis
...isLoad = true;
}
else
errs() << "pow!";
MDA->getNonLocalPointerDependency(loc, isLoad, bb, result);
for (SmallVectorImpl<NonLocalDepResult>::iterator it=result.begin() ; it
< result.end(); it++ ) {
errs() << "\tblock " << it->getBB() << " ";
MemDepResult dd = it->getResult();
if (dd.isClobber())
errs() << "clobber\n";
else if (dd.isDef())
errs() << "def\n";
else {
if (dd.isNonLocal())
errs() << "nonLocal\n";
if (dd.isNon...
2008 Nov 22
3
[LLVMdev] MachineCodeEmitter Patch
Here is the corrected version.
Thomas Jablin wrote:
> Actually, there is a problem with the patch. Please delay review.
>
> Thomas Jablin wrote:
>
>> Hi,
>> The following code:
>>
>> #include<stdio.h>
>>
>> char bigArray[0x1000000];
>>
>> int main(int argc, char **argv) {
>> printf("mem: 0x%x\n", (unsigned)