Displaying 5 results from an estimated 5 matches for "subcases".
Did you mean:
subcase
2020 Jun 18
2
How to know the CallInst is a virtual call ?
So if I want to know whether a CallInst is a C++ virtual call or not.
I have to get the information at frontend/Clang.
and then pass the information to middle-end/LLVM IR by myself.
Is it right?
Thank you
David Blaikie <dblaikie at gmail.com> 於 2020年6月19日 週五 上午1:26寫道:
> On Thu, Jun 18, 2020 at 9:53 AM PenYiWang via llvm-dev
> <llvm-dev at lists.llvm.org> wrote:
> >
2020 Jun 18
2
How to know the CallInst is a virtual call ?
Hi
I know that a virtual call looks like this :
%4 = load %class.base*, %class.base** %1, align 8
%5 = bitcast %class.base* %4 to void (%class.base*)***
%6 = load void (%class.base*)**, void (%class.base*)*** %5, align 8
%7 = getelementptr inbounds void (%class.base*)*, void (%class.base*)**
%6, i64 0
%8 = load void (%class.base*)*, void (%class.base*)** %7, align 8
call void
2009 Aug 31
4
Offtopic, HT vs. HH in coin flips
Dear R-help,
Could someone please try to explain this paradox to me? What is more likely to show up first in a string of coin tosses, "Heads then Tails", or "Heads then Heads"?
##generate 2500 strings of random coin flips
ht <- replicate(2500,
paste(sample(c("H", "T"), 100, replace = TRUE),
collapse =
2004 Dec 11
3
rsync to retry if copy failed - possible?
Hello,
I want to be 100% sure that rsync copies something from one location to
another.
However, I did not see an option which would make rsync retry an
operation if it failed for whatever reason (network was down when rsync
started, or network went down during rsync was copying something,
connection timed out etc.).
For example, wget has an option like --tries=number Set number of
retries
2011 Jun 30
5
[LLVMdev] inefficiencies in ConstantUniqueMap ?
Hi Jay,
> As I understand it, PATypeHolder, OpaqueType and the Module's
> TypeSymbolTable are gone. Instead, StructTypes can optionally be
> named, and if they are then:
>
> - they use name equivalence instead of structural equivalence.
> - you can create them without any fields, and then add the fields
> later when the struct is complete.
I find this distinction between